From b82626f614e6f155ef7794d74d650eb615390ca1 Mon Sep 17 00:00:00 2001 From: haya14busa Date: Fri, 7 Feb 2014 16:45:11 +0900 Subject: [PATCH] Fix condition for CSApprox --- autoload/EasyMotion/highlight.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/EasyMotion/highlight.vim b/autoload/EasyMotion/highlight.vim index d813a30..2ca879e 100644 --- a/autoload/EasyMotion/highlight.vim +++ b/autoload/EasyMotion/highlight.vim @@ -135,7 +135,7 @@ function! EasyMotion#highlight#init() "{{{ call EasyMotion#highlight#InitHL(g:EasyMotion_hl_inc_search, s:target_hl_inc) call EasyMotion#highlight#InitHL(g:EasyMotion_hl_inc_cursor, s:target_hl_inc_cursor) call EasyMotion#highlight#InitHL(g:EasyMotion_hl_move, s:target_hl_move) - if exists('g:CSApprox_loaded') + if exists(':CSApprox') == 2 CSApprox! endif endfunction "}}}