Do not show version requiring messages on startup

ref: #167 #170
This commit is contained in:
haya14busa 2014-07-23 07:35:41 +09:00
parent 537c2ff01a
commit 6a0030da89

View File

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