comparison src/optiondefs.h @ 18354:9f51d0cef8da v8.1.2171

patch 8.1.2171: mouse support not always available Commit: https://github.com/vim/vim/commit/a1cb1d1dce14dd005797590721f1bcd0e7c3b35f Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 17 23:00:07 2019 +0200 patch 8.1.2171: mouse support not always available Problem: Mouse support not always available. Solution: Enable mouse support also in tiny version. Do not define FEAT_MOUSE_XTERM on MS-Windows (didn't really work).
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Oct 2019 23:15:04 +0200
parents a9cf41bcb5d6
children b9cf60801963
comparison
equal deleted inserted replaced
18353:c3a0f5d3c9d4 18354:9f51d0cef8da
2653 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT}, 2653 {(char_u *)TRUE, (char_u *)0L} SCTX_INIT},
2654 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF, 2654 {"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
2655 (char_u *)&p_tf, PV_NONE, 2655 (char_u *)&p_tf, PV_NONE,
2656 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, 2656 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
2657 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF, 2657 {"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
2658 #if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS)) 2658 #if defined(UNIX) || defined(VMS)
2659 (char_u *)&p_ttym, PV_NONE, 2659 (char_u *)&p_ttym, PV_NONE,
2660 #else 2660 #else
2661 (char_u *)NULL, PV_NONE, 2661 (char_u *)NULL, PV_NONE,
2662 #endif 2662 #endif
2663 {(char_u *)"", (char_u *)0L} SCTX_INIT}, 2663 {(char_u *)"", (char_u *)0L} SCTX_INIT},