From 19d5aaa513fddf845d558753aa53c9c761b94630 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Thu, 4 Sep 2008 15:40:09 +1200 Subject: [PATCH] bugfix: openRecursively2 hadnt been renamed properly --- plugin/NERD_tree.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim index 24194e1..4354100 100644 --- 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