tpope / vim-rsi

rsi.vim: Readline style insertion
http://www.vim.org/scripts/script.php?script_id=4359
589 stars 36 forks source link

Why no C-k support #59

Open dwcoates opened 11 months ago

dwcoates commented 11 months ago

There's a conspicuous lack of C-k support. Is there a reason for this?

arnevm123 commented 9 months ago

You can easily map C-k if you want FYI

inoremap <C-K> <esc>cc
cnoremap <C-K> <C-c>:
appomsk commented 4 months ago

You can easily map C-k if you want FYI

inoremap <C-K> <esc>cc
cnoremap <C-K> <C-c>:

<C-k> in readline does not work that way. In the insert mode it may be <c-o>D but how to do such in the command mode I don know. And it could be usefult there.