nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 19d5aaa513fddf845d558753aa53c9c761b94630
parent 83966b7563c1ee15bf3e602443feef58fe2edc70
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Thu,  4 Sep 2008 15:40:09 +1200

bugfix: openRecursively2 hadnt been renamed properly

Diffstat:
Mplugin/NERD_tree.vim | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -917,7 +917,7 @@ endfunction
 "This method is actually a wrapper for the OpenRecursively2 method which does
 "the work.
 function! s:TreeDirNode.openRecursively()
-    call self.openRecursively2(1)
+    call self._openRecursively2(1)
 endfunction
 
 "FUNCTION: TreeDirNode._openRecursively2() {{{3
@@ -936,7 +936,7 @@ function! s:TreeDirNode._openRecursively2(forceOpen)
 
         for i in self.children
             if i.path.isDirectory == 1
-                call i.openRecursively2(0)
+                call i._openRecursively2(0)
             endif
         endfor
     endif