Add a message of version compatibility on startup

This commit is contained in:
haya14busa 2014-05-29 09:34:50 +09:00
parent 993a8f9f95
commit 6d5cd26f98

View File

@ -7,7 +7,10 @@
if expand("%:p") ==# expand("<sfile>:p") if expand("%:p") ==# expand("<sfile>:p")
unlet! g:EasyMotion_loaded unlet! g:EasyMotion_loaded
endif endif
if exists('g:EasyMotion_loaded') || &compatible || version < 703 if exists('g:EasyMotion_loaded') || &compatible
finish
elseif version < 703
echomsg "This version of EasyMotion requires Vim 7.3 or later"
finish finish
endif endif