forked from aniani/vim
updated for version 7.4.359
Problem: When 'ttymouse' is set to 'uxterm' the xterm version is not
requested. (Tomas Janousek)
Solution: Do not mark uxterm as a conflict mouse and add
resume_get_esc_sequence().
This commit is contained in:
13
src/term.c
13
src/term.c
@@ -3330,6 +3330,19 @@ did_request_esc_sequence()
|
||||
return crv_status == CRV_SENT || u7_status == U7_SENT
|
||||
|| xt_index_out > xt_index_in;
|
||||
}
|
||||
|
||||
/*
|
||||
* If requesting the version was disabled in did_request_esc_sequence(),
|
||||
* enable it again.
|
||||
*/
|
||||
void
|
||||
resume_get_esc_sequence()
|
||||
{
|
||||
if (crv_status == 0)
|
||||
crv_status = CRV_GET;
|
||||
if (u7_status == 0)
|
||||
u7_status = U7_GET;
|
||||
}
|
||||
# endif
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user