diff --git a/doc/taglist.txt b/doc/taglist.txt index 6a62b39..32fdcae 100644 --- a/doc/taglist.txt +++ b/doc/taglist.txt @@ -970,6 +970,9 @@ changed by modifying the 'Tlist_WinWidth' variable: > 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 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 diff --git a/plugin/taglist.vim b/plugin/taglist.vim index 6a9820b..8f080ab 100644 --- a/plugin/taglist.vim +++ b/plugin/taglist.vim @@ -550,14 +550,15 @@ function! s:Tlist_Window_Display_Help() call append(5, '" s : Select sort field') call append(6, '" d : Remove file from taglist') call append(7, '" x : Zoom-out/Zoom-in taglist window') - call append(8, '" + : Open a fold') - call append(9, '" - : Close a fold') - call append(10, '" * : Open all folds') - call append(11, '" = : Close all folds') - call append(12, '" [[ : Move to the start of previous file') - call append(13, '" ]] : Move to the start of next file') - call append(14, '" q : Close the taglist window') - call append(15, '" : Remove help text') + call append(8, '" m : Toggle display of more tag info') + call append(9, '" + : Open a fold') + call append(10, '" - : Close a fold') + call append(11, '" * : Open all folds') + call append(12, '" = : Close all folds') + call append(13, '" [[ : Move to the start of previous file') + call append(14, '" ]] : Move to the start of next file') + call append(15, '" q : Close the taglist window') + call append(16, '" : Remove help text') endif endfunction