nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 6b7c9aa5c84a8b1d513599fd236df5c0772ff8c8
parent 5e53df769d5cd0fe2ac6179242daf6c5bd60c056
Author: Martin Grenfell <martin.grenfell@gmail.com>
Date:   Mon,  9 Jan 2012 16:30:06 +0000

update the method comment for TreeDirNode.open

Diffstat:
Mplugin/NERD_tree.vim | 8+-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -1663,13 +1663,7 @@ endfunction
 "FUNCTION: TreeDirNode.open([opts]) {{{3
 "Open the dir in the current tree or in a new tree elsewhere.
 "
-"Args:
-"
-"A dictionary containing the following keys (all optional):
-"  'where': 't' if the tree should be opened in a new tab
-"  'keepopen': dont close the tree window
-"  'stay': open the file, but keep the cursor in the tree win
-"
+"If opening in the current tree, return the number of cached nodes.
 unlet s:TreeDirNode.open
 function! s:TreeDirNode.open(...)
     let opts = a:0 ? a:1 : {}