退格键在Vim中不起作用


8

我在Terminal.app下使用vim,几天前,退格键停止工作。每当我处于插入模式时,退格键都不会执行任何操作。

但是,当我处于普通模式时,退格键会将光标移回一个字符。在可视模式下,退格键将删除选定的文本。

我的.vimrc

有什么办法可以使退格键再次在插入模式下工作?

Answers:


11

如果您没有进行任何更改,那么奇怪的是它正在工作,而现在却没有。除此之外,我通常添加此代码是为了通过Vim充分利用Backspace键:

set bs=indent,eol,start     " Backspace over everything in insert mode
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.