nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit a8cd995624e69b91df173cbfb255b9747e7a29aa
parent 82a60648034bdf5a46fc2565f96186ac82651bc2
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Wed,  3 Sep 2008 18:14:44 +1200

remove 2 unused methods

Diffstat:
Mplugin/NERD_tree.vim | 30------------------------------
1 file changed, 0 insertions(+), 30 deletions(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -733,36 +733,6 @@ function! s:TreeDirNode.getChildCount()
     return len(self.children)
 endfunction
 
-"FUNCTION: TreeDirNode.getChildDirs() {{{3
-"Returns an array of all children of this node that are directories
-"
-"Return:
-"an array of directory treenodes
-function! s:TreeDirNode.getChildDirs()
-    let toReturn = []
-    for i in self.children
-        if i.path.isDirectory
-            call add(toReturn, i)
-        endif
-    endfor
-    return toReturn
-endfunction
-
-"FUNCTION: TreeDirNode.getChildFiles() {{{3
-"Returns an array of all children of this node that are files
-"
-"Return:
-"an array of file treenodes
-function! s:TreeDirNode.getChildFiles()
-    let toReturn = []
-    for i in self.children
-        if i.path.isDirectory == 0
-            call add(toReturn, i)
-        endif
-    endfor
-    return toReturn
-endfunction
-
 "FUNCTION: TreeDirNode.getChild(path) {{{3
 "Returns child node of this node that has the given path or {} if no such node
 "exists.