nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 5b35d0bb31a3e5ac2424a510fbf7589c5b5e1ce7
parent 40ccf3cd4540c95390ad8b9e0c082cf0af21b59d
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Tue, 10 Jun 2008 12:49:14 +1200

bugfix: fix NERDTreeFromMark command

previously it called a nonexisting function

Diffstat:
Mplugin/NERD_tree.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -141,7 +141,7 @@ endif
 command! -n=? -complete=dir NERDTree :call s:InitNerdTree('<args>')
 command! -n=? -complete=dir NERDTreeToggle :call s:Toggle('<args>')
 command! -n=0 NERDTreeClose :call s:CloseTreeIfOpen()
-command! -n=1 -complete=customlist,s:FindMarks NERDTreeFromMark call s:InitNerdTreeFromMark('<args>')
+command! -n=1 -complete=customlist,s:FindMarks NERDTreeFromMark call s:InitNerdTree('<args>')
 " SECTION: Auto commands {{{1
 "============================================================
 "Save the cursor position whenever we close the nerd tree