mirror of
https://github.com/tpope/vim-fugitive.git
synced 2025-11-14 22:33:51 -05:00
Drop Vim requirement to 7.3
The code base still supports 7.3 (7.2.061 to be precise) so no harm in dropping this for one final release.
This commit is contained in:
@@ -88,8 +88,8 @@ function! s:throw(string) abort
|
||||
endfunction
|
||||
|
||||
function! s:VersionCheck() abort
|
||||
if v:version < 704
|
||||
return 'return ' . string('echoerr "fugitive: Vim 7.4 or newer required"')
|
||||
if v:version < 703
|
||||
return 'return ' . string('echoerr "fugitive: Vim 7.3 or newer required"')
|
||||
elseif empty(fugitive#GitVersion())
|
||||
let exe = get(s:GitCmd(), 0, '')
|
||||
if len(exe) && !executable(exe)
|
||||
|
||||
Reference in New Issue
Block a user