forked from aniani/vim
patch 8.0.1068: vandyke SecureCRT terminal can't handle cursor mode request
Problem: Vandyke SecureCRT terminal can't handle cursor mode request. (Steven Hartland) Solution: Fix pointer computation. (closes #2008)
This commit is contained in:
parent
e723c42836
commit
618d6d277e
@ -4583,7 +4583,7 @@ check_termcode(
|
||||
/* PuTTY sends 0;136;0
|
||||
* vandyke SecureCRT sends 1;136;0 */
|
||||
if (version == 136
|
||||
&& STRNCMP(tp + extra - 3, ";136;0c", 8) == 0)
|
||||
&& STRNCMP(tp + extra - 1, ";136;0c", 7) == 0)
|
||||
is_not_xterm = TRUE;
|
||||
|
||||
/* Konsole sends 0;115;0 */
|
||||
|
@ -769,6 +769,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1068,
|
||||
/**/
|
||||
1067,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user