dblume commited on 2024-04-03 14:15:27
Showing 1 changed files, with 2 additions and 2 deletions.
Taglist remaps '*' to mean expand all folds. I need it to keep meaning find next occurence of this word.
... | ... |
@@ -600,7 +600,7 @@ function! s:Tlist_Window_Display_Help() |
600 | 600 |
call append(7, '" x : Zoom-out/Zoom-in taglist window') |
601 | 601 |
call append(8, '" + : Open a fold') |
602 | 602 |
call append(9, '" - : Close a fold') |
603 |
- call append(10, '" * : Open all folds') |
|
603 |
+ call append(10, '" * : (DXB removed) Open all folds') |
|
604 | 604 |
call append(11, '" = : Close all folds') |
605 | 605 |
call append(12, '" [[ : Move to the start of previous file') |
606 | 606 |
call append(13, '" ]] : Move to the start of next file') |
... | ... |
@@ -1644,7 +1644,7 @@ function! s:Tlist_Window_Init() |
1644 | 1644 |
\ :call <SID>Tlist_Change_Sort('cmd', 'toggle', '')<CR> |
1645 | 1645 |
nnoremap <buffer> <silent> + :silent! foldopen<CR> |
1646 | 1646 |
nnoremap <buffer> <silent> - :silent! foldclose<CR> |
1647 |
- nnoremap <buffer> <silent> * :silent! %foldopen!<CR> |
|
1647 |
+ " DXB removed nnoremap <buffer> <silent> * :silent! %foldopen!<CR> |
|
1648 | 1648 |
nnoremap <buffer> <silent> = :silent! %foldclose<CR> |
1649 | 1649 |
nnoremap <buffer> <silent> <kPlus> :silent! foldopen<CR> |
1650 | 1650 |
nnoremap <buffer> <silent> <kMinus> :silent! foldclose<CR> |
1651 | 1651 |