comparison src/optiondefs.h @ 29881:0cc9a3001717 v9.0.0279

patch 9.0.0279: the tiny version has the popup menu but not 'wildmenu' Commit: https://github.com/vim/vim/commit/5416232707349d5f24294178f47544f2024b73ed Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 26 16:58:51 2022 +0100 patch 9.0.0279: the tiny version has the popup menu but not 'wildmenu' Problem: The tiny version has the popup menu but not 'wildmenu'. Solution: Graduate the wildmenu feature.
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Aug 2022 18:00:05 +0200
parents 77141226eb2e
children 3276298c67c5
comparison
equal deleted inserted replaced
29880:bd3aac5d1d9e 29881:0cc9a3001717
2756 {(char_u *)"", (char_u *)0L} SCTX_INIT}, 2756 {(char_u *)"", (char_u *)0L} SCTX_INIT},
2757 {"wildignorecase", "wic", P_BOOL|P_VI_DEF, 2757 {"wildignorecase", "wic", P_BOOL|P_VI_DEF,
2758 (char_u *)&p_wic, PV_NONE, 2758 (char_u *)&p_wic, PV_NONE,
2759 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, 2759 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
2760 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF, 2760 {"wildmenu", "wmnu", P_BOOL|P_VI_DEF,
2761 #ifdef FEAT_WILDMENU
2762 (char_u *)&p_wmnu, PV_NONE, 2761 (char_u *)&p_wmnu, PV_NONE,
2763 #else
2764 (char_u *)NULL, PV_NONE,
2765 #endif
2766 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT}, 2762 {(char_u *)FALSE, (char_u *)0L} SCTX_INIT},
2767 {"wildmode", "wim", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, 2763 {"wildmode", "wim", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP,
2768 (char_u *)&p_wim, PV_NONE, 2764 (char_u *)&p_wim, PV_NONE,
2769 {(char_u *)"full", (char_u *)0L} SCTX_INIT}, 2765 {(char_u *)"full", (char_u *)0L} SCTX_INIT},
2770 {"wildoptions", "wop", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP, 2766 {"wildoptions", "wop", P_STRING|P_VI_DEF|P_ONECOMMA|P_NODUP,