mirror of
https://github.com/vim/vim.git
synced 2025-09-10 22:33:40 -04:00
updated for version 7.3.705
Problem: Mouse features are not sorted properly. (Tony Mechelynck) Solution: Put the mouse features in alphabetical order.
This commit is contained in:
parent
f00dc2627b
commit
707cfb82dc
@ -348,6 +348,7 @@ static char *(features[]) =
|
|||||||
# else
|
# else
|
||||||
"-mouse",
|
"-mouse",
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(UNIX) || defined(VMS)
|
#if defined(UNIX) || defined(VMS)
|
||||||
# ifdef FEAT_MOUSE_DEC
|
# ifdef FEAT_MOUSE_DEC
|
||||||
"+mouse_dec",
|
"+mouse_dec",
|
||||||
@ -369,27 +370,8 @@ static char *(features[]) =
|
|||||||
# else
|
# else
|
||||||
"-mouse_netterm",
|
"-mouse_netterm",
|
||||||
# endif
|
# endif
|
||||||
# ifdef FEAT_SYSMOUSE
|
|
||||||
"+mouse_sysmouse",
|
|
||||||
# else
|
|
||||||
"-mouse_sysmouse",
|
|
||||||
# endif
|
|
||||||
# ifdef FEAT_MOUSE_XTERM
|
|
||||||
"+mouse_xterm",
|
|
||||||
# else
|
|
||||||
"-mouse_xterm",
|
|
||||||
# endif
|
|
||||||
# ifdef FEAT_MOUSE_URXVT
|
|
||||||
"+mouse_urxvt",
|
|
||||||
# else
|
|
||||||
"-mouse_urxvt",
|
|
||||||
# endif
|
|
||||||
# ifdef FEAT_MOUSE_SGR
|
|
||||||
"+mouse_sgr",
|
|
||||||
# else
|
|
||||||
"-mouse_sgr",
|
|
||||||
# endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __QNX__
|
#ifdef __QNX__
|
||||||
# ifdef FEAT_MOUSE_PTERM
|
# ifdef FEAT_MOUSE_PTERM
|
||||||
"+mouse_pterm",
|
"+mouse_pterm",
|
||||||
@ -397,6 +379,30 @@ static char *(features[]) =
|
|||||||
"-mouse_pterm",
|
"-mouse_pterm",
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(UNIX) || defined(VMS)
|
||||||
|
# ifdef FEAT_MOUSE_SGR
|
||||||
|
"+mouse_sgr",
|
||||||
|
# else
|
||||||
|
"-mouse_sgr",
|
||||||
|
# endif
|
||||||
|
# ifdef FEAT_SYSMOUSE
|
||||||
|
"+mouse_sysmouse",
|
||||||
|
# else
|
||||||
|
"-mouse_sysmouse",
|
||||||
|
# endif
|
||||||
|
# ifdef FEAT_MOUSE_URXVT
|
||||||
|
"+mouse_urxvt",
|
||||||
|
# else
|
||||||
|
"-mouse_urxvt",
|
||||||
|
# endif
|
||||||
|
# ifdef FEAT_MOUSE_XTERM
|
||||||
|
"+mouse_xterm",
|
||||||
|
# else
|
||||||
|
"-mouse_xterm",
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef FEAT_MBYTE_IME
|
#ifdef FEAT_MBYTE_IME
|
||||||
# ifdef DYNAMIC_IME
|
# ifdef DYNAMIC_IME
|
||||||
"+multi_byte_ime/dyn",
|
"+multi_byte_ime/dyn",
|
||||||
@ -719,6 +725,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
705,
|
||||||
/**/
|
/**/
|
||||||
704,
|
704,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user