commit 0b551a8abd86c1a8e4662244ccd39b5f176ae709 parent b64942a500a2a08def1293567af48267f3abc53c Author: Martin Grenfell <martin.grenfell@gmail.com> Date: Wed, 2 Jul 2014 20:23:56 +0100 Merge pull request #346 from shanesmith/master Fix <CR> not working if active node map is special char such as <Right> Diffstat:
| M | lib/nerdtree/creator.vim | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/nerdtree/creator.vim b/lib/nerdtree/creator.vim @@ -7,8 +7,8 @@ let g:NERDTreeCreator = s:Creator "FUNCTION: s:Creator._bindMappings() {{{1 function! s:Creator._bindMappings() - "make <cr> do the same as the default 'o' mapping - exec "nnoremap <silent> <buffer> <cr> :call nerdtree#invokeKeyMap('". g:NERDTreeMapActivateNode ."')<cr>" + "make <cr> do the same as the activate node mapping + exec "nnoremap <silent> <buffer> <cr> :call nerdtree#invokeKeyMap(g:NERDTreeMapActivateNode)<cr>" call g:NERDTreeKeyMap.BindAll()
