Keycode for _ ?
FreemanX opened this issue · 1 comments
FreemanX commented
I installed vim plugin tcomment(tomtom/tcomment_vim) which has some key bindings like _a b. I want to hide anything started with in vim which key.
I've tried
let g:which_key_map._ = 'which_key_ignore'
and
let g:which_key_map.['_'] = 'which_key_ignore'
They don't work...
liuchengxu commented
Use let g:which_key_map['_'] = { 'name': 'which_key_ignore' }
.