From 6a0030da8919c9d97ea06668d7fd7d01647acc58 Mon Sep 17 00:00:00 2001 From: haya14busa Date: Wed, 23 Jul 2014 07:35:41 +0900 Subject: [PATCH] Do not show version requiring messages on startup ref: #167 #170 --- plugin/EasyMotion.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/EasyMotion.vim b/plugin/EasyMotion.vim index a2cdfbc..999e38c 100644 --- a/plugin/EasyMotion.vim +++ b/plugin/EasyMotion.vim @@ -7,11 +7,11 @@ if expand("%:p") ==# expand(":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