comparison src/globals.h @ 18679:fd95d4dbeb37 v8.1.2331

patch 8.1.2331: the option.c file is still very big Commit: https://github.com/vim/vim/commit/7bae0b1bc84a95d565ffab38cf7f82ad21c656b6 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 21 22:14:18 2019 +0100 patch 8.1.2331: the option.c file is still very big Problem: The option.c file is still very big. Solution: Move a few functions to where they fit better. (Yegappan Lakshmanan, closes #4895)
author Bram Moolenaar <Bram@vim.org>
date Thu, 21 Nov 2019 22:15:03 +0100
parents df141c730008
children 6e3dc2d630c2
comparison
equal deleted inserted replaced
18678:cb4a4b71df4a 18679:fd95d4dbeb37
1247 // Whether 'keymodel' contains "stopsel" and "startsel". 1247 // Whether 'keymodel' contains "stopsel" and "startsel".
1248 EXTERN int km_stopsel INIT(= FALSE); 1248 EXTERN int km_stopsel INIT(= FALSE);
1249 EXTERN int km_startsel INIT(= FALSE); 1249 EXTERN int km_startsel INIT(= FALSE);
1250 1250
1251 #ifdef FEAT_CMDWIN 1251 #ifdef FEAT_CMDWIN
1252 EXTERN int cedit_key INIT(= -1); // key value of 'cedit' option
1253 EXTERN int cmdwin_type INIT(= 0); // type of cmdline window or 0 1252 EXTERN int cmdwin_type INIT(= 0); // type of cmdline window or 0
1254 EXTERN int cmdwin_result INIT(= 0); // result of cmdline window or 0 1253 EXTERN int cmdwin_result INIT(= 0); // result of cmdline window or 0
1255 #endif 1254 #endif
1256 1255
1257 EXTERN char_u no_lines_msg[] INIT(= N_("--No lines in buffer--")); 1256 EXTERN char_u no_lines_msg[] INIT(= N_("--No lines in buffer--"));