Closed Twix53791 closed 1 year ago
There is indeed a regression here, which should be fixed by #246. However, keys like "\<S-CR>"
are not guaranteed to work in vim, you have to use the distinguishable keys, please refer to https://stackoverflow.com/questions/5388562/cant-map-s-cr-in-vim for more info.
Thank you! the fix works for me! I am aware about the possible impossibility of some bindings, but with kitty terminal, control mappings is easy :)
Environment:
OS: Arch linux
(Neo)Vim version: 0.9.1 0b901c9
mini init.vim
Plug 'liuchengxu/vim-which-key'
call plug#end()
let g:which_key_map = {} let g:mapleader = "," nnoremap :WhichKey ','
call which_key#register(',', "g:which_key_map")
let g:which_key_exit = ["\", "\", "\"]
Expected behavior I found on github many personal vim configs setting which_key_exit as a list of keys, so I am surprised it doesn't functionate on my config...