Re: GNU Screen and vim

2006-10-28 Thread Andy Harrison
On 10/28/06, Fabien Meghazi <[EMAIL PROTECTED]> wrote: > In your .vimrc, you could just add > if $TERM == "screen" > set term="rxvt-xpm" > endif > That might be better in order not to confuse other > applications... Yeah thanks ! This is a clean tip for my problem. I had tried to :set t

Re: GNU Screen and vim

2006-10-28 Thread Fabien Meghazi
In your .vimrc, you could just add if $TERM == "screen" set term="rxvt-xpm" endif That might be better in order not to confuse other applications... Yeah thanks ! This is a clean tip for my problem. I had tried to :set term=rxvt when vim was started without success so I gave up this way

Re: GNU Screen and vim

2006-10-28 Thread Thomas Köhler
Fabien Meghazi wrote: > I should have figured that on my own. Sorry for loosing your time. > Indeed the escape sequence is sent by screen. > So I tried to export TERM=rxvt-xpm and indeed, that worked. > So it's just vim handling escape sequence differently according to > TERM's value, and indeed my