Use "+ instead of "*

This commit is contained in:
Ari Pollak
2016-04-06 14:57:40 -04:00
committed by Tim Pope
parent 57afba5bdd
commit 841adb49ad

View File

@@ -2327,7 +2327,7 @@ function! s:Browse(bang,line1,count,...) abort
let url = s:gsub(url, '[ <>]', '\="%".printf("%02X",char2nr(submatch(0)))')
if a:bang
if has('clipboard')
let @* = url
let @+ = url
endif
return 'echomsg '.string(url)
elseif exists(':Browse') == 2