Fix: Links opening in qutebrowser multiple times #763

This commit is contained in:
Lily Foster
2021-08-04 08:59:51 -04:00
committed by Brennen Bearnes
parent 8b53bd4c73
commit f28fe1ae43
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -331,7 +331,7 @@ function! vimwiki#base#system_open_link(url) abort
call system('open ' . shellescape(a:url).' &')
endfunction
function! s:linux_handler(url) abort
call system('xdg-open ' . shellescape(a:url).' &')
call system('xdg-open ' . shellescape(a:url).' >/dev/null 2>&1 &')
endfunction
try
if vimwiki#u#is_windows()