当我在插入模式下按下ctrl
+时h
,vim 会将字符剪切到左侧。我尝试过:
noremap h <NOP>
inoremap h <NOP>
noremap <C-h> <NOP>
inoremap <C-h> <NOP>
来禁用这种行为,但是它们都不起作用。
答案1
在此线程中找到了最终的解决方案: https://stackoverflow.com/questions/22936461/inoremap-not-working
根本原因就set paste
在我的 vimrc 中。