diff src/term.c @ 12373:71524e1a717b v8.0.1066

patch 8.0.1066: some terminals can't handle requesting cursor mode commit https://github.com/vim/vim/commit/2e49b6b20c3d7229edf41ac03931ce32ce0f7bd8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 6 22:08:16 2017 +0200 patch 8.0.1066: some terminals can't handle requesting cursor mode Problem: Some terminals can't handle requesting cursor mode. (Steven Hartland) Solution: Recognize vandyke SecureCRT. (closes #2008)
author Christian Brabandt <cb@256bit.org>
date Wed, 06 Sep 2017 22:15:04 +0200
parents c83669fb7601
children 5d543a5fb223
line wrap: on
line diff
--- a/src/term.c
+++ b/src/term.c
@@ -4580,9 +4580,10 @@ check_termcode(
 			if (col >= 2500)
 			    is_not_xterm = TRUE;
 
-			/* PuTTY sends 0;136;0 */
+			/* PuTTY sends 0;136;0
+			 * vandyke SecureCRT sends 1;136;0 */
 			if (version == 136
-				&& STRNCMP(tp + extra - 2, "0;136;0c", 8) == 0)
+				&& STRNCMP(tp + extra - 3, ";136;0c", 8) == 0)
 			    is_not_xterm = TRUE;
 
 			/* Konsole sends 0;115;0 */