Fix unexpected global var

This commit is contained in:
haya14busa 2014-12-05 17:57:23 +09:00
parent 09b0d7b944
commit c5e6715623

View File

@ -155,9 +155,10 @@ let s:priorities = {
\ g:EasyMotion_hl_inc_cursor : 2,
\ g:EasyMotion_hl_move : 0,
\ }
for group in keys(s:priorities)
let s:h.ids[group] = []
for s:group in keys(s:priorities)
let s:h.ids[s:group] = []
endfor
unlet s:group
"}}}
function! EasyMotion#highlight#delete_highlight(...) "{{{