Skip to content

Commit 8445570

Browse files
committed
updated for version 7.3.700
Problem: Cannot detect URXVT and SGR mouse support. Solution: add +mouse_urxvt and +mouse_sgr. (Hayaki Saito)
1 parent b187843 commit 8445570

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

src/eval.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12276,9 +12276,15 @@ f_has(argvars, rettv)
1227612276
# ifdef FEAT_MOUSE_PTERM
1227712277
"mouse_pterm",
1227812278
# endif
12279+
# ifdef FEAT_MOUSE_SGR
12280+
"mouse_sgr",
12281+
# endif
1227912282
# ifdef FEAT_SYSMOUSE
1228012283
"mouse_sysmouse",
1228112284
# endif
12285+
# ifdef FEAT_MOUSE_URXVT
12286+
"mouse_urxvt",
12287+
# endif
1228212288
# ifdef FEAT_MOUSE_XTERM
1228312289
"mouse_xterm",
1228412290
# endif

src/feature.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1038,8 +1038,10 @@
10381038
* +mouse_gpm Unix only: Include code for Linux console mouse
10391039
* handling.
10401040
* +mouse_pterm PTerm mouse support for QNX
1041+
* +mouse_sgr Unix only: Include code for for SGR-styled mouse.
10411042
* +mouse_sysmouse Unix only: Include code for FreeBSD and DragonFly
10421043
* console mouse handling.
1044+
* +mouse_urxvt Unix only: Include code for for urxvt mosue handling.
10431045
* +mouse Any mouse support (any of the above enabled).
10441046
*/
10451047
/* OS/2 and Amiga console have no mouse support */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,8 @@ static char *(features[]) =
719719

720720
static int included_patches[] =
721721
{ /* Add new patch number below this line */
722+
/**/
723+
700,
722724
/**/
723725
699,
724726
/**/

0 commit comments

Comments
 (0)