changeset 26460:caad9c0ba543 v8.2.3760

patch 8.2.3760: not automatically handling gnome terminal mouse like xterm Commit: https://github.com/vim/vim/commit/48873aebc05608e9e5e56b8628ae6d2789ab7c48 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 8 21:00:24 2021 +0000 patch 8.2.3760: not automatically handling gnome terminal mouse like xterm Problem: Not automatically handling gnome terminal mouse like xterm. Solution: Default 'ttymouse' to "xterm" and recognize Focus events. (issue #9296)
author Bram Moolenaar <Bram@vim.org>
date Wed, 08 Dec 2021 22:15:03 +0100
parents 12a676dfb7ea
children 97613c2162af
files src/os_unix.c src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -2340,6 +2340,7 @@ use_xterm_like_mouse(char_u *name)
 	    && (term_is_xterm
 		|| STRNICMP(name, "screen", 6) == 0
 		|| STRNICMP(name, "tmux", 4) == 0
+		|| STRNICMP(name, "gnome", 5) == 0
 		|| STRICMP(name, "st") == 0
 		|| STRNICMP(name, "st-", 3) == 0
 		|| STRNICMP(name, "stterm", 6) == 0));
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3760,
+/**/
     3759,
 /**/
     3758,