mirror of
https://github.com/preservim/nerdtree.git
synced 2025-11-08 19:33:50 -05:00
fix a bug where keymaps were failing with :set ignorecase
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user