Add documentation on new features.

This commit is contained in:
jez 2011-03-16 06:46:59 -04:00
parent 01fa44ae6d
commit 378746b85c
2 changed files with 12 additions and 8 deletions

View File

@ -970,6 +970,9 @@ changed by modifying the 'Tlist_WinWidth' variable:
> >
let Tlist_WinWidth = 20 let Tlist_WinWidth = 20
< <
Setting Tlist_WinWidth to 'auto' causes the taglist window to resize
automatically to fit the contents.
Note that the value of the |'winwidth'| option setting determines the minimum Note that the value of the |'winwidth'| option setting determines the minimum
width of the current window. If you set the 'Tlist_WinWidth' variable to a width of the current window. If you set the 'Tlist_WinWidth' variable to a
value less than that of the |'winwidth'| option setting, then Vim will use the value less than that of the |'winwidth'| option setting, then Vim will use the

View File

@ -550,14 +550,15 @@ function! s:Tlist_Window_Display_Help()
call append(5, '" s : Select sort field') call append(5, '" s : Select sort field')
call append(6, '" d : Remove file from taglist') call append(6, '" d : Remove file from taglist')
call append(7, '" x : Zoom-out/Zoom-in taglist window') call append(7, '" x : Zoom-out/Zoom-in taglist window')
call append(8, '" + : Open a fold') call append(8, '" m : Toggle display of more tag info')
call append(9, '" - : Close a fold') call append(9, '" + : Open a fold')
call append(10, '" * : Open all folds') call append(10, '" - : Close a fold')
call append(11, '" = : Close all folds') call append(11, '" * : Open all folds')
call append(12, '" [[ : Move to the start of previous file') call append(12, '" = : Close all folds')
call append(13, '" ]] : Move to the start of next file') call append(13, '" [[ : Move to the start of previous file')
call append(14, '" q : Close the taglist window') call append(14, '" ]] : Move to the start of next file')
call append(15, '" <F1> : Remove help text') call append(15, '" q : Close the taglist window')
call append(16, '" <F1> : Remove help text')
endif endif
endfunction endfunction