blob: 3e8b7532e023665a9708a3c147fc390464088f95 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8
9/*
10 * definition of global variables
11 */
12
13/*
14 * Number of Rows and Columns in the screen.
15 * Must be long to be able to use them as options in option.c.
16 * Note: Use screen_Rows and screen_Columns to access items in ScreenLines[].
17 * They may have different values when the screen wasn't (re)allocated yet
18 * after setting Rows or Columns (e.g., when starting up).
19 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +020020EXTERN long Rows // nr of rows in the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +000021#ifdef DO_INIT
Bram Moolenaar4f974752019-02-17 17:44:42 +010022# if defined(MSWIN)
Bram Moolenaar4c5678f2022-11-30 18:12:19 +000023 = 25L
Bram Moolenaar071d4272004-06-13 20:20:40 +000024# else
Bram Moolenaar4c5678f2022-11-30 18:12:19 +000025 = 24L
Bram Moolenaar071d4272004-06-13 20:20:40 +000026# endif
27#endif
Bram Moolenaar4c5678f2022-11-30 18:12:19 +000028 ;
Bram Moolenaar1ccaa352019-08-02 22:08:25 +020029EXTERN long Columns INIT(= 80); // nr of columns in the screen
Bram Moolenaar071d4272004-06-13 20:20:40 +000030
31/*
32 * The characters that are currently on the screen are kept in ScreenLines[].
33 * It is a single block of characters, the size of the screen plus one line.
34 * The attributes for those characters are kept in ScreenAttrs[].
Bram Moolenaarb9081882022-07-09 04:56:24 +010035 * The byte offset in the line is kept in ScreenCols[].
Bram Moolenaar071d4272004-06-13 20:20:40 +000036 *
37 * "LineOffset[n]" is the offset from ScreenLines[] for the start of line 'n'.
Bram Moolenaarb9081882022-07-09 04:56:24 +010038 * The same value is used for ScreenLinesUC[], ScreenAttrs[] and ScreenCols[].
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000039 *
40 * Note: before the screen is initialized and when out of memory these can be
41 * NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +000042 */
43EXTERN schar_T *ScreenLines INIT(= NULL);
44EXTERN sattr_T *ScreenAttrs INIT(= NULL);
Bram Moolenaarb9081882022-07-09 04:56:24 +010045EXTERN colnr_T *ScreenCols INIT(= NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046EXTERN unsigned *LineOffset INIT(= NULL);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +020047EXTERN char_u *LineWraps INIT(= NULL); // line wraps to next line
Bram Moolenaar071d4272004-06-13 20:20:40 +000048
Bram Moolenaar071d4272004-06-13 20:20:40 +000049/*
50 * When using Unicode characters (in UTF-8 encoding) the character in
51 * ScreenLinesUC[] contains the Unicode for the character at this position, or
52 * NUL when the character in ScreenLines[] is to be used (ASCII char).
53 * The composing characters are to be drawn on top of the original character.
Bram Moolenaarfff2bee2010-05-15 13:56:02 +020054 * ScreenLinesC[0][off] is only to be used when ScreenLinesUC[off] != 0.
Bram Moolenaar071d4272004-06-13 20:20:40 +000055 * Note: These three are only allocated when enc_utf8 is set!
56 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +020057EXTERN u8char_T *ScreenLinesUC INIT(= NULL); // decoded UTF-8 characters
58EXTERN u8char_T *ScreenLinesC[MAX_MCO]; // composing characters
59EXTERN int Screen_mco INIT(= 0); // value of p_mco used when
60 // allocating ScreenLinesC[]
Bram Moolenaar071d4272004-06-13 20:20:40 +000061
Bram Moolenaar1ccaa352019-08-02 22:08:25 +020062// Only used for euc-jp: Second byte of a character that starts with 0x8e.
63// These are single-width.
Bram Moolenaar071d4272004-06-13 20:20:40 +000064EXTERN schar_T *ScreenLines2 INIT(= NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
Bram Moolenaard1f56e62006-02-22 21:25:37 +000066/*
Bram Moolenaarb9081882022-07-09 04:56:24 +010067 * One screen line to be displayed. Points into ScreenLines.
Bram Moolenaar7528d1f2019-09-19 23:06:20 +020068 */
69EXTERN schar_T *current_ScreenLine INIT(= NULL);
70
71/*
72 * Last known cursor position.
73 * Positioning the cursor is reduced by remembering the last position.
74 * Mostly used by windgoto() and screen_char().
75 */
76EXTERN int screen_cur_row INIT(= 0);
77EXTERN int screen_cur_col INIT(= 0);
78
79#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar368137a2022-05-31 13:43:12 +010080// used for 'hlsearch' highlight matching
81EXTERN match_T screen_search_hl;
82
83// last lnum where CurSearch was displayed
84EXTERN linenr_T search_hl_has_cursor_lnum INIT(= 0);
85
86// don't use 'hlsearch' temporarily
87EXTERN int no_hlsearch INIT(= FALSE);
Bram Moolenaar7528d1f2019-09-19 23:06:20 +020088#endif
89
90#ifdef FEAT_FOLDING
91EXTERN foldinfo_T win_foldinfo; // info for 'foldcolumn'
92#endif
93
94// Flag that is set when drawing for a callback, not from the main command
95// loop.
96EXTERN int redrawing_for_callback INIT(= 0);
97
98/*
Bram Moolenaard1f56e62006-02-22 21:25:37 +000099 * Indexes for tab page line:
100 * N > 0 for label of tab page N
101 * N == 0 for no label
102 * N < 0 for closing tab page -N
103 * N == -999 for closing current tab page
104 */
105EXTERN short *TabPageIdxs INIT(= NULL);
Bram Moolenaarf740b292006-02-16 22:11:02 +0000106
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100107#ifdef FEAT_PROP_POPUP
Bram Moolenaar33796b32019-06-08 16:01:13 +0200108// Array with size Rows x Columns containing zindex of popups.
109EXTERN short *popup_mask INIT(= NULL);
Bram Moolenaar4c063a02019-06-10 21:24:12 +0200110EXTERN short *popup_mask_next INIT(= NULL);
Bram Moolenaar32aa1022019-11-02 22:54:41 +0100111// Array with flags for transparent cells of current popup.
Bram Moolenaarc662ec92019-06-23 00:15:57 +0200112EXTERN char *popup_transparent INIT(= NULL);
Bram Moolenaar33796b32019-06-08 16:01:13 +0200113
114// Flag set to TRUE when popup_mask needs to be updated.
115EXTERN int popup_mask_refresh INIT(= TRUE);
116
117// Tab that was used to fill popup_mask.
118EXTERN tabpage_T *popup_mask_tab INIT(= NULL);
119
120// Zindex in for screen_char(): if lower than the value in "popup_mask"
121// drawing the character is skipped.
122EXTERN int screen_zindex INIT(= 0);
123#endif
124
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200125EXTERN int screen_Rows INIT(= 0); // actual size of ScreenLines[]
126EXTERN int screen_Columns INIT(= 0); // actual size of ScreenLines[]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127
128/*
129 * When vgetc() is called, it sets mod_mask to the set of modifiers that are
Bram Moolenaar68b76a62005-03-25 21:53:48 +0000130 * held down based on the MOD_MASK_* symbols that are read first.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 */
Bram Moolenaarb42c0d52020-05-29 22:41:41 +0200132EXTERN int mod_mask INIT(= 0); // current key modifiers
133
134// The value of "mod_mask" and the unomdified character before calling
135// merge_modifyOtherKeys().
136EXTERN int vgetc_mod_mask INIT(= 0);
137EXTERN int vgetc_char INIT(= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138
139/*
140 * Cmdline_row is the row where the command line starts, just below the
141 * last window.
142 * When the cmdline gets longer than the available space the screen gets
143 * scrolled up. After a CTRL-D (show matches), after hitting ':' after
144 * "hit return", and for the :global command, the command line is
145 * temporarily moved. The old position is restored with the next call to
146 * update_screen().
147 */
148EXTERN int cmdline_row;
149
Bram Moolenaar4c25bd72019-04-20 23:38:07 +0200150EXTERN int redraw_cmdline INIT(= FALSE); // cmdline must be redrawn
151EXTERN int redraw_mode INIT(= FALSE); // mode must be redrawn
152EXTERN int clear_cmdline INIT(= FALSE); // cmdline must be cleared
153EXTERN int mode_displayed INIT(= FALSE); // mode is being displayed
154EXTERN int no_win_do_lines_ins INIT(= FALSE); // don't insert lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155#if defined(FEAT_CRYPT) || defined(FEAT_EVAL)
Bram Moolenaar4c25bd72019-04-20 23:38:07 +0200156EXTERN int cmdline_star INIT(= FALSE); // cmdline is crypted
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157#endif
Bram Moolenaar8ada17c2006-01-19 22:16:24 +0000158
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200159EXTERN int exec_from_reg INIT(= FALSE); // executing register
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200161EXTERN int screen_cleared INIT(= FALSE); // screen has been cleared
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162
163/*
164 * When '$' is included in 'cpoptions' option set:
165 * When a change command is given that deletes only part of a line, a dollar
166 * is put at the end of the changed text. dollar_vcol is set to the virtual
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100167 * column of this '$'. -1 is used to indicate no $ is being displayed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168 */
Bram Moolenaar76b9b362012-02-04 23:35:00 +0100169EXTERN colnr_T dollar_vcol INIT(= -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000172 * Variables for Insert mode completion.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174
Bram Moolenaare2c453d2019-08-21 14:37:09 +0200175EXTERN char_u *edit_submode INIT(= NULL); // msg for CTRL-X submode
176EXTERN char_u *edit_submode_pre INIT(= NULL); // prepended to edit_submode
177EXTERN char_u *edit_submode_extra INIT(= NULL);// appended to edit_submode
178EXTERN hlf_T edit_submode_highl; // highl. method for extra info
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179
180/*
181 * Functions for putting characters in the command line,
182 * while keeping ScreenLines[] updated.
183 */
184#ifdef FEAT_RIGHTLEFT
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200185EXTERN int cmdmsg_rl INIT(= FALSE); // cmdline is drawn right to left
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186#endif
187EXTERN int msg_col;
188EXTERN int msg_row;
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200189EXTERN int msg_scrolled; // Number of screen lines that windows have
190 // scrolled because of printing messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000191EXTERN int msg_scrolled_ign INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200192 // when TRUE don't set need_wait_return in
193 // msg_puts_attr() when msg_scrolled is
194 // non-zero
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200196EXTERN char_u *keep_msg INIT(= NULL); // msg to be shown after redraw
197EXTERN int keep_msg_attr INIT(= 0); // highlight attr for keep_msg
198EXTERN int keep_msg_more INIT(= FALSE); // keep_msg was set by msgmore()
199EXTERN int need_fileinfo INIT(= FALSE);// do fileinfo() after redraw
200EXTERN int msg_scroll INIT(= FALSE); // msg_start() will scroll
201EXTERN int msg_didout INIT(= FALSE); // msg_outstr() was used in line
202EXTERN int msg_didany INIT(= FALSE); // msg_outstr() was used at all
203EXTERN int msg_nowait INIT(= FALSE); // don't wait for this msg
204EXTERN int emsg_off INIT(= 0); // don't display errors for now,
205 // unless 'debug' is set.
206EXTERN int info_message INIT(= FALSE); // printing informative message
207EXTERN int msg_hist_off INIT(= FALSE); // don't add messages to history
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208#ifdef FEAT_EVAL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200209EXTERN int need_clr_eos INIT(= FALSE); // need to clear text before
210 // displaying a message.
211EXTERN int emsg_skip INIT(= 0); // don't display errors for
212 // expression that is skipped
213EXTERN int emsg_severe INIT(= FALSE); // use message of next of several
214 // emsg() calls for throw
Bram Moolenaar9b7bf9e2020-07-11 22:14:59 +0200215// used by assert_fails()
Bram Moolenaar9b7bf9e2020-07-11 22:14:59 +0200216EXTERN char_u *emsg_assert_fails_msg INIT(= NULL);
Bram Moolenaar1d634542020-08-18 13:41:50 +0200217EXTERN long emsg_assert_fails_lnum INIT(= 0);
Bram Moolenaar9bd5d872020-09-06 21:47:48 +0200218EXTERN char_u *emsg_assert_fails_context INIT(= NULL);
Bram Moolenaar9b7bf9e2020-07-11 22:14:59 +0200219
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200220EXTERN int did_endif INIT(= FALSE); // just had ":endif"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221#endif
Bram Moolenaar4997f2a2022-10-13 14:00:45 +0100222EXTERN int did_emsg; // incremented by emsg() when a
223 // message is displayed or thrown
Bram Moolenaare723c422017-09-06 23:40:10 +0200224#ifdef FEAT_EVAL
Bram Moolenaar599410c2021-04-10 14:03:43 +0200225EXTERN int did_emsg_silent INIT(= 0); // incremented by emsg() when
226 // emsg_silent was set and did_emsg
227 // is not incremented
Bram Moolenaar56602ba2020-12-05 21:22:08 +0100228EXTERN int did_emsg_def; // set by emsg() when emsg_silent
229 // is set before calling a function
Bram Moolenaareeece9e2020-11-20 19:26:48 +0100230EXTERN int did_emsg_cumul; // cumulative did_emsg, increased
231 // when did_emsg is reset.
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200232EXTERN int called_vim_beep; // set if vim_beep() is called
Bram Moolenaar88c89c72021-08-14 14:01:05 +0200233EXTERN int uncaught_emsg; // number of times emsg() was
234 // called and did show a message
Bram Moolenaare723c422017-09-06 23:40:10 +0200235#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200236EXTERN int did_emsg_syntax; // did_emsg set because of a
237 // syntax error
Bram Moolenaar53989552019-12-23 22:59:18 +0100238EXTERN int called_emsg; // always incremented by emsg()
Bram Moolenaar37fef162022-08-29 18:16:32 +0100239EXTERN int in_echowindow; // executing ":echowindow"
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200240EXTERN int ex_exitval INIT(= 0); // exit value for ex mode
241EXTERN int emsg_on_display INIT(= FALSE); // there is an error message
242EXTERN int rc_did_emsg INIT(= FALSE); // vim_regcomp() called emsg()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200244EXTERN int no_wait_return INIT(= 0); // don't wait for return for now
245EXTERN int need_wait_return INIT(= 0); // need to wait for return later
246EXTERN int did_wait_return INIT(= FALSE); // wait_return() was used and
247 // nothing written since then
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200248EXTERN int need_maketitle INIT(= TRUE); // call maketitle() soon
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200250EXTERN int quit_more INIT(= FALSE); // 'q' hit at "--more--" msg
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200251#if defined(UNIX) || defined(VMS) || defined(MACOS_X)
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200252EXTERN int newline_on_exit INIT(= FALSE); // did msg in altern. screen
253EXTERN int intr_char INIT(= 0); // extra interrupt character
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254#endif
255#if (defined(UNIX) || defined(VMS)) && defined(FEAT_X11)
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200256EXTERN int x_no_connect INIT(= FALSE); // don't connect to X server
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257# if defined(FEAT_CLIENTSERVER)
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200258EXTERN int x_force_connect INIT(= FALSE); // Do connect to X server.
259 // Overrules x_no_connect and
260 // "exclude" in 'clipboard'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261# endif
262#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200263EXTERN int ex_keep_indent INIT(= FALSE); // getexmodeline(): keep indent
264EXTERN int vgetc_busy INIT(= 0); // when inside vgetc() then > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200266EXTERN int didset_vim INIT(= FALSE); // did set $VIM ourselves
267EXTERN int didset_vimruntime INIT(= FALSE); // idem for $VIMRUNTIME
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268
269/*
270 * Lines left before a "more" message. Ex mode needs to be able to reset this
271 * after you type something.
272 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200273EXTERN int lines_left INIT(= -1); // lines left for listing
274EXTERN int msg_no_more INIT(= FALSE); // don't use more prompt, truncate
275 // messages
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100277/*
278 * Stack of execution contexts. Each entry is an estack_T.
279 * Current context is at ga_len - 1.
280 */
Bram Moolenaarea8b7ae2020-01-01 15:46:47 +0100281EXTERN garray_T exestack INIT5(0, 0, sizeof(estack_T), 50, NULL);
Bram Moolenaar0bd8d052021-11-25 13:39:28 +0000282#define HAVE_SOURCING_INFO (exestack.ga_data != NULL && exestack.ga_len > 0)
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100283// name of error message source
284#define SOURCING_NAME (((estack_T *)exestack.ga_data)[exestack.ga_len - 1].es_name)
285// line number in the message source or zero
286#define SOURCING_LNUM (((estack_T *)exestack.ga_data)[exestack.ga_len - 1].es_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287
Bram Moolenaar9b8d6222020-12-28 18:26:00 +0100288// Script CTX being sourced or was sourced to define the current function.
289EXTERN sctx_T current_sctx
290#ifdef FEAT_EVAL
291 INIT4(0, 0, 0, 0);
292#else
293 INIT(= {0});
294#endif
295
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296#ifdef FEAT_EVAL
Bram Moolenaarf4e8cdd2020-10-12 22:07:13 +0200297// whether inside compile_def_function()
298EXTERN int estack_compiling INIT(= FALSE);
299
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200300EXTERN int ex_nesting_level INIT(= 0); // nesting level
301EXTERN int debug_break_level INIT(= -1); // break below this level
302EXTERN int debug_did_msg INIT(= FALSE); // did "debug mode" message
303EXTERN int debug_tick INIT(= 0); // breakpoint change count
304EXTERN int debug_backtrace_level INIT(= 0); // breakpoint backtrace level
Bram Moolenaar05159a02005-02-26 23:04:13 +0000305# ifdef FEAT_PROFILE
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200306EXTERN int do_profiling INIT(= PROF_NONE); // PROF_ values
Bram Moolenaar05159a02005-02-26 23:04:13 +0000307# endif
Bram Moolenaar21b9e972020-01-26 19:26:46 +0100308EXTERN garray_T script_items INIT5(0, 0, sizeof(scriptitem_T *), 20, NULL);
309# define SCRIPT_ITEM(id) (((scriptitem_T **)script_items.ga_data)[(id) - 1])
Bram Moolenaare3d46852020-08-29 13:39:17 +0200310# define SCRIPT_ID_VALID(id) ((id) > 0 && (id) <= script_items.ga_len)
311# define SCRIPT_SV(id) (SCRIPT_ITEM(id)->sn_vars)
312# define SCRIPT_VARS(id) (SCRIPT_SV(id)->sv_dict.dv_hashtab)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100313
314# define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315
316/*
317 * The exception currently being thrown. Used to pass an exception to
318 * a different cstack. Also used for discarding an exception before it is
319 * caught or made pending. Only valid when did_throw is TRUE.
320 */
321EXTERN except_T *current_exception;
322
323/*
324 * did_throw: An exception is being thrown. Reset when the exception is caught
325 * or as long as it is pending in a finally clause.
326 */
327EXTERN int did_throw INIT(= FALSE);
328
329/*
330 * need_rethrow: set to TRUE when a throw that cannot be handled in do_cmdline()
331 * must be propagated to the cstack of the previously called do_cmdline().
332 */
333EXTERN int need_rethrow INIT(= FALSE);
334
335/*
336 * check_cstack: set to TRUE when a ":finish" or ":return" that cannot be
337 * handled in do_cmdline() must be propagated to the cstack of the previously
338 * called do_cmdline().
339 */
340EXTERN int check_cstack INIT(= FALSE);
341
342/*
343 * Number of nested try conditionals (across function calls and ":source"
344 * commands).
345 */
346EXTERN int trylevel INIT(= 0);
347
348/*
349 * When "force_abort" is TRUE, always skip commands after an error message,
Bram Moolenaarf4c01102005-01-05 22:08:40 +0000350 * even after the outermost ":endif", ":endwhile" or ":endfor" or for a
Bram Moolenaar2bb8df22007-05-10 17:26:28 +0000351 * function without the "abort" flag. It is set to TRUE when "trylevel" is
Bram Moolenaarf4c01102005-01-05 22:08:40 +0000352 * non-zero (and ":silent!" was not used) or an exception is being thrown at
353 * the time an error is detected. It is set to FALSE when "trylevel" gets
354 * zero again and there was no error or interrupt or throw.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355 */
356EXTERN int force_abort INIT(= FALSE);
357
358/*
Bram Moolenaar7bff3132007-05-06 12:34:30 +0000359 * "msg_list" points to a variable in the stack of do_cmdline() which keeps
360 * the list of arguments of several emsg() calls, one of which is to be
361 * converted to an error exception immediately after the failing command
362 * returns. The message to be used for the exception value is pointed to by
363 * the "throw_msg" field of the first element in the list. It is usually the
364 * same as the "msg" field of that element, but can be identical to the "msg"
365 * field of a later list element, when the "emsg_severe" flag was set when the
366 * emsg() call was made.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367 */
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200368EXTERN msglist_T **msg_list INIT(= NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369
370/*
371 * suppress_errthrow: When TRUE, don't convert an error to an exception. Used
372 * when displaying the interrupt message or reporting an exception that is still
373 * uncaught at the top level (which has already been discarded then). Also used
374 * for the error message when no exception can be thrown.
375 */
376EXTERN int suppress_errthrow INIT(= FALSE);
377
378/*
379 * The stack of all caught and not finished exceptions. The exception on the
380 * top of the stack is the one got by evaluation of v:exception. The complete
381 * stack of all caught and pending exceptions is embedded in the various
382 * cstacks; the pending exceptions, however, are not on the caught stack.
383 */
384EXTERN except_T *caught_stack INIT(= NULL);
385
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +0000386/*
387 * Garbage collection can only take place when we are sure there are no Lists
Bram Moolenaar9fecb462006-09-05 10:59:47 +0000388 * or Dictionaries being used internally. This is flagged with
389 * "may_garbage_collect" when we are at the toplevel.
390 * "want_garbage_collect" is set by the garbagecollect() function, which means
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +0000391 * we do garbage collection before waiting for a char at the toplevel.
392 * "garbage_collect_at_exit" indicates garbagecollect(1) was called.
393 */
Bram Moolenaar9fecb462006-09-05 10:59:47 +0000394EXTERN int may_garbage_collect INIT(= FALSE);
395EXTERN int want_garbage_collect INIT(= FALSE);
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +0000396EXTERN int garbage_collect_at_exit INIT(= FALSE);
Bram Moolenaar9fecb462006-09-05 10:59:47 +0000397
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100398
Bram Moolenaarfa103972022-09-29 19:14:42 +0100399// Array with predefined commonly used types.
400//
401// For each entry of a regular type the next one has the "const" version.
402// E.g. "&t_const_bool == &t_bool + 1"
Bram Moolenaar59618fe2021-12-21 12:32:17 +0000403
Bram Moolenaarfa103972022-09-29 19:14:42 +0100404// t_unknown - used for when the type is really unknown, e.g. global variables.
405// Also for when a function may or may not return something.
406#define t_unknown (static_types[0])
407#define t_const_unknown (static_types[1])
Bram Moolenaar59618fe2021-12-21 12:32:17 +0000408
Bram Moolenaarfa103972022-09-29 19:14:42 +0100409// t_any - used for when the type can be anything, but excludes "void".
410#define t_any (static_types[2])
411#define t_const_any (static_types[3])
Bram Moolenaar59618fe2021-12-21 12:32:17 +0000412
Bram Moolenaarfa103972022-09-29 19:14:42 +0100413// t_void - used for a function not returning anything.
414#define t_void (static_types[4])
415#define t_const_void (static_types[5])
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100416
Bram Moolenaarfa103972022-09-29 19:14:42 +0100417#define t_bool (static_types[6])
418#define t_const_bool (static_types[7])
Bram Moolenaar74f4a962021-06-17 21:03:07 +0200419
Bram Moolenaarfa103972022-09-29 19:14:42 +0100420#define t_null (static_types[8])
421#define t_const_null (static_types[9])
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100422
Bram Moolenaarfa103972022-09-29 19:14:42 +0100423#define t_none (static_types[10])
424#define t_const_none (static_types[11])
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100425
Bram Moolenaarfa103972022-09-29 19:14:42 +0100426#define t_number (static_types[12])
427#define t_const_number (static_types[13])
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100428
Bram Moolenaarfa103972022-09-29 19:14:42 +0100429// t_number_bool - number that can be used as a bool
430#define t_number_bool (static_types[14])
431#define t_const_number_bool (static_types[15])
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100432
Bram Moolenaar47bba532023-01-20 18:49:46 +0000433// t_number_float - number that can be used as a float
434#define t_number_float (static_types[16])
435#define t_const_number_float (static_types[17])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100436
Bram Moolenaar47bba532023-01-20 18:49:46 +0000437#define t_float (static_types[18])
438#define t_const_float (static_types[19])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100439
Bram Moolenaar47bba532023-01-20 18:49:46 +0000440#define t_string (static_types[20])
441#define t_const_string (static_types[21])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100442
Bram Moolenaar47bba532023-01-20 18:49:46 +0000443#define t_blob (static_types[22])
444#define t_const_blob (static_types[23])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100445
Bram Moolenaar47bba532023-01-20 18:49:46 +0000446#define t_blob_null (static_types[24])
447#define t_const_blob_null (static_types[25])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100448
Bram Moolenaar47bba532023-01-20 18:49:46 +0000449#define t_job (static_types[26])
450#define t_const_job (static_types[27])
451
452#define t_channel (static_types[28])
453#define t_const_channel (static_types[29])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100454
455// t_number_or_string - Special value used for @#.
Bram Moolenaar47bba532023-01-20 18:49:46 +0000456#define t_number_or_string (static_types[30])
457#define t_const_number_or_string (static_types[31])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100458
459// t_func_unknown - function with any arguments and no or unknown return value
Bram Moolenaar47bba532023-01-20 18:49:46 +0000460#define t_func_unknown (static_types[32])
461#define t_const_func_unknown (static_types[33])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100462
463// t_func_void - function with any arguments and no return value
Bram Moolenaar47bba532023-01-20 18:49:46 +0000464#define t_func_void (static_types[34])
465#define t_const_func_void (static_types[35])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100466
Bram Moolenaar47bba532023-01-20 18:49:46 +0000467#define t_func_any (static_types[36])
468#define t_const_func_any (static_types[37])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100469
Bram Moolenaar47bba532023-01-20 18:49:46 +0000470#define t_func_number (static_types[38])
471#define t_const_func_number (static_types[39])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100472
Bram Moolenaar47bba532023-01-20 18:49:46 +0000473#define t_func_string (static_types[40])
474#define t_const_func_string (static_types[41])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100475
Bram Moolenaar47bba532023-01-20 18:49:46 +0000476#define t_func_bool (static_types[42])
477#define t_const_func_bool (static_types[43])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100478
479// t_func_0_void - function without arguments and nor return value
Bram Moolenaar47bba532023-01-20 18:49:46 +0000480#define t_func_0_void (static_types[44])
481#define t_const_func_0_void (static_types[45])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100482
Bram Moolenaar47bba532023-01-20 18:49:46 +0000483#define t_func_0_any (static_types[46])
484#define t_const_func_0_any (static_types[47])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100485
Bram Moolenaar47bba532023-01-20 18:49:46 +0000486#define t_func_0_number (static_types[48])
487#define t_const_func_0_number (static_types[49])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100488
Bram Moolenaar47bba532023-01-20 18:49:46 +0000489#define t_func_0_string (static_types[50])
490#define t_const_func_0_string (static_types[51])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100491
Bram Moolenaar47bba532023-01-20 18:49:46 +0000492#define t_list_any (static_types[52])
493#define t_const_list_any (static_types[53])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100494
Bram Moolenaar47bba532023-01-20 18:49:46 +0000495#define t_dict_any (static_types[54])
496#define t_const_dict_any (static_types[55])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100497
Bram Moolenaar47bba532023-01-20 18:49:46 +0000498#define t_list_empty (static_types[56])
499#define t_const_list_empty (static_types[57])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100500
Bram Moolenaar47bba532023-01-20 18:49:46 +0000501#define t_dict_empty (static_types[58])
502#define t_const_dict_empty (static_types[59])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100503
Bram Moolenaar47bba532023-01-20 18:49:46 +0000504#define t_list_bool (static_types[60])
505#define t_const_list_bool (static_types[61])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100506
Bram Moolenaar47bba532023-01-20 18:49:46 +0000507#define t_list_number (static_types[62])
508#define t_const_list_number (static_types[63])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100509
Bram Moolenaar47bba532023-01-20 18:49:46 +0000510#define t_list_string (static_types[64])
511#define t_const_list_string (static_types[65])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100512
Bram Moolenaar47bba532023-01-20 18:49:46 +0000513#define t_list_job (static_types[66])
514#define t_const_list_job (static_types[67])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100515
Bram Moolenaar47bba532023-01-20 18:49:46 +0000516#define t_list_dict_any (static_types[68])
517#define t_const_list_dict_any (static_types[69])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100518
Bram Moolenaar47bba532023-01-20 18:49:46 +0000519#define t_list_list_any (static_types[70])
520#define t_const_list_list_any (static_types[71])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100521
Bram Moolenaar47bba532023-01-20 18:49:46 +0000522#define t_list_list_string (static_types[72])
523#define t_const_list_list_string (static_types[73])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100524
Bram Moolenaar47bba532023-01-20 18:49:46 +0000525#define t_dict_bool (static_types[74])
526#define t_const_dict_bool (static_types[75])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100527
Bram Moolenaar47bba532023-01-20 18:49:46 +0000528#define t_dict_number (static_types[76])
529#define t_const_dict_number (static_types[77])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100530
Bram Moolenaar47bba532023-01-20 18:49:46 +0000531#define t_dict_string (static_types[78])
532#define t_const_dict_string (static_types[79])
Bram Moolenaarfa103972022-09-29 19:14:42 +0100533
Bram Moolenaar47bba532023-01-20 18:49:46 +0000534#define t_super (static_types[80])
535#define t_const_super (static_types[81])
Bram Moolenaar58b40092023-01-11 15:59:05 +0000536
Bram Moolenaar47bba532023-01-20 18:49:46 +0000537EXTERN type_T static_types[82]
Bram Moolenaarfa103972022-09-29 19:14:42 +0100538#ifdef DO_INIT
539= {
540 // 0: t_unknown
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000541 {VAR_UNKNOWN, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
542 {VAR_UNKNOWN, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100543
544 // 2: t_any
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000545 {VAR_ANY, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
546 {VAR_ANY, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100547
548 // 4: t_void
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000549 {VAR_VOID, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
550 {VAR_VOID, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100551
552 // 6: t_bool
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000553 {VAR_BOOL, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
554 {VAR_BOOL, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100555
556 // 8: t_null
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000557 {VAR_SPECIAL, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
558 {VAR_SPECIAL, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100559
560 // 10: t_none
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000561 {VAR_SPECIAL, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
562 {VAR_SPECIAL, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100563
564 // 12: t_number
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000565 {VAR_NUMBER, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
566 {VAR_NUMBER, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100567
568 // 14: t_number_bool
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000569 {VAR_NUMBER, 0, 0, TTFLAG_STATIC|TTFLAG_BOOL_OK, NULL, NULL, NULL},
570 {VAR_NUMBER, 0, 0, TTFLAG_STATIC|TTFLAG_BOOL_OK|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100571
Bram Moolenaar47bba532023-01-20 18:49:46 +0000572 // 16: t_number_float
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000573 {VAR_NUMBER, 0, 0, TTFLAG_STATIC|TTFLAG_FLOAT_OK, NULL, NULL, NULL},
574 {VAR_NUMBER, 0, 0, TTFLAG_STATIC|TTFLAG_FLOAT_OK|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaar47bba532023-01-20 18:49:46 +0000575
576 // 18: t_float
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000577 {VAR_FLOAT, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
578 {VAR_FLOAT, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100579
Bram Moolenaar47bba532023-01-20 18:49:46 +0000580 // 20: t_string
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000581 {VAR_STRING, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
582 {VAR_STRING, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100583
Bram Moolenaar47bba532023-01-20 18:49:46 +0000584 // 22: t_blob
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000585 {VAR_BLOB, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
586 {VAR_BLOB, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100587
Bram Moolenaar47bba532023-01-20 18:49:46 +0000588 // 24: t_blob_null
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000589 {VAR_BLOB, 0, 0, TTFLAG_STATIC, &t_void, NULL, NULL},
590 {VAR_BLOB, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_void, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100591
Bram Moolenaar47bba532023-01-20 18:49:46 +0000592 // 26: t_job
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000593 {VAR_JOB, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
594 {VAR_JOB, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100595
Bram Moolenaar47bba532023-01-20 18:49:46 +0000596 // 28: t_channel
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000597 {VAR_CHANNEL, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
598 {VAR_CHANNEL, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100599
Bram Moolenaar47bba532023-01-20 18:49:46 +0000600 // 30: t_number_or_string
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000601 {VAR_STRING, 0, 0, TTFLAG_STATIC, NULL, NULL, NULL},
602 {VAR_STRING, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, NULL, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100603
Bram Moolenaar47bba532023-01-20 18:49:46 +0000604 // 32: t_func_unknown
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000605 {VAR_FUNC, -1, -1, TTFLAG_STATIC, &t_unknown, NULL, NULL},
606 {VAR_FUNC, -1, -1, TTFLAG_STATIC|TTFLAG_CONST, &t_unknown, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100607
Bram Moolenaar47bba532023-01-20 18:49:46 +0000608 // 34: t_func_void
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000609 {VAR_FUNC, -1, 0, TTFLAG_STATIC, &t_void, NULL, NULL},
610 {VAR_FUNC, -1, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_void, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100611
Bram Moolenaar47bba532023-01-20 18:49:46 +0000612 // 36: t_func_any
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000613 {VAR_FUNC, -1, 0, TTFLAG_STATIC, &t_any, NULL, NULL},
614 {VAR_FUNC, -1, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_any, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100615
Bram Moolenaar47bba532023-01-20 18:49:46 +0000616 // 38: t_func_number
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000617 {VAR_FUNC, -1, 0, TTFLAG_STATIC, &t_number, NULL, NULL},
618 {VAR_FUNC, -1, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_number, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100619
Bram Moolenaar47bba532023-01-20 18:49:46 +0000620 // 40: t_func_string
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000621 {VAR_FUNC, -1, 0, TTFLAG_STATIC, &t_string, NULL, NULL},
622 {VAR_FUNC, -1, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_string, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100623
Bram Moolenaar47bba532023-01-20 18:49:46 +0000624 // 42: t_func_bool
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000625 {VAR_FUNC, -1, 0, TTFLAG_STATIC, &t_bool, NULL, NULL},
626 {VAR_FUNC, -1, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_bool, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100627
Bram Moolenaar47bba532023-01-20 18:49:46 +0000628 // 44: t_func_0_void
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000629 {VAR_FUNC, 0, 0, TTFLAG_STATIC, &t_void, NULL, NULL},
630 {VAR_FUNC, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_void, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100631
Bram Moolenaar47bba532023-01-20 18:49:46 +0000632 // 46: t_func_0_any
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000633 {VAR_FUNC, 0, 0, TTFLAG_STATIC, &t_any, NULL, NULL},
634 {VAR_FUNC, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_any, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100635
Bram Moolenaar47bba532023-01-20 18:49:46 +0000636 // 48: t_func_0_number
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000637 {VAR_FUNC, 0, 0, TTFLAG_STATIC, &t_number, NULL, NULL},
638 {VAR_FUNC, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_number, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100639
Bram Moolenaar47bba532023-01-20 18:49:46 +0000640 // 50: t_func_0_string
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000641 {VAR_FUNC, 0, 0, TTFLAG_STATIC, &t_string, NULL, NULL},
642 {VAR_FUNC, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_string, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100643
Bram Moolenaar47bba532023-01-20 18:49:46 +0000644 // 52: t_list_any
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000645 {VAR_LIST, 0, 0, TTFLAG_STATIC, &t_any, NULL, NULL},
646 {VAR_LIST, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_any, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100647
Bram Moolenaar47bba532023-01-20 18:49:46 +0000648 // 54: t_dict_any
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000649 {VAR_DICT, 0, 0, TTFLAG_STATIC, &t_any, NULL, NULL},
650 {VAR_DICT, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_any, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100651
Bram Moolenaar47bba532023-01-20 18:49:46 +0000652 // 56: t_list_empty
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000653 {VAR_LIST, 0, 0, TTFLAG_STATIC, &t_unknown, NULL, NULL},
654 {VAR_LIST, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_unknown, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100655
Bram Moolenaar47bba532023-01-20 18:49:46 +0000656 // 58: t_dict_empty
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000657 {VAR_DICT, 0, 0, TTFLAG_STATIC, &t_unknown, NULL, NULL},
658 {VAR_DICT, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_unknown, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100659
Bram Moolenaar47bba532023-01-20 18:49:46 +0000660 // 60: t_list_bool
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000661 {VAR_LIST, 0, 0, TTFLAG_STATIC, &t_bool, NULL, NULL},
662 {VAR_LIST, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_bool, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100663
Bram Moolenaar47bba532023-01-20 18:49:46 +0000664 // 62: t_list_number
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000665 {VAR_LIST, 0, 0, TTFLAG_STATIC, &t_number, NULL, NULL},
666 {VAR_LIST, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_number, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100667
Bram Moolenaar47bba532023-01-20 18:49:46 +0000668 // 64: t_list_string
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000669 {VAR_LIST, 0, 0, TTFLAG_STATIC, &t_string, NULL, NULL},
670 {VAR_LIST, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_string, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100671
Bram Moolenaar47bba532023-01-20 18:49:46 +0000672 // 66: t_list_job
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000673 {VAR_LIST, 0, 0, TTFLAG_STATIC, &t_job, NULL, NULL},
674 {VAR_LIST, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_job, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100675
Bram Moolenaar47bba532023-01-20 18:49:46 +0000676 // 68: t_list_dict_any
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000677 {VAR_LIST, 0, 0, TTFLAG_STATIC, &t_dict_any, NULL, NULL},
678 {VAR_LIST, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_dict_any, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100679
Bram Moolenaar47bba532023-01-20 18:49:46 +0000680 // 70: t_list_list_any
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000681 {VAR_LIST, 0, 0, TTFLAG_STATIC, &t_list_any, NULL, NULL},
682 {VAR_LIST, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_list_any, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100683
Bram Moolenaar47bba532023-01-20 18:49:46 +0000684 // 72: t_list_list_string
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000685 {VAR_LIST, 0, 0, TTFLAG_STATIC, &t_list_string, NULL, NULL},
686 {VAR_LIST, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_list_string, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100687
Bram Moolenaar47bba532023-01-20 18:49:46 +0000688 // 74: t_dict_bool
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000689 {VAR_DICT, 0, 0, TTFLAG_STATIC, &t_bool, NULL, NULL},
690 {VAR_DICT, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_bool, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100691
Bram Moolenaar47bba532023-01-20 18:49:46 +0000692 // 76: t_dict_number
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000693 {VAR_DICT, 0, 0, TTFLAG_STATIC, &t_number, NULL, NULL},
694 {VAR_DICT, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_number, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100695
Bram Moolenaar47bba532023-01-20 18:49:46 +0000696 // 78: t_dict_string
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000697 {VAR_DICT, 0, 0, TTFLAG_STATIC, &t_string, NULL, NULL},
698 {VAR_DICT, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_string, NULL, NULL},
Bram Moolenaar58b40092023-01-11 15:59:05 +0000699
Bram Moolenaar47bba532023-01-20 18:49:46 +0000700 // 80: t_super (VAR_CLASS with tt_member set to &t_bool
Bram Moolenaarb1e32ac2023-02-21 12:38:51 +0000701 {VAR_CLASS, 0, 0, TTFLAG_STATIC, &t_bool, NULL, NULL},
702 {VAR_CLASS, 0, 0, TTFLAG_STATIC|TTFLAG_CONST, &t_bool, NULL, NULL},
Bram Moolenaarfa103972022-09-29 19:14:42 +0100703}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704#endif
Bram Moolenaarfa103972022-09-29 19:14:42 +0100705;
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000706
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200707EXTERN int did_source_packages INIT(= FALSE);
Bram Moolenaarfa103972022-09-29 19:14:42 +0100708#endif // FEAT_EVAL
Bram Moolenaarce876aa2017-06-04 17:47:42 +0200709
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200710// Magic number used for hashitem "hi_key" value indicating a deleted item.
711// Only the address is used.
Bram Moolenaar383f9bc2005-01-19 22:18:32 +0000712EXTERN char_u hash_removed;
713
714
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200715EXTERN int scroll_region INIT(= FALSE); // term supports scroll region
716EXTERN int t_colors INIT(= 0); // int value of T_CCO
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717
Bram Moolenaarf9cc9f22019-07-14 21:29:22 +0200718// Flags to indicate an additional string for highlight name completion.
719EXTERN int include_none INIT(= 0); // when 1 include "None"
720EXTERN int include_default INIT(= 0); // when 1 include "default"
721EXTERN int include_link INIT(= 0); // when 2 include "link" and "clear"
Bram Moolenaarf9cc9f22019-07-14 21:29:22 +0200722
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723/*
724 * When highlight_match is TRUE, highlight a match, starting at the cursor
725 * position. Search_match_lines is the number of lines after the match (0 for
726 * a match within one line), search_match_endcol the column number of the
727 * character just after the match in the last line.
728 */
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200729EXTERN int highlight_match INIT(= FALSE); // show search match pos
Bram Moolenaar32aa1022019-11-02 22:54:41 +0100730EXTERN linenr_T search_match_lines; // lines of matched string
Bram Moolenaarb0acacd2018-08-11 16:40:43 +0200731EXTERN colnr_T search_match_endcol; // col nr of match end
732#ifdef FEAT_SEARCH_EXTRA
733EXTERN linenr_T search_first_line INIT(= 0); // for :{FIRST},{last}s/pat
734EXTERN linenr_T search_last_line INIT(= MAXLNUM); // for :{first},{LAST}s/pat
735#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200737EXTERN int no_smartcase INIT(= FALSE); // don't use 'smartcase' once
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200739EXTERN int need_check_timestamps INIT(= FALSE); // need to check file
740 // timestamps asap
741EXTERN int did_check_timestamps INIT(= FALSE); // did check timestamps
742 // recently
743EXTERN int no_check_timestamps INIT(= 0); // Don't check timestamps
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200745EXTERN int highlight_attr[HLF_COUNT]; // Highl. attr for each context.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746#ifdef FEAT_STL_OPT
747# define USER_HIGHLIGHT
748#endif
749#ifdef USER_HIGHLIGHT
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200750EXTERN int highlight_user[9]; // User[1-9] attributes
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751# ifdef FEAT_STL_OPT
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200752EXTERN int highlight_stlnc[9]; // On top of user
Bram Moolenaarbce4f622017-08-13 21:37:43 +0200753# ifdef FEAT_TERMINAL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200754EXTERN int highlight_stlterm[9]; // On top of user
755EXTERN int highlight_stltermnc[9]; // On top of user
Bram Moolenaarbce4f622017-08-13 21:37:43 +0200756# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757# endif
758#endif
Bram Moolenaar1d4754f2018-06-19 17:49:24 +0200759#ifdef FEAT_TERMINAL
760 // When TRUE skip calling terminal_loop() once. Used when
761 // typing ':' at the more prompt.
762EXTERN int skip_term_loop INIT(= FALSE);
763#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764#ifdef FEAT_GUI
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200765EXTERN char_u *use_gvimrc INIT(= NULL); // "-U" cmdline argument
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766#endif
767EXTERN int cterm_normal_fg_color INIT(= 0);
768EXTERN int cterm_normal_fg_bold INIT(= 0);
769EXTERN int cterm_normal_bg_color INIT(= 0);
Bram Moolenaare023e882020-05-31 16:42:30 +0200770EXTERN int cterm_normal_ul_color INIT(= 0);
Bram Moolenaar61be73b2016-04-29 22:59:22 +0200771#ifdef FEAT_TERMGUICOLORS
Bram Moolenaar1b58cdd2016-08-22 23:04:33 +0200772EXTERN guicolor_T cterm_normal_fg_gui_color INIT(= INVALCOLOR);
773EXTERN guicolor_T cterm_normal_bg_gui_color INIT(= INVALCOLOR);
Bram Moolenaare023e882020-05-31 16:42:30 +0200774EXTERN guicolor_T cterm_normal_ul_gui_color INIT(= INVALCOLOR);
Bram Moolenaar8a633e32016-04-21 21:10:14 +0200775#endif
Bram Moolenaara0a6f272017-10-04 18:04:16 +0200776#ifdef FEAT_TERMRESPONSE
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200777EXTERN int is_mac_terminal INIT(= FALSE); // recognized Terminal.app
Bram Moolenaara0a6f272017-10-04 18:04:16 +0200778#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200780EXTERN int autocmd_busy INIT(= FALSE); // Is apply_autocmds() busy?
781EXTERN int autocmd_no_enter INIT(= FALSE); // *Enter autocmds disabled
782EXTERN int autocmd_no_leave INIT(= FALSE); // *Leave autocmds disabled
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200784EXTERN int modified_was_set; // did ":set modified"
785EXTERN int did_filetype INIT(= FALSE); // FileType event found
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200786EXTERN int keep_filetype INIT(= FALSE); // value for did_filetype when
787 // starting to execute
788 // autocommands
789
Bram Moolenaar6cd57d42019-08-03 23:08:14 +0200790// Set by the apply_autocmds_group function if the given event is equal to
791// EVENT_FILETYPE. Used by the readfile function in order to determine if
792// EVENT_BUFREADPOST triggered the EVENT_FILETYPE.
793//
794// Relying on this value requires one to reset it prior calling
795// apply_autocmds_group.
796EXTERN int au_did_filetype INIT(= FALSE);
797
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200798// When deleting the current buffer, another one must be loaded. If we know
799// which one is preferred, au_new_curbuf is set to it
Bram Moolenaarea8b7ae2020-01-01 15:46:47 +0100800EXTERN bufref_T au_new_curbuf INIT3(NULL, 0, 0);
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200801
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200802// When deleting a buffer/window and autocmd_busy is TRUE, do not free the
803// buffer/window. but link it in the list starting with
804// au_pending_free_buf/ap_pending_free_win, using b_next/w_next.
805// Free the buffer/window when autocmd_busy is being set to FALSE.
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +0200806EXTERN buf_T *au_pending_free_buf INIT(= NULL);
Bram Moolenaar3be85852014-06-12 14:01:31 +0200807EXTERN win_T *au_pending_free_win INIT(= NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809/*
810 * Mouse coordinates, set by check_termcode()
811 */
812EXTERN int mouse_row;
813EXTERN int mouse_col;
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200814EXTERN int mouse_past_bottom INIT(= FALSE);// mouse below last line
815EXTERN int mouse_past_eol INIT(= FALSE); // mouse right of line
816EXTERN int mouse_dragging INIT(= 0); // extending Visual area with
817 // mouse dragging
Bram Moolenaara1cb1d12019-10-17 23:00:07 +0200818#if defined(FEAT_MOUSE_DEC)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819/*
820 * When the DEC mouse has been pressed but not yet released we enable
Bram Moolenaarbdace832019-03-02 10:13:42 +0100821 * automatic queries for the mouse position.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 */
Bram Moolenaar6bb68362005-03-22 23:03:44 +0000823EXTERN int WantQueryMouse INIT(= FALSE);
Bram Moolenaara1cb1d12019-10-17 23:00:07 +0200824#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825
Bram Moolenaara1cb1d12019-10-17 23:00:07 +0200826#ifdef FEAT_GUI
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200827// When the window layout is about to be changed, need_mouse_correct is set,
828// so that gui_mouse_correct() is called afterwards, to correct the mouse
829// pointer when focus-follow-mouse is being used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830EXTERN int need_mouse_correct INIT(= FALSE);
831
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200832// When double clicking, topline must be the same
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833EXTERN linenr_T gui_prev_topline INIT(= 0);
Bram Moolenaara1cb1d12019-10-17 23:00:07 +0200834# ifdef FEAT_DIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835EXTERN int gui_prev_topfill INIT(= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836# endif
Bram Moolenaara1cb1d12019-10-17 23:00:07 +0200837#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838
839# ifdef FEAT_MOUSESHAPE
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200840EXTERN int drag_status_line INIT(= FALSE); // dragging the status line
841EXTERN int postponed_mouseshape INIT(= FALSE); // postponed updating the
842 // mouse pointer shape
843EXTERN int drag_sep_line INIT(= FALSE); // dragging vert separator
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844# endif
845
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846
847#ifdef FEAT_DIFF
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200848// Value set from 'diffopt'.
849EXTERN int diff_context INIT(= 6); // context for folds
850EXTERN int diff_foldcolumn INIT(= 2); // 'foldcolumn' for diff mode
Bram Moolenaar33aec762006-01-22 23:30:12 +0000851EXTERN int diff_need_scrollbind INIT(= FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852#endif
853
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200854// While redrawing the screen this flag is set. It means the screen size
Bram Moolenaar471c0fa2022-08-22 15:19:16 +0100855// ('lines' and 'rows') must not be changed and prevents recursive updating.
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200856EXTERN int updating_screen INIT(= FALSE);
857
Bram Moolenaar471c0fa2022-08-22 15:19:16 +0100858// While computing a statusline and the like we do not want any w_redr_type or
859// must_redraw to be set.
860EXTERN int redraw_not_allowed INIT(= FALSE);
861
Bram Moolenaar4778b4d2020-11-04 11:03:12 +0100862#ifdef MESSAGE_QUEUE
863// While closing windows or buffers messages should not be handled to avoid
864// using invalid windows or buffers.
865EXTERN int dont_parse_messages INIT(= FALSE);
866#endif
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#ifdef FEAT_MENU
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200869// The root of the menu hierarchy.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870EXTERN vimmenu_T *root_menu INIT(= NULL);
871/*
872 * While defining the system menu, sys_menu is TRUE. This avoids
873 * overruling of menus that the user already defined.
874 */
875EXTERN int sys_menu INIT(= FALSE);
876#endif
877
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878#ifdef FEAT_GUI
879# ifdef FEAT_MENU
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200880// Menu item just selected, set by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881EXTERN vimmenu_T *current_menu;
882
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200883// Set to TRUE after adding/removing menus to ensure they are updated
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884EXTERN int force_menu_update INIT(= FALSE);
885# endif
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000886# ifdef FEAT_GUI_TABLINE
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200887// Tab in tab pages line just selected, set by check_termcode()
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000888EXTERN int current_tab;
Bram Moolenaar5c8837f2006-02-25 21:52:33 +0000889
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200890// Menu entry in tab pages line menu just selected, set by check_termcode()
Bram Moolenaar5c8837f2006-02-25 21:52:33 +0000891EXTERN int current_tabmenu;
892# define TABLINE_MENU_CLOSE 1
893# define TABLINE_MENU_NEW 2
894# define TABLINE_MENU_OPEN 3
Bram Moolenaar32466aa2006-02-24 23:53:04 +0000895# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200897// Scrollbar moved and new value, set by check_termcode()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898EXTERN int current_scrollbar;
899EXTERN long_u scrollbar_value;
900
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200901// found "-rv" or "-reverse" in command line args
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902EXTERN int found_reverse_arg INIT(= FALSE);
903
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200904// "-fn" or "-font" command line argument
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905EXTERN char *font_argument INIT(= NULL);
906
907# ifdef FEAT_GUI_GTK
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200908// "-bg" or "-background" command line argument
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909EXTERN char *background_argument INIT(= NULL);
910
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200911// "-fg" or "-foreground" command line argument
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912EXTERN char *foreground_argument INIT(= NULL);
913# endif
914
915/*
916 * While executing external commands or in Ex mode, should not insert GUI
917 * events in the input buffer: Set hold_gui_events to non-zero.
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000918 *
919 * volatile because it is used in signal handler sig_sysmouse().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 */
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200921EXTERN volatile sig_atomic_t hold_gui_events INIT(= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922
923/*
924 * When resizing the shell is postponed, remember the new size, and call
925 * gui_resize_shell() later.
926 */
927EXTERN int new_pixel_width INIT(= 0);
928EXTERN int new_pixel_height INIT(= 0);
929
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200930// Window position from ":winpos", to be used when opening the GUI window.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931EXTERN int gui_win_x INIT(= -1);
932EXTERN int gui_win_y INIT(= -1);
933#endif
934
935#ifdef FEAT_CLIPBOARD
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200936EXTERN Clipboard_T clip_star; // PRIMARY selection in X11
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937# ifdef FEAT_X11
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200938EXTERN Clipboard_T clip_plus; // CLIPBOARD selection in X11
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939# else
Bram Moolenaar0554fa42019-06-14 21:36:54 +0200940# define clip_plus clip_star // there is only one clipboard
Bram Moolenaar0818b872010-11-24 14:28:58 +0100941# define ONE_CLIPBOARD
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942# endif
Bram Moolenaarbf9680e2010-12-02 21:43:16 +0100943
Bram Moolenaara7014df2012-06-29 12:35:44 +0200944# define CLIP_UNNAMED 1
945# define CLIP_UNNAMED_PLUS 2
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200946EXTERN int clip_unnamed INIT(= 0); // above two values or'ed
Bram Moolenaarbf9680e2010-12-02 21:43:16 +0100947
Bram Moolenaarc0885aa2012-07-10 16:49:23 +0200948EXTERN int clip_autoselect_star INIT(= FALSE);
949EXTERN int clip_autoselect_plus INIT(= FALSE);
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000950EXTERN int clip_autoselectml INIT(= FALSE);
Bram Moolenaar3a6eaa52009-06-16 13:23:06 +0000951EXTERN int clip_html INIT(= FALSE);
Bram Moolenaara23ccb82006-02-27 00:08:02 +0000952EXTERN regprog_T *clip_exclude_prog INIT(= NULL);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +0200953EXTERN int clip_unnamed_saved INIT(= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954#endif
955
956/*
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200957 * All regular windows are linked in a list. "firstwin" points to the first
958 * entry, "lastwin" to the last entry (can be the same as firstwin) and
959 * "curwin" to the currently active window.
960 * When switching tabs these swapped with the pointers in "tabpage_T".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200962EXTERN win_T *firstwin; // first window
963EXTERN win_T *lastwin; // last window
964EXTERN win_T *prevwin INIT(= NULL); // previous window
Bram Moolenaar3397f742019-06-02 18:40:06 +0200965#define ONE_WINDOW (firstwin == lastwin)
966#define W_NEXT(wp) ((wp)->w_next)
Bram Moolenaar3397f742019-06-02 18:40:06 +0200967
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200968EXTERN win_T *curwin; // currently active window
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969
Bram Moolenaare76062c2022-11-28 18:51:43 +0000970// When executing autocommands for a buffer that is not in any window, a
971// special window is created to handle the side effects. When autocommands
972// nest we may need more than one. Allow for up to five, if more are needed
973// something crazy is happening.
974#define AUCMD_WIN_COUNT 5
975
976typedef struct {
Bram Moolenaar84497cd2022-11-28 20:34:52 +0000977 win_T *auc_win; // Window used in aucmd_prepbuf(). When not NULL the
978 // window has been allocated.
979 int auc_win_used; // This auc_win is being used.
Bram Moolenaare76062c2022-11-28 18:51:43 +0000980} aucmdwin_T;
981
982EXTERN aucmdwin_T aucmd_win[AUCMD_WIN_COUNT];
Bram Moolenaar746ebd32009-06-16 14:01:43 +0000983
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100984#ifdef FEAT_PROP_POPUP
Bram Moolenaara42d9452019-06-15 21:46:30 +0200985EXTERN win_T *first_popupwin; // first global popup window
986EXTERN win_T *popup_dragwin INIT(= NULL); // popup window being dragged
Bram Moolenaar49fe95f2019-07-08 21:57:30 +0200987
Bram Moolenaar1ccaa352019-08-02 22:08:25 +0200988// Set to TRUE if there is any visible popup window.
Bram Moolenaar49fe95f2019-07-08 21:57:30 +0200989EXTERN int popup_visible INIT(= FALSE);
990
Bram Moolenaarf8e43f62022-03-24 15:15:15 +0000991// Set to TRUE if a visible popup window may use a MOUSE_MOVE event
992EXTERN int popup_uses_mouse_move INIT(= FALSE);
993
Bram Moolenaar49fe95f2019-07-08 21:57:30 +0200994EXTERN int text_prop_frozen INIT(= 0);
Bram Moolenaar702bd6c2022-09-14 16:09:57 +0100995
996// when TRUE computing the cursor position ignores text properties.
997EXTERN int ignore_text_props INIT(= FALSE);
Bram Moolenaar4d784b22019-05-25 19:51:39 +0200998#endif
999
Bram Moolenaare0c03c82021-04-23 21:01:34 +02001000// When set the popup menu will redraw soon using the pum_win_ values. Do not
1001// draw over the poup menu area to avoid flicker.
1002EXTERN int pum_will_redraw INIT(= FALSE);
1003
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004/*
1005 * The window layout is kept in a tree of frames. topframe points to the top
1006 * of the tree.
1007 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001008EXTERN frame_T *topframe; // top of the window frame tree
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001010/*
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001011 * Tab pages are alternative topframes. "first_tabpage" points to the first
Bram Moolenaar62a23252020-08-09 14:04:42 +02001012 * one in the list, "curtab" is the current one. "lastused_tabpage" is the
1013 * last used one.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001014 */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001015EXTERN tabpage_T *first_tabpage;
1016EXTERN tabpage_T *curtab;
Bram Moolenaar62a23252020-08-09 14:04:42 +02001017EXTERN tabpage_T *lastused_tabpage;
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001018EXTERN int redraw_tabline INIT(= FALSE); // need to redraw tabline
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00001019
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020/*
1021 * All buffers are linked in a list. 'firstbuf' points to the first entry,
1022 * 'lastbuf' to the last entry and 'curbuf' to the currently active buffer.
1023 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001024EXTERN buf_T *firstbuf INIT(= NULL); // first buffer
1025EXTERN buf_T *lastbuf INIT(= NULL); // last buffer
1026EXTERN buf_T *curbuf INIT(= NULL); // currently active buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001028// Flag that is set when switching off 'swapfile'. It means that all blocks
1029// are to be loaded into memory. Shouldn't be global...
1030EXTERN int mf_dont_release INIT(= FALSE); // don't release blocks
Bram Moolenaar47b8b152007-02-07 02:41:57 +00001031
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032/*
1033 * List of files being edited (global argument list). curwin->w_alist points
1034 * to this when the window is using the global argument list.
1035 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001036EXTERN alist_T global_alist; // global argument list
1037EXTERN int max_alist_id INIT(= 0); // the previous argument list id
1038EXTERN int arg_had_last INIT(= FALSE); // accessed last file in
1039 // global_alist
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001041EXTERN int ru_col; // column for ruler
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042#ifdef FEAT_STL_OPT
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001043EXTERN int ru_wid; // 'rulerfmt' width of ruler when non-zero
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001045EXTERN int sc_col; // column for shown command
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046
1047#ifdef TEMPDIRNAMES
Bram Moolenaar9d8bfae2020-09-02 21:21:35 +02001048# if defined(UNIX) && defined(HAVE_FLOCK) \
1049 && (defined(HAVE_DIRFD) || defined(__hpux))
Bram Moolenaarb2d0e512020-05-07 18:37:03 +02001050EXTERN DIR *vim_tempdir_dp INIT(= NULL); // File descriptor of temp dir
1051# endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001052EXTERN char_u *vim_tempdir INIT(= NULL); // Name of Vim's own temp dir.
1053 // Ends in a slash.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054#endif
1055
1056/*
1057 * When starting or exiting some things are done differently (e.g. screen
1058 * updating).
1059 */
1060EXTERN int starting INIT(= NO_SCREEN);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001061 // first NO_SCREEN, then NO_BUFFERS and then
1062 // set to 0 when starting up finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063EXTERN int exiting INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001064 // TRUE when planning to exit Vim. Might
1065 // still keep on running if there is a changed
1066 // buffer.
Bram Moolenaar4770d092006-01-12 23:22:24 +00001067EXTERN int really_exiting INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001068 // TRUE when we are sure to exit, e.g., after
1069 // a deadly signal
1070EXTERN int v_dying INIT(= 0); // internal value of v:dying
1071EXTERN int stdout_isatty INIT(= TRUE); // is stdout a terminal?
Bram Moolenaar2cab0e12016-11-24 15:09:07 +01001072
Bram Moolenaar5c719942016-07-09 23:40:45 +02001073#if defined(FEAT_AUTOCHDIR)
1074EXTERN int test_autochdir INIT(= FALSE);
1075#endif
Bram Moolenaar05268152021-11-18 18:53:45 +00001076EXTERN char *last_chdir_reason INIT(= NULL);
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001077#if defined(EXITFREE)
1078EXTERN int entered_free_all_mem INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001079 // TRUE when in or after free_all_mem()
Bram Moolenaarb89a25f2016-06-01 23:08:39 +02001080#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001081// volatile because it is used in signal handler deathtrap().
Bram Moolenaar8e82c052018-08-21 19:47:48 +02001082EXTERN volatile sig_atomic_t full_screen INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001083 // TRUE when doing full-screen output
1084 // otherwise only writing some messages
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085
1086EXTERN int restricted INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001087 // TRUE when started as "rvim"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088EXTERN int secure INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001089 // non-zero when only "safe" commands are
1090 // allowed, e.g. when sourcing .exrc or .vimrc
1091 // in current directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092
zeertzjqcfe45652022-05-27 17:26:55 +01001093EXTERN int textlock INIT(= 0);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001094 // non-zero when changing text and jumping to
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02001095 // another window or editing another buffer is
1096 // not allowed
1097
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001098EXTERN int curbuf_lock INIT(= 0);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001099 // non-zero when the current buffer can't be
1100 // changed. Used for FileChangedRO.
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00001101EXTERN int allbuf_lock INIT(= 0);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001102 // non-zero when no buffer name can be
1103 // changed, no buffer can be deleted and
1104 // current directory can't be changed.
1105 // Used for SwapExists et al.
Bram Moolenaareffed932018-08-14 13:38:17 +02001106#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107EXTERN int sandbox INIT(= 0);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001108 // Non-zero when evaluating an expression in a
1109 // "sandbox". Several things are not allowed
1110 // then.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111#endif
1112
1113EXTERN int silent_mode INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001114 // set to TRUE when "-s" commandline argument
1115 // used for ex
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001117EXTERN pos_T VIsual; // start position of active Visual selection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118EXTERN int VIsual_active INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001119 // whether Visual mode is active
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120EXTERN int VIsual_select INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001121 // whether Select mode is active
Shougo Matsushita4ede01f2022-01-20 15:26:03 +00001122EXTERN int VIsual_select_reg INIT(= 0);
1123 // register name for Select mode
zeertzjqeaf3f362021-07-28 16:51:53 +02001124EXTERN int restart_VIsual_select INIT(= 0);
1125 // restart Select mode when next cmd finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126EXTERN int VIsual_reselect;
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001127 // whether to restart the selection after a
1128 // Select mode mapping or menu
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129
1130EXTERN int VIsual_mode INIT(= 'v');
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001131 // type of Visual mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132
1133EXTERN int redo_VIsual_busy INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001134 // TRUE when redoing Visual
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135
Bram Moolenaar792cf5e2019-09-30 23:12:16 +02001136/*
1137 * The Visual area is remembered for reselection.
1138 */
1139EXTERN int resel_VIsual_mode INIT(= NUL); // 'v', 'V', or Ctrl-V
1140EXTERN linenr_T resel_VIsual_line_count; // number of lines
1141EXTERN colnr_T resel_VIsual_vcol; // nr of cols or end col
1142
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143/*
1144 * When pasting text with the middle mouse button in visual mode with
1145 * restart_edit set, remember where it started so we can set Insstart.
1146 */
1147EXTERN pos_T where_paste_started;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148
1149/*
1150 * This flag is used to make auto-indent work right on lines where only a
1151 * <RETURN> or <ESC> is typed. It is set when an auto-indent is done, and
1152 * reset when any other editing is done on the line. If an <ESC> or <RETURN>
1153 * is received, and did_ai is TRUE, the line is truncated.
1154 */
1155EXTERN int did_ai INIT(= FALSE);
1156
1157/*
1158 * Column of first char after autoindent. 0 when no autoindent done. Used
1159 * when 'backspace' is 0, to avoid backspacing over autoindent.
1160 */
1161EXTERN colnr_T ai_col INIT(= 0);
1162
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163/*
1164 * This is a character which will end a start-middle-end comment when typed as
1165 * the first character on a new line. It is taken from the last character of
1166 * the "end" comment leader when the COM_AUTO_END flag is given for that
1167 * comment end in 'comments'. It is only valid when did_ai is TRUE.
1168 */
1169EXTERN int end_comment_pending INIT(= NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171/*
1172 * This flag is set after a ":syncbind" to let the check_scrollbind() function
1173 * know that it should not attempt to perform scrollbinding due to the scroll
1174 * that was a result of the ":syncbind." (Otherwise, check_scrollbind() will
1175 * undo some of the work done by ":syncbind.") -ralston
1176 */
1177EXTERN int did_syncbind INIT(= FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179/*
1180 * This flag is set when a smart indent has been performed. When the next typed
1181 * character is a '{' the inserted tab will be deleted again.
1182 */
1183EXTERN int did_si INIT(= FALSE);
1184
1185/*
1186 * This flag is set after an auto indent. If the next typed character is a '}'
1187 * one indent will be removed.
1188 */
1189EXTERN int can_si INIT(= FALSE);
1190
1191/*
1192 * This flag is set after an "O" command. If the next typed character is a '{'
1193 * one indent will be removed.
1194 */
1195EXTERN int can_si_back INIT(= FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196
Bram Moolenaar14c01f82019-10-09 22:53:08 +02001197EXTERN int old_indent INIT(= 0); // for ^^D command in insert mode
1198
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001199EXTERN pos_T saved_cursor // w_cursor before formatting text.
Bram Moolenaara7014df2012-06-29 12:35:44 +02001200#ifdef DO_INIT
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001201 = {0, 0, 0}
Bram Moolenaara7014df2012-06-29 12:35:44 +02001202#endif
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001203 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204
1205/*
1206 * Stuff for insert mode.
1207 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001208EXTERN pos_T Insstart; // This is where the latest
1209 // insert/append mode started.
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01001210
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01001211// This is where the latest insert/append mode started. In contrast to
1212// Insstart, this won't be reset by certain keys and is needed for
1213// op_insert(), to detect correctly where inserting by the user started.
Bram Moolenaarb1d90a32014-02-22 23:03:55 +01001214EXTERN pos_T Insstart_orig;
1215
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216/*
Bram Moolenaar24959102022-05-07 20:01:16 +01001217 * Stuff for MODE_VREPLACE state.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001219EXTERN int orig_line_count INIT(= 0); // Line count when "gR" started
1220EXTERN int vr_lines_changed INIT(= 0); // #Lines changed by "gR" so far
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221
1222#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01001223// argument to SETJMP() for handling X IO errors
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224EXTERN JMP_BUF x_jump_env;
1225#endif
1226
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227/*
1228 * These flags are set based upon 'fileencoding'.
1229 * Note that "enc_utf8" is also set for "unicode", because the characters are
1230 * internally stored as UTF-8 (to avoid trouble with NUL bytes).
1231 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001232#define DBCS_JPN 932 // japan
1233#define DBCS_JPNU 9932 // euc-jp
1234#define DBCS_KOR 949 // korea
1235#define DBCS_KORU 9949 // euc-kr
1236#define DBCS_CHS 936 // chinese
1237#define DBCS_CHSU 9936 // euc-cn
1238#define DBCS_CHT 950 // taiwan
1239#define DBCS_CHTU 9950 // euc-tw
1240#define DBCS_2BYTE 1 // 2byte-
kylo2529dac9b12022-03-27 20:05:17 +01001241#define DBCS_DEBUG (-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001243EXTERN int enc_dbcs INIT(= 0); // One of DBCS_xxx values if
1244 // DBCS encoding
1245EXTERN int enc_unicode INIT(= 0); // 2: UCS-2 or UTF-16, 4: UCS-4
1246EXTERN int enc_utf8 INIT(= FALSE); // UTF-8 encoded Unicode
1247EXTERN int enc_latin1like INIT(= TRUE); // 'encoding' is latin1 comp.
Bram Moolenaar4f974752019-02-17 17:44:42 +01001248#if defined(MSWIN) || defined(FEAT_CYGWIN_WIN32_CLIPBOARD)
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001249// Codepage nr of 'encoding'. Negative means it's not been set yet, zero
1250// means 'encoding' is not a valid codepage.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251EXTERN int enc_codepage INIT(= -1);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001252EXTERN int enc_latin9 INIT(= FALSE); // 'encoding' is latin9
Bram Moolenaar264b74f2019-01-24 17:18:42 +01001253#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001254EXTERN int has_mbyte INIT(= 0); // any multi-byte encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256/*
1257 * To speed up BYTELEN() we fill a table with the byte lengths whenever
1258 * enc_utf8 or enc_dbcs changes.
1259 */
1260EXTERN char mb_bytelen_tab[256];
1261
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001262// Variables that tell what conversion is used for keyboard input and display
1263// output.
1264EXTERN vimconv_T input_conv; // type of input conversion
1265EXTERN vimconv_T output_conv; // type of output conversion
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266
1267/*
1268 * Function pointers, used to quickly get to the right function. Each has
1269 * three possible values: latin_ (8-bit), utfc_ or utf_ (utf-8) and dbcs_
1270 * (DBCS).
1271 * The value is set in mb_init();
1272 */
Bram Moolenaarf6d39c32022-08-16 17:50:38 +01001273// Length of char in bytes, including any following composing chars.
1274// NUL has length zero.
Bram Moolenaard99df422016-01-29 23:20:40 +01001275EXTERN int (*mb_ptr2len)(char_u *p) INIT(= latin_ptr2len);
Bram Moolenaar651fca82021-11-29 20:39:38 +00001276
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001277// idem, with limit on string length
Bram Moolenaard99df422016-01-29 23:20:40 +01001278EXTERN int (*mb_ptr2len_len)(char_u *p, int size) INIT(= latin_ptr2len_len);
Bram Moolenaar651fca82021-11-29 20:39:38 +00001279
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001280// byte length of char
Bram Moolenaard99df422016-01-29 23:20:40 +01001281EXTERN int (*mb_char2len)(int c) INIT(= latin_char2len);
Bram Moolenaar651fca82021-11-29 20:39:38 +00001282
1283// Convert char "c" to bytes in "buf", return the length. "buf" must have room
1284// for at least 6 bytes.
Bram Moolenaard99df422016-01-29 23:20:40 +01001285EXTERN int (*mb_char2bytes)(int c, char_u *buf) INIT(= latin_char2bytes);
Bram Moolenaar651fca82021-11-29 20:39:38 +00001286
Bram Moolenaard99df422016-01-29 23:20:40 +01001287EXTERN int (*mb_ptr2cells)(char_u *p) INIT(= latin_ptr2cells);
1288EXTERN int (*mb_ptr2cells_len)(char_u *p, int size) INIT(= latin_ptr2cells_len);
1289EXTERN int (*mb_char2cells)(int c) INIT(= latin_char2cells);
1290EXTERN int (*mb_off2cells)(unsigned off, unsigned max_off) INIT(= latin_off2cells);
1291EXTERN int (*mb_ptr2char)(char_u *p) INIT(= latin_ptr2char);
Bram Moolenaar651fca82021-11-29 20:39:38 +00001292
1293// Byte offset from "p" to the start of a character, including any composing
1294// characters. "base" must be the start of the string, which must be NUL
1295// terminated.
Bram Moolenaard99df422016-01-29 23:20:40 +01001296EXTERN int (*mb_head_off)(char_u *base, char_u *p) INIT(= latin_head_off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297
1298# if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001299// Pointers to functions and variables to be loaded at runtime
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300EXTERN size_t (*iconv) (iconv_t cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft);
1301EXTERN iconv_t (*iconv_open) (const char *tocode, const char *fromcode);
1302EXTERN int (*iconv_close) (iconv_t cd);
1303EXTERN int (*iconvctl) (iconv_t cd, int request, void *argument);
1304EXTERN int* (*iconv_errno) (void);
1305# endif
1306
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307
1308#ifdef FEAT_XIM
1309# ifdef FEAT_GUI_GTK
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310EXTERN GtkIMContext *xic INIT(= NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311/*
1312 * Start and end column of the preedit area in virtual columns from the start
1313 * of the text line. When there is no preedit area they are set to MAXCOL.
1314 * "preedit_end_col" is needed for coloring the preedited string. Drawing the
1315 * color between "preedit_start_col" and curpos did not work, because some XIM
1316 * set the cursor position to the first char of the string.
1317 */
1318EXTERN colnr_T preedit_start_col INIT(= MAXCOL);
1319EXTERN colnr_T preedit_end_col INIT(= MAXCOL);
1320
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001321// "xim_changed_while_preediting" is set when changed() can set the 'modified'
1322// flag even while preediting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323EXTERN int xim_changed_while_preediting INIT(= FALSE);
1324# else
1325EXTERN XIC xic INIT(= NULL);
1326# endif
Bram Moolenaar754b5602006-02-09 23:53:20 +00001327# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328EXTERN guicolor_T xim_fg_color INIT(= INVALCOLOR);
1329EXTERN guicolor_T xim_bg_color INIT(= INVALCOLOR);
Bram Moolenaar754b5602006-02-09 23:53:20 +00001330# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331#endif
1332
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333/*
1334 * "State" is the main state of Vim.
1335 * There are other variables that modify the state:
Bram Moolenaar24959102022-05-07 20:01:16 +01001336 * "Visual_mode" When State is MODE_NORMAL or MODE_INSERT.
1337 * "finish_op" When State is MODE_NORMAL, after typing the operator and
1338 * before typing the motion command.
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01001339 * "motion_force" Last motion_force from do_pending_operator()
Bram Moolenaard99388b2017-10-26 14:28:32 +02001340 * "debug_mode" Debug mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 */
Bram Moolenaar24959102022-05-07 20:01:16 +01001342EXTERN int State INIT(= MODE_NORMAL);
1343
Bram Moolenaard99388b2017-10-26 14:28:32 +02001344#ifdef FEAT_EVAL
1345EXTERN int debug_mode INIT(= FALSE);
1346#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001348EXTERN int finish_op INIT(= FALSE);// TRUE while an operator is pending
1349EXTERN long opcount INIT(= 0); // count for pending operator
Bram Moolenaar5976f8f2018-12-27 23:44:44 +01001350EXTERN int motion_force INIT(= 0); // motion force for pending operator
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351
1352/*
Bram Moolenaarb1e04fc2017-03-29 13:08:35 +02001353 * Ex mode (Q) state
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001355EXTERN int exmode_active INIT(= 0); // zero, EXMODE_NORMAL or EXMODE_VIM
Bram Moolenaar9e2bcb52020-02-18 21:33:00 +01001356
1357// Flag set when main_loop() should exit when entering Ex mode.
1358EXTERN int pending_exmode_active INIT(= FALSE);
1359
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001360EXTERN int ex_no_reprint INIT(= FALSE); // no need to print after z or p
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001362EXTERN int reg_recording INIT(= 0); // register for recording or zero
1363EXTERN int reg_executing INIT(= 0); // register being executed or zero
zeertzjq6d4e7252022-04-07 13:58:04 +01001364// Flag set when peeking a character and found the end of executed register
1365EXTERN int pending_end_reg_executing INIT(= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366
Bram Moolenaar459fd782019-10-13 16:43:39 +02001367// Set when a modifyOtherKeys sequence was seen, then simplified mappings will
Bram Moolenaarc255b782022-11-26 19:16:48 +00001368// no longer be used. To be combined with modify_otherkeys_state.
Bram Moolenaar459fd782019-10-13 16:43:39 +02001369EXTERN int seenModifyOtherKeys INIT(= FALSE);
1370
Bram Moolenaarc255b782022-11-26 19:16:48 +00001371// The state for the modifyOtherKeys level
1372typedef enum {
1373 // Initially we have no clue if the protocol is on or off.
1374 MOKS_INITIAL,
1375 // Used when receiving the state and the level is not two.
1376 MOKS_OFF,
1377 // Used when receiving the state and the level is two.
1378 MOKS_ENABLED,
Bram Moolenaar9d1184c2022-12-16 18:33:20 +00001379 // Used after outputting t_TE when the state was MOKS_ENABLED. We do not
1380 // really know if t_TE actually disabled the protocol, the following t_TI
Bram Moolenaarc255b782022-11-26 19:16:48 +00001381 // is expected to request the state, but the response may come only later.
1382 MOKS_DISABLED,
Bram Moolenaar9d1184c2022-12-16 18:33:20 +00001383 // Used after outputting t_TE when the state was not MOKS_ENABLED.
1384 MOKS_AFTER_T_TE,
Bram Moolenaarc255b782022-11-26 19:16:48 +00001385} mokstate_T;
1386
1387// Set when a response to XTQMODKEYS was received. Only works for xterm
1388// version 377 and later.
1389EXTERN mokstate_T modify_otherkeys_state INIT(= MOKS_INITIAL);
1390
Bram Moolenaar63a2e362022-11-23 20:20:18 +00001391// The state for the Kitty keyboard protocol.
1392typedef enum {
1393 // Initially we have no clue if the protocol is on or off.
1394 KKPS_INITIAL,
1395 // Used when receiving the state and the flags are zero.
1396 KKPS_OFF,
1397 // Used when receiving the state and the flags are non-zero.
1398 KKPS_ENABLED,
Bram Moolenaar9d1184c2022-12-16 18:33:20 +00001399 // Used after outputting t_TE when the state was KKPS_ENABLED. We do not
1400 // really know if t_TE actually disabled the protocol, the following t_TI
Bram Moolenaar63a2e362022-11-23 20:20:18 +00001401 // is expected to request the state, but the response may come only later.
1402 KKPS_DISABLED,
Bram Moolenaar9d1184c2022-12-16 18:33:20 +00001403 // Used after outputting t_TE when the state was not KKPS_ENABLED.
1404 KKPS_AFTER_T_TE,
Bram Moolenaar63a2e362022-11-23 20:20:18 +00001405} kkpstate_T;
1406
1407EXTERN kkpstate_T kitty_protocol_state INIT(= KKPS_INITIAL);
1408
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001409EXTERN int no_mapping INIT(= FALSE); // currently no mapping allowed
1410EXTERN int no_zero_mapping INIT(= 0); // mapping zero not allowed
1411EXTERN int allow_keys INIT(= FALSE); // allow key codes when no_mapping
1412 // is set
Bram Moolenaar6a0299d2019-10-10 21:14:03 +02001413EXTERN int no_reduce_keys INIT(= FALSE); // do not apply Ctrl, Shift and Alt
1414 // to the key
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001415EXTERN int no_u_sync INIT(= 0); // Don't call u_sync()
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02001416#ifdef FEAT_EVAL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001417EXTERN int u_sync_once INIT(= 0); // Call u_sync() once when evaluating
1418 // an expression.
Bram Moolenaar3c1e9c22013-07-04 20:25:41 +02001419#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001421EXTERN int restart_edit INIT(= 0); // call edit when next cmd finished
1422EXTERN int arrow_used; // Normally FALSE, set to TRUE after
1423 // hitting cursor key in insert mode.
1424 // Used by vgetorpeek() to decide when
1425 // to call u_sync()
1426EXTERN int ins_at_eol INIT(= FALSE); // put cursor after eol when
1427 // restarting edit after CTRL-O
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001429EXTERN int no_abbr INIT(= TRUE); // TRUE when no abbreviations loaded
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430
1431#ifdef USE_EXE_NAME
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001432EXTERN char_u *exe_name; // the name of the executable
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433#endif
1434
1435#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001436EXTERN int dont_scroll INIT(= FALSE);// don't use scrollbars when TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001437#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001438EXTERN int mapped_ctrl_c INIT(= FALSE); // modes where CTRL-C is mapped
1439EXTERN int ctrl_c_interrupts INIT(= TRUE); // CTRL-C sets got_int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001441EXTERN cmdmod_T cmdmod; // Ex command modifiers
Bram Moolenaar5b1d6e92022-02-11 20:33:48 +00001442EXTERN int sticky_cmdmod_flags INIT(= 0); // used by :execute
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443
Dominique Pelle748b3082022-01-08 12:41:16 +00001444#ifdef FEAT_EVAL
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001445EXTERN int is_export INIT(= FALSE); // :export {cmd}
Dominique Pelle748b3082022-01-08 12:41:16 +00001446#endif
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001447
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001448EXTERN int msg_silent INIT(= 0); // don't print messages
1449EXTERN int emsg_silent INIT(= 0); // don't print error messages
Bram Moolenaar56602ba2020-12-05 21:22:08 +01001450#ifdef FEAT_EVAL
1451EXTERN int emsg_silent_def INIT(= 0); // value of emsg_silent when a :def
1452 // function is called
1453#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001454EXTERN int emsg_noredir INIT(= 0); // don't redirect error messages
1455EXTERN int cmd_silent INIT(= FALSE); // don't echo the command line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456
Bram Moolenaar28ee8922020-10-28 20:20:00 +01001457EXTERN int in_assert_fails INIT(= FALSE); // assert_fails() active
1458
Bram Moolenaar4e330bb2005-12-07 21:04:31 +00001459EXTERN int swap_exists_action INIT(= SEA_NONE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001460 // For dialog when swap file already
1461 // exists.
Bram Moolenaar83c465c2005-12-16 21:53:56 +00001462EXTERN int swap_exists_did_quit INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001463 // Selected "quit" at the dialog.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001465EXTERN char_u *IObuff; // sprintf's are done in this buffer,
1466 // size is IOSIZE
1467EXTERN char_u *NameBuff; // file names are expanded in this
1468 // buffer, size is MAXPATHL
1469EXTERN char msg_buf[MSG_BUF_LEN]; // small buffer for messages
Bram Moolenaar071d4272004-06-13 20:20:40 +00001470
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001471// When non-zero, postpone redrawing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472EXTERN int RedrawingDisabled INIT(= 0);
1473
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001474EXTERN int readonlymode INIT(= FALSE); // Set to TRUE for "view"
1475EXTERN int recoverymode INIT(= FALSE); // Set to TRUE for "-r" option
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001477EXTERN typebuf_T typebuf // typeahead buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478#ifdef DO_INIT
Bram Moolenaar446b1792009-06-10 16:15:40 +00001479 = {NULL, NULL, 0, 0, 0, 0, 0, 0, 0}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480#endif
1481 ;
Bram Moolenaar8d696372022-08-21 10:40:07 +01001482// Flag used to indicate that vgetorpeek() returned a char like Esc when the
1483// :normal argument was exhausted.
1484EXTERN int typebuf_was_empty INIT(= FALSE);
1485
Bram Moolenaar4934ad02020-09-28 22:29:58 +02001486EXTERN int ex_normal_busy INIT(= 0); // recursiveness of ex_normal()
Dominique Pelle748b3082022-01-08 12:41:16 +00001487#ifdef FEAT_EVAL
Bram Moolenaar4934ad02020-09-28 22:29:58 +02001488EXTERN int in_feedkeys INIT(= 0); // ex_normal_busy set in feedkeys()
Dominique Pelle748b3082022-01-08 12:41:16 +00001489#endif
Bram Moolenaar4934ad02020-09-28 22:29:58 +02001490EXTERN int ex_normal_lock INIT(= 0); // forbid use of ex_normal()
Bram Moolenaar189832b2020-09-23 12:29:11 +02001491
Bram Moolenaaree3f7a52008-01-01 13:17:56 +00001492#ifdef FEAT_EVAL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001493EXTERN int ignore_script INIT(= FALSE); // ignore script input
Bram Moolenaaree3f7a52008-01-01 13:17:56 +00001494#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001495EXTERN int stop_insert_mode; // for ":stopinsert" and 'insertmode'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001497EXTERN int KeyTyped; // TRUE if user typed current char
1498EXTERN int KeyStuffed; // TRUE if current char from stuffbuf
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001499#ifdef HAVE_INPUT_METHOD
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001500EXTERN int vgetc_im_active; // Input Method was active for last
1501 // character obtained from vgetc()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001503EXTERN int maptick INIT(= 0); // tick for each non-mapped char
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001505EXTERN int must_redraw INIT(= 0); // type of redraw necessary
1506EXTERN int skip_redraw INIT(= FALSE); // skip redraw once
1507EXTERN int do_redraw INIT(= FALSE); // extra redraw once
Bram Moolenaar4f57eef2019-08-24 20:54:19 +02001508#ifdef FEAT_DIFF
1509EXTERN int need_diff_redraw INIT(= 0); // need to call diff_redraw()
1510#endif
Bram Moolenaar6f0cf622022-06-19 12:27:45 +01001511#ifdef FEAT_RELTIME
1512// flag set when 'redrawtime' timeout has been set
1513EXTERN int redrawtime_limit_set INIT(= FALSE);
1514#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515
1516EXTERN int need_highlight_changed INIT(= TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517
1518#define NSCRIPT 15
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001519EXTERN FILE *scriptin[NSCRIPT]; // streams to read script from
1520EXTERN int curscript INIT(= 0); // index in scriptin[]
1521EXTERN FILE *scriptout INIT(= NULL); // stream to write script to
1522EXTERN int read_cmd_fd INIT(= 0); // fd to read commands from
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523
Bram Moolenaarbe5ee862020-06-10 20:56:58 +02001524// Set to TRUE when an interrupt signal occurred.
1525// Volatile because it is used in signal handler catch_sigint().
1526EXTERN volatile sig_atomic_t got_int INIT(= FALSE);
1527
1528// Set to TRUE when SIGUSR1 signal was detected.
1529// Volatile because it is used in signal handler catch_sigint().
1530EXTERN volatile sig_atomic_t got_sigusr1 INIT(= FALSE);
1531
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532#ifdef USE_TERM_CONSOLE
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001533EXTERN int term_console INIT(= FALSE); // set to TRUE when console used
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001535EXTERN int termcap_active INIT(= FALSE); // set by starttermcap()
Bram Moolenaar26e86442020-05-17 14:06:16 +02001536EXTERN tmode_T cur_tmode INIT(= TMODE_COOK); // input terminal mode
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001537EXTERN int bangredo INIT(= FALSE); // set to TRUE with ! command
1538EXTERN int searchcmdlen; // length of previous search cmd
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539#ifdef FEAT_SYN_HL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001540EXTERN int reg_do_extmatch INIT(= 0); // Used when compiling regexp:
1541 // REX_SET to allow \z\(...\),
1542 // REX_USE to allow \z\1 et al.
1543EXTERN reg_extmatch_T *re_extmatch_in INIT(= NULL); // Used by vim_regexec():
1544 // strings for \z\1...\z\9
1545EXTERN reg_extmatch_T *re_extmatch_out INIT(= NULL); // Set by vim_regexec()
1546 // to store \z\(...\) matches
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547#endif
1548
1549EXTERN int did_outofmem_msg INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001550 // set after out of memory msg
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551EXTERN int did_swapwrite_msg INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001552 // set after swap write error msg
1553EXTERN int undo_off INIT(= FALSE); // undo switched off for now
1554EXTERN int global_busy INIT(= 0); // set when :global is executing
1555EXTERN int listcmd_busy INIT(= FALSE); // set when :argdo, :windo or
1556 // :bufdo is executing
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557EXTERN int need_start_insertmode INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001558 // start insert mode soon
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +02001559#if defined(FEAT_EVAL) || defined(PROTO)
1560EXTERN char_u last_mode[MODE_MAX_LENGTH] INIT(= "n"); // for ModeChanged event
1561#endif
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001562EXTERN char_u *last_cmdline INIT(= NULL); // last command line (for ":)
1563EXTERN char_u *repeat_cmdline INIT(= NULL); // command line for "."
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001564EXTERN char_u *new_last_cmdline INIT(= NULL); // new value for last_cmdline
Bram Moolenaarbb393d82022-12-09 12:21:50 +00001565 //
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001566EXTERN char_u *autocmd_fname INIT(= NULL); // fname for <afile> on cmdline
1567EXTERN int autocmd_fname_full; // autocmd_fname is full path
1568EXTERN int autocmd_bufnr INIT(= 0); // fnum for <abuf> on cmdline
1569EXTERN char_u *autocmd_match INIT(= NULL); // name for <amatch> on cmdline
Bram Moolenaarbb393d82022-12-09 12:21:50 +00001570EXTERN int aucmd_cmdline_changed_count INIT(= 0);
1571
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001572EXTERN int did_cursorhold INIT(= FALSE); // set when CursorHold t'gerd
1573EXTERN pos_T last_cursormoved // for CursorMoved event
Bram Moolenaar754b5602006-02-09 23:53:20 +00001574# ifdef DO_INIT
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001575 = {0, 0, 0}
Bram Moolenaar754b5602006-02-09 23:53:20 +00001576# endif
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001577 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001579EXTERN int postponed_split INIT(= 0); // for CTRL-W CTRL-] command
1580EXTERN int postponed_split_flags INIT(= 0); // args for win_split()
zeertzjqcd749632022-06-14 13:30:35 +01001581EXTERN int postponed_split_tab INIT(= 0); // cmdmod.cmod_tab
Bram Moolenaar4033c552017-09-16 20:54:51 +02001582#ifdef FEAT_QUICKFIX
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02001583EXTERN int g_do_tagpreview INIT(= 0); // for tag preview commands:
1584 // height of preview window
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585#endif
Bram Moolenaar45e18cb2019-04-28 18:05:35 +02001586EXTERN int g_tag_at_cursor INIT(= FALSE); // whether the tag command comes
1587 // from the command line (0) or was
1588 // invoked as a normal command (1)
1589
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001590EXTERN int replace_offset INIT(= 0); // offset for replace_push()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591
1592EXTERN char_u *escape_chars INIT(= (char_u *)" \t\\\"|");
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001593 // need backslash in cmd line
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001595EXTERN int keep_help_flag INIT(= FALSE); // doing :ta from help file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596
1597/*
1598 * When a string option is NULL (which only happens in out-of-memory
1599 * situations), it is set to empty_option, to avoid having to check for NULL
1600 * everywhere.
1601 */
1602EXTERN char_u *empty_option INIT(= (char_u *)"");
1603
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001604EXTERN int redir_off INIT(= FALSE); // no redirection for a moment
1605EXTERN FILE *redir_fd INIT(= NULL); // message redirection file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606#ifdef FEAT_EVAL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001607EXTERN int redir_reg INIT(= 0); // message redirection register
1608EXTERN int redir_vname INIT(= 0); // message redirection variable
1609EXTERN int redir_execute INIT(= 0); // execute() redirection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610#endif
1611
1612#ifdef FEAT_LANGMAP
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001613EXTERN char_u langmap_mapchar[256]; // mapping for language keys
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614#endif
1615
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001616EXTERN int save_p_ls INIT(= -1); // Save 'laststatus' setting
1617EXTERN int save_p_wmh INIT(= -1); // Save 'winminheight' setting
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618EXTERN int wild_menu_showing INIT(= 0);
Bram Moolenaar54162322022-08-26 16:58:51 +01001619#define WM_SHOWN 1 // wildmenu showing
1620#define WM_SCROLLED 2 // wildmenu showing with scroll
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621
1622#ifdef MSWIN
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001623EXTERN char_u toupper_tab[256]; // table for toupper()
1624EXTERN char_u tolower_tab[256]; // table for tolower()
Bram Moolenaar3d0e7a92021-05-01 17:46:03 +02001625EXTERN int found_register_arg INIT(= FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626#endif
1627
1628#ifdef FEAT_LINEBREAK
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001629EXTERN char breakat_flags[256]; // which characters are in 'breakat'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630#endif
1631
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001632// These are in version.c, call init_longVersion() before use.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633extern char *Version;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634#if defined(HAVE_DATE_TIME) && defined(VMS) && defined(VAXC)
1635extern char longVersion[];
1636#else
Bram Moolenaar542ffe12021-09-17 20:45:30 +02001637extern char *longVersion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638#endif
1639
1640/*
1641 * Some file names are stored in pathdef.c, which is generated from the
1642 * Makefile to make their value depend on the Makefile.
1643 */
1644#ifdef HAVE_PATHDEF
1645extern char_u *default_vim_dir;
1646extern char_u *default_vimruntime_dir;
1647extern char_u *all_cflags;
1648extern char_u *all_lflags;
1649# ifdef VMS
1650extern char_u *compiler_version;
Bram Moolenaard675e2c2007-01-09 14:09:25 +00001651extern char_u *compiled_arch;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652# endif
1653extern char_u *compiled_user;
1654extern char_u *compiled_sys;
1655#endif
1656
Bram Moolenaar26262f82019-09-04 20:59:15 +02001657EXTERN char_u *homedir INIT(= NULL);
1658
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001659// When a window has a local directory, the absolute path of the global
1660// current directory is stored here (in allocated memory). If the current
1661// directory is not a local directory, globaldir is NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662EXTERN char_u *globaldir INIT(= NULL);
1663
Bram Moolenaar429fcfb2016-04-14 16:22:04 +02001664#ifdef FEAT_FOLDING
1665EXTERN int disable_fold_update INIT(= 0);
1666#endif
1667
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001668// Whether 'keymodel' contains "stopsel" and "startsel".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669EXTERN int km_stopsel INIT(= FALSE);
1670EXTERN int km_startsel INIT(= FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001672EXTERN int cmdwin_type INIT(= 0); // type of cmdline window or 0
1673EXTERN int cmdwin_result INIT(= 0); // result of cmdline window or 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674
1675EXTERN char_u no_lines_msg[] INIT(= N_("--No lines in buffer--"));
1676
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001677/*
1678 * When ":global" is used to number of substitutions and changed lines is
1679 * accumulated until it's finished.
1680 * Also used for ":spellrepall".
1681 */
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001682EXTERN long sub_nsubs; // total number of substitutions
1683EXTERN linenr_T sub_nlines; // total number of lines changed
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00001684
Dominique Pelle748b3082022-01-08 12:41:16 +00001685#ifdef FEAT_EVAL
Bram Moolenaar4c137212021-04-19 16:48:48 +02001686// Used when a compiled :substitute has an expression.
1687EXTERN struct subs_expr_S *substitute_instr INIT(= NULL);
Dominique Pelle748b3082022-01-08 12:41:16 +00001688#endif
Bram Moolenaar4c137212021-04-19 16:48:48 +02001689
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001690// table to store parsed 'wildmode'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691EXTERN char_u wim_flags[4];
1692
Bram Moolenaar651fca82021-11-29 20:39:38 +00001693#if defined(FEAT_STL_OPT)
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001694// whether titlestring and iconstring contains statusline syntax
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695# define STL_IN_ICON 1
1696# define STL_IN_TITLE 2
1697EXTERN int stl_syntax INIT(= 0);
1698#endif
1699
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00001700#if defined(FEAT_BEVAL) && !defined(NO_X11_INCLUDES)
Bram Moolenaarf1f8bc52005-03-07 23:20:08 +00001701EXTERN BalloonEval *balloonEval INIT(= NULL);
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001702EXTERN int balloonEvalForTerm INIT(= FALSE);
Bram Moolenaarbb1969b2019-01-17 15:45:25 +01001703# if defined(FEAT_NETBEANS_INTG)
Bram Moolenaarf1f8bc52005-03-07 23:20:08 +00001704EXTERN int bevalServers INIT(= 0);
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001705# define BEVAL_NETBEANS 0x01
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00001706# endif
Bram Moolenaarf1f8bc52005-03-07 23:20:08 +00001707#endif
1708
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709#ifdef CURSOR_SHAPE
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001710// the table is in misc2.c, because of initializations
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711extern cursorentry_T shape_table[SHAPE_IDX_COUNT];
1712#endif
1713
1714#ifdef FEAT_PRINTER
Bram Moolenaar58d98232005-07-23 22:25:46 +00001715/*
1716 * Printer stuff shared between hardcopy.c and machine-specific printing code.
1717 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718# define OPT_PRINT_TOP 0
1719# define OPT_PRINT_BOT 1
1720# define OPT_PRINT_LEFT 2
1721# define OPT_PRINT_RIGHT 3
1722# define OPT_PRINT_HEADERHEIGHT 4
1723# define OPT_PRINT_SYNTAX 5
1724# define OPT_PRINT_NUMBER 6
1725# define OPT_PRINT_WRAP 7
1726# define OPT_PRINT_DUPLEX 8
1727# define OPT_PRINT_PORTRAIT 9
1728# define OPT_PRINT_PAPER 10
1729# define OPT_PRINT_COLLATE 11
1730# define OPT_PRINT_JOBSPLIT 12
1731# define OPT_PRINT_FORMFEED 13
1732
1733# define OPT_PRINT_NUM_OPTIONS 14
1734
1735EXTERN option_table_T printer_opts[OPT_PRINT_NUM_OPTIONS]
1736# ifdef DO_INIT
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001737 = {
1738 {"top", TRUE, 0, NULL, 0, FALSE},
1739 {"bottom", TRUE, 0, NULL, 0, FALSE},
1740 {"left", TRUE, 0, NULL, 0, FALSE},
1741 {"right", TRUE, 0, NULL, 0, FALSE},
1742 {"header", TRUE, 0, NULL, 0, FALSE},
1743 {"syntax", FALSE, 0, NULL, 0, FALSE},
1744 {"number", FALSE, 0, NULL, 0, FALSE},
1745 {"wrap", FALSE, 0, NULL, 0, FALSE},
1746 {"duplex", FALSE, 0, NULL, 0, FALSE},
1747 {"portrait", FALSE, 0, NULL, 0, FALSE},
1748 {"paper", FALSE, 0, NULL, 0, FALSE},
1749 {"collate", FALSE, 0, NULL, 0, FALSE},
1750 {"jobsplit", FALSE, 0, NULL, 0, FALSE},
1751 {"formfeed", FALSE, 0, NULL, 0, FALSE},
1752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753# endif
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001754 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001756// For prt_get_unit().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757# define PRT_UNIT_NONE -1
1758# define PRT_UNIT_PERC 0
1759# define PRT_UNIT_INCH 1
1760# define PRT_UNIT_MM 2
1761# define PRT_UNIT_POINT 3
1762# define PRT_UNIT_NAMES {"pc", "in", "mm", "pt"}
1763#endif
1764
Bram Moolenaar65c923a2006-03-03 22:56:30 +00001765#if (defined(FEAT_PRINTER) && defined(FEAT_STL_OPT)) \
1766 || defined(FEAT_GUI_TABLINE)
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001767// Page number used for %N in 'pageheader' and 'guitablabel'.
Bram Moolenaar5c8837f2006-02-25 21:52:33 +00001768EXTERN linenr_T printer_page_num;
1769#endif
1770
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771#ifdef FEAT_XCLIPBOARD
Bram Moolenaard4aa83a2019-05-09 18:59:31 +02001772// xterm display name
1773EXTERN char *xterm_display INIT(= NULL);
1774
1775// whether xterm_display was allocated, when FALSE it points into argv[]
1776EXTERN int xterm_display_allocated INIT(= FALSE);
1777
1778// xterm display pointer
1779EXTERN Display *xterm_dpy INIT(= NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780#endif
1781#if defined(FEAT_XCLIPBOARD) || defined(FEAT_GUI_X11)
1782EXTERN XtAppContext app_context INIT(= (XtAppContext)NULL);
1783#endif
1784
1785#ifdef FEAT_GUI_GTK
1786EXTERN guint32 gtk_socket_id INIT(= 0);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001787EXTERN int echo_wid_arg INIT(= FALSE); // --echo-wid argument
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788#endif
1789
Bram Moolenaar4f974752019-02-17 17:44:42 +01001790#ifdef FEAT_GUI_MSWIN
Bram Moolenaar78e17622007-08-30 10:26:19 +00001791/*
1792 * The value of the --windowid argument.
1793 * For embedding gvim inside another application.
1794 */
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00001795EXTERN long_u win_socket_id INIT(= 0);
Bram Moolenaar78e17622007-08-30 10:26:19 +00001796#endif
1797
Bram Moolenaar4a85b412006-04-23 22:40:29 +00001798#if defined(FEAT_CLIENTSERVER) || defined(FEAT_EVAL)
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001799EXTERN int typebuf_was_filled INIT(= FALSE); // received text from client
1800 // or from feedkeys()
Bram Moolenaar4a85b412006-04-23 22:40:29 +00001801#endif
1802
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803#ifdef FEAT_CLIENTSERVER
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001804EXTERN char_u *serverName INIT(= NULL); // name of the server
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805# ifdef FEAT_X11
1806EXTERN Window commWindow INIT(= None);
1807EXTERN Window clientWindow INIT(= None);
1808EXTERN Atom commProperty INIT(= None);
1809EXTERN char_u *serverDelayedStartName INIT(= NULL);
1810# else
Bram Moolenaara7014df2012-06-29 12:35:44 +02001811# ifdef PROTO
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812typedef int HWND;
Bram Moolenaara7014df2012-06-29 12:35:44 +02001813# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814EXTERN HWND clientWindow INIT(= 0);
1815# endif
1816#endif
1817
1818#if defined(UNIX) || defined(VMS)
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001819EXTERN int term_is_xterm INIT(= FALSE); // xterm-like 'term'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820#endif
1821
1822#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001823EXTERN char psepc INIT(= '\\'); // normal path separator character
1824EXTERN char psepcN INIT(= '/'); // abnormal path separator character
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01001825// normal path separator string
Bram Moolenaarea8b7ae2020-01-01 15:46:47 +01001826EXTERN char pseps[2] INIT2('\\', 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827#endif
1828
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001829// Set to TRUE when an operator is being executed with virtual editing, MAYBE
1830// when no operator is being executed, FALSE otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831EXTERN int virtual_op INIT(= MAYBE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832
1833#ifdef FEAT_SYN_HL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001834// Display tick, incremented for each call to update_screen()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835EXTERN disptick_T display_tick INIT(= 0);
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00001836#endif
Bram Moolenaar217ad922005-03-20 22:37:15 +00001837
Bram Moolenaarb9a02fc2006-03-12 22:08:12 +00001838#ifdef FEAT_SPELL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001839// Line in which spell checking wasn't highlighted because it touched the
1840// cursor position in Insert mode.
Bram Moolenaar217ad922005-03-20 22:37:15 +00001841EXTERN linenr_T spell_redraw_lnum INIT(= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842#endif
1843
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001844#ifdef FEAT_CONCEAL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001845// Set when the cursor line needs to be redrawn.
Bram Moolenaarf5963f72010-07-23 22:10:27 +02001846EXTERN int need_cursor_line_redraw INIT(= FALSE);
1847#endif
1848
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849#ifdef USE_MCH_ERRMSG
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001850// Grow array to collect error messages in until they can be displayed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851EXTERN garray_T error_ga
1852# ifdef DO_INIT
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001853 = {0, 0, 0, 0, NULL}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854# endif
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001855 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856#endif
1857
1858#ifdef FEAT_NETBEANS_INTG
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001859EXTERN char *netbeansArg INIT(= NULL); // the -nb[:host:port:passwd] arg
1860EXTERN int netbeansFireChanges INIT(= 1); // send buffer changes if != 0
1861EXTERN int netbeansForcedQuit INIT(= 0);// don't write modified files
1862EXTERN int netbeansReadFile INIT(= 1); // OK to read from disk if != 0
1863EXTERN int netbeansSuppressNoLines INIT(= 0); // skip "No lines in buffer"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864#endif
1865
1866/*
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001867 * Some messages that can be shared are included here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 */
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001869EXTERN char top_bot_msg[] INIT(= N_("search hit TOP, continuing at BOTTOM"));
1870EXTERN char bot_top_msg[] INIT(= N_("search hit BOTTOM, continuing at TOP"));
Bram Moolenaarf93c7fe2020-04-23 22:16:53 +02001871
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001872EXTERN char line_msg[] INIT(= N_(" line "));
Bram Moolenaar64e74c92019-12-22 15:38:06 +01001873
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001874#ifdef FEAT_CRYPT
Bram Moolenaar3a846e62022-01-01 16:21:00 +00001875EXTERN char need_key_msg[] INIT(= N_("Need encryption key for \"%s\""));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001876#endif
1877
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878/*
1879 * Comms. with the session manager (XSMP)
1880 */
1881#ifdef USE_XSMP
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001882EXTERN int xsmp_icefd INIT(= -1); // The actual connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883#endif
1884
Bram Moolenaar3f269672009-11-03 11:11:11 +00001885#ifdef STARTUPTIME
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001886EXTERN FILE *time_fd INIT(= NULL); // where to write startup timing
Bram Moolenaar3f269672009-11-03 11:11:11 +00001887#endif
1888
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889/*
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001890 * Some compilers warn for not using a return value, but in some situations we
1891 * can't do anything useful with the value. Assign to this variable to avoid
1892 * the warning.
1893 */
Bram Moolenaar42335f52018-09-13 15:33:43 +02001894EXTERN int vim_ignored;
1895EXTERN char *vim_ignoredp;
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001896
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001897#ifdef FEAT_EVAL
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001898// set by alloc_fail(): ID
Bram Moolenaar28fb79d2016-01-09 22:28:33 +01001899EXTERN alloc_id_T alloc_fail_id INIT(= aid_none);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001900// set by alloc_fail(), when zero alloc() returns NULL
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001901EXTERN int alloc_fail_countdown INIT(= -1);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001902// set by alloc_fail(), number of times alloc() returns NULL
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001903EXTERN int alloc_fail_repeat INIT(= 0);
Bram Moolenaar2ab375e2016-02-10 22:23:06 +01001904
Bram Moolenaar92fd5992019-05-02 23:00:22 +02001905// flags set by test_override()
Bram Moolenaared5a9d62018-09-06 13:14:43 +02001906EXTERN int disable_char_avail_for_testing INIT(= FALSE);
1907EXTERN int disable_redraw_for_testing INIT(= FALSE);
1908EXTERN int ignore_redraw_flag_for_testing INIT(= FALSE);
1909EXTERN int nfa_fail_for_testing INIT(= FALSE);
Bram Moolenaar92fd5992019-05-02 23:00:22 +02001910EXTERN int no_query_mouse_for_testing INIT(= FALSE);
Bram Moolenaarb340bae2020-06-15 19:51:56 +02001911EXTERN int ui_delay_for_testing INIT(= 0);
Bram Moolenaar0c0eddd2020-06-13 15:47:25 +02001912EXTERN int reset_term_props_on_termresponse INIT(= FALSE);
ichizokae1bd872022-01-20 14:57:29 +00001913EXTERN int disable_vterm_title_for_testing INIT(= FALSE);
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001914EXTERN long override_sysinfo_uptime INIT(= -1);
Bram Moolenaar3e4fa3d2022-01-13 22:05:09 +00001915EXTERN int override_autoload INIT(= FALSE);
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01001916EXTERN int ml_get_alloc_lines INIT(= FALSE);
Bram Moolenaar107e1ee2016-04-08 17:07:19 +02001917
1918EXTERN int in_free_unref_items INIT(= FALSE);
Bram Moolenaar75bdf6a2016-01-07 21:25:08 +01001919#endif
1920
Bram Moolenaar4231da42016-06-02 14:30:04 +02001921#ifdef FEAT_TIMERS
1922EXTERN int did_add_timer INIT(= FALSE);
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001923EXTERN int timer_busy INIT(= 0); // when timer is inside vgetc() then > 0
Bram Moolenaar4231da42016-06-02 14:30:04 +02001924#endif
Bram Moolenaardfc33a62020-04-29 22:30:13 +02001925#ifdef FEAT_EVAL
1926EXTERN int input_busy INIT(= 0); // when inside get_user_input() then > 0
Bram Moolenaaraacc9662021-08-13 19:40:51 +02001927
1928EXTERN typval_T *lval_root INIT(= NULL);
Bram Moolenaardfc33a62020-04-29 22:30:13 +02001929#endif
Bram Moolenaar4231da42016-06-02 14:30:04 +02001930
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01001931#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01001932EXTERN int bevalexpr_due_set INIT(= FALSE);
1933EXTERN proftime_T bevalexpr_due;
1934#endif
1935
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001936#ifdef FEAT_EVAL
Bram Moolenaarf4fba6d2016-06-26 16:44:24 +02001937EXTERN time_T time_for_testing INIT(= 0);
Bram Moolenaarcd524592016-07-17 14:57:05 +02001938
Bram Moolenaarf93c7fe2020-04-23 22:16:53 +02001939EXTERN int echo_attr INIT(= 0); // attributes used for ":echo"
1940
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001941// Abort conversion to string after a recursion error.
Bram Moolenaarcd524592016-07-17 14:57:05 +02001942EXTERN int did_echo_string_emsg INIT(= FALSE);
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001943
Bram Moolenaar1ccaa352019-08-02 22:08:25 +02001944// Used for checking if local variables or arguments used in a lambda.
Bram Moolenaar1e96d9b2016-07-29 22:15:09 +02001945EXTERN int *eval_lavars_used INIT(= NULL);
Bram Moolenaar0c1e3742019-12-27 13:49:24 +01001946
1947// Only filled for Win32.
1948EXTERN char windowsVersion[20] INIT(= {0});
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001949
Bram Moolenaarb0992022020-01-30 14:55:42 +01001950// Used for lv_first in a non-materialized range() list.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001951EXTERN listitem_T range_list_item;
Bram Moolenaar5409f5d2020-06-24 18:37:35 +02001952
1953// Passed to an eval() function to enable evaluation.
Bram Moolenaare40fbc22020-06-27 18:06:45 +02001954EXTERN evalarg_T EVALARG_EVALUATE
1955# ifdef DO_INIT
Bram Moolenaar844fb642021-10-23 13:32:30 +01001956 = {EVAL_EVALUATE, 0, NULL, NULL, NULL, NULL, GA_EMPTY, GA_EMPTY, NULL,
1957 {0, 0, (int)sizeof(char_u *), 20, NULL}, 0, NULL}
Bram Moolenaare40fbc22020-06-27 18:06:45 +02001958# endif
1959 ;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001960#endif
1961
Bram Moolenaar4f974752019-02-17 17:44:42 +01001962#ifdef MSWIN
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02001963# ifdef PROTO
1964typedef int HINSTANCE;
1965# endif
Bram Moolenaar7eedd432017-08-12 15:15:33 +02001966EXTERN int ctrl_break_was_pressed INIT(= FALSE);
Bram Moolenaarafde13b2019-04-28 19:46:49 +02001967EXTERN HINSTANCE g_hinst INIT(= NULL);
Bram Moolenaar9698ad72017-08-12 14:52:15 +02001968#endif
Bram Moolenaar101e9922019-09-25 21:43:11 +02001969
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001970
Bram Moolenaar101e9922019-09-25 21:43:11 +02001971#if defined(FEAT_JOB_CHANNEL)
Bram Moolenaar4c5678f2022-11-30 18:12:19 +00001972EXTERN char *ch_part_names[]
1973# ifdef DO_INIT
1974 = {"sock", "out", "err", "in"}
1975# endif
1976 ;
1977
Bram Moolenaar3b8c7082022-11-30 20:20:56 +00001978// Whether a redraw is needed for appending a line to a buffer.
1979EXTERN int channel_need_redraw INIT(= FALSE);
Bram Moolenaar3b8c7082022-11-30 20:20:56 +00001980#endif
1981
1982#ifdef FEAT_EVAL
Bram Moolenaar86394aa2020-09-05 14:27:24 +02001983// This flag is set when outputting a terminal control code and reset in
1984// out_flush() when characters have been written.
1985EXTERN int ch_log_output INIT(= FALSE);
1986
Bram Moolenaar3b8c7082022-11-30 20:20:56 +00001987EXTERN int did_repeated_msg INIT(= 0);
1988# define REPEATED_MSG_LOOKING 1
1989# define REPEATED_MSG_SAFESTATE 2
Bram Moolenaar00d253e2020-04-06 22:13:01 +02001990#endif
1991
Bram Moolenaard93a7fc2021-01-04 12:42:13 +01001992// While executing a regexp and set to OPTION_MAGIC_ON or OPTION_MAGIC_OFF this
1993// overrules p_magic. Otherwise set to OPTION_MAGIC_NOT_SET.
1994EXTERN optmagic_T magic_overruled INIT(= OPTION_MAGIC_NOT_SET);
Luuk van Baal3735f112022-09-15 12:43:26 +01001995
Luuk van Baal13ece2a2022-10-03 15:28:08 +01001996// Skip win_fix_cursor() call for 'splitkeep' when cmdwin is closed.
Luuk van Baal3735f112022-09-15 12:43:26 +01001997EXTERN int skip_win_fix_cursor INIT(= FALSE);
Luuk van Baal13ece2a2022-10-03 15:28:08 +01001998// Skip win_fix_scroll() call for 'splitkeep' when closing tab page.
Luuk van Baalfaf1d412022-09-19 16:45:29 +01001999EXTERN int skip_win_fix_scroll INIT(= FALSE);
2000// Skip update_topline() call while executing win_fix_scroll().
2001EXTERN int skip_update_topline INIT(= FALSE);
Luuk van Baalba936f62022-12-15 13:15:39 +00002002
zeertzjq378e6c02023-01-14 11:46:49 +00002003// 'showcmd' buffer shared between normal.c and statusline code
Luuk van Baalba936f62022-12-15 13:15:39 +00002004#define SHOWCMD_BUFLEN (SHOWCMD_COLS + 1 + 30)
2005EXTERN char_u showcmd_buf[SHOWCMD_BUFLEN];