rename press for help and bmark label options

This commit is contained in:
Cam Thompson 2011-02-11 18:49:42 -05:00
parent 9e415dcc6d
commit 37bfae0d2f

View File

@ -51,8 +51,8 @@ call s:initVariable("g:NERDTreeAutoCenter", 1)
call s:initVariable("g:NERDTreeAutoCenterThreshold", 3) call s:initVariable("g:NERDTreeAutoCenterThreshold", 3)
call s:initVariable("g:NERDTreeCaseSensitiveSort", 0) call s:initVariable("g:NERDTreeCaseSensitiveSort", 0)
call s:initVariable("g:NERDTreeChDirMode", 0) call s:initVariable("g:NERDTreeChDirMode", 0)
call s:initVariable("g:NERDTreeShowPressForHelp", 1) call s:initVariable("g:NERDTreePressHelp", 1)
call s:initVariable("g:NERDTreeShowBookmarksLabel", 1) call s:initVariable("g:NERDTreeBmarksLabel", 1)
if !exists("g:NERDTreeIgnore") if !exists("g:NERDTreeIgnore")
let g:NERDTreeIgnore = ['\~$'] let g:NERDTreeIgnore = ['\~$']
endif endif
@ -2999,7 +2999,7 @@ function! s:dumpHelp()
let @h=@h."\" :ClearBookmarks [<names>]\n" let @h=@h."\" :ClearBookmarks [<names>]\n"
let @h=@h."\" :ClearAllBookmarks\n" let @h=@h."\" :ClearAllBookmarks\n"
silent! put h silent! put h
elseif g:NERDTreeShowPressForHelp == 1 elseif g:NERDTreePressHelp == 1
let @h="\" Press ". g:NERDTreeMapHelp ." for help\n" let @h="\" Press ". g:NERDTreeMapHelp ." for help\n"
silent! put h silent! put h
endif endif
@ -3242,7 +3242,7 @@ endfunction
"FUNCTION: s:renderBookmarks {{{2 "FUNCTION: s:renderBookmarks {{{2
function! s:renderBookmarks() function! s:renderBookmarks()
if g:NERDTreeShowBookmarksLabel == 1 if g:NERDTreeBmarksLabel == 1
call setline(line(".")+1, ">----------Bookmarks----------") call setline(line(".")+1, ">----------Bookmarks----------")
call cursor(line(".")+1, col(".")) call cursor(line(".")+1, col("."))
endif endif
@ -3272,7 +3272,7 @@ function! s:renderView()
call s:dumpHelp() call s:dumpHelp()
"delete the blank line before the help and add one after it "delete the blank line before the help and add one after it
if g:NERDTreeShowPressForHelp == 1 if g:NERDTreePressHelp == 1
call setline(line(".")+1, "") call setline(line(".")+1, "")
call cursor(line(".")+1, col(".")) call cursor(line(".")+1, col("."))
endif endif