Edit stale commentary and add proper sigils

This commit is contained in:
Jason Franklin 2017-07-14 18:02:02 -04:00
parent 3a7694aa55
commit 5daec4c7b7

View File

@ -308,10 +308,11 @@ function! s:Bookmark.toRoot(nerdtree)
endfunction endfunction
" FUNCTION: Bookmark.ToRoot(name, nerdtree) {{{1 " 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) function! s:Bookmark.ToRoot(name, nerdtree)
let bookmark = s:Bookmark.BookmarkFor(a:name) let l:bookmark = s:Bookmark.BookmarkFor(a:name)
call bookmark.toRoot(a:nerdtree) call l:bookmark.toRoot(a:nerdtree)
endfunction endfunction
" FUNCTION: Bookmark.validate() {{{1 " FUNCTION: Bookmark.validate() {{{1