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

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