Skip to content

Commit

Permalink
Merge pull request #852 from mnussbaum/fix_maybe_missing_map
Browse files Browse the repository at this point in the history
Bugfix - ensure keymaps dictionary exists before using it
  • Loading branch information
PhilRunninger authored Jun 12, 2018
2 parents bf4591c + eb048a3 commit 26abd33
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions lib/nerdtree/key_map.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,11 @@
"============================================================
let s:KeyMap = {}
let g:NERDTreeKeyMap = s:KeyMap

"FUNCTION: KeyMap._all() {{{1
function! s:KeyMap._all()
if !exists("s:keyMaps")
let s:keyMaps = {}
endif

return s:keyMaps
endfunction
let s:keyMaps = {}

"FUNCTION: KeyMap.All() {{{1
function! s:KeyMap.All()
let sortedKeyMaps = values(s:KeyMap._all())
let sortedKeyMaps = values(s:keyMaps)
call sort(sortedKeyMaps, s:KeyMap.Compare, s:KeyMap)

return sortedKeyMaps
Expand All @@ -36,12 +28,12 @@ endfunction

"FUNCTION: KeyMap.FindFor(key, scope) {{{1
function! s:KeyMap.FindFor(key, scope)
return get(s:KeyMap._all(), a:key . a:scope, {})
return get(s:keyMaps, a:key . a:scope, {})
endfunction

"FUNCTION: KeyMap.BindAll() {{{1
function! s:KeyMap.BindAll()
for i in values(s:KeyMap._all())
for i in values(s:keyMaps)
call i.bind()
endfor
endfunction
Expand Down

0 comments on commit 26abd33

Please sign in to comment.