Problem: Termcodes test would fail in a very big terminal.
Solution: Bail out when the row is larger than what will work. (Dominique
Pelle, closes #4246)
let rowseparator = winheight(0) + 1
let row = rowseparator
let col = 1
+
+ if ttymouse_val ==# 'xterm' && row > 223
+ " When 'ttymouse' is 'xterm', row/col bigger than 223 are not supported.
+ continue
+ endif
+
call MouseLeftClick(row, col)
let row -= 1
let rowstatusline = winheight(0) + 1
let row = rowstatusline
let col = 1
+
+ if ttymouse_val ==# 'xterm' && row > 223
+ " When 'ttymouse' is 'xterm', row/col bigger than 223 are not supported.
+ continue
+ endif
+
call MouseLeftClick(row, col)
let row -= 1
call MouseLeftDrag(row, col)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1160,
/**/
1159,
/**/