From 82cd4f5a9f93bb0a7b5fd901d99bf3302389b9a2 Mon Sep 17 00:00:00 2001 From: Shane Smith Date: Tue, 1 Jul 2014 20:29:52 -0400 Subject: [PATCH] Fix not working if active node map is special char such as --- lib/nerdtree/creator.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/nerdtree/creator.vim b/lib/nerdtree/creator.vim index 19c51ff..d76452c 100644 --- 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 do the same as the default 'o' mapping - exec "nnoremap :call nerdtree#invokeKeyMap('". g:NERDTreeMapActivateNode ."')" + "make do the same as the activate node mapping + exec "nnoremap :call nerdtree#invokeKeyMap(g:NERDTreeMapActivateNode)" call g:NERDTreeKeyMap.BindAll()