I would like to map ctrl+leader key. Is it possible?
Tried: :nnoremap <c-leader> :CtrlP<CR>
And it does not work.
(ctrlp bindings conflict with yankring bindings)
<Leader>
is a special key notation in Vim; as such, it cannot be combined with modifiers such as C-
. Assuming the default setting for it (i.e. \
), you can use this:
nnoremap <c-\> :CtrlP<CR>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With