I always wanted to ask this question but thought it was somehow my fault. I use Vim at two places: one in Ubuntu and the other in Cygwin.

Ubuntu: VIM - Vi IMproved 7.1 (2007 May 12, compiled May  6 2008 16:24:07)
Cygwin: VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Aug 19 2010 13:06:02)

In 7.1, when I go into the Insert mode using Esc-i, I can use the arrow keys and use it as a normal text editor like nano. However, in the other version, 7.3, when I enter the insert mode, I can no longer use my arrow keys or space. When I hit any of them, I get characters like C, D etc. for arrow keys. I might be missing something here but am not sure why the discrepancy and if I can revert back to the way it was before. Any suggestions?

link|improve this question

Sounds like a terminal issue. – Brian Rasmussen Jul 22 '11 at 8:21
Are you running the cygwin vim in a cmd shell, or the rxvt shell? – Keith Jul 22 '11 at 9:24
@Keith: I am using the mintty shell for cygwin – Legend Jul 22 '11 at 18:01
Try running it in the rxvt terminal. – Keith Jul 22 '11 at 21:47
@Keith: Tried it. Facing the same problem. – Legend Jul 23 '11 at 1:15
show 1 more comment
feedback

3 Answers

Usually doing :set nocompatible works: Linux vi arrow keys broken in insert mode

In this case I tried it out in cygwin and you I also needed :set term=ansi to get it to work.

So viraptor pretty much had it, except you want to set NOcompatible:

:set nocompatible
:set term=ansi
link|improve this answer
feedback

Try:

:set compatible
:set term=ansi

(or other terminal - windows one might need "win32")

link|improve this answer
Hmm.. it is strange but nothing changes when I do that. When I set the terminal to ansi, however, it slows down drastically. – Legend Jul 22 '11 at 18:01
feedback

Don't know if you figured this out. Unfortunately I can't yet add this as a comment, so adding it as answer, try:

:set nocompatible

by itself -- did the trick for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.