From 5f4c0057712aaea6089eb3e74dbb81550c5ea702 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Sun, 7 Jun 2009 20:40:19 +1200 Subject: [PATCH] bugfix: :NERDTreeMirror doesnt have tab completion --- plugin/NERD_tree.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim index 9e8f29f..7bd9900 100644 --- a/plugin/NERD_tree.vim +++ b/plugin/NERD_tree.vim @@ -154,7 +154,7 @@ command! -n=? -complete=dir -bar NERDTree :call s:initNerdTree('') command! -n=? -complete=dir -bar NERDTreeToggle :call s:toggle('') command! -n=0 -bar NERDTreeClose :call s:closeTreeIfOpen() command! -n=1 -complete=customlist,s:completeBookmarks -bar NERDTreeFromBookmark call s:initNerdTree('') -command! -n=0 -complete=customlist,s:completeNERDTreeMirrors -bar NERDTreeMirror call s:initNerdTreeMirror() +command! -n=0 -bar NERDTreeMirror call s:initNerdTreeMirror() " SECTION: Auto commands {{{1 "============================================================ augroup NERDTree