From 5b35d0bb31a3e5ac2424a510fbf7589c5b5e1ce7 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Tue, 10 Jun 2008 12:49:14 +1200 Subject: [PATCH] bugfix: fix NERDTreeFromMark command previously it called a nonexisting function --- 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 5b68fcb..482f109 100644 --- a/plugin/NERD_tree.vim +++ b/plugin/NERD_tree.vim @@ -141,7 +141,7 @@ endif command! -n=? -complete=dir NERDTree :call s:InitNerdTree('') command! -n=? -complete=dir NERDTreeToggle :call s:Toggle('') command! -n=0 NERDTreeClose :call s:CloseTreeIfOpen() -command! -n=1 -complete=customlist,s:FindMarks NERDTreeFromMark call s:InitNerdTreeFromMark('') +command! -n=1 -complete=customlist,s:FindMarks NERDTreeFromMark call s:InitNerdTree('') " SECTION: Auto commands {{{1 "============================================================ "Save the cursor position whenever we close the nerd tree