liuchengxu/vim-which-key

Remove existing keys from mappings

Closed this issue · 1 comments

Is your feature request related to a problem? Please describe.
I'm using vim-airline shortcuts where I do <leader> 1 to go to tab number 1. I have this mapped for 9 different tabs to navigate quickly. The problem is that it clutters the popup a lot.

image

Describe the solution you'd like
Maybe there is a way to remove the keys. I've tried to unlet them but it gives an error saying that there is no item with key 1 in dictionary g:which_key_map.

Describe alternatives you've considered
The only thing I accomplished is to rename them.

You actually means to hide the entry from which-key window? REAMDE already mentioned:

If you wish to hide a mapping from the menu set it's description to 'which_key_ignore'. Useful for instance, to hide a list of [1-9] window swapping mappings. For example the below mapping will not be shown in the menu.

nnoremap <leader>1 :1wincmd w<CR>
let g:which_key_map.1 = 'which_key_ignore'