I open my terminal and use Vim to open a new or old program, but after I click i to go into insert mode, my cursor keys and backspace key are not functioning properly. The backspace key just moves the pointer. The cursor keys spawn A and B, or just cause other chaos.
This just happened out of nowhere and it just does crazy things. Does anybody know what’s wrong, or if my terminal is just on the fritz? I tried completely removing Cygwin from my computer and re-installed it, but that did not correct the issue.
The reason for this happening is most likely how certain keys are treated in terminal.
From
:h xterm-cursor-keys
:Try, for example, typing
CTRL-v
then<left>
in insert mode. I believe you have^[OD
inserted, which is the same as<Esc>OD
. In short, when we press the left key, our terminal sends<Esc>
+O
+D
, which is then interpreted as<Left>
.This topic is rather complicated, and I myself don't fully understand. Options that might take part in this situation includes
timeout
,ttimeout
, mapping forEsc
, etc. Searching a bit also suggests the value ofTERM
can sometimes affect the situation.However, looking at a similar question on Unix&Linux stack exchange and your reporting Backspace not working, I suspect you don't have a
.vimrc
at all (that's not a bad thing!), making your vim vi-compatible.I want you to try:
:set compatible?
then Enter.compatible
is shown in the bottom of the terminal, then my guess is right, yay.:set nocompatible
, then Enter. Get into the insert mode, and try pressing cursor keys.If the
:set nocompatible
works, then you should create yourvimrc
file (search for relevant informations, there are plenty of them). You don't even have to writeset nocompatible
in the.vimrc
, because having.vimrc
automatically does that.EDIT: If this is the case, the specific option to look into is
esckeys
. This is set to off whennocompatible
. Its description from the help file is as follows:Anyway, I suggest using vim in nocompatible mode.