commit 841adb49add27ccc45e73e231d02103f1be987c4 (tree)
parent 57afba5bdd49b59d57485f90aa0cf3f3a6c47f63
Author: Ari Pollak <ajp@aripollak.com>
Date: Wed, 6 Apr 2016 14:57:40 -0400
Use "+ instead of "*
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugin/fugitive.vim b/plugin/fugitive.vim
@@ -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