comparison src/globals.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 d7b9c0b1ae3e
children 5dfd4bd66ad8
comparison
equal deleted inserted replaced
29880:bd3aac5d1d9e 29881:0cc9a3001717
1339 1339
1340 #ifdef FEAT_LANGMAP 1340 #ifdef FEAT_LANGMAP
1341 EXTERN char_u langmap_mapchar[256]; // mapping for language keys 1341 EXTERN char_u langmap_mapchar[256]; // mapping for language keys
1342 #endif 1342 #endif
1343 1343
1344 #ifdef FEAT_WILDMENU
1345 EXTERN int save_p_ls INIT(= -1); // Save 'laststatus' setting 1344 EXTERN int save_p_ls INIT(= -1); // Save 'laststatus' setting
1346 EXTERN int save_p_wmh INIT(= -1); // Save 'winminheight' setting 1345 EXTERN int save_p_wmh INIT(= -1); // Save 'winminheight' setting
1347 EXTERN int wild_menu_showing INIT(= 0); 1346 EXTERN int wild_menu_showing INIT(= 0);
1348 # define WM_SHOWN 1 // wildmenu showing 1347 #define WM_SHOWN 1 // wildmenu showing
1349 # define WM_SCROLLED 2 // wildmenu showing with scroll 1348 #define WM_SCROLLED 2 // wildmenu showing with scroll
1350 #endif
1351 1349
1352 #ifdef MSWIN 1350 #ifdef MSWIN
1353 EXTERN char_u toupper_tab[256]; // table for toupper() 1351 EXTERN char_u toupper_tab[256]; // table for toupper()
1354 EXTERN char_u tolower_tab[256]; // table for tolower() 1352 EXTERN char_u tolower_tab[256]; // table for tolower()
1355 EXTERN int found_register_arg INIT(= FALSE); 1353 EXTERN int found_register_arg INIT(= FALSE);