8

I am using vim under Terminal.app and just a few days ago the backspace key stopped working. Whenever I am in insert mode, the backspace key does nothing.

However, when I am in normal mode, the backspace key moves the cursor back a character. In visual mode, the backspace key deletes selected text.

My .vimrc.

Is there any way to get the backspace key working in insert mode again?

Gareth
  • 19,080
Wuffers
  • 19,619

1 Answers1

11

If you didn't change anything, it's odd that it was working and now isn't. That aside, I normally add this to get the most out of the backspace key with Vim:

set bs=indent,eol,start     " Backspace over everything in insert mode
Telemachus
  • 7,065