nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 5daec4c7b7baaa1525b92a6a9ec08f7cd102aa59
parent 3a7694aa555f2b421ce6d685c0a8f19861161ed9
Author: Jason Franklin <j_fra@fastmail.us>
Date:   Fri, 14 Jul 2017 18:02:02 -0400

Edit stale commentary and add proper sigils

Diffstat:
Mlib/nerdtree/bookmark.vim | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/lib/nerdtree/bookmark.vim b/lib/nerdtree/bookmark.vim
@@ -308,10 +308,11 @@ function! s:Bookmark.toRoot(nerdtree)
 endfunction
 
 " FUNCTION: Bookmark.ToRoot(name, nerdtree) {{{1
-" Make the node for this bookmark the new tree root
+" Class method that makes the Bookmark with the given name the root of
+" specified NERDTree.
 function! s:Bookmark.ToRoot(name, nerdtree)
-    let bookmark = s:Bookmark.BookmarkFor(a:name)
-    call bookmark.toRoot(a:nerdtree)
+    let l:bookmark = s:Bookmark.BookmarkFor(a:name)
+    call l:bookmark.toRoot(a:nerdtree)
 endfunction
 
 " FUNCTION: Bookmark.validate() {{{1