Skip to content

Commit

Permalink
Fix variable name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Lokaltog committed Mar 29, 2011
1 parent c3d3d0f commit 6b58e2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/EasyMotion.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 6b58e2c

Please sign in to comment.