mirror of
https://github.com/preservim/nerdtree.git
synced 2025-11-08 19:33:50 -05:00
bugfix: openRecursively2 hadnt been renamed properly
This commit is contained in:
@@ -917,7 +917,7 @@ endfunction
|
|||||||
"This method is actually a wrapper for the OpenRecursively2 method which does
|
"This method is actually a wrapper for the OpenRecursively2 method which does
|
||||||
"the work.
|
"the work.
|
||||||
function! s:TreeDirNode.openRecursively()
|
function! s:TreeDirNode.openRecursively()
|
||||||
call self.openRecursively2(1)
|
call self._openRecursively2(1)
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
"FUNCTION: TreeDirNode._openRecursively2() {{{3
|
"FUNCTION: TreeDirNode._openRecursively2() {{{3
|
||||||
@@ -936,7 +936,7 @@ function! s:TreeDirNode._openRecursively2(forceOpen)
|
|||||||
|
|
||||||
for i in self.children
|
for i in self.children
|
||||||
if i.path.isDirectory == 1
|
if i.path.isDirectory == 1
|
||||||
call i.openRecursively2(0)
|
call i._openRecursively2(0)
|
||||||
endif
|
endif
|
||||||
endfor
|
endfor
|
||||||
endif
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user