Allow Powershell to open links in Windows

This commit is contained in:
Jonathan McElroy 2016-12-12 16:49:05 -06:00 committed by Michael F. Schönitzer
parent 2941913ccc
commit bf2039555a

View File

@ -228,7 +228,11 @@ function! vimwiki#base#system_open_link(url) "{{{
else
let url = shellescape(a:url, 1)
endif
execute 'silent ! start "Title" /B ' . url
if &l:shell ==? "powershell"
execute 'silent ! start ' . a:url
else
execute 'silent ! start "Title" /B ' . a:url
endif
endfunction
function! s:macunix_handler(url)
call system('open ' . shellescape(a:url).' &')