nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 1848a2cf9d5725e264a1d3c95eba7ebb6ecf7c4b
parent c431d38d976cdcca943c19650863b25e5c2375ba
Author: Martin Grenfell <martin.grenfell@gmail.com>
Date:   Wed,  4 Jan 2012 10:44:17 +0000

fix a bug when activating bookmarks

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
@@ -3666,7 +3666,7 @@ endfunction
 "FUNCTION: s:activateBookmark() {{{2
 "handle the user activating a bookmark
 function! s:activateBookmark(bm)
-    call a:bm.activate(0)
+    call a:bm.activate()
 endfunction
 
 "FUNCTION: s:bindMappings() {{{2