Open GoogleCodeExporter opened 9 years ago
Adding `set t_u7=` to the top of my vimrc as a workaround fixes it.
Original comment by dbarn...@google.com
on 2 Aug 2015 at 9:24
Oh, and it's a transient issue not consistently reproducible. I think it has
something to do with my machine being slow and/or using vim over SSH, but it
repros in xterm, gnome-term, etc.
Original comment by dbarn...@google.com
on 2 Aug 2015 at 9:26
You could try this: in src/term.c, change the length checks to one less:
if ((*T_CRV != NUL || *T_U7 != NUL)
&& ((tp[0] == ESC && len >= 2 && tp[1] == '[')
|| (tp[0] == CSI && len >= 1))
&& (VIM_ISDIGIT(*argp) || *argp == '>' || *argp == '?'))
Assuming that you only received ESC [ it would currently not check for a match,
it needs another character. Disadvantage: if you actually type ESC [ the same
would happen...
Original comment by brammool...@gmail.com
on 4 Aug 2015 at 12:04
Original issue reported on code.google.com by
dbarn...@google.com
on 2 Aug 2015 at 9:23Attachments: