fix a bug where keymaps were failing with :set ignorecase
This commit is contained in:
parent
98b2fa5104
commit
ebb2835c45
@ -492,7 +492,7 @@ endfunction
|
|||||||
"FUNCTION: KeyMap.FindFor(key, scope) {{{3
|
"FUNCTION: KeyMap.FindFor(key, scope) {{{3
|
||||||
function! s:KeyMap.FindFor(key, scope)
|
function! s:KeyMap.FindFor(key, scope)
|
||||||
for i in s:KeyMap.All()
|
for i in s:KeyMap.All()
|
||||||
if i.key == a:key && i.scope == a:scope
|
if i.key ==# a:key && i.scope ==# a:scope
|
||||||
return i
|
return i
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
|
Loading…
x
Reference in New Issue
Block a user