Support for browsing with recent Vim

Closes #594.
This commit is contained in:
Tim Pope 2015-02-08 22:31:37 -05:00
parent 933f6a1e1d
commit eb8eb1850a

View File

@ -2224,9 +2224,13 @@ function! s:Browse(bang,line1,count,...) abort
return 'echomsg '.string(url) return 'echomsg '.string(url)
elseif exists(':Browse') == 2 elseif exists(':Browse') == 2
return 'echomsg '.string(url).'|Browse '.url return 'echomsg '.string(url).'|Browse '.url
else
if has("patch-7.4.567")
return 'echomsg '.string(url).'|call netrw#BrowseX('.string(url).', 0)'
else else
return 'echomsg '.string(url).'|call netrw#NetrwBrowseX('.string(url).', 0)' return 'echomsg '.string(url).'|call netrw#NetrwBrowseX('.string(url).', 0)'
endif endif
endif
catch /^fugitive:/ catch /^fugitive:/
return 'echoerr v:errmsg' return 'echoerr v:errmsg'
endtry endtry