So I was trying to follow up on one of your todos, by adding support for custom mappings instead of <c-@>.
if !exists("g:ctrlp_bdelete_map")
let g:ctrlp_bdelete_map = "<c-@>"
end
execute "nnoremap <buffer> <silent> ".g:ctrlp_bdelete_map." :call <sid>DeleteMarkedBuffers()<cr>"
Which ought to work, but seemingly no other combinations than <c-@> is coming through?
I'm suspecting ctrlp is doing something that might prevent other keys from working, maybe @kien knows whats going on here
So I was trying to follow up on one of your todos, by adding support for custom mappings instead of
<c-@>.Which ought to work, but seemingly no other combinations than
<c-@>is coming through?I'm suspecting ctrlp is doing something that might prevent other keys from working, maybe @kien knows whats going on here