tpope / vim-rsi

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

a couple missing keybinds? #53

Closed nerd190 closed 2 years ago

nerd190 commented 3 years ago

Hi! thank you for all the great plugins! I noticed that sensible.vim defines two binds:


if empty(mapcheck('<C-U>', 'i'))
    inoremap <C-U> <C-G>u<C-U>
endif

if empty(mapcheck('<C-W>', 'i'))
    inoremap <C-W> <C-G>u<C-W>
endif

These are missing from rsi.vim, shouldn't these be added also if sensible.vim does not exist?

tpope commented 2 years ago

Feels like an orthogonal concern, no? The built-in <C-W> already deletes a word as in Readline.