0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

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:
Bram Moolenaar
2014-07-09 19:13:49 +02:00
parent 6bf5548df2
commit 0d1e8c1203
4 changed files with 18 additions and 4 deletions

View File

@@ -3780,9 +3780,6 @@ check_mouse_termcode()
# ifdef FEAT_MOUSE_URXVT
/* same as the dec mouse */
if (use_xterm_mouse() == 3
# ifdef FEAT_TERMRESPONSE
&& !did_request_esc_sequence()
# endif
# ifdef FEAT_GUI
&& !gui.in_use
# endif
@@ -3797,7 +3794,8 @@ check_mouse_termcode()
mch_setmouse(FALSE);
setmouse();
}
xterm_conflict_mouse = TRUE;
/* It's OK to request the xterm version for uxterm. */
resume_get_esc_sequence();
}
else
del_mouse_termcode(KS_URXVT_MOUSE);