From 6b58e2ce2b0555d0bbcdf0c5b72c15af17e757e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Silkeb=C3=A6kken?= Date: Tue, 29 Mar 2011 08:48:23 +0200 Subject: [PATCH] Fix variable name issue --- plugin/EasyMotion.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/EasyMotion.vim b/plugin/EasyMotion.vim index 9d22b39..102a166 100644 --- a/plugin/EasyMotion.vim +++ b/plugin/EasyMotion.vim @@ -337,7 +337,7 @@ " }}} " Shade inactive source - if g:EasyMotion_shade + if g:EasyMotion_do_shade let shade_hl_pos = '\%' . orig_pos[0] . 'l\%'. orig_pos[1] .'c' if a:direction == 1 @@ -391,7 +391,7 @@ redraw " Remove shading - if g:EasyMotion_shade && exists('shade_hl_id') + if g:EasyMotion_do_shade && exists('shade_hl_id') call matchdelete(shade_hl_id) endif