comparison src/optiondefs.h @ 18526:334b1f897f3a v8.1.2257

patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current window Commit: https://github.com/vim/vim/commit/ae20f340adc8c96aeec5cff5ef4f2129035ffca4 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 5 21:09:23 2019 +0100 patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current window Problem: MS-Windows GUI: scroll wheel always uses current window. Solution: Add the 'scrollfocus' option for MS-Windows.
author Bram Moolenaar <Bram@vim.org>
date Tue, 05 Nov 2019 21:15:04 +0100
parents b9cf60801963
children 8b0114ffde2b
comparison
equal deleted inserted replaced
18525:99adbfe3dde3 18526:334b1f897f3a
2145 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF, 2145 {"scroll", "scr", P_NUM|P_NO_MKRC|P_VI_DEF,
2146 (char_u *)VAR_WIN, PV_SCROLL, 2146 (char_u *)VAR_WIN, PV_SCROLL,
2147 {(char_u *)0L, (char_u *)0L} SCTX_INIT}, 2147 {(char_u *)0L, (char_u *)0L} SCTX_INIT},
2148 {"scrollbind", "scb", P_BOOL|P_VI_DEF, 2148 {"scrollbind", "scb", P_BOOL|P_VI_DEF,
2149 (char_u *)VAR_WIN, PV_SCBIND, 2149 (char_u *)VAR_WIN, PV_SCBIND,
2150 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
2151 {"scrollfocus", "scf", P_BOOL|P_VI_DEF,
2152 #if defined(MSWIN) && defined(FEAT_GUI)
2153 (char_u *)&p_scf, PV_NONE,
2154 #else
2155 (char_u *)NULL, PV_NONE,
2156 #endif
2150 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, 2157 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
2151 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM, 2158 {"scrolljump", "sj", P_NUM|P_VI_DEF|P_VIM,
2152 (char_u *)&p_sj, PV_NONE, 2159 (char_u *)&p_sj, PV_NONE,
2153 {(char_u *)1L, (char_u *)0L} SCTX_INIT}, 2160 {(char_u *)1L, (char_u *)0L} SCTX_INIT},
2154 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL, 2161 {"scrolloff", "so", P_NUM|P_VI_DEF|P_VIM|P_RALL,