From 5daec4c7b7baaa1525b92a6a9ec08f7cd102aa59 Mon Sep 17 00:00:00 2001 From: Jason Franklin Date: Fri, 14 Jul 2017 18:02:02 -0400 Subject: [PATCH] Edit stale commentary and add proper sigils --- lib/nerdtree/bookmark.vim | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/nerdtree/bookmark.vim b/lib/nerdtree/bookmark.vim index d7b9d3d..45f9950 100644 --- 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