blob: 2c55e67bc3701d80015a0c7a2a0ceac2053246dd [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 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ex_docmd.c: functions for executing an Ex command line.
12 */
13
14#include "vim.h"
15
Bram Moolenaar071d4272004-06-13 20:20:40 +000016static int quitmore = 0;
17static int ex_pressedreturn = FALSE;
18#ifndef FEAT_PRINTER
19# define ex_hardcopy ex_ni
20#endif
21
Bram Moolenaar071d4272004-06-13 20:20:40 +000022#ifdef FEAT_EVAL
Bram Moolenaar20b23c62020-08-20 15:25:00 +020023static char_u *do_one_cmd(char_u **, int, cstack_T *, char_u *(*fgetline)(int, void *, int, getline_opt_T), void *cookie);
Bram Moolenaar071d4272004-06-13 20:20:40 +000024#else
Bram Moolenaar20b23c62020-08-20 15:25:00 +020025static char_u *do_one_cmd(char_u **, int, char_u *(*fgetline)(int, void *, int, getline_opt_T), void *cookie);
Bram Moolenaar217e1b82019-12-01 21:41:28 +010026static int if_level = 0; // depth in :if
Bram Moolenaar071d4272004-06-13 20:20:40 +000027#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010028static void append_command(char_u *cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000029
Bram Moolenaar071d4272004-06-13 20:20:40 +000030#ifndef FEAT_MENU
31# define ex_emenu ex_ni
32# define ex_menu ex_ni
33# define ex_menutranslate ex_ni
34#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010035static void ex_autocmd(exarg_T *eap);
36static void ex_doautocmd(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010037static void ex_bunload(exarg_T *eap);
38static void ex_buffer(exarg_T *eap);
39static void ex_bmodified(exarg_T *eap);
40static void ex_bnext(exarg_T *eap);
41static void ex_bprevious(exarg_T *eap);
42static void ex_brewind(exarg_T *eap);
43static void ex_blast(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010044static char_u *getargcmd(char_u **);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010045static int getargopt(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000046#ifndef FEAT_QUICKFIX
47# define ex_make ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +000048# define ex_cbuffer ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000049# define ex_cc ex_ni
50# define ex_cnext ex_ni
Bram Moolenaar3ff33112019-05-03 21:56:35 +020051# define ex_cbelow ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000052# define ex_cfile ex_ni
53# define qf_list ex_ni
54# define qf_age ex_ni
Bram Moolenaarf6acffb2016-07-16 16:54:24 +020055# define qf_history ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000056# define ex_helpgrep ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +000057# define ex_vimgrep ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000058#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +020059#if !defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +000060# define ex_cclose ex_ni
61# define ex_copen ex_ni
62# define ex_cwindow ex_ni
Bram Moolenaardcb17002016-07-07 18:58:59 +020063# define ex_cbottom ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000064#endif
Bram Moolenaar1e015462005-09-25 22:16:38 +000065#if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
66# define ex_cexpr ex_ni
67#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000068
Bram Moolenaarc2af0af2020-08-23 21:06:02 +020069static linenr_T default_address(exarg_T *eap);
Bram Moolenaarb7316892019-05-01 18:08:42 +020070static linenr_T get_address(exarg_T *, char_u **, cmd_addr_T addr_type, int skip, int silent, int to_other_file, int address_count);
Bram Moolenaarc2af0af2020-08-23 21:06:02 +020071static void address_default_all(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010072static void get_flags(exarg_T *eap);
Bram Moolenaar85363ab2010-07-18 13:58:26 +020073#if !defined(FEAT_PERL) \
74 || !defined(FEAT_PYTHON) || !defined(FEAT_PYTHON3) \
75 || !defined(FEAT_TCL) \
76 || !defined(FEAT_RUBY) \
77 || !defined(FEAT_LUA) \
78 || !defined(FEAT_MZSCHEME)
Bram Moolenaar7bb75552007-07-16 18:39:49 +000079# define HAVE_EX_SCRIPT_NI
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010080static void ex_script_ni(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000081#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +010082static char *invalid_range(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010083static void correct_range(exarg_T *eap);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000084#ifdef FEAT_QUICKFIX
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010085static char_u *replace_makeprg(exarg_T *eap, char_u *p, char_u **cmdlinep);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000086#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010087static char_u *repl_cmdline(exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep);
88static void ex_highlight(exarg_T *eap);
89static void ex_colorscheme(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010090static void ex_cquit(exarg_T *eap);
91static void ex_quit_all(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010092static void ex_close(exarg_T *eap);
93static void ex_win_close(int forceit, win_T *win, tabpage_T *tp);
94static void ex_only(exarg_T *eap);
95static void ex_resize(exarg_T *eap);
96static void ex_stag(exarg_T *eap);
97static void ex_tabclose(exarg_T *eap);
98static void ex_tabonly(exarg_T *eap);
99static void ex_tabnext(exarg_T *eap);
100static void ex_tabmove(exarg_T *eap);
101static void ex_tabs(exarg_T *eap);
Bram Moolenaar4033c552017-09-16 20:54:51 +0200102#if defined(FEAT_QUICKFIX)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100103static void ex_pclose(exarg_T *eap);
104static void ex_ptag(exarg_T *eap);
105static void ex_pedit(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106#else
107# define ex_pclose ex_ni
108# define ex_ptag ex_ni
109# define ex_pedit ex_ni
110#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100111static void ex_hide(exarg_T *eap);
112static void ex_stop(exarg_T *eap);
113static void ex_exit(exarg_T *eap);
114static void ex_print(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115#ifdef FEAT_BYTEOFF
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100116static void ex_goto(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117#else
118# define ex_goto ex_ni
119#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100120static void ex_shell(exarg_T *eap);
121static void ex_preserve(exarg_T *eap);
122static void ex_recover(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100123static void ex_mode(exarg_T *eap);
124static void ex_wrongmodifier(exarg_T *eap);
125static void ex_find(exarg_T *eap);
126static void ex_open(exarg_T *eap);
127static void ex_edit(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128#ifndef FEAT_GUI
129# define ex_gui ex_nogui
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100130static void ex_nogui(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +0100132#if defined(FEAT_GUI_MSWIN) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100133static void ex_tearoff(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134#else
135# define ex_tearoff ex_ni
136#endif
Bram Moolenaar29a2c082018-03-05 21:06:23 +0100137#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
138 || defined(FEAT_TERM_POPUP_MENU)) && defined(FEAT_MENU)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100139static void ex_popup(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140#else
141# define ex_popup ex_ni
142#endif
143#ifndef FEAT_GUI_MSWIN
144# define ex_simalt ex_ni
145#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000146#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147# define gui_mch_find_dialog ex_ni
148# define gui_mch_replace_dialog ex_ni
149#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000150#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151# define ex_helpfind ex_ni
152#endif
153#ifndef FEAT_CSCOPE
Bram Moolenaard4db7712016-11-12 19:16:46 +0100154# define ex_cscope ex_ni
155# define ex_scscope ex_ni
156# define ex_cstag ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157#endif
158#ifndef FEAT_SYN_HL
159# define ex_syntax ex_ni
Bram Moolenaar860cae12010-06-05 23:22:07 +0200160# define ex_ownsyntax ex_ni
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000161#endif
Bram Moolenaarf7512552013-06-06 14:55:19 +0200162#if !defined(FEAT_SYN_HL) || !defined(FEAT_PROFILE)
Bram Moolenaar8a7f5a22013-06-06 14:01:46 +0200163# define ex_syntime ex_ni
164#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000165#ifndef FEAT_SPELL
Bram Moolenaarb765d632005-06-07 21:00:02 +0000166# define ex_spell ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000167# define ex_mkspell ex_ni
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000168# define ex_spelldump ex_ni
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000169# define ex_spellinfo ex_ni
Bram Moolenaara1ba8112005-06-28 23:23:32 +0000170# define ex_spellrepall ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000171#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200172#ifndef FEAT_PERSISTENT_UNDO
173# define ex_rundo ex_ni
174# define ex_wundo ex_ni
175#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200176#ifndef FEAT_LUA
177# define ex_lua ex_script_ni
178# define ex_luado ex_ni
179# define ex_luafile ex_ni
180#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000181#ifndef FEAT_MZSCHEME
182# define ex_mzscheme ex_script_ni
183# define ex_mzfile ex_ni
184#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185#ifndef FEAT_PERL
186# define ex_perl ex_script_ni
187# define ex_perldo ex_ni
188#endif
189#ifndef FEAT_PYTHON
190# define ex_python ex_script_ni
Bram Moolenaard620aa92013-05-17 16:40:06 +0200191# define ex_pydo ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192# define ex_pyfile ex_ni
193#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200194#ifndef FEAT_PYTHON3
Bram Moolenaar368373e2010-07-19 20:46:22 +0200195# define ex_py3 ex_script_ni
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200196# define ex_py3do ex_ni
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200197# define ex_py3file ex_ni
198#endif
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +0100199#if !defined(FEAT_PYTHON) && !defined(FEAT_PYTHON3)
200# define ex_pyx ex_script_ni
201# define ex_pyxdo ex_ni
202# define ex_pyxfile ex_ni
203#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204#ifndef FEAT_TCL
205# define ex_tcl ex_script_ni
206# define ex_tcldo ex_ni
207# define ex_tclfile ex_ni
208#endif
209#ifndef FEAT_RUBY
210# define ex_ruby ex_script_ni
211# define ex_rubydo ex_ni
212# define ex_rubyfile ex_ni
213#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214#ifndef FEAT_KEYMAP
215# define ex_loadkeymap ex_ni
216#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100217static void ex_swapname(exarg_T *eap);
218static void ex_syncbind(exarg_T *eap);
219static void ex_read(exarg_T *eap);
220static void ex_pwd(exarg_T *eap);
221static void ex_equal(exarg_T *eap);
222static void ex_sleep(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100223static void ex_winsize(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100224static void ex_wincmd(exarg_T *eap);
Bram Moolenaar843ee412004-06-30 16:16:41 +0000225#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100226static void ex_winpos(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227#else
228# define ex_winpos ex_ni
229#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100230static void ex_operators(exarg_T *eap);
231static void ex_put(exarg_T *eap);
232static void ex_copymove(exarg_T *eap);
233static void ex_submagic(exarg_T *eap);
234static void ex_join(exarg_T *eap);
235static void ex_at(exarg_T *eap);
236static void ex_bang(exarg_T *eap);
237static void ex_undo(exarg_T *eap);
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200238#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100239static void ex_wundo(exarg_T *eap);
240static void ex_rundo(exarg_T *eap);
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200241#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100242static void ex_redo(exarg_T *eap);
243static void ex_later(exarg_T *eap);
244static void ex_redir(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100245static void ex_redrawstatus(exarg_T *eap);
Bram Moolenaare12bab32019-01-08 22:02:56 +0100246static void ex_redrawtabline(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100247static void close_redir(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100248static void ex_mark(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100249static void ex_startinsert(exarg_T *eap);
250static void ex_stopinsert(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251#ifdef FEAT_FIND_ID
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100252static void ex_checkpath(exarg_T *eap);
253static void ex_findpat(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254#else
255# define ex_findpat ex_ni
256# define ex_checkpath ex_ni
257#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +0200258#if defined(FEAT_FIND_ID) && defined(FEAT_QUICKFIX)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100259static void ex_psearch(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260#else
261# define ex_psearch ex_ni
262#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100263static void ex_tag(exarg_T *eap);
264static void ex_tag_cmd(exarg_T *eap, char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265#ifndef FEAT_EVAL
Bram Moolenaar1b1e9df2020-10-10 22:26:52 +0200266# define ex_block ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200267# define ex_break ex_ni
268# define ex_breakadd ex_ni
269# define ex_breakdel ex_ni
270# define ex_breaklist ex_ni
271# define ex_call ex_ni
272# define ex_catch ex_ni
273# define ex_compiler ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200274# define ex_continue ex_ni
275# define ex_debug ex_ni
276# define ex_debuggreedy ex_ni
Bram Moolenaar822ba242020-05-24 23:00:18 +0200277# define ex_defcompile ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200278# define ex_delfunction ex_ni
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100279# define ex_disassemble ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280# define ex_echo ex_ni
281# define ex_echohl ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282# define ex_else ex_ni
Bram Moolenaar1b1e9df2020-10-10 22:26:52 +0200283# define ex_endblock ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200284# define ex_endfunction ex_ni
285# define ex_endif ex_ni
286# define ex_endtry ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287# define ex_endwhile ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200288# define ex_eval ex_ni
289# define ex_execute ex_ni
Bram Moolenaar340c59e2021-04-24 20:37:03 +0200290# define ex_incdec ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200291# define ex_finally ex_ni
292# define ex_finish ex_ni
293# define ex_function ex_ni
294# define ex_if ex_ni
295# define ex_let ex_ni
Bram Moolenaard47f50b2020-09-26 15:20:42 +0200296# define ex_var ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200297# define ex_lockvar ex_ni
298# define ex_oldfiles ex_ni
299# define ex_options ex_ni
300# define ex_packadd ex_ni
301# define ex_packloadall ex_ni
302# define ex_return ex_ni
303# define ex_scriptnames ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304# define ex_throw ex_ni
305# define ex_try ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306# define ex_unlet ex_ni
Bram Moolenaar65c1b012005-01-31 19:02:28 +0000307# define ex_unlockvar ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200308# define ex_while ex_ni
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100309# define ex_import ex_ni
310# define ex_export ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311#endif
Bram Moolenaar84538072019-07-28 14:15:42 +0200312#ifndef FEAT_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313# define ex_loadview ex_ni
314#endif
Bram Moolenaardefa0672019-07-21 19:25:37 +0200315#ifndef FEAT_VIMINFO
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316# define ex_viminfo ex_ni
317#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100318static void ex_behave(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100319static void ex_filetype(exarg_T *eap);
320static void ex_setfiletype(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000322# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323# define ex_diffpatch ex_ni
324# define ex_diffgetput ex_ni
325# define ex_diffsplit ex_ni
326# define ex_diffthis ex_ni
327# define ex_diffupdate ex_ni
328#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100329static void ex_digraphs(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100331static void ex_nohlsearch(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332#else
333# define ex_nohlsearch ex_ni
334# define ex_match ex_ni
335#endif
336#ifdef FEAT_CRYPT
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100337static void ex_X(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338#else
339# define ex_X ex_ni
340#endif
341#ifdef FEAT_FOLDING
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100342static void ex_fold(exarg_T *eap);
343static void ex_foldopen(exarg_T *eap);
344static void ex_folddo(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345#else
346# define ex_fold ex_ni
347# define ex_foldopen ex_ni
348# define ex_folddo ex_ni
349#endif
Bram Moolenaar13505972019-01-24 15:04:48 +0100350#if !(defined(HAVE_LOCALE_H) || defined(X_LOCALE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351# define ex_language ex_ni
352#endif
353#ifndef FEAT_SIGNS
354# define ex_sign ex_ni
355#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000356#ifndef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200357# define ex_nbclose ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000358# define ex_nbkey ex_ni
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200359# define ex_nbstart ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000360#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362#ifndef FEAT_JUMPLIST
363# define ex_jumps ex_ni
Bram Moolenaar2d358992016-06-12 21:20:54 +0200364# define ex_clearjumps ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365# define ex_changes ex_ni
366#endif
367
Bram Moolenaar05159a02005-02-26 23:04:13 +0000368#ifndef FEAT_PROFILE
369# define ex_profile ex_ni
370#endif
Bram Moolenaare4f25e42017-07-07 11:54:15 +0200371#ifndef FEAT_TERMINAL
372# define ex_terminal ex_ni
373#endif
Bram Moolenaard4aa83a2019-05-09 18:59:31 +0200374#if !defined(FEAT_X11) || !defined(FEAT_XCLIPBOARD)
375# define ex_xrestore ex_ni
376#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +0100377#if !defined(FEAT_PROP_POPUP)
Bram Moolenaar682725c2019-05-25 20:10:37 +0200378# define ex_popupclear ex_ni
379#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000380
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381/*
382 * Declare cmdnames[].
383 */
384#define DO_DECLARE_EXCMD
385#include "ex_cmds.h"
Bram Moolenaar6de5e122017-04-20 21:55:44 +0200386#include "ex_cmdidxs.h"
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +0100387
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388static char_u dollar_command[2] = {'$', 0};
389
390
391#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100392// Struct for storing a line inside a while/for loop
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393typedef struct
394{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100395 char_u *line; // command line
396 linenr_T lnum; // sourcing_lnum of the line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397} wcmd_T;
398
399/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000400 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000402 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000404struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100406 garray_T *lines_gap; // growarray with line info
407 int current_line; // last read line from growarray
408 int repeating; // TRUE when looping a second time
409 // When "repeating" is FALSE use "getline" and "cookie" to get lines
Bram Moolenaar20b23c62020-08-20 15:25:00 +0200410 char_u *(*getline)(int, void *, int, getline_opt_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 void *cookie;
412};
413
Bram Moolenaar20b23c62020-08-20 15:25:00 +0200414static char_u *get_loop_line(int c, void *cookie, int indent, getline_opt_T options);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100415static int store_loop_line(garray_T *gap, char_u *line);
416static void free_cmdlines(garray_T *gap);
Bram Moolenaared203462004-06-16 11:19:22 +0000417
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100418// Struct to save a few things while debugging. Used in do_cmdline() only.
Bram Moolenaared203462004-06-16 11:19:22 +0000419struct dbg_stuff
420{
421 int trylevel;
422 int force_abort;
423 except_T *caught_stack;
424 char_u *vv_exception;
425 char_u *vv_throwpoint;
426 int did_emsg;
427 int got_int;
428 int did_throw;
429 int need_rethrow;
430 int check_cstack;
431 except_T *current_exception;
432};
433
Bram Moolenaared203462004-06-16 11:19:22 +0000434 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100435save_dbg_stuff(struct dbg_stuff *dsp)
Bram Moolenaared203462004-06-16 11:19:22 +0000436{
437 dsp->trylevel = trylevel; trylevel = 0;
438 dsp->force_abort = force_abort; force_abort = FALSE;
439 dsp->caught_stack = caught_stack; caught_stack = NULL;
440 dsp->vv_exception = v_exception(NULL);
441 dsp->vv_throwpoint = v_throwpoint(NULL);
442
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100443 // Necessary for debugging an inactive ":catch", ":finally", ":endtry"
Bram Moolenaared203462004-06-16 11:19:22 +0000444 dsp->did_emsg = did_emsg; did_emsg = FALSE;
445 dsp->got_int = got_int; got_int = FALSE;
446 dsp->did_throw = did_throw; did_throw = FALSE;
447 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
448 dsp->check_cstack = check_cstack; check_cstack = FALSE;
449 dsp->current_exception = current_exception; current_exception = NULL;
450}
451
452 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100453restore_dbg_stuff(struct dbg_stuff *dsp)
Bram Moolenaared203462004-06-16 11:19:22 +0000454{
455 suppress_errthrow = FALSE;
456 trylevel = dsp->trylevel;
457 force_abort = dsp->force_abort;
458 caught_stack = dsp->caught_stack;
459 (void)v_exception(dsp->vv_exception);
460 (void)v_throwpoint(dsp->vv_throwpoint);
461 did_emsg = dsp->did_emsg;
462 got_int = dsp->got_int;
463 did_throw = dsp->did_throw;
464 need_rethrow = dsp->need_rethrow;
465 check_cstack = dsp->check_cstack;
466 current_exception = dsp->current_exception;
467}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468#endif
469
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470/*
471 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
472 * command is given.
473 */
474 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100475do_exmode(
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100476 int improved) // TRUE for "improved Ex" mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477{
478 int save_msg_scroll;
479 int prev_msg_row;
480 linenr_T prev_line;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100481 varnumber_T changedtick;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000482
483 if (improved)
484 exmode_active = EXMODE_VIM;
485 else
486 exmode_active = EXMODE_NORMAL;
487 State = NORMAL;
=?UTF-8?q?Magnus=20Gro=C3=9F?=f1e88762021-09-12 13:39:55 +0200488 trigger_modechanged();
Bram Moolenaardf177f62005-02-22 08:39:57 +0000489
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100490 // When using ":global /pat/ visual" and then "Q" we return to continue
491 // the :global command.
Bram Moolenaardf177f62005-02-22 08:39:57 +0000492 if (global_busy)
493 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000494
495 save_msg_scroll = msg_scroll;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100496 ++RedrawingDisabled; // don't redisplay the window
497 ++no_wait_return; // don't wait for return
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498#ifdef FEAT_GUI
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100499 // Ignore scrollbar and mouse events in Ex mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 ++hold_gui_events;
501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502
Bram Moolenaar32526b32019-01-19 17:43:09 +0100503 msg(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 while (exmode_active)
505 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100506 // Check for a ":normal" command and no more characters left.
Bram Moolenaar7c626922005-02-07 22:01:03 +0000507 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
508 {
509 exmode_active = FALSE;
510 break;
511 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 msg_scroll = TRUE;
513 need_wait_return = FALSE;
514 ex_pressedreturn = FALSE;
515 ex_no_reprint = FALSE;
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100516 changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 prev_msg_row = msg_row;
518 prev_line = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 if (improved)
520 {
521 cmdline_row = msg_row;
522 do_cmdline(NULL, getexline, NULL, 0);
523 }
524 else
525 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
526 lines_left = Rows - 1;
527
Bram Moolenaardf177f62005-02-22 08:39:57 +0000528 if ((prev_line != curwin->w_cursor.lnum
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100529 || changedtick != CHANGEDTICK(curbuf)) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000531 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100532 emsg(_(e_emptybuf));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000533 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000535 if (ex_pressedreturn)
536 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100537 // go up one line, to overwrite the ":<CR>" line, so the
538 // output doesn't contain empty lines.
Bram Moolenaardf177f62005-02-22 08:39:57 +0000539 msg_row = prev_msg_row;
540 if (prev_msg_row == Rows - 1)
541 msg_row--;
542 }
543 msg_col = 0;
544 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
545 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100548 else if (ex_pressedreturn && !ex_no_reprint) // must be at EOF
Bram Moolenaardf177f62005-02-22 08:39:57 +0000549 {
550 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100551 emsg(_(e_emptybuf));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000552 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100553 emsg(_("E501: At end-of-file"));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 }
556
557#ifdef FEAT_GUI
558 --hold_gui_events;
559#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 --RedrawingDisabled;
561 --no_wait_return;
562 update_screen(CLEAR);
563 need_wait_return = FALSE;
564 msg_scroll = save_msg_scroll;
565}
566
567/*
Bram Moolenaar4facea32019-10-12 20:17:40 +0200568 * Print the executed command for when 'verbose' is set.
569 * When "lnum" is 0 only print the command.
570 */
571 static void
572msg_verbose_cmd(linenr_T lnum, char_u *cmd)
573{
574 ++no_wait_return;
575 verbose_enter_scroll();
576
577 if (lnum == 0)
578 smsg(_("Executing: %s"), cmd);
579 else
580 smsg(_("line %ld: %s"), (long)lnum, cmd);
581 if (msg_silent == 0)
582 msg_puts("\n"); // don't overwrite this
583
584 verbose_leave_scroll();
585 --no_wait_return;
586}
587
588/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 * Execute a simple command line. Used for translated commands like "*".
590 */
591 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100592do_cmdline_cmd(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593{
594 return do_cmdline(cmd, NULL, NULL,
595 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
596}
597
598/*
Bram Moolenaar47a2abf2020-11-25 20:12:11 +0100599 * Execute the "+cmd" argument of "edit +cmd fname" and the like.
600 * This allows for using a range without ":" in Vim9 script.
601 */
Yegappan Lakshmanan8ee52af2021-08-09 19:59:06 +0200602 static int
Bram Moolenaar47a2abf2020-11-25 20:12:11 +0100603do_cmd_argument(char_u *cmd)
604{
605 return do_cmdline(cmd, NULL, NULL,
606 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED|DOCMD_RANGEOK);
607}
608
609/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 * do_cmdline(): execute one Ex command line
611 *
612 * 1. Execute "cmdline" when it is not NULL.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100613 * If "cmdline" is NULL, or more lines are needed, fgetline() is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 * 2. Split up in parts separated with '|'.
615 *
616 * This function can be called recursively!
617 *
618 * flags:
619 * DOCMD_VERBOSE - The command will be included in the error message.
620 * DOCMD_NOWAIT - Don't call wait_return() and friends.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100621 * DOCMD_REPEAT - Repeat execution until fgetline() returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622 * DOCMD_KEYTYPED - Don't reset KeyTyped.
623 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
624 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
625 *
626 * return FAIL if cmdline could not be executed, OK otherwise
627 */
628 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100629do_cmdline(
630 char_u *cmdline,
Bram Moolenaar66250c92020-08-20 15:02:42 +0200631 char_u *(*fgetline)(int, void *, int, getline_opt_T),
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100632 void *cookie, // argument for fgetline()
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100633 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634{
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100635 char_u *next_cmdline; // next cmd to execute
636 char_u *cmdline_copy = NULL; // copy of cmd line
637 int used_getline = FALSE; // used "fgetline" to obtain command
638 static int recursive = 0; // recursive depth
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 int msg_didout_before_start = 0;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100640 int count = 0; // line number count
641 int did_inc = FALSE; // incremented RedrawingDisabled
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 int retval = OK;
643#ifdef FEAT_EVAL
Bram Moolenaarddef1292019-12-16 17:10:33 +0100644 cstack_T cstack; // conditional stack
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100645 garray_T lines_ga; // keep lines for ":while"/":for"
646 int current_line = 0; // active line in lines_ga
Bram Moolenaard5053d02020-06-28 15:51:16 +0200647 int current_line_before = 0;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100648 char_u *fname = NULL; // function or script name
649 linenr_T *breakpoint = NULL; // ptr to breakpoint field in cookie
650 int *dbg_tick = NULL; // ptr to dbg_tick field in cookie
651 struct dbg_stuff debug_saved; // saved things for debug mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 int initial_trylevel;
Bram Moolenaar25e0f582020-05-25 22:36:50 +0200653 msglist_T **saved_msg_list = NULL;
Bram Moolenaar683581e2020-10-22 21:22:58 +0200654 msglist_T *private_msg_list = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100656 // "fgetline" and "cookie" passed to do_one_cmd()
Bram Moolenaar66250c92020-08-20 15:02:42 +0200657 char_u *(*cmd_getline)(int, void *, int, getline_opt_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000659 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000661 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662#else
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100663# define cmd_getline fgetline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664# define cmd_cookie cookie
665#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100666 static int call_depth = 0; // recursiveness
Bram Moolenaar2196bce2020-04-12 20:01:11 +0200667#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100668 // For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
669 // location for storing error messages to be converted to an exception.
670 // This ensures that the do_errthrow() call in do_one_cmd() does not
671 // combine the messages stored by an earlier invocation of do_one_cmd()
672 // with the command name of the later one. This would happen when
673 // BufWritePost autocommands are executed after a write error.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 saved_msg_list = msg_list;
675 msg_list = &private_msg_list;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676#endif
677
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100678 // It's possible to create an endless loop with ":execute", catch that
679 // here. The value of 200 allows nested function calls, ":source", etc.
680 // Allow 200 or 'maxfuncdepth', whatever is larger.
Bram Moolenaarb094ff42017-01-02 16:16:39 +0100681 if (call_depth >= 200
682#ifdef FEAT_EVAL
683 && call_depth >= p_mfd
684#endif
685 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100687 emsg(_("E169: Command too recursive"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100689 // When converting to an exception, we do not include the command name
690 // since this is not an error of the specific command.
Bram Moolenaarddef1292019-12-16 17:10:33 +0100691 do_errthrow((cstack_T *)NULL, (char_u *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 msg_list = saved_msg_list;
693#endif
694 return FAIL;
695 }
696 ++call_depth;
697
698#ifdef FEAT_EVAL
Bram Moolenaarce0370d2021-01-26 19:32:53 +0100699 CLEAR_FIELD(cstack);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 cstack.cs_idx = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
702
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100703 real_cookie = getline_cookie(fgetline, cookie);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100705 // Inside a function use a higher nesting level.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100706 getline_is_func = getline_equal(fgetline, cookie, get_func_line);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000707 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 ++ex_nesting_level;
709
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100710 // Get the function or script name and the address where the next breakpoint
711 // line and the debug tick for a function or script are stored.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000712 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 {
714 fname = func_name(real_cookie);
715 breakpoint = func_breakpoint(real_cookie);
716 dbg_tick = func_dbg_tick(real_cookie);
717 }
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100718 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100720 fname = SOURCING_NAME;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 breakpoint = source_breakpoint(real_cookie);
722 dbg_tick = source_dbg_tick(real_cookie);
723 }
724
725 /*
726 * Initialize "force_abort" and "suppress_errthrow" at the top level.
727 */
728 if (!recursive)
729 {
730 force_abort = FALSE;
731 suppress_errthrow = FALSE;
732 }
733
734 /*
735 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000736 * exception handling (used when debugging). Otherwise clear it to avoid
737 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000739 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000740 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000741 else
Bram Moolenaara80faa82020-04-12 19:37:17 +0200742 CLEAR_FIELD(debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743
744 initial_trylevel = trylevel;
745
746 /*
747 * "did_throw" will be set to TRUE when an exception is being thrown.
748 */
749 did_throw = FALSE;
750#endif
751 /*
752 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000753 * cancel the whole command line, and any if/endif or loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754 * If force_abort is set, we cancel everything.
755 */
Bram Moolenaareeece9e2020-11-20 19:26:48 +0100756#ifdef FEAT_EVAL
757 did_emsg_cumul += did_emsg;
758#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 did_emsg = FALSE;
760
761 /*
762 * KeyTyped is only set when calling vgetc(). Reset it here when not
763 * calling vgetc() (sourced command lines).
764 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100765 if (!(flags & DOCMD_KEYTYPED)
766 && !getline_equal(fgetline, cookie, getexline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 KeyTyped = FALSE;
768
769 /*
770 * Continue executing command lines:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000771 * - when inside an ":if", ":while" or ":for"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 * - for multiple commands on one line, separated with '|'
773 * - when repeating until there are no more lines (for ":source")
774 */
775 next_cmdline = cmdline;
776 do
777 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000778#ifdef FEAT_EVAL
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100779 getline_is_func = getline_equal(fgetline, cookie, get_func_line);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000780#endif
781
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100782 // stop skipping cmds for an error msg after all endif/while/for
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 if (next_cmdline == NULL
784#ifdef FEAT_EVAL
785 && !force_abort
786 && cstack.cs_idx < 0
Bram Moolenaar05159a02005-02-26 23:04:13 +0000787 && !(getline_is_func && func_has_abort(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788#endif
789 )
Bram Moolenaareeece9e2020-11-20 19:26:48 +0100790 {
791#ifdef FEAT_EVAL
792 did_emsg_cumul += did_emsg;
793#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 did_emsg = FALSE;
Bram Moolenaareeece9e2020-11-20 19:26:48 +0100795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796
797 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000798 * 1. If repeating a line in a loop, get a line from lines_ga.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100799 * 2. If no line given: Get an allocated line with fgetline().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 * 3. If a line is given: Make a copy, so we can mess with it.
801 */
802
803#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100804 // 1. If repeating, get a previous line from lines_ga.
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000805 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100807 // Each '|' separated command is stored separately in lines_ga, to
808 // be able to jump to it. Don't use next_cmdline now.
Bram Moolenaard23a8232018-02-10 18:45:26 +0100809 VIM_CLEAR(cmdline_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100811 // Check if a function has returned or, unless it has an unclosed
812 // try conditional, aborted.
Bram Moolenaar05159a02005-02-26 23:04:13 +0000813 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000815# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000816 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000817 func_line_end(real_cookie);
818# endif
819 if (func_has_ended(real_cookie))
820 {
821 retval = FAIL;
822 break;
823 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000825#ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000826 else if (do_profiling == PROF_YES
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100827 && getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000828 script_line_end();
829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100831 // Check if a sourced file hit a ":finish" command.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100832 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 {
834 retval = FAIL;
835 break;
836 }
837
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100838 // If breakpoints have been added/deleted need to check for it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 if (breakpoint != NULL && dbg_tick != NULL
840 && *dbg_tick != debug_tick)
841 {
842 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100843 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100844 fname, SOURCING_LNUM);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 *dbg_tick = debug_tick;
846 }
847
848 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100849 SOURCING_LNUM = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100851 // Did we encounter a breakpoint?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 if (breakpoint != NULL && *breakpoint != 0
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100853 && *breakpoint <= SOURCING_LNUM)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100855 dbg_breakpoint(fname, SOURCING_LNUM);
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100856 // Find next breakpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100858 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100859 fname, SOURCING_LNUM);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 *dbg_tick = debug_tick;
861 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000862# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000863 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000864 {
865 if (getline_is_func)
Bram Moolenaarb2049902021-01-24 12:53:53 +0100866 func_line_start(real_cookie, SOURCING_LNUM);
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100867 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000868 script_line_start();
869 }
870# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872#endif
873
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100874 // 2. If no line given, get an allocated line with fgetline().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 if (next_cmdline == NULL)
876 {
877 /*
878 * Need to set msg_didout for the first line after an ":if",
879 * otherwise the ":if" will be overwritten.
880 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100881 if (count == 1 && getline_equal(fgetline, cookie, getexline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 msg_didout = TRUE;
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100883 if (fgetline == NULL || (next_cmdline = fgetline(':', cookie,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884#ifdef FEAT_EVAL
885 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
886#else
887 0
888#endif
Bram Moolenaar8242ebb2020-12-29 11:15:01 +0100889 , in_vim9script() ? GETLINE_CONCAT_CONTBAR
890 : GETLINE_CONCAT_CONT)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100892 // Don't call wait_return for aborted command line. The NULL
893 // returned for the end of a sourced file or executed function
894 // doesn't do this.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 if (KeyTyped && !(flags & DOCMD_REPEAT))
896 need_wait_return = FALSE;
897 retval = FAIL;
898 break;
899 }
900 used_getline = TRUE;
901
902 /*
903 * Keep the first typed line. Clear it when more lines are typed.
904 */
905 if (flags & DOCMD_KEEPLINE)
906 {
907 vim_free(repeat_cmdline);
908 if (count == 0)
909 repeat_cmdline = vim_strsave(next_cmdline);
910 else
911 repeat_cmdline = NULL;
912 }
913 }
914
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100915 // 3. Make a copy of the command so we can mess with it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 else if (cmdline_copy == NULL)
917 {
918 next_cmdline = vim_strsave(next_cmdline);
919 if (next_cmdline == NULL)
920 {
Bram Moolenaare29a27f2021-07-20 21:07:36 +0200921 emsg(_(e_out_of_memory));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 retval = FAIL;
923 break;
924 }
925 }
926 cmdline_copy = next_cmdline;
927
928#ifdef FEAT_EVAL
929 /*
Bram Moolenaard5053d02020-06-28 15:51:16 +0200930 * Inside a while/for loop, and when the command looks like a ":while"
931 * or ":for", the line is stored, because we may need it later when
932 * looping.
933 *
934 * When there is a '|' and another command, it is stored separately,
935 * because we need to be able to jump back to it from an
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000936 * :endwhile/:endfor.
Bram Moolenaard5053d02020-06-28 15:51:16 +0200937 *
938 * Pass a different "fgetline" function to do_one_cmd() below,
939 * that it stores lines in or reads them from "lines_ga". Makes it
940 * possible to define a function inside a while/for loop and handles
941 * line continuation.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 */
Bram Moolenaard5053d02020-06-28 15:51:16 +0200943 if ((cstack.cs_looplevel > 0 || has_loop_cmd(next_cmdline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 {
Bram Moolenaard5053d02020-06-28 15:51:16 +0200945 cmd_getline = get_loop_line;
946 cmd_cookie = (void *)&cmd_loop_cookie;
947 cmd_loop_cookie.lines_gap = &lines_ga;
948 cmd_loop_cookie.current_line = current_line;
949 cmd_loop_cookie.getline = fgetline;
950 cmd_loop_cookie.cookie = cookie;
951 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
952
953 // Save the current line when encountering it the first time.
954 if (current_line == lines_ga.ga_len
955 && store_loop_line(&lines_ga, next_cmdline) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956 {
957 retval = FAIL;
958 break;
959 }
Bram Moolenaard5053d02020-06-28 15:51:16 +0200960 current_line_before = current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 }
Bram Moolenaard5053d02020-06-28 15:51:16 +0200962 else
963 {
964 cmd_getline = fgetline;
965 cmd_cookie = cookie;
966 }
967
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 did_endif = FALSE;
969#endif
970
971 if (count++ == 0)
972 {
973 /*
974 * All output from the commands is put below each other, without
975 * waiting for a return. Don't do this when executing commands
976 * from a script or when being called recursive (e.g. for ":e
977 * +command file").
978 */
979 if (!(flags & DOCMD_NOWAIT) && !recursive)
980 {
981 msg_didout_before_start = msg_didout;
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100982 msg_didany = FALSE; // no output yet
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 msg_start();
Bram Moolenaar217e1b82019-12-01 21:41:28 +0100984 msg_scroll = TRUE; // put messages below each other
985 ++no_wait_return; // don't wait for return until finished
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 ++RedrawingDisabled;
987 did_inc = TRUE;
988 }
989 }
990
Bram Moolenaar823654b2020-05-29 23:03:09 +0200991 if ((p_verbose >= 15 && SOURCING_NAME != NULL) || p_verbose >= 16)
Bram Moolenaar1a47ae32019-12-29 23:04:25 +0100992 msg_verbose_cmd(SOURCING_LNUM, cmdline_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993
994 /*
995 * 2. Execute one '|' separated command.
996 * do_one_cmd() will return NULL if there is no trailing '|'.
997 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
998 */
999 ++recursive;
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01001000 next_cmdline = do_one_cmd(&cmdline_copy, flags,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001#ifdef FEAT_EVAL
1002 &cstack,
1003#endif
1004 cmd_getline, cmd_cookie);
1005 --recursive;
1006
1007#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001008 if (cmd_cookie == (void *)&cmd_loop_cookie)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001009 // Use "current_line" from "cmd_loop_cookie", it may have been
1010 // incremented when defining a function.
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001011 current_line = cmd_loop_cookie.current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012#endif
1013
1014 if (next_cmdline == NULL)
1015 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01001016 VIM_CLEAR(cmdline_copy);
Bram Moolenaard7663c22019-08-06 21:59:57 +02001017
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 /*
1019 * If the command was typed, remember it for the ':' register.
1020 * Do this AFTER executing the command to make :@: work.
1021 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001022 if (getline_equal(fgetline, cookie, getexline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 && new_last_cmdline != NULL)
1024 {
1025 vim_free(last_cmdline);
1026 last_cmdline = new_last_cmdline;
1027 new_last_cmdline = NULL;
1028 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 }
1030 else
1031 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001032 // need to copy the command after the '|' to cmdline_copy, for the
1033 // next do_one_cmd()
Bram Moolenaara7241f52008-06-24 20:39:31 +00001034 STRMOVE(cmdline_copy, next_cmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 next_cmdline = cmdline_copy;
1036 }
1037
1038
1039#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001040 // reset did_emsg for a function that is not aborted by an error
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 if (did_emsg && !force_abort
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001042 && getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 && !func_has_abort(real_cookie))
Bram Moolenaareeece9e2020-11-20 19:26:48 +01001044 {
1045 // did_emsg_cumul is not set here
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 did_emsg = FALSE;
Bram Moolenaareeece9e2020-11-20 19:26:48 +01001047 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001049 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 {
1051 ++current_line;
1052
1053 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001054 * An ":endwhile", ":endfor" and ":continue" is handled here.
1055 * If we were executing commands, jump back to the ":while" or
1056 * ":for".
1057 * If we were not executing commands, decrement cs_looplevel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001059 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001061 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001063 // Jump back to the matching ":while" or ":for". Be careful
1064 // not to use a cs_line[] from an entry that isn't a ":while"
1065 // or ":for": It would make "current_line" invalid and can
1066 // cause a crash.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 if (!did_emsg && !got_int && !did_throw
1068 && cstack.cs_idx >= 0
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001069 && (cstack.cs_flags[cstack.cs_idx]
1070 & (CSF_WHILE | CSF_FOR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 && cstack.cs_line[cstack.cs_idx] >= 0
1072 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1073 {
1074 current_line = cstack.cs_line[cstack.cs_idx];
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001075 // remember we jumped there
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001076 cstack.cs_lflags |= CSL_HAD_LOOP;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001077 line_breakcheck(); // check if CTRL-C typed
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001079 // Check for the next breakpoint at or after the ":while"
1080 // or ":for".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 if (breakpoint != NULL)
1082 {
1083 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001084 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 fname,
1086 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1087 *dbg_tick = debug_tick;
1088 }
1089 }
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001090 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001092 // can only get here with ":endwhile" or ":endfor"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001093 if (cstack.cs_idx >= 0)
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001094 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1095 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 }
1097 }
1098
1099 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001100 * For a ":while" or ":for" we need to remember the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001102 else if (cstack.cs_lflags & CSL_HAD_LOOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001104 cstack.cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaard5053d02020-06-28 15:51:16 +02001105 cstack.cs_line[cstack.cs_idx] = current_line_before;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 }
1107 }
1108
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001109 // Check for the next breakpoint after a watchexpression
Bram Moolenaarc6f9f732018-02-11 19:06:26 +01001110 if (breakpoint != NULL && has_watchexpr())
1111 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001112 *breakpoint = dbg_find_breakpoint(FALSE, fname, SOURCING_LNUM);
Bram Moolenaarc6f9f732018-02-11 19:06:26 +01001113 *dbg_tick = debug_tick;
1114 }
1115
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 /*
1117 * When not inside any ":while" loop, clear remembered lines.
1118 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001119 if (cstack.cs_looplevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 {
1121 if (lines_ga.ga_len > 0)
1122 {
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001123 SOURCING_LNUM =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1125 free_cmdlines(&lines_ga);
1126 }
1127 current_line = 0;
1128 }
1129
1130 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001131 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1132 * being restored at the ":endtry". Reset them here and set the
1133 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1134 * This includes the case where a missing ":endif", ":endwhile" or
1135 * ":endfor" was detected by the ":finally" itself.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001137 if (cstack.cs_lflags & CSL_HAD_FINA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001139 cstack.cs_lflags &= ~CSL_HAD_FINA;
1140 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1141 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 did_throw ? (void *)current_exception : NULL);
1143 did_emsg = got_int = did_throw = FALSE;
1144 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1145 }
1146
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001147 // Update global "trylevel" for recursive calls to do_cmdline() from
1148 // within this loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 trylevel = initial_trylevel + cstack.cs_trylevel;
1150
1151 /*
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001152 * If the outermost try conditional (across function calls and sourced
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 * files) is aborted because of an error, an interrupt, or an uncaught
1154 * exception, cancel everything. If it is left normally, reset
1155 * force_abort to get the non-EH compatible abortion behavior for
1156 * the rest of the script.
1157 */
1158 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1159 force_abort = FALSE;
1160
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001161 // Convert an interrupt to an exception if appropriate.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 (void)do_intthrow(&cstack);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001163#endif // FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164
1165 }
1166 /*
1167 * Continue executing command lines when:
1168 * - no CTRL-C typed, no aborting error, no exception thrown or try
1169 * conditionals need to be checked for executing finally clauses or
1170 * catching an interrupt exception
1171 * - didn't get an error message or lines are not typed
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001172 * - there is a command after '|', inside a :if, :while, :for or :try, or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 * looping for ":source" command or function call.
1174 */
1175 while (!((got_int
1176#ifdef FEAT_EVAL
Bram Moolenaar227c58a2021-04-28 20:40:44 +02001177 || (did_emsg && (force_abort || in_vim9script()))
1178 || did_throw
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179#endif
1180 )
1181#ifdef FEAT_EVAL
1182 && cstack.cs_trylevel == 0
1183#endif
1184 )
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001185 && !(did_emsg
1186#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001187 // Keep going when inside try/catch, so that the error can be
1188 // deal with, except when it is a syntax error, it may cause
1189 // the :endtry to be missed.
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001190 && (cstack.cs_trylevel == 0 || did_emsg_syntax)
1191#endif
1192 && used_getline
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001193 && (getline_equal(fgetline, cookie, getexmodeline)
1194 || getline_equal(fgetline, cookie, getexline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 && (next_cmdline != NULL
1196#ifdef FEAT_EVAL
1197 || cstack.cs_idx >= 0
1198#endif
1199 || (flags & DOCMD_REPEAT)));
1200
1201 vim_free(cmdline_copy);
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001202 did_emsg_syntax = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203#ifdef FEAT_EVAL
1204 free_cmdlines(&lines_ga);
1205 ga_clear(&lines_ga);
1206
1207 if (cstack.cs_idx >= 0)
1208 {
1209 /*
1210 * If a sourced file or executed function ran to its end, report the
1211 * unclosed conditional.
Bram Moolenaar227c58a2021-04-28 20:40:44 +02001212 * In Vim9 script do not give a second error, executing aborts after
1213 * the first one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 */
Bram Moolenaar227c58a2021-04-28 20:40:44 +02001215 if (!got_int && !did_throw && !(did_emsg && in_vim9script())
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001216 && ((getline_equal(fgetline, cookie, getsourceline)
1217 && !source_finished(fgetline, cookie))
1218 || (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 && !func_has_ended(real_cookie))))
1220 {
1221 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001222 emsg(_(e_endtry));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001224 emsg(_(e_endwhile));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001225 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001226 emsg(_(e_endfor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001228 emsg(_(e_endif));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 }
1230
1231 /*
1232 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1233 * ":endtry" in a sourced file or executed function. If the try
1234 * conditional is in its finally clause, ignore anything pending.
1235 * If it is in a catch clause, finish the caught exception.
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001236 * Also cleanup any "cs_forinfo" structures.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 */
1238 do
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001239 {
1240 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1241
Bram Moolenaar89e5d682005-01-17 22:06:23 +00001242 if (idx >= 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001243 --idx; // remove try block not in its finally clause
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001244 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1245 &cstack.cs_looplevel);
1246 }
1247 while (cstack.cs_idx >= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 trylevel = initial_trylevel;
1249 }
1250
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001251 // If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1252 // lack was reported above and the error message is to be converted to an
1253 // exception, do this now after rewinding the cstack.
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001254 do_errthrow(&cstack, getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 ? (char_u *)"endfunction" : (char_u *)NULL);
1256
1257 if (trylevel == 0)
1258 {
Bram Moolenaar820d55a2020-10-10 15:05:23 +02001259 // Just in case did_throw got set but current_exception wasn't.
1260 if (current_exception == NULL)
1261 did_throw = FALSE;
1262
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 /*
1264 * When an exception is being thrown out of the outermost try
1265 * conditional, discard the uncaught exception, disable the conversion
1266 * of interrupts or errors to exceptions, and ensure that no more
1267 * commands are executed.
1268 */
1269 if (did_throw)
Bram Moolenaar620c9592021-07-31 21:32:31 +02001270 handle_did_throw();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271
1272 /*
1273 * On an interrupt or an aborting error not converted to an exception,
1274 * disable the conversion of errors to exceptions. (Interrupts are not
Bram Moolenaar2196bce2020-04-12 20:01:11 +02001275 * converted anymore, here.) This enables also the interrupt message
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 * when force_abort is set and did_emsg unset in case of an interrupt
1277 * from a finally clause after an error.
1278 */
1279 else if (got_int || (did_emsg && force_abort))
1280 suppress_errthrow = TRUE;
1281 }
1282
1283 /*
1284 * The current cstack will be freed when do_cmdline() returns. An uncaught
1285 * exception will have to be rethrown in the previous cstack. If a function
1286 * has just returned or a script file was just finished and the previous
1287 * cstack belongs to the same function or, respectively, script file, it
1288 * will have to be checked for finally clauses to be executed due to the
1289 * ":return" or ":finish". This is done in do_one_cmd().
1290 */
1291 if (did_throw)
1292 need_rethrow = TRUE;
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001293 if ((getline_equal(fgetline, cookie, getsourceline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 && ex_nesting_level > source_level(real_cookie))
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001295 || (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 && ex_nesting_level > func_level(real_cookie) + 1))
1297 {
1298 if (!did_throw)
1299 check_cstack = TRUE;
1300 }
1301 else
1302 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001303 // When leaving a function, reduce nesting level.
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001304 if (getline_equal(fgetline, cookie, get_func_line))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 --ex_nesting_level;
1306 /*
1307 * Go to debug mode when returning from a function in which we are
1308 * single-stepping.
1309 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001310 if ((getline_equal(fgetline, cookie, getsourceline)
1311 || getline_equal(fgetline, cookie, get_func_line))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 && ex_nesting_level + 1 <= debug_break_level)
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001313 do_debug(getline_equal(fgetline, cookie, getsourceline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 ? (char_u *)_("End of sourced file")
1315 : (char_u *)_("End of function"));
1316 }
1317
1318 /*
1319 * Restore the exception environment (done after returning from the
1320 * debugger).
1321 */
1322 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +00001323 restore_dbg_stuff(&debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324
1325 msg_list = saved_msg_list;
Bram Moolenaar292b90d2020-03-18 15:23:16 +01001326
1327 // Cleanup if "cs_emsg_silent_list" remains.
1328 if (cstack.cs_emsg_silent_list != NULL)
1329 {
1330 eslist_T *elem, *temp;
1331
1332 for (elem = cstack.cs_emsg_silent_list; elem != NULL; elem = temp)
1333 {
1334 temp = elem->next;
1335 vim_free(elem);
1336 }
1337 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001338#endif // FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339
1340 /*
1341 * If there was too much output to fit on the command line, ask the user to
1342 * hit return before redrawing the screen. With the ":global" command we do
1343 * this only once after the command is finished.
1344 */
1345 if (did_inc)
1346 {
1347 --RedrawingDisabled;
1348 --no_wait_return;
1349 msg_scroll = FALSE;
1350
1351 /*
1352 * When just finished an ":if"-":else" which was typed, no need to
1353 * wait for hit-return. Also for an error situation.
1354 */
1355 if (retval == FAIL
1356#ifdef FEAT_EVAL
1357 || (did_endif && KeyTyped && !did_emsg)
1358#endif
1359 )
1360 {
1361 need_wait_return = FALSE;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001362 msg_didany = FALSE; // don't wait when restarting edit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 }
1364 else if (need_wait_return)
1365 {
1366 /*
1367 * The msg_start() above clears msg_didout. The wait_return we do
1368 * here should not overwrite the command that may be shown before
1369 * doing that.
1370 */
1371 msg_didout |= msg_didout_before_start;
1372 wait_return(FALSE);
1373 }
1374 }
1375
Bram Moolenaar2a942252012-11-28 23:03:07 +01001376#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001377 did_endif = FALSE; // in case do_cmdline used recursively
Bram Moolenaar2a942252012-11-28 23:03:07 +01001378#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 /*
1380 * Reset if_level, in case a sourced script file contains more ":if" than
1381 * ":endif" (could be ":if x | foo | endif").
1382 */
1383 if_level = 0;
Bram Moolenaar2e18a122012-11-28 19:10:54 +01001384#endif
Bram Moolenaard4ad0d42012-11-28 17:34:48 +01001385
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 --call_depth;
1387 return retval;
1388}
1389
Bram Moolenaar335c8c72021-07-31 21:44:35 +02001390#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar620c9592021-07-31 21:32:31 +02001391/*
1392 * Handle when "did_throw" is set after executing commands.
1393 */
1394 void
1395handle_did_throw()
1396{
1397 char *p = NULL;
1398 msglist_T *messages = NULL;
Bram Moolenaar9e0ee592021-07-31 22:17:28 +02001399 ESTACK_CHECK_DECLARATION
Bram Moolenaar620c9592021-07-31 21:32:31 +02001400
1401 /*
1402 * If the uncaught exception is a user exception, report it as an
1403 * error. If it is an error exception, display the saved error
1404 * message now. For an interrupt exception, do nothing; the
1405 * interrupt message is given elsewhere.
1406 */
1407 switch (current_exception->type)
1408 {
1409 case ET_USER:
1410 vim_snprintf((char *)IObuff, IOSIZE,
1411 _("E605: Exception not caught: %s"),
1412 current_exception->value);
1413 p = (char *)vim_strsave(IObuff);
1414 break;
1415 case ET_ERROR:
1416 messages = current_exception->messages;
1417 current_exception->messages = NULL;
1418 break;
1419 case ET_INTERRUPT:
1420 break;
1421 }
1422
1423 estack_push(ETYPE_EXCEPT, current_exception->throw_name,
1424 current_exception->throw_lnum);
1425 ESTACK_CHECK_SETUP
1426 current_exception->throw_name = NULL;
1427
1428 discard_current_exception(); // uses IObuff if 'verbose'
1429 suppress_errthrow = TRUE;
1430 force_abort = TRUE;
1431
1432 if (messages != NULL)
1433 {
1434 do
1435 {
1436 msglist_T *next = messages->next;
1437 int save_compiling = estack_compiling;
1438
1439 estack_compiling = messages->msg_compiling;
1440 emsg(messages->msg);
1441 vim_free(messages->msg);
1442 vim_free(messages->sfile);
1443 vim_free(messages);
1444 messages = next;
1445 estack_compiling = save_compiling;
1446 }
1447 while (messages != NULL);
1448 }
1449 else if (p != NULL)
1450 {
1451 emsg(p);
1452 vim_free(p);
1453 }
1454 vim_free(SOURCING_NAME);
1455 ESTACK_CHECK_NOW
1456 estack_pop();
1457}
1458
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001460 * Obtain a line when inside a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 */
1462 static char_u *
Bram Moolenaar20b23c62020-08-20 15:25:00 +02001463get_loop_line(int c, void *cookie, int indent, getline_opt_T options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464{
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001465 struct loop_cookie *cp = (struct loop_cookie *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 wcmd_T *wp;
1467 char_u *line;
1468
1469 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1470 {
1471 if (cp->repeating)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001472 return NULL; // trying to read past ":endwhile"/":endfor"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001474 // First time inside the ":while"/":for": get line normally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001475 if (cp->getline == NULL)
Bram Moolenaar20b23c62020-08-20 15:25:00 +02001476 line = getcmdline(c, 0L, indent, options);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477 else
Bram Moolenaar20b23c62020-08-20 15:25:00 +02001478 line = cp->getline(c, cp->cookie, indent, options);
Bram Moolenaard68071d2006-05-02 22:08:30 +00001479 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480 ++cp->current_line;
1481
1482 return line;
1483 }
1484
1485 KeyTyped = FALSE;
1486 ++cp->current_line;
1487 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001488 SOURCING_LNUM = wp->lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001489 return vim_strsave(wp->line);
1490}
1491
1492/*
1493 * Store a line in "gap" so that a ":while" loop can execute it again.
1494 */
1495 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001496store_loop_line(garray_T *gap, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497{
1498 if (ga_grow(gap, 1) == FAIL)
1499 return FAIL;
1500 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01001501 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = SOURCING_LNUM;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001503 return OK;
1504}
1505
1506/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001507 * Free the lines stored for a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 */
1509 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001510free_cmdlines(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511{
1512 while (gap->ga_len > 0)
1513 {
1514 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1515 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 }
1517}
1518#endif
1519
1520/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001521 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1522 * "func". * Otherwise return TRUE when "fgetline" equals "func".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001525getline_equal(
Bram Moolenaar66250c92020-08-20 15:02:42 +02001526 char_u *(*fgetline)(int, void *, int, getline_opt_T),
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001527 void *cookie UNUSED, // argument for fgetline()
Bram Moolenaar66250c92020-08-20 15:02:42 +02001528 char_u *(*func)(int, void *, int, getline_opt_T))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529{
1530#ifdef FEAT_EVAL
Bram Moolenaar20b23c62020-08-20 15:25:00 +02001531 char_u *(*gp)(int, void *, int, getline_opt_T);
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001532 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001534 // When "fgetline" is "get_loop_line()" use the "cookie" to find the
1535 // function that's originally used to obtain the lines. This may be
1536 // nested several levels.
Bram Moolenaar89d40322006-08-29 15:30:07 +00001537 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001538 cp = (struct loop_cookie *)cookie;
1539 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 {
1541 gp = cp->getline;
1542 cp = cp->cookie;
1543 }
1544 return gp == func;
1545#else
Bram Moolenaar89d40322006-08-29 15:30:07 +00001546 return fgetline == func;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547#endif
1548}
1549
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001551 * If "fgetline" is get_loop_line(), return the cookie used by the original
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 * getline function. Otherwise return "cookie".
1553 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001555getline_cookie(
Bram Moolenaar66250c92020-08-20 15:02:42 +02001556 char_u *(*fgetline)(int, void *, int, getline_opt_T) UNUSED,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001557 void *cookie) // argument for fgetline()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558{
Bram Moolenaar13505972019-01-24 15:04:48 +01001559#ifdef FEAT_EVAL
Bram Moolenaar20b23c62020-08-20 15:25:00 +02001560 char_u *(*gp)(int, void *, int, getline_opt_T);
Bram Moolenaard5053d02020-06-28 15:51:16 +02001561 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001563 // When "fgetline" is "get_loop_line()" use the "cookie" to find the
1564 // cookie that's originally used to obtain the lines. This may be nested
1565 // several levels.
Bram Moolenaar89d40322006-08-29 15:30:07 +00001566 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001567 cp = (struct loop_cookie *)cookie;
1568 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569 {
1570 gp = cp->getline;
1571 cp = cp->cookie;
1572 }
1573 return cp;
Bram Moolenaar13505972019-01-24 15:04:48 +01001574#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 return cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001577}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578
Bram Moolenaard5053d02020-06-28 15:51:16 +02001579#if defined(FEAT_EVAL) || defined(PROT)
1580/*
1581 * Get the next line source line without advancing.
1582 */
1583 char_u *
1584getline_peek(
Bram Moolenaar66250c92020-08-20 15:02:42 +02001585 char_u *(*fgetline)(int, void *, int, getline_opt_T) UNUSED,
Bram Moolenaard5053d02020-06-28 15:51:16 +02001586 void *cookie) // argument for fgetline()
1587{
Bram Moolenaar20b23c62020-08-20 15:25:00 +02001588 char_u *(*gp)(int, void *, int, getline_opt_T);
Bram Moolenaard5053d02020-06-28 15:51:16 +02001589 struct loop_cookie *cp;
1590 wcmd_T *wp;
1591
1592 // When "fgetline" is "get_loop_line()" use the "cookie" to find the
1593 // cookie that's originally used to obtain the lines. This may be nested
1594 // several levels.
1595 gp = fgetline;
1596 cp = (struct loop_cookie *)cookie;
1597 while (gp == get_loop_line)
1598 {
1599 if (cp->current_line + 1 < cp->lines_gap->ga_len)
1600 {
1601 // executing lines a second time, use the stored copy
1602 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line + 1;
1603 return wp->line;
1604 }
1605 gp = cp->getline;
1606 cp = cp->cookie;
1607 }
1608 if (gp == getsourceline)
1609 return source_nextline(cp);
1610 return NULL;
1611}
1612#endif
1613
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001614
1615/*
1616 * Helper function to apply an offset for buffer commands, i.e. ":bdelete",
1617 * ":bwipeout", etc.
1618 * Returns the buffer number.
1619 */
1620 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001621compute_buffer_local_count(int addr_type, int lnum, int offset)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001622{
1623 buf_T *buf;
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001624 buf_T *nextbuf;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001625 int count = offset;
1626
1627 buf = firstbuf;
1628 while (buf->b_next != NULL && buf->b_fnum < lnum)
1629 buf = buf->b_next;
1630 while (count != 0)
1631 {
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001632 count += (offset < 0) ? 1 : -1;
1633 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next;
1634 if (nextbuf == NULL)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001635 break;
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001636 buf = nextbuf;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001637 if (addr_type == ADDR_LOADED_BUFFERS)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001638 // skip over unloaded buffers
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001639 while (buf->b_ml.ml_mfp == NULL)
1640 {
1641 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next;
1642 if (nextbuf == NULL)
1643 break;
1644 buf = nextbuf;
1645 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001646 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001647 // we might have gone too far, last buffer is not loadedd
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001648 if (addr_type == ADDR_LOADED_BUFFERS)
1649 while (buf->b_ml.ml_mfp == NULL)
1650 {
1651 nextbuf = (offset >= 0) ? buf->b_prev : buf->b_next;
1652 if (nextbuf == NULL)
1653 break;
1654 buf = nextbuf;
1655 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001656 return buf->b_fnum;
1657}
1658
Bram Moolenaarb7316892019-05-01 18:08:42 +02001659/*
1660 * Return the window number of "win".
1661 * When "win" is NULL return the number of windows.
1662 */
Bram Moolenaarf240e182014-11-27 18:33:02 +01001663 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001664current_win_nr(win_T *win)
Bram Moolenaarf240e182014-11-27 18:33:02 +01001665{
1666 win_T *wp;
1667 int nr = 0;
1668
Bram Moolenaar29323592016-07-24 22:04:11 +02001669 FOR_ALL_WINDOWS(wp)
Bram Moolenaarf240e182014-11-27 18:33:02 +01001670 {
1671 ++nr;
1672 if (wp == win)
1673 break;
1674 }
1675 return nr;
1676}
1677
1678 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001679current_tab_nr(tabpage_T *tab)
Bram Moolenaarf240e182014-11-27 18:33:02 +01001680{
1681 tabpage_T *tp;
1682 int nr = 0;
1683
Bram Moolenaar29323592016-07-24 22:04:11 +02001684 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf240e182014-11-27 18:33:02 +01001685 {
1686 ++nr;
1687 if (tp == tab)
1688 break;
1689 }
1690 return nr;
1691}
1692
Bram Moolenaar6e36b1c2020-07-17 20:47:51 +02001693 static int
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02001694comment_start(char_u *p, int starts_with_colon UNUSED)
1695{
1696#ifdef FEAT_EVAL
1697 if (in_vim9script())
Bram Moolenaar93f82cb2020-12-12 21:25:56 +01001698 return p[0] == '#' && !starts_with_colon;
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02001699#endif
1700 return *p == '"';
1701}
1702
Bram Moolenaarf240e182014-11-27 18:33:02 +01001703# define CURRENT_WIN_NR current_win_nr(curwin)
1704# define LAST_WIN_NR current_win_nr(NULL)
1705# define CURRENT_TAB_NR current_tab_nr(curtab)
1706# define LAST_TAB_NR current_tab_nr(NULL)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001707
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708/*
1709 * Execute one Ex command.
1710 *
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01001711 * If "flags" has DOCMD_VERBOSE, the command will be included in the error
1712 * message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 *
1714 * 1. skip comment lines and leading space
1715 * 2. handle command modifiers
Bram Moolenaar1c40a662014-11-27 16:38:11 +01001716 * 3. find the command
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001717 * 4. parse range
Bram Moolenaar1c40a662014-11-27 16:38:11 +01001718 * 5. Parse the command.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001719 * 6. parse arguments
1720 * 7. switch on command name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001722 * Note: "fgetline" can be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 *
1724 * This function may be called recursively!
1725 */
1726#if (_MSC_VER == 1200)
1727/*
Bram Moolenaared203462004-06-16 11:19:22 +00001728 * Avoid optimisation bug in VC++ version 6.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 */
Bram Moolenaar281bdce2005-01-25 21:53:18 +00001730 #pragma optimize( "g", off )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731#endif
1732 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001733do_one_cmd(
Bram Moolenaarddef1292019-12-16 17:10:33 +01001734 char_u **cmdlinep,
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01001735 int flags,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736#ifdef FEAT_EVAL
Bram Moolenaarddef1292019-12-16 17:10:33 +01001737 cstack_T *cstack,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738#endif
Bram Moolenaar20b23c62020-08-20 15:25:00 +02001739 char_u *(*fgetline)(int, void *, int, getline_opt_T),
Bram Moolenaarddef1292019-12-16 17:10:33 +01001740 void *cookie) // argument for fgetline()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741{
Bram Moolenaarddef1292019-12-16 17:10:33 +01001742 char_u *p;
1743 linenr_T lnum;
1744 long n;
1745 char *errormsg = NULL; // error message
1746 char_u *after_modifier = NULL;
1747 exarg_T ea; // Ex command arguments
Bram Moolenaarddef1292019-12-16 17:10:33 +01001748 cmdmod_T save_cmdmod;
1749 int save_reg_executing = reg_executing;
1750 int ni; // set when Not Implemented
1751 char_u *cmd;
Bram Moolenaar6e36b1c2020-07-17 20:47:51 +02001752 int starts_with_colon = FALSE;
Bram Moolenaar83f37b92020-02-23 14:35:01 +01001753#ifdef FEAT_EVAL
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02001754 int may_have_range;
Bram Moolenaar39f3b142021-02-14 12:57:36 +01001755 int vim9script;
Bram Moolenaarb4bcea42020-10-28 13:53:50 +01001756 int did_set_expr_line = FALSE;
Bram Moolenaar83f37b92020-02-23 14:35:01 +01001757#endif
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01001758 int sourcing = flags & DOCMD_VERBOSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759
Bram Moolenaara80faa82020-04-12 19:37:17 +02001760 CLEAR_FIELD(ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 ea.line1 = 1;
1762 ea.line2 = 1;
1763#ifdef FEAT_EVAL
1764 ++ex_nesting_level;
1765#endif
1766
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001767 // When the last file has not been edited :q has to be typed twice.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 if (quitmore
1769#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001770 // avoid that a function call in 'statusline' does this
Bram Moolenaar89d40322006-08-29 15:30:07 +00001771 && !getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01001772#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001773 // avoid that an autocommand, e.g. QuitPre, does this
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001774 && !getline_equal(fgetline, cookie, getnextac))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 --quitmore;
1776
1777 /*
1778 * Reset browse, confirm, etc.. They are restored when returning, for
1779 * recursive calls.
1780 */
1781 save_cmdmod = cmdmod;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001783 // "#!anything" is handled like a comment.
Bram Moolenaarcbb37ad2006-08-16 15:04:21 +00001784 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1785 goto doend;
1786
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02001787/*
1788 * 1. Skip comment lines and leading white space and colons.
1789 * 2. Handle command modifiers.
1790 */
1791 // The "ea" structure holds the arguments that can be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792 ea.cmd = *cmdlinep;
Bram Moolenaareffed932018-08-14 13:38:17 +02001793 ea.cmdlinep = cmdlinep;
1794 ea.getline = fgetline;
1795 ea.cookie = cookie;
1796#ifdef FEAT_EVAL
1797 ea.cstack = cstack;
Bram Moolenaar83f37b92020-02-23 14:35:01 +01001798 starts_with_colon = *skipwhite(ea.cmd) == ':';
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799#endif
Bram Moolenaare1004402020-10-24 20:49:43 +02001800 if (parse_command_modifiers(&ea, &errormsg, &cmdmod, FALSE) == FAIL)
Bram Moolenaareffed932018-08-14 13:38:17 +02001801 goto doend;
Bram Moolenaar5661ed62020-10-24 17:19:16 +02001802 apply_cmdmod(&cmdmod);
Bram Moolenaar2379f872021-02-14 14:07:34 +01001803#ifdef FEAT_EVAL
Bram Moolenaar39f3b142021-02-14 12:57:36 +01001804 vim9script = in_vim9script();
Bram Moolenaar2379f872021-02-14 14:07:34 +01001805#endif
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001806 after_modifier = ea.cmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807
1808#ifdef FEAT_EVAL
1809 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1810 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1811#else
1812 ea.skip = (if_level > 0);
1813#endif
1814
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001816 * 3. Skip over the range to find the command. Let "p" point to after it.
1817 *
1818 * We need the command to know what kind of range it uses.
1819 */
1820 cmd = ea.cmd;
Bram Moolenaar3d48e252020-07-15 14:15:52 +02001821#ifdef FEAT_EVAL
Bram Moolenaare88c8e82020-11-01 17:03:37 +01001822 // In Vim9 script a colon is required before the range. This may also be
1823 // after command modifiers.
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01001824 if (vim9script && (flags & DOCMD_RANGEOK) == 0)
Bram Moolenaare88c8e82020-11-01 17:03:37 +01001825 {
1826 may_have_range = FALSE;
1827 for (p = ea.cmd; p >= *cmdlinep; --p)
1828 {
1829 if (*p == ':')
1830 may_have_range = TRUE;
1831 if (p < ea.cmd && !VIM_ISWHITE(*p))
1832 break;
1833 }
1834 }
1835 else
1836 may_have_range = TRUE;
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02001837 if (may_have_range)
Bram Moolenaar3d48e252020-07-15 14:15:52 +02001838#endif
Bram Moolenaar3bd8de42020-09-14 16:37:34 +02001839 ea.cmd = skip_range(ea.cmd, TRUE, NULL);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001840
1841#ifdef FEAT_EVAL
Bram Moolenaare88c8e82020-11-01 17:03:37 +01001842 if (vim9script && !may_have_range)
Bram Moolenaardf069ee2020-06-22 23:02:51 +02001843 {
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02001844 if (ea.cmd == cmd + 1 && *cmd == '$')
1845 // should be "$VAR = val"
1846 --ea.cmd;
Bram Moolenaar2e2d7582021-03-03 21:22:41 +01001847 p = find_ex_command(&ea, NULL, lookup_scriptitem, NULL);
Bram Moolenaar36113e42020-11-02 21:08:47 +01001848 if (ea.cmdidx == CMD_SIZE)
1849 {
1850 char_u *ar = skip_range(ea.cmd, TRUE, NULL);
1851
1852 // If a ':' before the range is missing, give a clearer error
1853 // message.
Bram Moolenaar8ac681a2021-06-15 20:06:34 +02001854 if (ar > ea.cmd && !ea.skip)
Bram Moolenaar36113e42020-11-02 21:08:47 +01001855 {
Bram Moolenaar6e2c2c52020-12-25 19:25:45 +01001856 semsg(_(e_colon_required_before_range_str), ea.cmd);
Bram Moolenaar36113e42020-11-02 21:08:47 +01001857 goto doend;
1858 }
1859 }
Bram Moolenaardf069ee2020-06-22 23:02:51 +02001860 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001861 else
1862#endif
1863 p = find_ex_command(&ea, NULL, NULL, NULL);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001864
Bram Moolenaar7feb35e2018-08-21 17:49:54 +02001865#ifdef FEAT_EVAL
1866# ifdef FEAT_PROFILE
1867 // Count this line for profiling if skip is TRUE.
1868 if (do_profiling == PROF_YES
1869 && (!ea.skip || cstack->cs_idx == 0 || (cstack->cs_idx > 0
1870 && (cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE))))
1871 {
1872 int skip = did_emsg || got_int || did_throw;
1873
1874 if (ea.cmdidx == CMD_catch)
1875 skip = !skip && !(cstack->cs_idx >= 0
1876 && (cstack->cs_flags[cstack->cs_idx] & CSF_THROWN)
1877 && !(cstack->cs_flags[cstack->cs_idx] & CSF_CAUGHT));
1878 else if (ea.cmdidx == CMD_else || ea.cmdidx == CMD_elseif)
1879 skip = skip || !(cstack->cs_idx >= 0
1880 && !(cstack->cs_flags[cstack->cs_idx]
1881 & (CSF_ACTIVE | CSF_TRUE)));
1882 else if (ea.cmdidx == CMD_finally)
1883 skip = FALSE;
1884 else if (ea.cmdidx != CMD_endif
1885 && ea.cmdidx != CMD_endfor
1886 && ea.cmdidx != CMD_endtry
1887 && ea.cmdidx != CMD_endwhile)
1888 skip = ea.skip;
1889
1890 if (!skip)
1891 {
1892 if (getline_equal(fgetline, cookie, get_func_line))
1893 func_line_exec(getline_cookie(fgetline, cookie));
1894 else if (getline_equal(fgetline, cookie, getsourceline))
1895 script_line_exec();
1896 }
1897 }
1898# endif
1899
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001900 // May go to debug mode. If this happens and the ">quit" debug command is
1901 // used, throw an interrupt exception and skip the next command.
Bram Moolenaar7feb35e2018-08-21 17:49:54 +02001902 dbg_check_breakpoint(&ea);
1903 if (!ea.skip && got_int)
1904 {
1905 ea.skip = TRUE;
1906 (void)do_intthrow(cstack);
1907 }
1908#endif
1909
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001910/*
1911 * 4. parse a range specifier of the form: addr [,addr] [;addr] ..
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 *
1913 * where 'addr' is:
1914 *
1915 * % (entire file)
1916 * $ [+-NUM]
1917 * 'x [+-NUM] (where x denotes a currently defined mark)
1918 * . [+-NUM]
1919 * [+-NUM]..
1920 * NUM
1921 *
1922 * The ea.cmd pointer is updated to point to the first character following the
1923 * range spec. If an initial address is found, but no second, the upper bound
1924 * is equal to the lower.
1925 */
1926
Bram Moolenaar25190db2019-05-04 15:05:28 +02001927 // ea.addr_type for user commands is set by find_ucmd
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01001928 if (!IS_USER_CMDIDX(ea.cmdidx))
1929 {
1930 if (ea.cmdidx != CMD_SIZE)
1931 ea.addr_type = cmdnames[(int)ea.cmdidx].cmd_addr_type;
1932 else
1933 ea.addr_type = ADDR_LINES;
1934
Bram Moolenaar25190db2019-05-04 15:05:28 +02001935 // :wincmd range depends on the argument.
Bram Moolenaar164f3262015-01-14 21:22:01 +01001936 if (ea.cmdidx == CMD_wincmd && p != NULL)
1937 get_wincmd_addr_type(skipwhite(p), &ea);
Bram Moolenaar25190db2019-05-04 15:05:28 +02001938#ifdef FEAT_QUICKFIX
1939 // :.cc in quickfix window uses line number
1940 if ((ea.cmdidx == CMD_cc || ea.cmdidx == CMD_ll) && bt_quickfix(curbuf))
1941 ea.addr_type = ADDR_OTHER;
1942#endif
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01001943 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001944
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01001945 ea.cmd = cmd;
Bram Moolenaar3d48e252020-07-15 14:15:52 +02001946#ifdef FEAT_EVAL
Bram Moolenaarc2af0af2020-08-23 21:06:02 +02001947 if (!may_have_range)
1948 ea.line1 = ea.line2 = default_address(&ea);
1949 else
Bram Moolenaar3d48e252020-07-15 14:15:52 +02001950#endif
1951 if (parse_cmd_address(&ea, &errormsg, FALSE) == FAIL)
1952 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001955 * 5. Parse the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 */
1957
1958 /*
1959 * Skip ':' and any white space
1960 */
1961 ea.cmd = skipwhite(ea.cmd);
1962 while (*ea.cmd == ':')
1963 ea.cmd = skipwhite(ea.cmd + 1);
1964
1965 /*
1966 * If we got a line, but no command, then go to the line.
1967 * If we find a '|' or '\n' we set ea.nextcmd.
1968 */
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02001969 if (*ea.cmd == NUL || comment_start(ea.cmd, starts_with_colon)
1970 || (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 {
1972 /*
1973 * strange vi behaviour:
1974 * ":3" jumps to line 3
Bram Moolenaarb8554302021-02-15 21:30:30 +01001975 * ":3|..." prints line 3 (not in Vim9 script)
1976 * ":|" prints current line (not in Vim9 script)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 */
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001978 if (ea.skip) // skip this if inside :if
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 goto doend;
Bram Moolenaarb8554302021-02-15 21:30:30 +01001980 if ((*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
1981#ifdef FEAT_EVAL
1982 && !vim9script
1983#endif
1984 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 {
1986 ea.cmdidx = CMD_print;
Bram Moolenaar8071cb22019-07-12 17:58:01 +02001987 ea.argt = EX_RANGE+EX_COUNT+EX_TRLBAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 if ((errormsg = invalid_range(&ea)) == NULL)
1989 {
1990 correct_range(&ea);
1991 ex_print(&ea);
1992 }
1993 }
1994 else if (ea.addr_count != 0)
1995 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001996 if (ea.line2 > curbuf->b_ml.ml_line_count)
1997 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01001998 // With '-' in 'cpoptions' a line number past the file is an
1999 // error, otherwise put it at the end of the file.
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002000 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2001 ea.line2 = -1;
2002 else
2003 ea.line2 = curbuf->b_ml.ml_line_count;
2004 }
2005
2006 if (ea.line2 < 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02002007 errormsg = _(e_invalid_range);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 else
2009 {
2010 if (ea.line2 == 0)
2011 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 else
2013 curwin->w_cursor.lnum = ea.line2;
2014 beginline(BL_SOL | BL_FIX);
2015 }
2016 }
2017 goto doend;
2018 }
2019
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002020 // If this looks like an undefined user command and there are CmdUndefined
2021 // autocommands defined, trigger the matching autocommands.
Bram Moolenaard5005162014-08-22 23:05:54 +02002022 if (p != NULL && ea.cmdidx == CMD_SIZE && !ea.skip
2023 && ASCII_ISUPPER(*ea.cmd)
2024 && has_cmdundefined())
2025 {
Bram Moolenaard5005162014-08-22 23:05:54 +02002026 int ret;
2027
Bram Moolenaar5a31b462014-08-23 14:16:20 +02002028 p = ea.cmd;
Bram Moolenaard5005162014-08-22 23:05:54 +02002029 while (ASCII_ISALNUM(*p))
2030 ++p;
Bram Moolenaar158ea172020-06-18 17:28:39 +02002031 p = vim_strnsave(ea.cmd, p - ea.cmd);
Bram Moolenaard5005162014-08-22 23:05:54 +02002032 ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL);
2033 vim_free(p);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002034 // If the autocommands did something and didn't cause an error, try
2035 // finding the command again.
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002036 p = (ret
2037#ifdef FEAT_EVAL
2038 && !aborting()
Bram Moolenaard5005162014-08-22 23:05:54 +02002039#endif
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002040 ) ? find_ex_command(&ea, NULL, NULL, NULL) : ea.cmd;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002041 }
Bram Moolenaard5005162014-08-22 23:05:54 +02002042
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 if (p == NULL)
2044 {
2045 if (!ea.skip)
Bram Moolenaard1510ee2021-01-04 16:15:58 +01002046 errormsg = _(e_ambiguous_use_of_user_defined_command);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 goto doend;
2048 }
Bram Moolenaarac9fb182019-04-27 13:04:13 +02002049 // Check for wrong commands.
Bram Moolenaar6f9a4762017-06-22 20:39:17 +02002050 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78
2051 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 {
2053 errormsg = uc_fun_cmd();
2054 goto doend;
2055 }
Bram Moolenaarac9fb182019-04-27 13:04:13 +02002056
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 if (ea.cmdidx == CMD_SIZE)
2058 {
2059 if (!ea.skip)
2060 {
2061 STRCPY(IObuff, _("E492: Not an editor command"));
2062 if (!sourcing)
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002063 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002064 // If the modifier was parsed OK the error must be in the
2065 // following command
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002066 if (after_modifier != NULL)
2067 append_command(after_modifier);
2068 else
2069 append_command(*cmdlinep);
2070 }
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002071 errormsg = (char *)IObuff;
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02002072 did_emsg_syntax = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 }
2074 goto doend;
2075 }
2076
Bram Moolenaar958636c2014-10-21 20:01:58 +02002077 ni = (!IS_USER_CMDIDX(ea.cmdidx)
2078 && (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00002079#ifdef HAVE_EX_SCRIPT_NI
2080 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2081#endif
2082 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083
2084#ifndef FEAT_EVAL
2085 /*
2086 * When the expression evaluation is disabled, recognize the ":if" and
2087 * ":endif" commands and ignore everything in between it.
2088 */
2089 if (ea.cmdidx == CMD_if)
2090 ++if_level;
2091 if (if_level)
2092 {
2093 if (ea.cmdidx == CMD_endif)
2094 --if_level;
2095 goto doend;
2096 }
2097
2098#endif
2099
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002100 // forced commands
Bram Moolenaar196b3b02008-06-20 16:51:41 +00002101 if (*p == '!' && ea.cmdidx != CMD_substitute
2102 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 {
2104 ++p;
2105 ea.forceit = TRUE;
2106 }
2107 else
2108 ea.forceit = FALSE;
2109
2110/*
Bram Moolenaarb7316892019-05-01 18:08:42 +02002111 * 6. Parse arguments. Then check for errors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002112 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02002113 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002114 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115
2116 if (!ea.skip)
2117 {
2118#ifdef HAVE_SANDBOX
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002119 if (sandbox != 0 && !(ea.argt & EX_SBOXOK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 {
Bram Moolenaar8c62a082019-02-08 14:34:10 +01002121 // Command not allowed in sandbox.
Bram Moolenaard8e44472021-07-21 22:20:33 +02002122 errormsg = _(e_not_allowed_in_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 goto doend;
2124 }
2125#endif
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002126 if (restricted != 0 && (ea.argt & EX_RESTRICT))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01002127 {
2128 errormsg = _("E981: Command not allowed in rvim");
2129 goto doend;
2130 }
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002131 if (!curbuf->b_p_ma && (ea.argt & EX_MODIFY))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002133 // Command not allowed in non-'modifiable' buffer
Bram Moolenaar108010a2021-06-27 22:03:33 +02002134 errormsg = _(e_cannot_make_changes_modifiable_is_off);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 goto doend;
2136 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002137
Bram Moolenaar37394ff2020-07-25 19:38:18 +02002138 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 {
Bram Moolenaar37394ff2020-07-25 19:38:18 +02002140#ifdef FEAT_CMDWIN
2141 if (cmdwin_type != 0 && !(ea.argt & EX_CMDWIN))
2142 {
2143 // Command not allowed in the command line window
Bram Moolenaar108010a2021-06-27 22:03:33 +02002144 errormsg = _(e_invalid_in_cmdline_window);
Bram Moolenaar37394ff2020-07-25 19:38:18 +02002145 goto doend;
2146 }
2147#endif
2148 if (text_locked() && !(ea.argt & EX_LOCK_OK))
2149 {
2150 // Command not allowed when text is locked
2151 errormsg = _(get_text_locked_msg());
2152 goto doend;
2153 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 }
Bram Moolenaar379fb762018-08-30 15:58:28 +02002155
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002156 // Disallow editing another buffer when "curbuf_lock" is set.
2157 // Do allow ":checktime" (it is postponed).
2158 // Do allow ":edit" (check for an argument later).
2159 // Do allow ":file" with no arguments (check for an argument later).
Bram Moolenaar8e1986e2020-08-06 22:11:06 +02002160 if (!(ea.argt & (EX_CMDWIN | EX_LOCK_OK))
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002161 && ea.cmdidx != CMD_checktime
Bram Moolenaar379fb762018-08-30 15:58:28 +02002162 && ea.cmdidx != CMD_edit
2163 && ea.cmdidx != CMD_file
Bram Moolenaar958636c2014-10-21 20:01:58 +02002164 && !IS_USER_CMDIDX(ea.cmdidx)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002165 && curbuf_locked())
2166 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002168 if (!ni && !(ea.argt & EX_RANGE) && ea.addr_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002170 // no range allowed
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002171 errormsg = _(e_norange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 goto doend;
2173 }
2174 }
2175
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002176 if (!ni && !(ea.argt & EX_BANG) && ea.forceit) // no <!> allowed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002178 errormsg = _(e_nobang);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 goto doend;
2180 }
2181
2182 /*
2183 * Don't complain about the range if it is not used
2184 * (could happen if line_count is accidentally set to 0).
2185 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002186 if (!ea.skip && !ni && (ea.argt & EX_RANGE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 {
2188 /*
2189 * If the range is backwards, ask for confirmation and, if given, swap
2190 * ea.line1 & ea.line2 so it's forwards again.
2191 * When global command is busy, don't ask, will fail below.
2192 */
2193 if (!global_busy && ea.line1 > ea.line2)
2194 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002195 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002197 if (sourcing || exmode_active)
2198 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002199 errormsg = _("E493: Backwards range given");
Bram Moolenaara5792f52005-11-23 21:25:05 +00002200 goto doend;
2201 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 if (ask_yesno((char_u *)
2203 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002204 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 }
2206 lnum = ea.line1;
2207 ea.line1 = ea.line2;
2208 ea.line2 = lnum;
2209 }
2210 if ((errormsg = invalid_range(&ea)) != NULL)
2211 goto doend;
2212 }
2213
Bram Moolenaarb7316892019-05-01 18:08:42 +02002214 if ((ea.addr_type == ADDR_OTHER) && ea.addr_count == 0)
2215 // default is 1, not cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 ea.line2 = 1;
2217
2218 correct_range(&ea);
2219
2220#ifdef FEAT_FOLDING
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002221 if (((ea.argt & EX_WHOLEFOLD) || ea.addr_count >= 2) && !global_busy
Bram Moolenaara3306952016-01-02 21:41:06 +01002222 && ea.addr_type == ADDR_LINES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002224 // Put the first line at the start of a closed fold, put the last line
2225 // at the end of a closed fold.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 (void)hasFolding(ea.line1, &ea.line1, NULL);
2227 (void)hasFolding(ea.line2, NULL, &ea.line2);
2228 }
2229#endif
2230
2231#ifdef FEAT_QUICKFIX
2232 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002233 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 * option here, so things like % get expanded.
2235 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002236 p = replace_makeprg(&ea, p, cmdlinep);
2237 if (p == NULL)
2238 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239#endif
2240
2241 /*
2242 * Skip to start of argument.
2243 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2244 */
2245 if (ea.cmdidx == CMD_bang)
2246 ea.arg = p;
2247 else
2248 ea.arg = skipwhite(p);
2249
Bram Moolenaar379fb762018-08-30 15:58:28 +02002250 // ":file" cannot be run with an argument when "curbuf_lock" is set
2251 if (ea.cmdidx == CMD_file && *ea.arg != NUL && curbuf_locked())
2252 goto doend;
2253
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 /*
2255 * Check for "++opt=val" argument.
2256 * Must be first, allow ":w ++enc=utf8 !cmd"
2257 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002258 if (ea.argt & EX_ARGOPT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2260 if (getargopt(&ea) == FAIL && !ni)
2261 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002262 errormsg = _(e_invarg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 goto doend;
2264 }
2265
2266 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2267 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002268 if (*ea.arg == '>') // append
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002270 if (*++ea.arg != '>') // typed wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002272 errormsg = _("E494: Use w or w>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 goto doend;
2274 }
2275 ea.arg = skipwhite(ea.arg + 1);
2276 ea.append = TRUE;
2277 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002278 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) // :w !filter
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 {
2280 ++ea.arg;
2281 ea.usefilter = TRUE;
2282 }
2283 }
2284
2285 if (ea.cmdidx == CMD_read)
2286 {
2287 if (ea.forceit)
2288 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002289 ea.usefilter = TRUE; // :r! filter if ea.forceit
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290 ea.forceit = FALSE;
2291 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002292 else if (*ea.arg == '!') // :r !filter
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 {
2294 ++ea.arg;
2295 ea.usefilter = TRUE;
2296 }
2297 }
2298
2299 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2300 {
2301 ea.amount = 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002302 while (*ea.arg == *ea.cmd) // count number of '>' or '<'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 {
2304 ++ea.arg;
2305 ++ea.amount;
2306 }
2307 ea.arg = skipwhite(ea.arg);
2308 }
2309
2310 /*
2311 * Check for "+command" argument, before checking for next command.
2312 * Don't do this for ":read !cmd" and ":write !cmd".
2313 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002314 if ((ea.argt & EX_CMDARG) && !ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2316
2317 /*
Bram Moolenaar63b91732021-08-05 20:40:03 +02002318 * For commands that do not use '|' inside their argument: Check for '|' to
2319 * separate commands and '"' or '#' to start comments.
2320 *
2321 * Otherwise: Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002322 * Also do this for ":read !cmd", ":write !cmd" and ":global".
Bram Moolenaar63b91732021-08-05 20:40:03 +02002323 * Also do this inside a { - } block after :command and :autocmd.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002324 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002325 */
Bram Moolenaar63b91732021-08-05 20:40:03 +02002326 if ((ea.argt & EX_TRLBAR) && !ea.usefilter)
2327 {
2328 separate_nextcmd(&ea);
2329 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002330 else if (ea.cmdidx == CMD_bang
Bram Moolenaar67883b42017-07-27 22:57:00 +02002331 || ea.cmdidx == CMD_terminal
Bram Moolenaardf177f62005-02-22 08:39:57 +00002332 || ea.cmdidx == CMD_global
2333 || ea.cmdidx == CMD_vglobal
Bram Moolenaar63b91732021-08-05 20:40:03 +02002334 || ea.usefilter
Bram Moolenaar6f6d58c2021-08-05 21:17:32 +02002335#ifdef FEAT_EVAL
2336 || inside_block(&ea)
2337#endif
2338 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 {
2340 for (p = ea.arg; *p; ++p)
2341 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002342 // Remove one backslash before a newline, so that it's possible to
2343 // pass a newline to the shell and also a newline that is preceded
2344 // with a backslash. This makes it impossible to end a shell
2345 // command in a backslash, but that doesn't appear useful.
2346 // Halving the number of backslashes is incompatible with previous
2347 // versions.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 if (*p == '\\' && p[1] == '\n')
Bram Moolenaara7241f52008-06-24 20:39:31 +00002349 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350 else if (*p == '\n')
2351 {
2352 ea.nextcmd = p + 1;
2353 *p = NUL;
2354 break;
2355 }
2356 }
2357 }
2358
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002359 if ((ea.argt & EX_DFLALL) && ea.addr_count == 0)
Bram Moolenaarc2af0af2020-08-23 21:06:02 +02002360 address_default_all(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002362 // accept numbered register only when no count allowed (:put)
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002363 if ( (ea.argt & EX_REGSTR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 && *ea.arg != NUL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002365 // Do not allow register = for user commands
Bram Moolenaar958636c2014-10-21 20:01:58 +02002366 && (!IS_USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002367 && !((ea.argt & EX_COUNT) && VIM_ISDIGIT(*ea.arg)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002369#ifndef FEAT_CLIPBOARD
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002370 // check these explicitly for a more specific error message
Bram Moolenaar85de2062011-05-05 14:26:41 +02002371 if (*ea.arg == '*' || *ea.arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 {
Bram Moolenaar99b12722019-01-14 20:16:40 +01002373 errormsg = _(e_invalidreg);
Bram Moolenaar85de2062011-05-05 14:26:41 +02002374 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 }
2376#endif
Bram Moolenaar958636c2014-10-21 20:01:58 +02002377 if (valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2378 && !IS_USER_CMDIDX(ea.cmdidx))))
Bram Moolenaar85de2062011-05-05 14:26:41 +02002379 {
2380 ea.regname = *ea.arg++;
2381#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002382 // for '=' register: accept the rest of the line as an expression
Bram Moolenaar85de2062011-05-05 14:26:41 +02002383 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2384 {
kuuote08d7b1c2021-10-04 22:17:36 +01002385 if (!ea.skip)
2386 {
2387 set_expr_line(vim_strsave(ea.arg), &ea);
2388 did_set_expr_line = TRUE;
2389 }
Bram Moolenaar85de2062011-05-05 14:26:41 +02002390 ea.arg += STRLEN(ea.arg);
2391 }
2392#endif
2393 ea.arg = skipwhite(ea.arg);
2394 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 }
2396
2397 /*
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002398 * Check for a count. When accepting a EX_BUFNAME, don't use "123foo" as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 * count, it's a buffer name.
2400 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002401 if ((ea.argt & EX_COUNT) && VIM_ISDIGIT(*ea.arg)
Dominique Pelle4781d6f2021-05-18 21:46:31 +02002402 && (!(ea.argt & EX_BUFNAME) || *(p = skipdigits(ea.arg + 1)) == NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01002403 || VIM_ISWHITE(*p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 {
2405 n = getdigits(&ea.arg);
2406 ea.arg = skipwhite(ea.arg);
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002407 if (n <= 0 && !ni && (ea.argt & EX_ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002409 errormsg = _(e_zerocount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 goto doend;
2411 }
Bram Moolenaarb7316892019-05-01 18:08:42 +02002412 if (ea.addr_type != ADDR_LINES) // e.g. :buffer 2, :sleep 3
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 {
2414 ea.line2 = n;
2415 if (ea.addr_count == 0)
2416 ea.addr_count = 1;
2417 }
2418 else
2419 {
2420 ea.line1 = ea.line2;
2421 ea.line2 += n - 1;
2422 ++ea.addr_count;
2423 /*
2424 * Be vi compatible: no error message for out of range.
2425 */
Bram Moolenaarb7316892019-05-01 18:08:42 +02002426 if (ea.line2 > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 ea.line2 = curbuf->b_ml.ml_line_count;
2428 }
2429 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002430
2431 /*
2432 * Check for flags: 'l', 'p' and '#'.
2433 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002434 if (ea.argt & EX_FLAGS)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002435 get_flags(&ea);
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002436 if (!ni && !(ea.argt & EX_EXTRA) && *ea.arg != NUL
2437 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & EX_TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 {
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002439 // no arguments allowed but there is something
Bram Moolenaar2d06bfd2020-07-23 17:16:18 +02002440 errormsg = ex_errmsg(e_trailing_arg, ea.arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 goto doend;
2442 }
2443
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002444 if (!ni && (ea.argt & EX_NEEDARG) && *ea.arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002446 errormsg = _(e_argreq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 goto doend;
2448 }
2449
2450#ifdef FEAT_EVAL
2451 /*
2452 * Skip the command when it's not going to be executed.
2453 * The commands like :if, :endif, etc. always need to be executed.
2454 * Also make an exception for commands that handle a trailing command
2455 * themselves.
2456 */
2457 if (ea.skip)
2458 {
2459 switch (ea.cmdidx)
2460 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002461 // commands that need evaluation
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 case CMD_while:
2463 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002464 case CMD_for:
2465 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 case CMD_if:
2467 case CMD_elseif:
2468 case CMD_else:
2469 case CMD_endif:
2470 case CMD_try:
2471 case CMD_catch:
2472 case CMD_finally:
2473 case CMD_endtry:
2474 case CMD_function:
Bram Moolenaarab55c682020-03-01 19:41:43 +01002475 case CMD_def:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476 break;
2477
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002478 // Commands that handle '|' themselves. Check: A command should
2479 // either have the EX_TRLBAR flag, appear in this list or appear in
2480 // the list at ":help :bar".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 case CMD_aboveleft:
2482 case CMD_and:
2483 case CMD_belowright:
2484 case CMD_botright:
2485 case CMD_browse:
2486 case CMD_call:
2487 case CMD_confirm:
Bram Moolenaar8f76e6b2019-11-26 16:50:30 +01002488 case CMD_const:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489 case CMD_delfunction:
2490 case CMD_djump:
2491 case CMD_dlist:
2492 case CMD_dsearch:
2493 case CMD_dsplit:
2494 case CMD_echo:
2495 case CMD_echoerr:
2496 case CMD_echomsg:
2497 case CMD_echon:
Bram Moolenaara76b3152020-02-16 16:20:21 +01002498 case CMD_eval:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 case CMD_execute:
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002500 case CMD_filter:
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002501 case CMD_final:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 case CMD_help:
2503 case CMD_hide:
2504 case CMD_ijump:
2505 case CMD_ilist:
2506 case CMD_isearch:
2507 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002508 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 case CMD_keepjumps:
2510 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01002511 case CMD_keeppatterns:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 case CMD_leftabove:
2513 case CMD_let:
2514 case CMD_lockmarks:
Bram Moolenaarcc4423a2019-11-26 17:05:00 +01002515 case CMD_lockvar:
Bram Moolenaar0ba04292010-07-14 23:23:17 +02002516 case CMD_lua:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002518 case CMD_mzscheme:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01002519 case CMD_noautocmd:
2520 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 case CMD_perl:
2522 case CMD_psearch:
Bram Moolenaar368373e2010-07-19 20:46:22 +02002523 case CMD_py3:
Bram Moolenaarb6590522010-07-21 16:00:43 +02002524 case CMD_python3:
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002525 case CMD_python:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 case CMD_return:
2527 case CMD_rightbelow:
2528 case CMD_ruby:
2529 case CMD_silent:
2530 case CMD_smagic:
2531 case CMD_snomagic:
2532 case CMD_substitute:
2533 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002534 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 case CMD_tcl:
2536 case CMD_throw:
2537 case CMD_tilde:
2538 case CMD_topleft:
2539 case CMD_unlet:
Bram Moolenaarcc4423a2019-11-26 17:05:00 +01002540 case CMD_unlockvar:
Bram Moolenaar30fd8202020-09-26 15:09:30 +02002541 case CMD_var:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 case CMD_verbose:
2543 case CMD_vertical:
Bram Moolenaar12bde492011-06-13 01:19:56 +02002544 case CMD_wincmd:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 break;
2546
2547 default: goto doend;
2548 }
2549 }
2550#endif
2551
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002552 if (ea.argt & EX_XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002553 {
2554 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2555 goto doend;
2556 }
2557
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 /*
2559 * Accept buffer name. Cannot be used at the same time with a buffer
2560 * number. Don't do this for a user command.
2561 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002562 if ((ea.argt & EX_BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
Bram Moolenaar958636c2014-10-21 20:01:58 +02002563 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 {
2565 /*
2566 * :bdelete, :bwipeout and :bunload take several arguments, separated
2567 * by spaces: find next space (skipping over escaped characters).
2568 * The others take one argument: ignore trailing spaces.
2569 */
2570 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2571 || ea.cmdidx == CMD_bunload)
2572 p = skiptowhite_esc(ea.arg);
2573 else
2574 {
2575 p = ea.arg + STRLEN(ea.arg);
Bram Moolenaar1c465442017-03-12 20:10:05 +01002576 while (p > ea.arg && VIM_ISWHITE(p[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 --p;
2578 }
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002579 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & EX_BUFUNL) != 0,
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002580 FALSE, FALSE);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002581 if (ea.line2 < 0) // failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 goto doend;
2583 ea.addr_count = 1;
2584 ea.arg = skipwhite(p);
2585 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002587 // The :try command saves the emsg_silent flag, reset it here when
2588 // ":silent! try" was used, it should only apply to :try itself.
Bram Moolenaar5661ed62020-10-24 17:19:16 +02002589 if (ea.cmdidx == CMD_try && cmdmod.cmod_did_esilent > 0)
Bram Moolenaar2be57332018-02-13 18:05:18 +01002590 {
Bram Moolenaar5661ed62020-10-24 17:19:16 +02002591 emsg_silent -= cmdmod.cmod_did_esilent;
Bram Moolenaar2be57332018-02-13 18:05:18 +01002592 if (emsg_silent < 0)
2593 emsg_silent = 0;
Bram Moolenaar5661ed62020-10-24 17:19:16 +02002594 cmdmod.cmod_did_esilent = 0;
Bram Moolenaar2be57332018-02-13 18:05:18 +01002595 }
2596
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597/*
Bram Moolenaar2be57332018-02-13 18:05:18 +01002598 * 7. Execute the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002599 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600
Bram Moolenaar958636c2014-10-21 20:01:58 +02002601 if (IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 {
2603 /*
2604 * Execute a user-defined command.
2605 */
2606 do_ucmd(&ea);
2607 }
2608 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 {
2610 /*
Bram Moolenaarac9fb182019-04-27 13:04:13 +02002611 * Call the function to execute the builtin command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 */
2613 ea.errmsg = NULL;
2614 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2615 if (ea.errmsg != NULL)
Bram Moolenaar8930caa2020-07-23 16:37:03 +02002616 errormsg = ea.errmsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 }
2618
2619#ifdef FEAT_EVAL
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002620 // Set flag that any command was executed, used by ex_vim9script().
Bram Moolenaard3f8a9e2021-02-17 21:57:03 +01002621 // Not if this was a command that wasn't executed or :endif.
Bram Moolenaar16531552020-02-08 16:00:46 +01002622 if (getline_equal(ea.getline, ea.cookie, getsourceline)
Bram Moolenaard3f8a9e2021-02-17 21:57:03 +01002623 && current_sctx.sc_sid > 0
2624 && ea.cmdidx != CMD_endif
2625 && (cstack->cs_idx < 0
2626 || (cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE)))
Bram Moolenaar2b327002020-12-26 15:39:31 +01002627 SCRIPT_ITEM(current_sctx.sc_sid)->sn_state = SN_STATE_HAD_COMMAND;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002628
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 /*
2630 * If the command just executed called do_cmdline(), any throw or ":return"
2631 * or ":finish" encountered there must also check the cstack of the still
2632 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2633 * exception, or reanimate a returned function or finished script file and
2634 * return or finish it again.
2635 */
2636 if (need_rethrow)
2637 do_throw(cstack);
2638 else if (check_cstack)
2639 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002640 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002642 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 && current_func_returned())
2644 do_return(&ea, TRUE, FALSE, NULL);
2645 }
2646 need_rethrow = check_cstack = FALSE;
2647#endif
2648
2649doend:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002650 if (curwin->w_cursor.lnum == 0) // can happen with zero line number
Bram Moolenaar6de5e122017-04-20 21:55:44 +02002651 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 curwin->w_cursor.lnum = 1;
Bram Moolenaar6de5e122017-04-20 21:55:44 +02002653 curwin->w_cursor.col = 0;
2654 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655
2656 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2657 {
2658 if (sourcing)
2659 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002660 if (errormsg != (char *)IObuff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002661 {
2662 STRCPY(IObuff, errormsg);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002663 errormsg = (char *)IObuff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 }
Bram Moolenaara6f4d612011-09-21 19:10:46 +02002665 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 }
2667 emsg(errormsg);
2668 }
2669#ifdef FEAT_EVAL
2670 do_errthrow(cstack,
Bram Moolenaar958636c2014-10-21 20:01:58 +02002671 (ea.cmdidx != CMD_SIZE && !IS_USER_CMDIDX(ea.cmdidx))
2672 ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
Bram Moolenaarb4bcea42020-10-28 13:53:50 +01002673
2674 if (did_set_expr_line)
2675 set_expr_line(NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676#endif
2677
Bram Moolenaare1004402020-10-24 20:49:43 +02002678 undo_cmdmod(&cmdmod);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 cmdmod = save_cmdmod;
Bram Moolenaar9a2c0912019-03-30 14:26:18 +01002680 reg_executing = save_reg_executing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002682 if (ea.nextcmd && *ea.nextcmd == NUL) // not really a next command
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 ea.nextcmd = NULL;
2684
2685#ifdef FEAT_EVAL
2686 --ex_nesting_level;
Bram Moolenaarb171fb12020-06-24 20:34:03 +02002687 vim_free(ea.cmdline_tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688#endif
2689
2690 return ea.nextcmd;
2691}
2692#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00002693 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694#endif
2695
Bram Moolenaar8930caa2020-07-23 16:37:03 +02002696static char ex_error_buf[MSG_BUF_LEN];
2697
2698/*
2699 * Return an error message with argument included.
2700 * Uses a static buffer, only the last error will be kept.
2701 * "msg" will be translated, caller should use N_().
2702 */
2703 char *
2704ex_errmsg(char *msg, char_u *arg)
2705{
2706 vim_snprintf(ex_error_buf, MSG_BUF_LEN, _(msg), arg);
2707 return ex_error_buf;
2708}
2709
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710/*
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002711 * Check for an Ex command with optional tail.
2712 * If there is a match advance "pp" to the argument and return TRUE.
2713 * If "noparen" is TRUE do not recognize the command followed by "(".
2714 */
2715 static int
2716checkforcmd_opt(
2717 char_u **pp, // start of command
2718 char *cmd, // name of command
2719 int len, // required length
2720 int noparen)
2721{
2722 int i;
2723
2724 for (i = 0; cmd[i] != NUL; ++i)
2725 if (((char_u *)cmd)[i] != (*pp)[i])
2726 break;
2727 if (i >= len && !isalpha((*pp)[i])
2728 && (*pp)[i] != '_' && (!noparen || (*pp)[i] != '('))
2729 {
2730 *pp = skipwhite(*pp + i);
2731 return TRUE;
2732 }
2733 return FALSE;
2734}
2735
2736/*
2737 * Check for an Ex command with optional tail.
2738 * If there is a match advance "pp" to the argument and return TRUE.
2739 */
2740 int
2741checkforcmd(
2742 char_u **pp, // start of command
2743 char *cmd, // name of command
2744 int len) // required length
2745{
2746 return checkforcmd_opt(pp, cmd, len, FALSE);
2747}
2748
2749/*
2750 * Check for an Ex command with optional tail, not followed by "(".
2751 * If there is a match advance "pp" to the argument and return TRUE.
2752 */
Bram Moolenaare4db17f2021-08-01 21:19:43 +02002753 int
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002754checkforcmd_noparen(
2755 char_u **pp, // start of command
2756 char *cmd, // name of command
2757 int len) // required length
2758{
2759 return checkforcmd_opt(pp, cmd, len, TRUE);
2760}
2761
2762/*
Bram Moolenaareffed932018-08-14 13:38:17 +02002763 * Parse and skip over command modifiers:
2764 * - update eap->cmd
Bram Moolenaare1004402020-10-24 20:49:43 +02002765 * - store flags in "cmod".
Bram Moolenaareffed932018-08-14 13:38:17 +02002766 * - Set ex_pressedreturn for an empty command line.
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002767 * When "skip_only" is TRUE the global variables are not changed, except for
2768 * "cmdmod".
Bram Moolenaare1004402020-10-24 20:49:43 +02002769 * When "skip_only" is FALSE then undo_cmdmod() must be called later to free
2770 * any cmod_filter_regmatch.regprog.
Bram Moolenaar5661ed62020-10-24 17:19:16 +02002771 * Call apply_cmdmod() to get the side effects of the modifiers:
2772 * - Increment "sandbox" for ":sandbox"
2773 * - set p_verbose for ":verbose"
Bram Moolenaare1004402020-10-24 20:49:43 +02002774 * - set msg_silent for ":silent"
2775 * - set 'eventignore' to "all" for ":noautocmd"
Bram Moolenaareffed932018-08-14 13:38:17 +02002776 * Return FAIL when the command is not to be executed.
2777 * May set "errormsg" to an error message.
2778 */
2779 int
Bram Moolenaare1004402020-10-24 20:49:43 +02002780parse_command_modifiers(
2781 exarg_T *eap,
2782 char **errormsg,
2783 cmdmod_T *cmod,
2784 int skip_only)
Bram Moolenaareffed932018-08-14 13:38:17 +02002785{
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02002786 char_u *p;
2787 int starts_with_colon = FALSE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002788
Bram Moolenaare1004402020-10-24 20:49:43 +02002789 CLEAR_POINTER(cmod);
Bram Moolenaareffed932018-08-14 13:38:17 +02002790
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002791 // Repeat until no more command modifiers are found.
Bram Moolenaareffed932018-08-14 13:38:17 +02002792 for (;;)
2793 {
Bram Moolenaareffed932018-08-14 13:38:17 +02002794 while (*eap->cmd == ' ' || *eap->cmd == '\t' || *eap->cmd == ':')
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02002795 {
2796 if (*eap->cmd == ':')
2797 starts_with_colon = TRUE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002798 ++eap->cmd;
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02002799 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002800
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002801 // in ex mode, an empty line works like :+
Bram Moolenaareffed932018-08-14 13:38:17 +02002802 if (*eap->cmd == NUL && exmode_active
2803 && (getline_equal(eap->getline, eap->cookie, getexmodeline)
2804 || getline_equal(eap->getline, eap->cookie, getexline))
2805 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2806 {
2807 eap->cmd = (char_u *)"+";
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002808 if (!skip_only)
2809 ex_pressedreturn = TRUE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002810 }
2811
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002812 // ignore comment and empty lines
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02002813 if (comment_start(eap->cmd, starts_with_colon))
Bram Moolenaarec1b0962021-09-06 17:10:59 +02002814 {
2815 // a comment ends at a NL
2816 if (eap->nextcmd == NULL)
2817 {
2818 eap->nextcmd = vim_strchr(eap->cmd, '\n');
2819 if (eap->nextcmd != NULL)
2820 ++eap->nextcmd;
2821 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002822 return FAIL;
Bram Moolenaarec1b0962021-09-06 17:10:59 +02002823 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002824 if (*eap->cmd == NUL)
2825 {
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002826 if (!skip_only)
2827 ex_pressedreturn = TRUE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002828 return FAIL;
2829 }
2830
Bram Moolenaar3bd8de42020-09-14 16:37:34 +02002831 p = skip_range(eap->cmd, TRUE, NULL);
Bram Moolenaar17126b12021-01-07 22:03:02 +01002832
2833 // In Vim9 script a variable can shadow a command modifier:
2834 // verbose = 123
2835 // verbose += 123
2836 // silent! verbose = func()
2837 // verbose.member = 2
2838 // verbose[expr] = 2
Bram Moolenaar9e0f8832021-01-09 12:09:22 +01002839 // But not:
2840 // verbose [a, b] = list
Bram Moolenaar17126b12021-01-07 22:03:02 +01002841 if (in_vim9script())
2842 {
Bram Moolenaar9e0f8832021-01-09 12:09:22 +01002843 char_u *s, *n;
Bram Moolenaar17126b12021-01-07 22:03:02 +01002844
2845 for (s = p; ASCII_ISALPHA(*s); ++s)
2846 ;
Bram Moolenaar9e0f8832021-01-09 12:09:22 +01002847 n = skipwhite(s);
2848 if (vim_strchr((char_u *)".=", *n) != NULL
2849 || *s == '['
2850 || (*n != NUL && n[1] == '='))
Bram Moolenaar17126b12021-01-07 22:03:02 +01002851 break;
2852 }
2853
Bram Moolenaareffed932018-08-14 13:38:17 +02002854 switch (*p)
2855 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002856 // When adding an entry, also modify cmd_exists().
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002857 case 'a': if (!checkforcmd_noparen(&eap->cmd, "aboveleft", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02002858 break;
Bram Moolenaare1004402020-10-24 20:49:43 +02002859 cmod->cmod_split |= WSP_ABOVE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002860 continue;
2861
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002862 case 'b': if (checkforcmd_noparen(&eap->cmd, "belowright", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02002863 {
Bram Moolenaare1004402020-10-24 20:49:43 +02002864 cmod->cmod_split |= WSP_BELOW;
Bram Moolenaareffed932018-08-14 13:38:17 +02002865 continue;
2866 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002867 if (checkforcmd_opt(&eap->cmd, "browse", 3, TRUE))
Bram Moolenaareffed932018-08-14 13:38:17 +02002868 {
2869#ifdef FEAT_BROWSE_CMD
Bram Moolenaare1004402020-10-24 20:49:43 +02002870 cmod->cmod_flags |= CMOD_BROWSE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002871#endif
2872 continue;
2873 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002874 if (!checkforcmd_noparen(&eap->cmd, "botright", 2))
Bram Moolenaareffed932018-08-14 13:38:17 +02002875 break;
Bram Moolenaare1004402020-10-24 20:49:43 +02002876 cmod->cmod_split |= WSP_BOT;
Bram Moolenaareffed932018-08-14 13:38:17 +02002877 continue;
2878
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002879 case 'c': if (!checkforcmd_opt(&eap->cmd, "confirm", 4, TRUE))
Bram Moolenaareffed932018-08-14 13:38:17 +02002880 break;
2881#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02002882 cmod->cmod_flags |= CMOD_CONFIRM;
Bram Moolenaareffed932018-08-14 13:38:17 +02002883#endif
2884 continue;
2885
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002886 case 'k': if (checkforcmd_noparen(&eap->cmd, "keepmarks", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02002887 {
Bram Moolenaare1004402020-10-24 20:49:43 +02002888 cmod->cmod_flags |= CMOD_KEEPMARKS;
Bram Moolenaareffed932018-08-14 13:38:17 +02002889 continue;
2890 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002891 if (checkforcmd_noparen(&eap->cmd, "keepalt", 5))
Bram Moolenaareffed932018-08-14 13:38:17 +02002892 {
Bram Moolenaare1004402020-10-24 20:49:43 +02002893 cmod->cmod_flags |= CMOD_KEEPALT;
Bram Moolenaareffed932018-08-14 13:38:17 +02002894 continue;
2895 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002896 if (checkforcmd_noparen(&eap->cmd, "keeppatterns", 5))
Bram Moolenaareffed932018-08-14 13:38:17 +02002897 {
Bram Moolenaare1004402020-10-24 20:49:43 +02002898 cmod->cmod_flags |= CMOD_KEEPPATTERNS;
Bram Moolenaareffed932018-08-14 13:38:17 +02002899 continue;
2900 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002901 if (!checkforcmd_noparen(&eap->cmd, "keepjumps", 5))
Bram Moolenaareffed932018-08-14 13:38:17 +02002902 break;
Bram Moolenaare1004402020-10-24 20:49:43 +02002903 cmod->cmod_flags |= CMOD_KEEPJUMPS;
Bram Moolenaareffed932018-08-14 13:38:17 +02002904 continue;
2905
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002906 case 'f': // only accept ":filter {pat} cmd"
Bram Moolenaareffed932018-08-14 13:38:17 +02002907 {
Bram Moolenaare729ce22021-06-06 21:38:09 +02002908 char_u *reg_pat;
2909 char_u *nulp = NULL;
2910 int c = 0;
Bram Moolenaareffed932018-08-14 13:38:17 +02002911
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002912 if (!checkforcmd_noparen(&p, "filter", 4)
Bram Moolenaareffed932018-08-14 13:38:17 +02002913 || *p == NUL || ends_excmd(*p))
2914 break;
2915 if (*p == '!')
2916 {
Bram Moolenaare1004402020-10-24 20:49:43 +02002917 cmod->cmod_filter_force = TRUE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002918 p = skipwhite(p + 1);
2919 if (*p == NUL || ends_excmd(*p))
2920 break;
2921 }
Bram Moolenaar1e624c92020-07-11 14:08:04 +02002922#ifdef FEAT_EVAL
Bram Moolenaarb074e8b2020-07-11 13:40:45 +02002923 // Avoid that "filter(arg)" is recognized.
Bram Moolenaar4f6b6ed2020-10-29 20:24:34 +01002924 if (in_vim9script() && !VIM_ISWHITE(p[-1]))
Bram Moolenaarb074e8b2020-07-11 13:40:45 +02002925 break;
Bram Moolenaar1e624c92020-07-11 14:08:04 +02002926#endif
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002927 if (skip_only)
2928 p = skip_vimgrep_pat(p, NULL, NULL);
2929 else
2930 // NOTE: This puts a NUL after the pattern.
Bram Moolenaare729ce22021-06-06 21:38:09 +02002931 p = skip_vimgrep_pat_ext(p, &reg_pat, NULL,
2932 &nulp, &c);
Bram Moolenaareffed932018-08-14 13:38:17 +02002933 if (p == NULL || *p == NUL)
2934 break;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002935 if (!skip_only)
2936 {
Bram Moolenaare1004402020-10-24 20:49:43 +02002937 cmod->cmod_filter_regmatch.regprog =
Bram Moolenaareffed932018-08-14 13:38:17 +02002938 vim_regcomp(reg_pat, RE_MAGIC);
Bram Moolenaare1004402020-10-24 20:49:43 +02002939 if (cmod->cmod_filter_regmatch.regprog == NULL)
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002940 break;
Bram Moolenaare729ce22021-06-06 21:38:09 +02002941 // restore the character overwritten by NUL
2942 if (nulp != NULL)
2943 *nulp = c;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002944 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002945 eap->cmd = p;
2946 continue;
2947 }
2948
Bram Moolenaar217e1b82019-12-01 21:41:28 +01002949 // ":hide" and ":hide | cmd" are not modifiers
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002950 case 'h': if (p != eap->cmd || !checkforcmd_noparen(&p, "hide", 3)
Bram Moolenaareffed932018-08-14 13:38:17 +02002951 || *p == NUL || ends_excmd(*p))
2952 break;
2953 eap->cmd = p;
Bram Moolenaare1004402020-10-24 20:49:43 +02002954 cmod->cmod_flags |= CMOD_HIDE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002955 continue;
2956
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002957 case 'l': if (checkforcmd_noparen(&eap->cmd, "lockmarks", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02002958 {
Bram Moolenaare1004402020-10-24 20:49:43 +02002959 cmod->cmod_flags |= CMOD_LOCKMARKS;
Bram Moolenaareffed932018-08-14 13:38:17 +02002960 continue;
2961 }
Bram Moolenaar96cf4ba2021-04-24 14:15:41 +02002962 if (checkforcmd_noparen(&eap->cmd, "legacy", 3))
2963 {
2964 if (ends_excmd2(p, eap->cmd))
2965 {
2966 *errormsg =
Bram Moolenaardd9de502021-08-15 13:49:42 +02002967 _(e_legacy_must_be_followed_by_command);
Bram Moolenaar96cf4ba2021-04-24 14:15:41 +02002968 return FAIL;
2969 }
2970 cmod->cmod_flags |= CMOD_LEGACY;
2971 continue;
2972 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002973
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002974 if (!checkforcmd_noparen(&eap->cmd, "leftabove", 5))
Bram Moolenaareffed932018-08-14 13:38:17 +02002975 break;
Bram Moolenaare1004402020-10-24 20:49:43 +02002976 cmod->cmod_split |= WSP_ABOVE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002977 continue;
2978
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002979 case 'n': if (checkforcmd_noparen(&eap->cmd, "noautocmd", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02002980 {
Bram Moolenaare1004402020-10-24 20:49:43 +02002981 cmod->cmod_flags |= CMOD_NOAUTOCMD;
Bram Moolenaareffed932018-08-14 13:38:17 +02002982 continue;
2983 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002984 if (!checkforcmd_noparen(&eap->cmd, "noswapfile", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02002985 break;
Bram Moolenaare1004402020-10-24 20:49:43 +02002986 cmod->cmod_flags |= CMOD_NOSWAPFILE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002987 continue;
2988
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002989 case 'r': if (!checkforcmd_noparen(&eap->cmd, "rightbelow", 6))
Bram Moolenaareffed932018-08-14 13:38:17 +02002990 break;
Bram Moolenaare1004402020-10-24 20:49:43 +02002991 cmod->cmod_split |= WSP_BELOW;
Bram Moolenaareffed932018-08-14 13:38:17 +02002992 continue;
2993
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002994 case 's': if (checkforcmd_noparen(&eap->cmd, "sandbox", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02002995 {
Bram Moolenaare1004402020-10-24 20:49:43 +02002996 cmod->cmod_flags |= CMOD_SANDBOX;
Bram Moolenaareffed932018-08-14 13:38:17 +02002997 continue;
2998 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01002999 if (!checkforcmd_noparen(&eap->cmd, "silent", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02003000 break;
Bram Moolenaare1004402020-10-24 20:49:43 +02003001 cmod->cmod_flags |= CMOD_SILENT;
Bram Moolenaareffed932018-08-14 13:38:17 +02003002 if (*eap->cmd == '!' && !VIM_ISWHITE(eap->cmd[-1]))
3003 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003004 // ":silent!", but not "silent !cmd"
Bram Moolenaareffed932018-08-14 13:38:17 +02003005 eap->cmd = skipwhite(eap->cmd + 1);
Bram Moolenaare1004402020-10-24 20:49:43 +02003006 cmod->cmod_flags |= CMOD_ERRSILENT;
Bram Moolenaareffed932018-08-14 13:38:17 +02003007 }
3008 continue;
3009
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01003010 case 't': if (checkforcmd_noparen(&p, "tab", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02003011 {
Bram Moolenaar548e5982018-12-26 21:45:00 +01003012 if (!skip_only)
Bram Moolenaareffed932018-08-14 13:38:17 +02003013 {
Bram Moolenaar548e5982018-12-26 21:45:00 +01003014 long tabnr = get_address(eap, &eap->cmd,
3015 ADDR_TABS, eap->skip,
3016 skip_only, FALSE, 1);
3017 if (tabnr == MAXLNUM)
Bram Moolenaare1004402020-10-24 20:49:43 +02003018 cmod->cmod_tab = tabpage_index(curtab) + 1;
Bram Moolenaar548e5982018-12-26 21:45:00 +01003019 else
Bram Moolenaareffed932018-08-14 13:38:17 +02003020 {
Bram Moolenaar548e5982018-12-26 21:45:00 +01003021 if (tabnr < 0 || tabnr > LAST_TAB_NR)
3022 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02003023 *errormsg = _(e_invalid_range);
Bram Moolenaar548e5982018-12-26 21:45:00 +01003024 return FAIL;
3025 }
Bram Moolenaare1004402020-10-24 20:49:43 +02003026 cmod->cmod_tab = tabnr + 1;
Bram Moolenaareffed932018-08-14 13:38:17 +02003027 }
Bram Moolenaareffed932018-08-14 13:38:17 +02003028 }
3029 eap->cmd = p;
3030 continue;
3031 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01003032 if (!checkforcmd_noparen(&eap->cmd, "topleft", 2))
Bram Moolenaareffed932018-08-14 13:38:17 +02003033 break;
Bram Moolenaare1004402020-10-24 20:49:43 +02003034 cmod->cmod_split |= WSP_TOP;
Bram Moolenaareffed932018-08-14 13:38:17 +02003035 continue;
3036
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01003037 case 'u': if (!checkforcmd_noparen(&eap->cmd, "unsilent", 3))
Bram Moolenaareffed932018-08-14 13:38:17 +02003038 break;
Bram Moolenaare1004402020-10-24 20:49:43 +02003039 cmod->cmod_flags |= CMOD_UNSILENT;
Bram Moolenaareffed932018-08-14 13:38:17 +02003040 continue;
3041
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01003042 case 'v': if (checkforcmd_noparen(&eap->cmd, "vertical", 4))
Bram Moolenaareffed932018-08-14 13:38:17 +02003043 {
Bram Moolenaare1004402020-10-24 20:49:43 +02003044 cmod->cmod_split |= WSP_VERT;
Bram Moolenaareffed932018-08-14 13:38:17 +02003045 continue;
3046 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01003047 if (checkforcmd_noparen(&eap->cmd, "vim9cmd", 4))
Bram Moolenaar39f3b142021-02-14 12:57:36 +01003048 {
3049 if (ends_excmd2(p, eap->cmd))
3050 {
3051 *errormsg =
3052 _(e_vim9cmd_must_be_followed_by_command);
3053 return FAIL;
3054 }
3055 cmod->cmod_flags |= CMOD_VIM9CMD;
3056 continue;
3057 }
Bram Moolenaarf49a1fc2021-03-27 22:20:21 +01003058 if (!checkforcmd_noparen(&p, "verbose", 4))
Bram Moolenaareffed932018-08-14 13:38:17 +02003059 break;
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003060 if (vim_isdigit(*eap->cmd))
Bram Moolenaare1004402020-10-24 20:49:43 +02003061 cmod->cmod_verbose = atoi((char *)eap->cmd);
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003062 else
Bram Moolenaare1004402020-10-24 20:49:43 +02003063 cmod->cmod_verbose = 1;
Bram Moolenaareffed932018-08-14 13:38:17 +02003064 eap->cmd = p;
3065 continue;
3066 }
3067 break;
3068 }
3069
3070 return OK;
3071}
3072
3073/*
Bram Moolenaarfa984412021-03-25 22:15:28 +01003074 * Return TRUE if "cmod" has anything set.
3075 */
3076 int
Bram Moolenaar917c46a2021-08-10 19:53:01 +02003077has_cmdmod(cmdmod_T *cmod, int ignore_silent)
Bram Moolenaarfa984412021-03-25 22:15:28 +01003078{
Bram Moolenaar917c46a2021-08-10 19:53:01 +02003079 return (cmod->cmod_flags != 0 && (!ignore_silent
3080 || (cmod->cmod_flags
3081 & ~(CMOD_SILENT | CMOD_ERRSILENT | CMOD_UNSILENT)) != 0))
Bram Moolenaarfa984412021-03-25 22:15:28 +01003082 || cmod->cmod_split != 0
3083 || cmod->cmod_verbose != 0
3084 || cmod->cmod_tab != 0
3085 || cmod->cmod_filter_regmatch.regprog != NULL;
3086}
3087
3088/*
3089 * If Vim9 script and "cmdmod" has anything set give an error and return TRUE.
3090 */
3091 int
Bram Moolenaar917c46a2021-08-10 19:53:01 +02003092cmdmod_error(int ignore_silent)
Bram Moolenaarfa984412021-03-25 22:15:28 +01003093{
Bram Moolenaar917c46a2021-08-10 19:53:01 +02003094 if (in_vim9script() && has_cmdmod(&cmdmod, ignore_silent))
Bram Moolenaarfa984412021-03-25 22:15:28 +01003095 {
3096 emsg(_(e_misplaced_command_modifier));
3097 return TRUE;
3098 }
3099 return FALSE;
3100}
3101
3102/*
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003103 * Apply the command modifiers. Saves current state in "cmdmod", call
3104 * undo_cmdmod() later.
3105 */
3106 void
3107apply_cmdmod(cmdmod_T *cmod)
3108{
3109#ifdef HAVE_SANDBOX
3110 if ((cmod->cmod_flags & CMOD_SANDBOX) && !cmod->cmod_did_sandbox)
3111 {
3112 ++sandbox;
3113 cmod->cmod_did_sandbox = TRUE;
3114 }
3115#endif
3116 if (cmod->cmod_verbose > 0)
3117 {
3118 if (cmod->cmod_verbose_save == 0)
3119 cmod->cmod_verbose_save = p_verbose + 1;
3120 p_verbose = cmod->cmod_verbose;
3121 }
3122
3123 if ((cmod->cmod_flags & (CMOD_SILENT | CMOD_UNSILENT))
3124 && cmod->cmod_save_msg_silent == 0)
Bram Moolenaare1004402020-10-24 20:49:43 +02003125 {
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003126 cmod->cmod_save_msg_silent = msg_silent + 1;
Bram Moolenaare1004402020-10-24 20:49:43 +02003127 cmod->cmod_save_msg_scroll = msg_scroll;
3128 }
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003129 if (cmod->cmod_flags & CMOD_SILENT)
3130 ++msg_silent;
3131 if (cmod->cmod_flags & CMOD_UNSILENT)
3132 msg_silent = 0;
3133
3134 if (cmod->cmod_flags & CMOD_ERRSILENT)
3135 {
3136 ++emsg_silent;
3137 ++cmod->cmod_did_esilent;
3138 }
3139
Bram Moolenaare1004402020-10-24 20:49:43 +02003140 if ((cmod->cmod_flags & CMOD_NOAUTOCMD) && cmod->cmod_save_ei == NULL)
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003141 {
3142 // Set 'eventignore' to "all".
3143 // First save the existing option value for restoring it later.
Bram Moolenaare1004402020-10-24 20:49:43 +02003144 cmod->cmod_save_ei = vim_strsave(p_ei);
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003145 set_string_option_direct((char_u *)"ei", -1,
3146 (char_u *)"all", OPT_FREE, SID_NONE);
3147 }
3148}
3149
3150/*
Bram Moolenaare1004402020-10-24 20:49:43 +02003151 * Undo and free contents of "cmod".
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02003152 */
Bram Moolenaar47e7d702020-07-05 18:18:42 +02003153 void
Bram Moolenaare1004402020-10-24 20:49:43 +02003154undo_cmdmod(cmdmod_T *cmod)
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02003155{
Bram Moolenaare1004402020-10-24 20:49:43 +02003156 if (cmod->cmod_verbose_save > 0)
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003157 {
Bram Moolenaare1004402020-10-24 20:49:43 +02003158 p_verbose = cmod->cmod_verbose_save - 1;
3159 cmod->cmod_verbose_save = 0;
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003160 }
Bram Moolenaar47e7d702020-07-05 18:18:42 +02003161
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003162#ifdef HAVE_SANDBOX
Bram Moolenaare1004402020-10-24 20:49:43 +02003163 if (cmod->cmod_did_sandbox)
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003164 {
3165 --sandbox;
Bram Moolenaare1004402020-10-24 20:49:43 +02003166 cmod->cmod_did_sandbox = FALSE;
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003167 }
3168#endif
3169
Bram Moolenaare1004402020-10-24 20:49:43 +02003170 if (cmod->cmod_save_ei != NULL)
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02003171 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003172 // Restore 'eventignore' to the value before ":noautocmd".
Bram Moolenaare1004402020-10-24 20:49:43 +02003173 set_string_option_direct((char_u *)"ei", -1, cmod->cmod_save_ei,
3174 OPT_FREE, SID_NONE);
3175 free_string_option(cmod->cmod_save_ei);
3176 cmod->cmod_save_ei = NULL;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02003177 }
3178
Bram Moolenaarcaf73dc2020-10-26 21:39:13 +01003179 vim_regfree(cmod->cmod_filter_regmatch.regprog);
Bram Moolenaar47e7d702020-07-05 18:18:42 +02003180
Bram Moolenaare1004402020-10-24 20:49:43 +02003181 if (cmod->cmod_save_msg_silent > 0)
Bram Moolenaar47e7d702020-07-05 18:18:42 +02003182 {
3183 // messages could be enabled for a serious error, need to check if the
3184 // counters don't become negative
Bram Moolenaare1004402020-10-24 20:49:43 +02003185 if (!did_emsg || msg_silent > cmod->cmod_save_msg_silent - 1)
3186 msg_silent = cmod->cmod_save_msg_silent - 1;
3187 emsg_silent -= cmod->cmod_did_esilent;
Bram Moolenaar47e7d702020-07-05 18:18:42 +02003188 if (emsg_silent < 0)
3189 emsg_silent = 0;
3190 // Restore msg_scroll, it's set by file I/O commands, even when no
3191 // message is actually displayed.
Bram Moolenaare1004402020-10-24 20:49:43 +02003192 msg_scroll = cmod->cmod_save_msg_scroll;
Bram Moolenaar47e7d702020-07-05 18:18:42 +02003193
3194 // "silent reg" or "silent echo x" inside "redir" leaves msg_col
3195 // somewhere in the line. Put it back in the first column.
3196 if (redirecting())
3197 msg_col = 0;
Bram Moolenaar5661ed62020-10-24 17:19:16 +02003198
Bram Moolenaare1004402020-10-24 20:49:43 +02003199 cmod->cmod_save_msg_silent = 0;
3200 cmod->cmod_did_esilent = 0;
Bram Moolenaar47e7d702020-07-05 18:18:42 +02003201 }
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02003202}
3203
3204/*
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003205 * Parse the address range, if any, in "eap".
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02003206 * May set the last search pattern, unless "silent" is TRUE.
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003207 * Return FAIL and set "errormsg" or return OK.
3208 */
3209 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003210parse_cmd_address(exarg_T *eap, char **errormsg, int silent)
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003211{
3212 int address_count = 1;
3213 linenr_T lnum;
3214
3215 // Repeat for all ',' or ';' separated addresses.
3216 for (;;)
3217 {
3218 eap->line1 = eap->line2;
Bram Moolenaarc2af0af2020-08-23 21:06:02 +02003219 eap->line2 = default_address(eap);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003220 eap->cmd = skipwhite(eap->cmd);
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02003221 lnum = get_address(eap, &eap->cmd, eap->addr_type, eap->skip, silent,
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003222 eap->addr_count == 0, address_count++);
3223 if (eap->cmd == NULL) // error detected
3224 return FAIL;
3225 if (lnum == MAXLNUM)
3226 {
3227 if (*eap->cmd == '%') // '%' - all lines
3228 {
3229 ++eap->cmd;
3230 switch (eap->addr_type)
3231 {
3232 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02003233 case ADDR_OTHER:
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003234 eap->line1 = 1;
3235 eap->line2 = curbuf->b_ml.ml_line_count;
3236 break;
3237 case ADDR_LOADED_BUFFERS:
3238 {
3239 buf_T *buf = firstbuf;
3240
3241 while (buf->b_next != NULL
3242 && buf->b_ml.ml_mfp == NULL)
3243 buf = buf->b_next;
3244 eap->line1 = buf->b_fnum;
3245 buf = lastbuf;
3246 while (buf->b_prev != NULL
3247 && buf->b_ml.ml_mfp == NULL)
3248 buf = buf->b_prev;
3249 eap->line2 = buf->b_fnum;
3250 break;
3251 }
3252 case ADDR_BUFFERS:
3253 eap->line1 = firstbuf->b_fnum;
3254 eap->line2 = lastbuf->b_fnum;
3255 break;
3256 case ADDR_WINDOWS:
3257 case ADDR_TABS:
3258 if (IS_USER_CMDIDX(eap->cmdidx))
3259 {
3260 eap->line1 = 1;
3261 eap->line2 = eap->addr_type == ADDR_WINDOWS
3262 ? LAST_WIN_NR : LAST_TAB_NR;
3263 }
3264 else
3265 {
3266 // there is no Vim command which uses '%' and
3267 // ADDR_WINDOWS or ADDR_TABS
Bram Moolenaar108010a2021-06-27 22:03:33 +02003268 *errormsg = _(e_invalid_range);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003269 return FAIL;
3270 }
3271 break;
3272 case ADDR_TABS_RELATIVE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02003273 case ADDR_UNSIGNED:
3274 case ADDR_QUICKFIX:
Bram Moolenaar108010a2021-06-27 22:03:33 +02003275 *errormsg = _(e_invalid_range);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003276 return FAIL;
3277 case ADDR_ARGUMENTS:
3278 if (ARGCOUNT == 0)
3279 eap->line1 = eap->line2 = 0;
3280 else
3281 {
3282 eap->line1 = 1;
3283 eap->line2 = ARGCOUNT;
3284 }
3285 break;
Bram Moolenaar25190db2019-05-04 15:05:28 +02003286 case ADDR_QUICKFIX_VALID:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003287#ifdef FEAT_QUICKFIX
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003288 eap->line1 = 1;
Bram Moolenaar25190db2019-05-04 15:05:28 +02003289 eap->line2 = qf_get_valid_size(eap);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003290 if (eap->line2 == 0)
3291 eap->line2 = 1;
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003292#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003293 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02003294 case ADDR_NONE:
3295 // Will give an error later if a range is found.
3296 break;
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003297 }
3298 ++eap->addr_count;
3299 }
3300 else if (*eap->cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
3301 {
3302 pos_T *fp;
3303
3304 // '*' - visual area
3305 if (eap->addr_type != ADDR_LINES)
3306 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02003307 *errormsg = _(e_invalid_range);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003308 return FAIL;
3309 }
3310
3311 ++eap->cmd;
3312 if (!eap->skip)
3313 {
3314 fp = getmark('<', FALSE);
3315 if (check_mark(fp) == FAIL)
3316 return FAIL;
3317 eap->line1 = fp->lnum;
3318 fp = getmark('>', FALSE);
3319 if (check_mark(fp) == FAIL)
3320 return FAIL;
3321 eap->line2 = fp->lnum;
3322 ++eap->addr_count;
3323 }
3324 }
3325 }
3326 else
3327 eap->line2 = lnum;
3328 eap->addr_count++;
3329
3330 if (*eap->cmd == ';')
3331 {
3332 if (!eap->skip)
3333 {
3334 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaar0e717042020-04-27 19:29:01 +02003335 // Don't leave the cursor on an illegal line or column, but do
3336 // accept zero as address, so 0;/PATTERN/ works correctly.
3337 if (eap->line2 > 0)
3338 check_cursor();
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003339 }
3340 }
3341 else if (*eap->cmd != ',')
3342 break;
3343 ++eap->cmd;
3344 }
3345
3346 // One address given: set start and end lines.
3347 if (eap->addr_count == 1)
3348 {
3349 eap->line1 = eap->line2;
3350 // ... but only implicit: really no address given
3351 if (lnum == MAXLNUM)
3352 eap->addr_count = 0;
3353 }
3354 return OK;
3355}
3356
3357/*
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003358 * Append "cmd" to the error message in IObuff.
3359 * Takes care of limiting the length and handling 0xa0, which would be
3360 * invisible otherwise.
3361 */
3362 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003363append_command(char_u *cmd)
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003364{
3365 char_u *s = cmd;
3366 char_u *d;
3367
3368 STRCAT(IObuff, ": ");
3369 d = IObuff + STRLEN(IObuff);
3370 while (*s != NUL && d - IObuff < IOSIZE - 7)
3371 {
Bram Moolenaar13505972019-01-24 15:04:48 +01003372 if (enc_utf8 ? (s[0] == 0xc2 && s[1] == 0xa0) : *s == 0xa0)
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003373 {
Bram Moolenaar13505972019-01-24 15:04:48 +01003374 s += enc_utf8 ? 2 : 1;
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003375 STRCPY(d, "<a0>");
3376 d += 4;
3377 }
3378 else
3379 MB_COPY_CHAR(s, d);
3380 }
3381 *d = NUL;
3382}
3383
3384/*
Bram Moolenaar2e800952020-08-23 19:34:48 +02003385 * If "start" points "&opt", "&l:opt", "&g:opt" or "$ENV" return a pointer to
3386 * the name. Otherwise just return "start".
3387 */
3388 char_u *
3389skip_option_env_lead(char_u *start)
3390{
3391 char_u *name = start;
3392
3393 if (*start == '&')
3394 {
3395 if ((start[1] == 'l' || start[1] == 'g') && start[2] == ':')
3396 name += 3;
3397 else
3398 name += 1;
3399 }
3400 else if (*start == '$')
3401 name += 1;
3402 return name;
3403}
3404
3405/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003407 * Start of the name can be found at eap->cmd.
Bram Moolenaar25190db2019-05-04 15:05:28 +02003408 * Sets eap->cmdidx and returns a pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003409 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003410 *
3411 * If "lookup" is not NULL recognize expression without "eval" or "call" and
3412 * assignment without "let". Sets eap->cmdidx to the command while returning
3413 * "eap->cmd".
3414 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 * Returns NULL for an ambiguous user command.
3416 */
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003417 char_u *
3418find_ex_command(
3419 exarg_T *eap,
Bram Moolenaara494f562020-04-18 17:45:38 +02003420 int *full UNUSED,
Bram Moolenaar77b10ff2021-03-14 13:21:35 +01003421 int (*lookup)(char_u *, size_t, int cmd, cctx_T *) UNUSED,
Bram Moolenaara494f562020-04-18 17:45:38 +02003422 cctx_T *cctx UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423{
3424 int len;
3425 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003426 int i;
Bram Moolenaar7d840e92021-05-26 21:10:11 +02003427#ifndef FEAT_EVAL
3428 int vim9 = FALSE;
3429#else
3430 int vim9 = in_vim9script();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003432 /*
3433 * Recognize a Vim9 script function/method call and assignment:
3434 * "lvar = value", "lvar(arg)", "[1, 2 3]->Func()"
3435 */
Bram Moolenaar0c6ceaf2020-02-22 18:36:32 +01003436 p = eap->cmd;
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003437 if (lookup != NULL)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003438 {
Bram Moolenaar2e800952020-08-23 19:34:48 +02003439 char_u *pskip = skip_option_env_lead(eap->cmd);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003440
Bram Moolenaar5ca5cc62021-08-24 21:56:03 +02003441 if (vim_strchr((char_u *)"{('[\"@&$", *p) != NULL
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003442 || ((p = to_name_const_end(pskip)) > eap->cmd && *p != NUL))
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003443 {
Bram Moolenaar7cebe8b2021-01-23 14:22:16 +01003444 int oplen;
3445 int heredoc;
Bram Moolenaarbf5f2872021-08-21 20:50:35 +02003446 char_u *swp;
3447
Bram Moolenaar5ca5cc62021-08-24 21:56:03 +02003448 if (*eap->cmd == '&'
3449 || *eap->cmd == '$'
3450 || (eap->cmd[0] == '@'
Bram Moolenaar73170912021-08-22 22:44:11 +02003451 && (valid_yank_reg(eap->cmd[1], FALSE)
3452 || eap->cmd[1] == '@')))
Bram Moolenaarbf5f2872021-08-21 20:50:35 +02003453 {
Bram Moolenaar73170912021-08-22 22:44:11 +02003454 if (*eap->cmd == '&')
3455 {
3456 p = eap->cmd + 1;
3457 if (STRNCMP("l:", p, 2) == 0 || STRNCMP("g:", p, 2) == 0)
3458 p += 2;
3459 p = to_name_end(p, FALSE);
3460 }
Bram Moolenaar5ca5cc62021-08-24 21:56:03 +02003461 else if (*eap->cmd == '$')
3462 p = to_name_end(eap->cmd + 1, FALSE);
Bram Moolenaar73170912021-08-22 22:44:11 +02003463 else
3464 p = eap->cmd + 2;
Bram Moolenaarbf5f2872021-08-21 20:50:35 +02003465 if (ends_excmd(*skipwhite(p)))
3466 {
Bram Moolenaar5ca5cc62021-08-24 21:56:03 +02003467 // "&option <NL>", "$ENV <NL>" and "@r <NL>" are the start
3468 // of an expression.
Bram Moolenaarbf5f2872021-08-21 20:50:35 +02003469 eap->cmdidx = CMD_eval;
3470 return eap->cmd;
3471 }
3472 // "&option" can be followed by "->" or "=", check below
3473 }
3474
3475 swp = skipwhite(p);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003476
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003477 if (
3478 // "(..." is an expression.
3479 // "funcname(" is always a function call.
3480 *p == '('
3481 || (p == eap->cmd
3482 ? (
Bram Moolenaar9becdf22020-10-10 21:33:48 +02003483 // "{..." is a dict expression or block start.
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003484 *eap->cmd == '{'
3485 // "'string'->func()" is an expression.
3486 || *eap->cmd == '\''
Bram Moolenaar10409562020-07-29 20:00:38 +02003487 // '"string"->func()' is an expression.
3488 || *eap->cmd == '"'
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003489 // "g:varname" is an expression.
3490 || eap->cmd[1] == ':'
3491 )
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003492 // "varname->func()" is an expression.
Bram Moolenaar7cebe8b2021-01-23 14:22:16 +01003493 : (*swp == '-' && swp[1] == '>')))
Bram Moolenaarb31be3f2020-07-20 22:37:44 +02003494 {
Bram Moolenaar9becdf22020-10-10 21:33:48 +02003495 if (*eap->cmd == '{' && ends_excmd(*skipwhite(eap->cmd + 1)))
3496 {
3497 // "{" by itself is the start of a block.
3498 eap->cmdidx = CMD_block;
3499 return eap->cmd + 1;
3500 }
Bram Moolenaarb31be3f2020-07-20 22:37:44 +02003501 eap->cmdidx = CMD_eval;
3502 return eap->cmd;
3503 }
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003504
Bram Moolenaar2b22b112020-09-14 18:35:18 +02003505 if (p != eap->cmd && (
3506 // "varname[]" is an expression.
3507 *p == '['
3508 // "varname.key" is an expression.
Bram Moolenaar5dd839c2021-07-22 18:48:53 +02003509 || (*p == '.' && (ASCII_ISALPHA(p[1])
3510 || p[1] == '_'))))
Bram Moolenaar2b22b112020-09-14 18:35:18 +02003511 {
Bram Moolenaar68452172021-04-12 21:21:02 +02003512 char_u *after = eap->cmd;
Bram Moolenaar2b22b112020-09-14 18:35:18 +02003513
3514 // When followed by "=" or "+=" then it is an assignment.
Bram Moolenaar68452172021-04-12 21:21:02 +02003515 // Skip over the whole thing, it can be:
3516 // name.member = val
3517 // name[a : b] = val
3518 // name[idx] = val
3519 // name[idx].member = val
3520 // etc.
3521 eap->cmdidx = CMD_eval;
Bram Moolenaar2b22b112020-09-14 18:35:18 +02003522 ++emsg_silent;
Bram Moolenaarce2c5442020-11-28 21:21:17 +01003523 if (skip_expr(&after, NULL) == OK)
Bram Moolenaar68452172021-04-12 21:21:02 +02003524 {
Bram Moolenaarce2c5442020-11-28 21:21:17 +01003525 after = skipwhite(after);
Bram Moolenaar68452172021-04-12 21:21:02 +02003526 if (*after == '=' || (*after != NUL && after[1] == '=')
Bram Moolenaarce2c5442020-11-28 21:21:17 +01003527 || (after[0] == '.' && after[1] == '.'
3528 && after[2] == '='))
Bram Moolenaar68452172021-04-12 21:21:02 +02003529 eap->cmdidx = CMD_var;
3530 }
Bram Moolenaar2b22b112020-09-14 18:35:18 +02003531 --emsg_silent;
3532 return eap->cmd;
3533 }
3534
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003535 // "[...]->Method()" is a list expression, but "[a, b] = Func()" is
3536 // an assignment.
3537 // If there is no line break inside the "[...]" then "p" is
3538 // advanced to after the "]" by to_name_const_end(): check if a "="
3539 // follows.
3540 // If "[...]" has a line break "p" still points at the "[" and it
3541 // can't be an assignment.
3542 if (*eap->cmd == '[')
Bram Moolenaarb31be3f2020-07-20 22:37:44 +02003543 {
Bram Moolenaar035bd1c2021-06-21 19:44:11 +02003544 char_u *eq;
3545
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003546 p = to_name_const_end(eap->cmd);
Bram Moolenaarda7c20c2020-11-30 21:12:19 +01003547 if (p == eap->cmd && *p == '[')
3548 {
3549 int count = 0;
3550 int semicolon = FALSE;
3551
3552 p = skip_var_list(eap->cmd, TRUE, &count, &semicolon, TRUE);
3553 }
Bram Moolenaar035bd1c2021-06-21 19:44:11 +02003554 eq = p;
3555 if (eq != NULL)
3556 {
3557 eq = skipwhite(eq);
3558 if (vim_strchr((char_u *)"+-*/%", *eq) != NULL)
3559 ++eq;
3560 }
3561 if (p == NULL || p == eap->cmd || *eq != '=')
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003562 {
3563 eap->cmdidx = CMD_eval;
3564 return eap->cmd;
3565 }
Bram Moolenaar035bd1c2021-06-21 19:44:11 +02003566 if (p > eap->cmd && *eq == '=')
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003567 {
Bram Moolenaar30fd8202020-09-26 15:09:30 +02003568 eap->cmdidx = CMD_var;
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003569 return eap->cmd;
3570 }
3571 }
3572
3573 // Recognize an assignment if we recognize the variable name:
3574 // "g:var = expr"
Bram Moolenaarbf5f2872021-08-21 20:50:35 +02003575 // "@r = expr"
3576 // "&opt = expr"
Bram Moolenaaraa1959b2021-04-15 22:13:39 +02003577 // "var = expr" where "var" is a variable name or we are skipping
3578 // (variable declaration might have been skipped).
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003579 oplen = assignment_len(skipwhite(p), &heredoc);
3580 if (oplen > 0)
3581 {
3582 if (((p - eap->cmd) > 2 && eap->cmd[1] == ':')
3583 || *eap->cmd == '&'
3584 || *eap->cmd == '$'
3585 || *eap->cmd == '@'
Bram Moolenaaraa1959b2021-04-15 22:13:39 +02003586 || eap->skip
Bram Moolenaar77b10ff2021-03-14 13:21:35 +01003587 || lookup(eap->cmd, p - eap->cmd, TRUE, cctx) == OK)
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003588 {
Bram Moolenaar30fd8202020-09-26 15:09:30 +02003589 eap->cmdidx = CMD_var;
Bram Moolenaarb5ed2662020-07-28 22:38:37 +02003590 return eap->cmd;
3591 }
3592 }
3593
3594 // Recognize using a type for a w:, b:, t: or g: variable:
3595 // "w:varname: number = 123".
3596 if (eap->cmd[1] == ':' && *p == ':')
3597 {
3598 eap->cmdidx = CMD_eval;
Bram Moolenaarb31be3f2020-07-20 22:37:44 +02003599 return eap->cmd;
3600 }
Bram Moolenaard2ef6b32020-07-02 21:11:34 +02003601 }
Bram Moolenaar148be9b2021-02-02 21:33:52 +01003602
3603 // If it is an ID it might be a variable with an operator on the next
3604 // line, if the variable exists it can't be an Ex command.
3605 if (p > eap->cmd && ends_excmd(*skipwhite(p))
Bram Moolenaar77b10ff2021-03-14 13:21:35 +01003606 && (lookup(eap->cmd, p - eap->cmd, TRUE, cctx) == OK
Bram Moolenaar148be9b2021-02-02 21:33:52 +01003607 || (ASCII_ISALPHA(eap->cmd[0]) && eap->cmd[1] == ':')))
3608 {
3609 eap->cmdidx = CMD_eval;
3610 return eap->cmd;
3611 }
Bram Moolenaarbdc0f1c2021-04-24 19:08:24 +02003612
3613 // Check for "++nr" and "--nr".
3614 if (p == eap->cmd && p[0] == p[1] && (*p == '+' || *p == '-'))
3615 {
3616 eap->cmdidx = *p == '+' ? CMD_increment : CMD_decrement;
3617 return eap->cmd + 2;
3618 }
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003619 }
3620#endif
3621
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 /*
3623 * Isolate the command and search for it in the command table.
Bram Moolenaar81870892007-11-11 18:17:28 +00003624 * Exceptions:
Bram Moolenaar10b94212021-02-19 21:42:57 +01003625 * - The 'k' command can directly be followed by any character.
3626 * But it is not used in Vim9 script.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003628 * but :sre[wind] is another command, as are :scr[iptnames],
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00003630 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 */
3632 p = eap->cmd;
Bram Moolenaar7d840e92021-05-26 21:10:11 +02003633 if (!vim9 && *p == 'k')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 {
3635 eap->cmdidx = CMD_k;
3636 ++p;
3637 }
Bram Moolenaar7d840e92021-05-26 21:10:11 +02003638 else if (!vim9
3639 && p[0] == 's'
Bram Moolenaar204b93f2015-08-04 22:02:51 +02003640 && ((p[1] == 'c' && (p[2] == NUL || (p[2] != 's' && p[2] != 'r'
3641 && (p[3] == NUL || (p[3] != 'i' && p[4] != 'p')))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 || p[1] == 'g'
3643 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
3644 || p[1] == 'I'
3645 || (p[1] == 'r' && p[2] != 'e')))
3646 {
3647 eap->cmdidx = CMD_substitute;
3648 ++p;
3649 }
3650 else
3651 {
3652 while (ASCII_ISALPHA(*p))
3653 ++p;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003654 // for python 3.x support ":py3", ":python3", ":py3file", etc.
Bram Moolenaar55d5c032010-07-17 23:52:29 +02003655 if (eap->cmd[0] == 'p' && eap->cmd[1] == 'y')
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003656 {
Bram Moolenaarb6590522010-07-21 16:00:43 +02003657 while (ASCII_ISALNUM(*p))
3658 ++p;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003659 }
3660 else if (*p == '9' && STRNCMP("vim9", eap->cmd, 4) == 0)
3661 {
Bram Moolenaardf749a22021-03-28 15:29:43 +02003662 // include "9" for "vim9*" commands; "vim9cmd" and "vim9script".
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003663 ++p;
3664 while (ASCII_ISALPHA(*p))
3665 ++p;
3666 }
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02003667
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003668 // check for non-alpha command
Bram Moolenaar9becdf22020-10-10 21:33:48 +02003669 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#}", *p) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 ++p;
3671 len = (int)(p - eap->cmd);
Bram Moolenaar7d840e92021-05-26 21:10:11 +02003672 if (!vim9 && *eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
Bram Moolenaardf177f62005-02-22 08:39:57 +00003673 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003674 // Check for ":dl", ":dell", etc. to ":deletel": that's
3675 // :delete with the 'l' flag. Same for 'p'.
Bram Moolenaardf177f62005-02-22 08:39:57 +00003676 for (i = 0; i < len; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003677 if (eap->cmd[i] != ((char_u *)"delete")[i])
Bram Moolenaardf177f62005-02-22 08:39:57 +00003678 break;
3679 if (i == len - 1)
3680 {
3681 --len;
3682 if (p[-1] == 'l')
3683 eap->flags |= EXFLAG_LIST;
3684 else
3685 eap->flags |= EXFLAG_PRINT;
3686 }
3687 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003689 if (ASCII_ISLOWER(eap->cmd[0]))
3690 {
Bram Moolenaar6c0c1e82017-03-25 15:07:43 +01003691 int c1 = eap->cmd[0];
Bram Moolenaar94f82cb2019-07-24 22:30:27 +02003692 int c2 = len == 1 ? NUL : eap->cmd[1];
Bram Moolenaar6c0c1e82017-03-25 15:07:43 +01003693
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003694 if (command_count != (int)CMD_SIZE)
3695 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003696 iemsg(_("E943: Command table needs to be updated, run 'make cmdidxs'"));
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003697 getout(1);
3698 }
3699
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003700 // Use a precomputed index for fast look-up in cmdnames[]
3701 // taking into account the first 2 letters of eap->cmd.
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003702 eap->cmdidx = cmdidxs1[CharOrdLow(c1)];
3703 if (ASCII_ISLOWER(c2))
3704 eap->cmdidx += cmdidxs2[CharOrdLow(c1)][CharOrdLow(c2)];
3705 }
Bram Moolenaara494f562020-04-18 17:45:38 +02003706 else if (ASCII_ISUPPER(eap->cmd[0]))
3707 eap->cmdidx = CMD_Next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 else
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003709 eap->cmdidx = CMD_bang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710
3711 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
3712 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
3713 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
3714 (size_t)len) == 0)
3715 {
3716#ifdef FEAT_EVAL
3717 if (full != NULL
3718 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
3719 *full = TRUE;
3720#endif
3721 break;
3722 }
3723
Bram Moolenaar95388e32020-11-20 21:07:00 +01003724 // Not not recognize ":*" as the star command unless '*' is in
3725 // 'cpoptions'.
3726 if (eap->cmdidx == CMD_star && vim_strchr(p_cpo, CPO_STAR) == NULL)
3727 p = eap->cmd;
3728
Bram Moolenaarac9fb182019-04-27 13:04:13 +02003729 // Look for a user defined command as a last resort. Let ":Print" be
3730 // overruled by a user defined command.
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01003731 if ((eap->cmdidx == CMD_SIZE || eap->cmdidx == CMD_Print)
3732 && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 {
Bram Moolenaarac9fb182019-04-27 13:04:13 +02003734 // User defined commands may contain digits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 while (ASCII_ISALNUM(*p))
3736 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003737 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 }
Bram Moolenaar1c0aa972020-12-16 21:43:54 +01003739 if (p == NULL || p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 eap->cmdidx = CMD_SIZE;
3741 }
3742
Bram Moolenaar373863e2020-09-26 17:20:53 +02003743 // ":fina" means ":finally" for backwards compatibility.
3744 if (eap->cmdidx == CMD_final && p - eap->cmd == 4)
3745 eap->cmdidx = CMD_finally;
3746
Bram Moolenaar2a3cd3a2020-12-13 19:22:27 +01003747#ifdef FEAT_EVAL
Bram Moolenaard1510ee2021-01-04 16:15:58 +01003748 if (eap->cmdidx < CMD_SIZE
Bram Moolenaar7d840e92021-05-26 21:10:11 +02003749 && vim9
Bram Moolenaar9fa5dab2021-07-20 19:18:44 +02003750 && !IS_WHITE_OR_NUL(*p) && *p != '\n' && *p != '!' && *p != '|'
Bram Moolenaard1510ee2021-01-04 16:15:58 +01003751 && (eap->cmdidx < 0 ||
3752 (cmdnames[eap->cmdidx].cmd_argt & EX_NONWHITE_OK) == 0))
Bram Moolenaarb5b94802020-12-13 17:50:20 +01003753 {
Bram Moolenaarb98cec22021-04-25 16:35:55 +02003754 char_u *cmd = vim_strnsave(eap->cmd, p - eap->cmd);
3755
3756 semsg(_(e_command_str_not_followed_by_white_space_str), cmd, eap->cmd);
Bram Moolenaarb5b94802020-12-13 17:50:20 +01003757 eap->cmdidx = CMD_SIZE;
Bram Moolenaarb98cec22021-04-25 16:35:55 +02003758 vim_free(cmd);
Bram Moolenaarb5b94802020-12-13 17:50:20 +01003759 }
Bram Moolenaar2a3cd3a2020-12-13 19:22:27 +01003760#endif
Bram Moolenaarb5b94802020-12-13 17:50:20 +01003761
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762 return p;
3763}
3764
3765#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003766static struct cmdmod
3767{
3768 char *name;
3769 int minlen;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003770 int has_count; // :123verbose :3tab
Bram Moolenaared53fb92007-11-24 20:50:24 +00003771} cmdmods[] = {
3772 {"aboveleft", 3, FALSE},
3773 {"belowright", 3, FALSE},
3774 {"botright", 2, FALSE},
3775 {"browse", 3, FALSE},
3776 {"confirm", 4, FALSE},
Bram Moolenaar7b668e82016-08-23 23:51:21 +02003777 {"filter", 4, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003778 {"hide", 3, FALSE},
3779 {"keepalt", 5, FALSE},
3780 {"keepjumps", 5, FALSE},
3781 {"keepmarks", 3, FALSE},
Bram Moolenaara939e432013-11-09 05:30:26 +01003782 {"keeppatterns", 5, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003783 {"leftabove", 5, FALSE},
3784 {"lockmarks", 3, FALSE},
Bram Moolenaarca9f9582008-09-18 10:44:28 +00003785 {"noautocmd", 3, FALSE},
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003786 {"noswapfile", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003787 {"rightbelow", 6, FALSE},
3788 {"sandbox", 3, FALSE},
3789 {"silent", 3, FALSE},
3790 {"tab", 3, TRUE},
3791 {"topleft", 2, FALSE},
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003792 {"unsilent", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003793 {"verbose", 4, TRUE},
3794 {"vertical", 4, FALSE},
3795};
3796
3797/*
3798 * Return length of a command modifier (including optional count).
3799 * Return zero when it's not a modifier.
3800 */
3801 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003802modifier_len(char_u *cmd)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003803{
3804 int i, j;
3805 char_u *p = cmd;
3806
3807 if (VIM_ISDIGIT(*cmd))
Dominique Pelle4781d6f2021-05-18 21:46:31 +02003808 p = skipwhite(skipdigits(cmd + 1));
K.Takataeeec2542021-06-02 13:28:16 +02003809 for (i = 0; i < (int)ARRAY_LENGTH(cmdmods); ++i)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003810 {
3811 for (j = 0; p[j] != NUL; ++j)
3812 if (p[j] != cmdmods[i].name[j])
3813 break;
Bram Moolenaar2d473ab2013-06-12 17:12:24 +02003814 if (!ASCII_ISALPHA(p[j]) && j >= cmdmods[i].minlen
Bram Moolenaared53fb92007-11-24 20:50:24 +00003815 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003816 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003817 }
3818 return 0;
3819}
3820
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821/*
3822 * Return > 0 if an Ex command "name" exists.
3823 * Return 2 if there is an exact match.
3824 * Return 3 if there is an ambiguous match.
3825 */
3826 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003827cmd_exists(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828{
3829 exarg_T ea;
3830 int full = FALSE;
3831 int i;
3832 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003833 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003835 // Check command modifiers.
K.Takataeeec2542021-06-02 13:28:16 +02003836 for (i = 0; i < (int)ARRAY_LENGTH(cmdmods); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 {
3838 for (j = 0; name[j] != NUL; ++j)
3839 if (name[j] != cmdmods[i].name[j])
3840 break;
3841 if (name[j] == NUL && j >= cmdmods[i].minlen)
3842 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3843 }
3844
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003845 // Check built-in commands and user defined commands.
3846 // For ":2match" and ":3match" we need to skip the number.
Bram Moolenaara9587612006-05-04 21:47:50 +00003847 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003849 p = find_ex_command(&ea, &full, NULL, NULL);
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003850 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003852 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3853 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003854 if (*skipwhite(p) != NUL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003855 return 0; // trailing garbage
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3857}
Bram Moolenaar038e09e2021-02-06 12:38:51 +01003858
3859/*
3860 * "fullcommand" function
3861 */
3862 void
3863f_fullcommand(typval_T *argvars, typval_T *rettv)
3864{
3865 exarg_T ea;
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003866 char_u *name;
Bram Moolenaar038e09e2021-02-06 12:38:51 +01003867 char_u *p;
3868
Bram Moolenaar4c8e8c62021-05-26 19:49:09 +02003869 rettv->v_type = VAR_STRING;
3870 rettv->vval.v_string = NULL;
Yegappan Lakshmanan4490ec42021-07-27 22:00:44 +02003871
3872 if (in_vim9script() && check_for_string_arg(argvars, 0) == FAIL)
3873 return;
3874
3875 name = argvars[0].vval.v_string;
Bram Moolenaar4c8e8c62021-05-26 19:49:09 +02003876 if (name == NULL)
3877 return;
3878
3879 while (*name != NUL && *name == ':')
Bram Moolenaar038e09e2021-02-06 12:38:51 +01003880 name++;
3881 name = skip_range(name, TRUE, NULL);
3882
Bram Moolenaar038e09e2021-02-06 12:38:51 +01003883 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
3884 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaar7d840e92021-05-26 21:10:11 +02003885 ea.addr_count = 0;
Bram Moolenaar038e09e2021-02-06 12:38:51 +01003886 p = find_ex_command(&ea, NULL, NULL, NULL);
3887 if (p == NULL || ea.cmdidx == CMD_SIZE)
3888 return;
Bram Moolenaar7d840e92021-05-26 21:10:11 +02003889 if (in_vim9script())
3890 {
3891 int res;
3892
3893 ++emsg_silent;
3894 res = not_in_vim9(&ea);
3895 --emsg_silent;
3896
3897 if (res == FAIL)
3898 return;
3899 }
Bram Moolenaar038e09e2021-02-06 12:38:51 +01003900
3901 rettv->vval.v_string = vim_strsave(IS_USER_CMDIDX(ea.cmdidx)
Bram Moolenaar80c88ea2021-09-08 14:29:46 +02003902 ? get_user_command_name(ea.useridx, ea.cmdidx)
3903 : cmdnames[ea.cmdidx].cmd_name);
Bram Moolenaar038e09e2021-02-06 12:38:51 +01003904}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905#endif
3906
Bram Moolenaard0190392019-08-23 21:17:35 +02003907 cmdidx_T
3908excmd_get_cmdidx(char_u *cmd, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909{
Bram Moolenaard0190392019-08-23 21:17:35 +02003910 cmdidx_T idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911
Bram Moolenaard0190392019-08-23 21:17:35 +02003912 for (idx = (cmdidx_T)0; (int)idx < (int)CMD_SIZE;
3913 idx = (cmdidx_T)((int)idx + 1))
3914 if (STRNCMP(cmdnames[(int)idx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 break;
3916
Bram Moolenaard0190392019-08-23 21:17:35 +02003917 return idx;
3918}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919
Bram Moolenaard0190392019-08-23 21:17:35 +02003920 long
3921excmd_get_argt(cmdidx_T idx)
3922{
3923 return (long)cmdnames[(int)idx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924}
3925
3926/*
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003927 * Skip a range specifier of the form: addr [,addr] [;addr] ..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 *
3929 * Backslashed delimiters after / or ? will be skipped, and commands will
3930 * not be expanded between /'s and ?'s or after "'".
3931 *
Bram Moolenaardf069ee2020-06-22 23:02:51 +02003932 * Also skip white space and ":" characters after the range.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 * Returns the "cmd" pointer advanced to beyond the range.
3934 */
3935 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003936skip_range(
3937 char_u *cmd,
Bram Moolenaar3bd8de42020-09-14 16:37:34 +02003938 int skip_star, // skip "*" used for Visual range
3939 int *ctx) // pointer to xp_context or NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003941 unsigned delim;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942
Bram Moolenaarcbf20fb2017-02-03 21:19:04 +01003943 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;\\", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944 {
Bram Moolenaarcbf20fb2017-02-03 21:19:04 +01003945 if (*cmd == '\\')
3946 {
3947 if (cmd[1] == '?' || cmd[1] == '/' || cmd[1] == '&')
3948 ++cmd;
3949 else
3950 break;
3951 }
3952 else if (*cmd == '\'')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 {
3954 if (*++cmd == NUL && ctx != NULL)
3955 *ctx = EXPAND_NOTHING;
3956 }
3957 else if (*cmd == '/' || *cmd == '?')
3958 {
3959 delim = *cmd++;
3960 while (*cmd != NUL && *cmd != delim)
3961 if (*cmd++ == '\\' && *cmd != NUL)
3962 ++cmd;
3963 if (*cmd == NUL && ctx != NULL)
3964 *ctx = EXPAND_NOTHING;
3965 }
3966 if (*cmd != NUL)
3967 ++cmd;
3968 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003969
Bram Moolenaar217e1b82019-12-01 21:41:28 +01003970 // Skip ":" and white space.
Bram Moolenaardf177f62005-02-22 08:39:57 +00003971 while (*cmd == ':')
3972 cmd = skipwhite(cmd + 1);
3973
Bram Moolenaar3bd8de42020-09-14 16:37:34 +02003974 // Skip "*" used for Visual range.
3975 if (skip_star && *cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
3976 cmd = skipwhite(cmd + 1);
3977
Bram Moolenaar071d4272004-06-13 20:20:40 +00003978 return cmd;
3979}
3980
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003981 static void
3982addr_error(cmd_addr_T addr_type)
3983{
3984 if (addr_type == ADDR_NONE)
3985 emsg(_(e_norange));
3986 else
Bram Moolenaar108010a2021-06-27 22:03:33 +02003987 emsg(_(e_invalid_range));
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003988}
3989
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990/*
Bram Moolenaarc2af0af2020-08-23 21:06:02 +02003991 * Return the default address for an address type.
3992 */
3993 static linenr_T
3994default_address(exarg_T *eap)
3995{
3996 linenr_T lnum = 0;
3997
3998 switch (eap->addr_type)
3999 {
4000 case ADDR_LINES:
4001 case ADDR_OTHER:
4002 // Default is the cursor line number. Avoid using an invalid
4003 // line number though.
4004 if (curwin->w_cursor.lnum > curbuf->b_ml.ml_line_count)
4005 lnum = curbuf->b_ml.ml_line_count;
4006 else
4007 lnum = curwin->w_cursor.lnum;
4008 break;
4009 case ADDR_WINDOWS:
4010 lnum = CURRENT_WIN_NR;
4011 break;
4012 case ADDR_ARGUMENTS:
4013 lnum = curwin->w_arg_idx + 1;
4014 if (lnum > ARGCOUNT)
4015 lnum = ARGCOUNT;
4016 break;
4017 case ADDR_LOADED_BUFFERS:
4018 case ADDR_BUFFERS:
4019 lnum = curbuf->b_fnum;
4020 break;
4021 case ADDR_TABS:
4022 lnum = CURRENT_TAB_NR;
4023 break;
4024 case ADDR_TABS_RELATIVE:
4025 case ADDR_UNSIGNED:
4026 lnum = 1;
4027 break;
4028 case ADDR_QUICKFIX:
4029#ifdef FEAT_QUICKFIX
4030 lnum = qf_get_cur_idx(eap);
4031#endif
4032 break;
4033 case ADDR_QUICKFIX_VALID:
4034#ifdef FEAT_QUICKFIX
4035 lnum = qf_get_cur_valid_idx(eap);
4036#endif
4037 break;
4038 case ADDR_NONE:
4039 // Will give an error later if a range is found.
4040 break;
4041 }
4042 return lnum;
4043}
4044
4045/*
Bram Moolenaar198cb662018-09-06 21:44:17 +02004046 * Get a single EX address.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 *
4048 * Set ptr to the next character after the part that was interpreted.
4049 * Set ptr to NULL when an error is encountered.
Bram Moolenaar198cb662018-09-06 21:44:17 +02004050 * This may set the last used search pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 *
4052 * Return MAXLNUM when no Ex address was found.
4053 */
4054 static linenr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004055get_address(
4056 exarg_T *eap UNUSED,
4057 char_u **ptr,
Bram Moolenaar1b03a192019-12-08 17:08:29 +01004058 cmd_addr_T addr_type,
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02004059 int skip, // only skip the address, don't use it
4060 int silent, // no errors or side effects
4061 int to_other_file, // flag: may jump to other file
4062 int address_count UNUSED) // 1 for first address, >1 after comma
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063{
4064 int c;
4065 int i;
4066 long n;
4067 char_u *cmd;
4068 pos_T pos;
4069 pos_T *fp;
4070 linenr_T lnum;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004071 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072
4073 cmd = skipwhite(*ptr);
4074 lnum = MAXLNUM;
4075 do
4076 {
4077 switch (*cmd)
4078 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004079 case '.': // '.' - Cursor position
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004080 ++cmd;
4081 switch (addr_type)
4082 {
4083 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02004084 case ADDR_OTHER:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085 lnum = curwin->w_cursor.lnum;
4086 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004087 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004088 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004089 break;
4090 case ADDR_ARGUMENTS:
4091 lnum = curwin->w_arg_idx + 1;
4092 break;
4093 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004094 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004095 lnum = curbuf->b_fnum;
4096 break;
4097 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004098 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004099 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02004100 case ADDR_NONE:
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02004101 case ADDR_TABS_RELATIVE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02004102 case ADDR_UNSIGNED:
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02004103 addr_error(addr_type);
Bram Moolenaar2f72c702017-01-29 14:48:10 +01004104 cmd = NULL;
4105 goto error;
4106 break;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004107 case ADDR_QUICKFIX:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02004108#ifdef FEAT_QUICKFIX
Bram Moolenaar25190db2019-05-04 15:05:28 +02004109 lnum = qf_get_cur_idx(eap);
4110#endif
4111 break;
4112 case ADDR_QUICKFIX_VALID:
4113#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004114 lnum = qf_get_cur_valid_idx(eap);
Bram Moolenaare906c502015-09-09 21:10:39 +02004115#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02004116 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004117 }
4118 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004120 case '$': // '$' - last line
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004121 ++cmd;
4122 switch (addr_type)
4123 {
4124 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02004125 case ADDR_OTHER:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 lnum = curbuf->b_ml.ml_line_count;
4127 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004128 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004129 lnum = LAST_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004130 break;
4131 case ADDR_ARGUMENTS:
4132 lnum = ARGCOUNT;
4133 break;
4134 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004135 buf = lastbuf;
4136 while (buf->b_ml.ml_mfp == NULL)
4137 {
4138 if (buf->b_prev == NULL)
4139 break;
4140 buf = buf->b_prev;
4141 }
4142 lnum = buf->b_fnum;
4143 break;
4144 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004145 lnum = lastbuf->b_fnum;
4146 break;
4147 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004148 lnum = LAST_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004149 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02004150 case ADDR_NONE:
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02004151 case ADDR_TABS_RELATIVE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02004152 case ADDR_UNSIGNED:
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02004153 addr_error(addr_type);
Bram Moolenaar2f72c702017-01-29 14:48:10 +01004154 cmd = NULL;
4155 goto error;
4156 break;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004157 case ADDR_QUICKFIX:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02004158#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004159 lnum = qf_get_size(eap);
4160 if (lnum == 0)
4161 lnum = 1;
Bram Moolenaare906c502015-09-09 21:10:39 +02004162#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02004163 break;
Bram Moolenaar25190db2019-05-04 15:05:28 +02004164 case ADDR_QUICKFIX_VALID:
4165#ifdef FEAT_QUICKFIX
4166 lnum = qf_get_valid_size(eap);
4167 if (lnum == 0)
4168 lnum = 1;
4169#endif
4170 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004171 }
4172 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004174 case '\'': // ''' - mark
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004175 if (*++cmd == NUL)
4176 {
4177 cmd = NULL;
4178 goto error;
4179 }
4180 if (addr_type != ADDR_LINES)
4181 {
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02004182 addr_error(addr_type);
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004183 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004184 goto error;
4185 }
4186 if (skip)
4187 ++cmd;
4188 else
4189 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004190 // Only accept a mark in another file when it is
4191 // used by itself: ":'M".
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004192 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
4193 ++cmd;
4194 if (fp == (pos_T *)-1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004195 // Jumped to another file.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004196 lnum = curwin->w_cursor.lnum;
4197 else
4198 {
4199 if (check_mark(fp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 {
4201 cmd = NULL;
4202 goto error;
4203 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004204 lnum = fp->lnum;
4205 }
4206 }
4207 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208
4209 case '/':
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004210 case '?': // '/' or '?' - search
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004211 c = *cmd++;
4212 if (addr_type != ADDR_LINES)
4213 {
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02004214 addr_error(addr_type);
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004215 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004216 goto error;
4217 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004218 if (skip) // skip "/pat/"
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004219 {
Bram Moolenaarf4e20992020-12-21 19:59:08 +01004220 cmd = skip_regexp(cmd, c, magic_isset());
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004221 if (*cmd == c)
4222 ++cmd;
4223 }
4224 else
4225 {
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02004226 int flags;
4227
4228 pos = curwin->w_cursor; // save curwin->w_cursor
4229
4230 // When '/' or '?' follows another address, start from
4231 // there.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004232 if (lnum != MAXLNUM)
4233 curwin->w_cursor.lnum = lnum;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02004234
4235 // Start a forward search at the end of the line (unless
4236 // before the first line).
4237 // Start a backward search at the start of the line.
4238 // This makes sure we never match in the current
4239 // line, and can match anywhere in the
4240 // next/previous line.
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +01004241 if (c == '/' && curwin->w_cursor.lnum > 0)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004242 curwin->w_cursor.col = MAXCOL;
4243 else
4244 curwin->w_cursor.col = 0;
4245 searchcmdlen = 0;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02004246 flags = silent ? 0 : SEARCH_HIS | SEARCH_MSG;
Bram Moolenaarc036e872020-02-21 21:30:52 +01004247 if (!do_search(NULL, c, c, cmd, 1L, flags, NULL))
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004248 {
4249 curwin->w_cursor = pos;
4250 cmd = NULL;
4251 goto error;
4252 }
4253 lnum = curwin->w_cursor.lnum;
4254 curwin->w_cursor = pos;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004255 // adjust command string pointer
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004256 cmd += searchcmdlen;
4257 }
4258 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004260 case '\\': // "\?", "\/" or "\&", repeat search
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004261 ++cmd;
4262 if (addr_type != ADDR_LINES)
4263 {
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02004264 addr_error(addr_type);
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004265 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004266 goto error;
4267 }
4268 if (*cmd == '&')
4269 i = RE_SUBST;
4270 else if (*cmd == '?' || *cmd == '/')
4271 i = RE_SEARCH;
4272 else
4273 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02004274 emsg(_(e_backslash_should_be_followed_by));
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004275 cmd = NULL;
4276 goto error;
4277 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004279 if (!skip)
4280 {
4281 /*
4282 * When search follows another address, start from
4283 * there.
4284 */
4285 if (lnum != MAXLNUM)
4286 pos.lnum = lnum;
4287 else
4288 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004290 /*
4291 * Start the search just like for the above
4292 * do_search().
4293 */
4294 if (*cmd != '?')
4295 pos.col = MAXCOL;
4296 else
4297 pos.col = 0;
Bram Moolenaarbd8539a2015-08-11 18:53:03 +02004298 pos.coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01004299 if (searchit(curwin, curbuf, &pos, NULL,
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004300 *cmd == '?' ? BACKWARD : FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02004301 (char_u *)"", 1L, SEARCH_MSG, i, NULL) != FAIL)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004302 lnum = pos.lnum;
4303 else
4304 {
4305 cmd = NULL;
4306 goto error;
4307 }
4308 }
4309 ++cmd;
4310 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311
4312 default:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004313 if (VIM_ISDIGIT(*cmd)) // absolute line number
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004314 lnum = getdigits(&cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 }
4316
4317 for (;;)
4318 {
4319 cmd = skipwhite(cmd);
4320 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4321 break;
4322
4323 if (lnum == MAXLNUM)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004324 {
4325 switch (addr_type)
4326 {
4327 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02004328 case ADDR_OTHER:
4329 // "+1" is same as ".+1"
Bram Moolenaarf240e182014-11-27 18:33:02 +01004330 lnum = curwin->w_cursor.lnum;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004331 break;
4332 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004333 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004334 break;
4335 case ADDR_ARGUMENTS:
4336 lnum = curwin->w_arg_idx + 1;
4337 break;
4338 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004339 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004340 lnum = curbuf->b_fnum;
4341 break;
4342 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004343 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004344 break;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01004345 case ADDR_TABS_RELATIVE:
4346 lnum = 1;
4347 break;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004348 case ADDR_QUICKFIX:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02004349#ifdef FEAT_QUICKFIX
Bram Moolenaar25190db2019-05-04 15:05:28 +02004350 lnum = qf_get_cur_idx(eap);
4351#endif
4352 break;
4353 case ADDR_QUICKFIX_VALID:
4354#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004355 lnum = qf_get_cur_valid_idx(eap);
Bram Moolenaare906c502015-09-09 21:10:39 +02004356#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02004357 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02004358 case ADDR_NONE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02004359 case ADDR_UNSIGNED:
4360 lnum = 0;
Bram Moolenaarb7316892019-05-01 18:08:42 +02004361 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004362 }
4363 }
4364
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 if (VIM_ISDIGIT(*cmd))
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004366 i = '+'; // "number" is same as "+number"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 else
4368 i = *cmd++;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004369 if (!VIM_ISDIGIT(*cmd)) // '+' is '+1', but '+0' is not '+1'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 n = 1;
4371 else
4372 n = getdigits(&cmd);
Bram Moolenaar2f72c702017-01-29 14:48:10 +01004373
4374 if (addr_type == ADDR_TABS_RELATIVE)
4375 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02004376 emsg(_(e_invalid_range));
Bram Moolenaar2f72c702017-01-29 14:48:10 +01004377 cmd = NULL;
4378 goto error;
4379 }
4380 else if (addr_type == ADDR_LOADED_BUFFERS
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004381 || addr_type == ADDR_BUFFERS)
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004382 lnum = compute_buffer_local_count(
4383 addr_type, lnum, (i == '-') ? -1 * n : n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 else
Bram Moolenaarded27822017-01-02 14:27:34 +01004385 {
4386#ifdef FEAT_FOLDING
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004387 // Relative line addressing, need to adjust for folded lines
4388 // now, but only do it after the first address.
Bram Moolenaarded27822017-01-02 14:27:34 +01004389 if (addr_type == ADDR_LINES && (i == '-' || i == '+')
4390 && address_count >= 2)
4391 (void)hasFolding(lnum, NULL, &lnum);
4392#endif
4393 if (i == '-')
4394 lnum -= n;
4395 else
4396 lnum += n;
4397 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 }
4399 } while (*cmd == '/' || *cmd == '?');
4400
4401error:
4402 *ptr = cmd;
4403 return lnum;
4404}
4405
4406/*
Bram Moolenaarc2af0af2020-08-23 21:06:02 +02004407 * Set eap->line1 and eap->line2 to the whole range.
4408 * Used for commands with the EX_DFLALL flag and no range given.
4409 */
4410 static void
4411address_default_all(exarg_T *eap)
4412{
4413 eap->line1 = 1;
4414 switch (eap->addr_type)
4415 {
4416 case ADDR_LINES:
4417 case ADDR_OTHER:
4418 eap->line2 = curbuf->b_ml.ml_line_count;
4419 break;
4420 case ADDR_LOADED_BUFFERS:
4421 {
4422 buf_T *buf = firstbuf;
4423
4424 while (buf->b_next != NULL && buf->b_ml.ml_mfp == NULL)
4425 buf = buf->b_next;
4426 eap->line1 = buf->b_fnum;
4427 buf = lastbuf;
4428 while (buf->b_prev != NULL && buf->b_ml.ml_mfp == NULL)
4429 buf = buf->b_prev;
4430 eap->line2 = buf->b_fnum;
4431 }
4432 break;
4433 case ADDR_BUFFERS:
4434 eap->line1 = firstbuf->b_fnum;
4435 eap->line2 = lastbuf->b_fnum;
4436 break;
4437 case ADDR_WINDOWS:
4438 eap->line2 = LAST_WIN_NR;
4439 break;
4440 case ADDR_TABS:
4441 eap->line2 = LAST_TAB_NR;
4442 break;
4443 case ADDR_TABS_RELATIVE:
4444 eap->line2 = 1;
4445 break;
4446 case ADDR_ARGUMENTS:
4447 if (ARGCOUNT == 0)
4448 eap->line1 = eap->line2 = 0;
4449 else
4450 eap->line2 = ARGCOUNT;
4451 break;
4452 case ADDR_QUICKFIX_VALID:
4453#ifdef FEAT_QUICKFIX
4454 eap->line2 = qf_get_valid_size(eap);
4455 if (eap->line2 == 0)
4456 eap->line2 = 1;
4457#endif
4458 break;
4459 case ADDR_NONE:
4460 case ADDR_UNSIGNED:
4461 case ADDR_QUICKFIX:
4462 iemsg(_("INTERNAL: Cannot use EX_DFLALL with ADDR_NONE, ADDR_UNSIGNED or ADDR_QUICKFIX"));
4463 break;
4464 }
4465}
4466
4467
4468/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004469 * Get flags from an Ex command argument.
4470 */
4471 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004472get_flags(exarg_T *eap)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004473{
4474 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4475 {
4476 if (*eap->arg == 'l')
4477 eap->flags |= EXFLAG_LIST;
4478 else if (*eap->arg == 'p')
4479 eap->flags |= EXFLAG_PRINT;
4480 else
4481 eap->flags |= EXFLAG_NR;
4482 eap->arg = skipwhite(eap->arg + 1);
4483 }
4484}
4485
4486/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 * Function called for command which is Not Implemented. NI!
4488 */
4489 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004490ex_ni(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491{
4492 if (!eap->skip)
Bram Moolenaar8930caa2020-07-23 16:37:03 +02004493 eap->errmsg =
4494 _("E319: Sorry, the command is not available in this version");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495}
4496
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004497#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498/*
4499 * Function called for script command which is Not Implemented. NI!
4500 * Skips over ":perl <<EOF" constructs.
4501 */
4502 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004503ex_script_ni(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504{
4505 if (!eap->skip)
4506 ex_ni(eap);
4507 else
4508 vim_free(script_get(eap, eap->arg));
4509}
4510#endif
4511
4512/*
4513 * Check range in Ex command for validity.
4514 * Return NULL when valid, error message when invalid.
4515 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004516 static char *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004517invalid_range(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518{
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004519 buf_T *buf;
Bram Moolenaar25190db2019-05-04 15:05:28 +02004520
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 if ( eap->line1 < 0
4522 || eap->line2 < 0
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004523 || eap->line1 > eap->line2)
Bram Moolenaar108010a2021-06-27 22:03:33 +02004524 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004525
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004526 if (eap->argt & EX_RANGE)
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004527 {
Bram Moolenaarb7316892019-05-01 18:08:42 +02004528 switch (eap->addr_type)
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004529 {
4530 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02004531 if (eap->line2 > curbuf->b_ml.ml_line_count
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004532#ifdef FEAT_DIFF
4533 + (eap->cmdidx == CMD_diffget)
4534#endif
4535 )
Bram Moolenaar108010a2021-06-27 22:03:33 +02004536 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004537 break;
4538 case ADDR_ARGUMENTS:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004539 // add 1 if ARGCOUNT is 0
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004540 if (eap->line2 > ARGCOUNT + (!ARGCOUNT))
Bram Moolenaar108010a2021-06-27 22:03:33 +02004541 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004542 break;
4543 case ADDR_BUFFERS:
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02004544 // Only a boundary check, not whether the buffers actually
4545 // exist.
4546 if (eap->line1 < 1 || eap->line2 > get_highest_fnum())
Bram Moolenaar108010a2021-06-27 22:03:33 +02004547 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004548 break;
4549 case ADDR_LOADED_BUFFERS:
4550 buf = firstbuf;
4551 while (buf->b_ml.ml_mfp == NULL)
4552 {
4553 if (buf->b_next == NULL)
Bram Moolenaar108010a2021-06-27 22:03:33 +02004554 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004555 buf = buf->b_next;
4556 }
4557 if (eap->line1 < buf->b_fnum)
Bram Moolenaar108010a2021-06-27 22:03:33 +02004558 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004559 buf = lastbuf;
4560 while (buf->b_ml.ml_mfp == NULL)
4561 {
4562 if (buf->b_prev == NULL)
Bram Moolenaar108010a2021-06-27 22:03:33 +02004563 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004564 buf = buf->b_prev;
4565 }
4566 if (eap->line2 > buf->b_fnum)
Bram Moolenaar108010a2021-06-27 22:03:33 +02004567 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004568 break;
4569 case ADDR_WINDOWS:
Bram Moolenaar8be63882015-01-14 11:25:05 +01004570 if (eap->line2 > LAST_WIN_NR)
Bram Moolenaar108010a2021-06-27 22:03:33 +02004571 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004572 break;
4573 case ADDR_TABS:
4574 if (eap->line2 > LAST_TAB_NR)
Bram Moolenaar108010a2021-06-27 22:03:33 +02004575 return _(e_invalid_range);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004576 break;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01004577 case ADDR_TABS_RELATIVE:
Bram Moolenaarb7316892019-05-01 18:08:42 +02004578 case ADDR_OTHER:
4579 // Any range is OK.
Bram Moolenaar2f72c702017-01-29 14:48:10 +01004580 break;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004581 case ADDR_QUICKFIX:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02004582#ifdef FEAT_QUICKFIX
Bram Moolenaar25190db2019-05-04 15:05:28 +02004583 // No error for value that is too big, will use the last entry.
4584 if (eap->line2 <= 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02004585 return _(e_invalid_range);
Bram Moolenaare906c502015-09-09 21:10:39 +02004586#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02004587 break;
Bram Moolenaar25190db2019-05-04 15:05:28 +02004588 case ADDR_QUICKFIX_VALID:
4589#ifdef FEAT_QUICKFIX
4590 if ((eap->line2 != 1 && eap->line2 > qf_get_valid_size(eap))
4591 || eap->line2 < 0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02004592 return _(e_invalid_range);
Bram Moolenaar25190db2019-05-04 15:05:28 +02004593#endif
4594 break;
4595 case ADDR_UNSIGNED:
Bram Moolenaarb7316892019-05-01 18:08:42 +02004596 case ADDR_NONE:
4597 // Will give an error elsewhere.
4598 break;
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004599 }
4600 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004601 return NULL;
4602}
4603
4604/*
4605 * Correct the range for zero line number, if required.
4606 */
4607 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004608correct_range(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609{
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004610 if (!(eap->argt & EX_ZEROR)) // zero in range not allowed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 {
4612 if (eap->line1 == 0)
4613 eap->line1 = 1;
4614 if (eap->line2 == 0)
4615 eap->line2 = 1;
4616 }
4617}
4618
Bram Moolenaar748bf032005-02-02 23:04:36 +00004619#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004620/*
4621 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4622 * pattern. Otherwise return eap->arg.
4623 */
4624 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004625skip_grep_pat(exarg_T *eap)
Bram Moolenaar748bf032005-02-02 23:04:36 +00004626{
4627 char_u *p = eap->arg;
4628
Bram Moolenaara37420f2006-02-04 22:37:47 +00004629 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4630 || eap->cmdidx == CMD_vimgrepadd
4631 || eap->cmdidx == CMD_lvimgrepadd
4632 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004633 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004634 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004635 if (p == NULL)
4636 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004637 }
4638 return p;
4639}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004640
4641/*
4642 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4643 * in the command line, so that things like % get expanded.
4644 */
4645 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004646replace_makeprg(exarg_T *eap, char_u *p, char_u **cmdlinep)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004647{
4648 char_u *new_cmdline;
4649 char_u *program;
4650 char_u *pos;
4651 char_u *ptr;
4652 int len;
4653 int i;
4654
4655 /*
4656 * Don't do it when ":vimgrep" is used for ":grep".
4657 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004658 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4659 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4660 || eap->cmdidx == CMD_grepadd
4661 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004662 && !grep_internal(eap->cmdidx))
4663 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004664 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4665 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004666 {
4667 if (*curbuf->b_p_gp == NUL)
4668 program = p_gp;
4669 else
4670 program = curbuf->b_p_gp;
4671 }
4672 else
4673 {
4674 if (*curbuf->b_p_mp == NUL)
4675 program = p_mp;
4676 else
4677 program = curbuf->b_p_mp;
4678 }
4679
4680 p = skipwhite(p);
4681
4682 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4683 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004684 // replace $* by given arguments
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004685 i = 1;
4686 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4687 ++i;
4688 len = (int)STRLEN(p);
Bram Moolenaar51e14382019-05-25 20:21:28 +02004689 new_cmdline = alloc(STRLEN(program) + i * (len - 2) + 1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004690 if (new_cmdline == NULL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004691 return NULL; // out of memory
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004692 ptr = new_cmdline;
4693 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4694 {
4695 i = (int)(pos - program);
4696 STRNCPY(ptr, program, i);
4697 STRCPY(ptr += i, p);
4698 ptr += len;
4699 program = pos + 2;
4700 }
4701 STRCPY(ptr, program);
4702 }
4703 else
4704 {
Bram Moolenaar51e14382019-05-25 20:21:28 +02004705 new_cmdline = alloc(STRLEN(program) + STRLEN(p) + 2);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004706 if (new_cmdline == NULL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004707 return NULL; // out of memory
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004708 STRCPY(new_cmdline, program);
4709 STRCAT(new_cmdline, " ");
4710 STRCAT(new_cmdline, p);
4711 }
4712 msg_make(p);
4713
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004714 // 'eap->cmd' is not set here, because it is not used at CMD_make
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004715 vim_free(*cmdlinep);
4716 *cmdlinep = new_cmdline;
4717 p = new_cmdline;
4718 }
4719 return p;
4720}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004721#endif
4722
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723/*
4724 * Expand file name in Ex command argument.
Bram Moolenaar0abb4272019-06-15 16:06:00 +02004725 * When an error is detected, "errormsgp" is set to a non-NULL pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 * Return FAIL for failure, OK otherwise.
4727 */
4728 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004729expand_filename(
4730 exarg_T *eap,
4731 char_u **cmdlinep,
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004732 char **errormsgp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004734 int has_wildcards; // need to expand wildcards
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 char_u *repl;
4736 int srclen;
4737 char_u *p;
4738 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004739 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740
Bram Moolenaar748bf032005-02-02 23:04:36 +00004741#ifdef FEAT_QUICKFIX
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004742 // Skip a regexp pattern for ":vimgrep[add] pat file..."
Bram Moolenaar748bf032005-02-02 23:04:36 +00004743 p = skip_grep_pat(eap);
4744#else
4745 p = eap->arg;
4746#endif
4747
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 /*
4749 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4750 * the file name contains a wildcard it should not cause expanding.
4751 * (it will be expanded anyway if there is a wildcard before replacing).
4752 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004753 has_wildcards = mch_has_wildcard(p);
4754 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004756#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004757 // Skip over `=expr`, wildcards in it are not expanded.
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004758 if (p[0] == '`' && p[1] == '=')
4759 {
4760 p += 2;
Bram Moolenaar683581e2020-10-22 21:22:58 +02004761 (void)skip_expr(&p, NULL);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004762 if (*p == '`')
4763 ++p;
4764 continue;
4765 }
4766#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 /*
4768 * Quick check if this cannot be the start of a special string.
4769 * Also removes backslash before '%', '#' and '<'.
4770 */
4771 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4772 {
4773 ++p;
4774 continue;
4775 }
4776
4777 /*
4778 * Try to find a match at this position.
4779 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004780 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4781 errormsgp, &escaped);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004782 if (*errormsgp != NULL) // error detected
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 return FAIL;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004784 if (repl == NULL) // no match found
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785 {
4786 p += srclen;
4787 continue;
4788 }
4789
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004790 // Wildcards won't be expanded below, the replacement is taken
4791 // literally. But do expand "~/file", "~user/file" and "$HOME/file".
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004792 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4793 {
4794 char_u *l = repl;
4795
4796 repl = expand_env_save(repl);
4797 vim_free(l);
4798 }
4799
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004800 // Need to escape white space et al. with a backslash.
4801 // Don't do this for:
4802 // - replacement that already has been escaped: "##"
4803 // - shell commands (may have to use quotes instead).
4804 // - non-unix systems when there is a single argument (spaces don't
4805 // separate arguments then).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004807 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 && eap->cmdidx != CMD_bang
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 && eap->cmdidx != CMD_grep
4810 && eap->cmdidx != CMD_grepadd
Bram Moolenaarbf15b8d2017-06-04 20:43:48 +02004811 && eap->cmdidx != CMD_hardcopy
Bram Moolenaar67883b42017-07-27 22:57:00 +02004812 && eap->cmdidx != CMD_lgrep
4813 && eap->cmdidx != CMD_lgrepadd
4814 && eap->cmdidx != CMD_lmake
4815 && eap->cmdidx != CMD_make
4816 && eap->cmdidx != CMD_terminal
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817#ifndef UNIX
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004818 && !(eap->argt & EX_NOSPC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819#endif
4820 )
4821 {
4822 char_u *l;
4823#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004824 // Don't escape a backslash here, because rem_backslash() doesn't
4825 // remove it later.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826 static char_u *nobslash = (char_u *)" \t\"|";
4827# define ESCAPE_CHARS nobslash
4828#else
4829# define ESCAPE_CHARS escape_chars
4830#endif
4831
4832 for (l = repl; *l; ++l)
4833 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4834 {
4835 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4836 if (l != NULL)
4837 {
4838 vim_free(repl);
4839 repl = l;
4840 }
4841 break;
4842 }
4843 }
4844
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004845 // For a shell command a '!' must be escaped.
Bram Moolenaar67883b42017-07-27 22:57:00 +02004846 if ((eap->usefilter || eap->cmdidx == CMD_bang
4847 || eap->cmdidx == CMD_terminal)
Bram Moolenaar31b7d382014-04-01 18:54:48 +02004848 && vim_strpbrk(repl, (char_u *)"!") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 {
4850 char_u *l;
4851
Bram Moolenaar31b7d382014-04-01 18:54:48 +02004852 l = vim_strsave_escaped(repl, (char_u *)"!");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 if (l != NULL)
4854 {
4855 vim_free(repl);
4856 repl = l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 }
4858 }
4859
4860 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4861 vim_free(repl);
4862 if (p == NULL)
4863 return FAIL;
4864 }
4865
4866 /*
4867 * One file argument: Expand wildcards.
4868 * Don't do this with ":r !command" or ":w !command".
4869 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004870 if ((eap->argt & EX_NOSPC) && !eap->usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 {
4872 /*
4873 * May do this twice:
4874 * 1. Replace environment variables.
4875 * 2. Replace any other wildcards, remove backslashes.
4876 */
4877 for (n = 1; n <= 2; ++n)
4878 {
4879 if (n == 2)
4880 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 /*
4882 * Halve the number of backslashes (this is Vi compatible).
4883 * For Unix and OS/2, when wildcards are expanded, this is
4884 * done by ExpandOne() below.
4885 */
Bram Moolenaare7fedb62015-12-31 19:07:19 +01004886#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 if (!has_wildcards)
4888#endif
4889 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 }
4891
4892 if (has_wildcards)
4893 {
4894 if (n == 1)
4895 {
4896 /*
4897 * First loop: May expand environment variables. This
4898 * can be done much faster with expand_env() than with
4899 * something else (e.g., calling a shell).
4900 * After expanding environment variables, check again
4901 * if there are still wildcards present.
4902 */
4903 if (vim_strchr(eap->arg, '$') != NULL
4904 || vim_strchr(eap->arg, '~') != NULL)
4905 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004906 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004907 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 has_wildcards = mch_has_wildcard(NameBuff);
4909 p = NameBuff;
4910 }
4911 else
4912 p = NULL;
4913 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004914 else // n == 2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 {
4916 expand_T xpc;
Bram Moolenaarb40c2572019-10-19 21:01:05 +02004917 int options = WILD_LIST_NOTFOUND
4918 | WILD_NOERROR | WILD_ADD_SLASH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919
4920 ExpandInit(&xpc);
4921 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004922 if (p_wic)
4923 options += WILD_ICASE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 p = ExpandOne(&xpc, eap->arg, NULL,
Bram Moolenaar94950a92010-12-02 16:01:29 +01004925 options, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 if (p == NULL)
4927 return FAIL;
4928 }
4929 if (p != NULL)
4930 {
4931 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4932 p, cmdlinep);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004933 if (n == 2) // p came from ExpandOne()
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 vim_free(p);
4935 }
4936 }
4937 }
4938 }
4939 return OK;
4940}
4941
4942/*
4943 * Replace part of the command line, keeping eap->cmd, eap->arg and
4944 * eap->nextcmd correct.
4945 * "src" points to the part that is to be replaced, of length "srclen".
4946 * "repl" is the replacement string.
4947 * Returns a pointer to the character after the replaced string.
4948 * Returns NULL for failure.
4949 */
4950 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004951repl_cmdline(
4952 exarg_T *eap,
4953 char_u *src,
4954 int srclen,
4955 char_u *repl,
4956 char_u **cmdlinep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957{
4958 int len;
4959 int i;
4960 char_u *new_cmdline;
4961
4962 /*
4963 * The new command line is build in new_cmdline[].
4964 * First allocate it.
4965 * Careful: a "+cmd" argument may have been NUL terminated.
4966 */
4967 len = (int)STRLEN(repl);
4968 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004969 if (eap->nextcmd != NULL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004970 i += (int)STRLEN(eap->nextcmd);// add space for next command
Bram Moolenaar964b3742019-05-24 18:54:09 +02004971 if ((new_cmdline = alloc(i)) == NULL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004972 return NULL; // out of memory!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973
4974 /*
4975 * Copy the stuff before the expanded part.
4976 * Copy the expanded stuff.
4977 * Copy what came after the expanded part.
4978 * Copy the next commands, if there are any.
4979 */
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004980 i = (int)(src - *cmdlinep); // length of part before match
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004982
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 mch_memmove(new_cmdline + i, repl, (size_t)len);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004984 i += len; // remember the end of the string
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 STRCPY(new_cmdline + i, src + srclen);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004986 src = new_cmdline + i; // remember where to continue
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987
Bram Moolenaar217e1b82019-12-01 21:41:28 +01004988 if (eap->nextcmd != NULL) // append next command
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 {
4990 i = (int)STRLEN(new_cmdline) + 1;
4991 STRCPY(new_cmdline + i, eap->nextcmd);
4992 eap->nextcmd = new_cmdline + i;
4993 }
4994 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4995 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4996 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4997 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4998 vim_free(*cmdlinep);
4999 *cmdlinep = new_cmdline;
5000
5001 return src;
5002}
5003
5004/*
5005 * Check for '|' to separate commands and '"' to start comments.
5006 */
5007 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005008separate_nextcmd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009{
5010 char_u *p;
5011
Bram Moolenaar86b68352004-12-27 21:59:20 +00005012#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00005013 p = skip_grep_pat(eap);
5014#else
5015 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005016#endif
5017
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005018 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 {
5020 if (*p == Ctrl_V)
5021 {
Bram Moolenaar8071cb22019-07-12 17:58:01 +02005022 if (eap->argt & (EX_CTRLV | EX_XFILE))
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005023 ++p; // skip CTRL-V and next char
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 else
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005025 // remove CTRL-V and skip next char
Bram Moolenaara7241f52008-06-24 20:39:31 +00005026 STRMOVE(p, p + 1);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005027 if (*p == NUL) // stop at NUL after CTRL-V
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 break;
5029 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005030
5031#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005032 // Skip over `=expr` when wildcards are expanded.
Bram Moolenaar8071cb22019-07-12 17:58:01 +02005033 else if (p[0] == '`' && p[1] == '=' && (eap->argt & EX_XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005034 {
5035 p += 2;
Bram Moolenaar683581e2020-10-22 21:22:58 +02005036 (void)skip_expr(&p, NULL);
Bram Moolenaarcaf73dc2020-10-26 21:39:13 +01005037 if (*p == NUL) // stop at NUL after CTRL-V
5038 break;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005039 }
5040#endif
5041
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005042 // Check for '"': start of comment or '|': next command
5043 // :@" and :*" do not start a comment!
5044 // :redir @" doesn't either.
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02005045 else if ((*p == '"'
Bram Moolenaara26b9702020-04-18 19:53:28 +02005046#ifdef FEAT_EVAL
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02005047 && !in_vim9script()
5048#endif
5049 && !(eap->argt & EX_NOTRLCOM)
5050 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
5051 || p != eap->arg)
5052 && (eap->cmdidx != CMD_redir
5053 || p != eap->arg + 1 || p[-1] != '@'))
5054#ifdef FEAT_EVAL
5055 || (*p == '#'
5056 && in_vim9script()
Bram Moolenaarb8a92962020-08-20 18:02:47 +02005057 && !(eap->argt & EX_NOTRLCOM)
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02005058 && p > eap->cmd && VIM_ISWHITE(p[-1]))
Bram Moolenaara26b9702020-04-18 19:53:28 +02005059#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 || *p == '|' || *p == '\n')
5061 {
5062 /*
Bram Moolenaar8071cb22019-07-12 17:58:01 +02005063 * We remove the '\' before the '|', unless EX_CTRLV is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 * AND 'b' is present in 'cpoptions'.
5065 */
5066 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
Bram Moolenaar8071cb22019-07-12 17:58:01 +02005067 || !(eap->argt & EX_CTRLV)) && *(p - 1) == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005069 STRMOVE(p - 1, p); // remove the '\'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 --p;
5071 }
5072 else
5073 {
5074 eap->nextcmd = check_nextcmd(p);
5075 *p = NUL;
5076 break;
5077 }
5078 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005080
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005081 if (!(eap->argt & EX_NOTRLCOM)) // remove trailing spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 del_trailing_spaces(eap->arg);
5083}
5084
5085/*
5086 * get + command from ex argument
5087 */
5088 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005089getargcmd(char_u **argp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090{
5091 char_u *arg = *argp;
5092 char_u *command = NULL;
5093
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005094 if (*arg == '+') // +[command]
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 {
5096 ++arg;
Bram Moolenaar3e451592014-04-02 14:22:05 +02005097 if (vim_isspace(*arg) || *arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 command = dollar_command;
5099 else
5100 {
5101 command = arg;
5102 arg = skip_cmd_arg(command, TRUE);
5103 if (*arg != NUL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005104 *arg++ = NUL; // terminate command with NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 }
5106
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005107 arg = skipwhite(arg); // skip over spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 *argp = arg;
5109 }
5110 return command;
5111}
5112
5113/*
5114 * Find end of "+command" argument. Skip over "\ " and "\\".
5115 */
Bram Moolenaard0190392019-08-23 21:17:35 +02005116 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005117skip_cmd_arg(
5118 char_u *p,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005119 int rembs) // TRUE to halve the number of backslashes
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120{
5121 while (*p && !vim_isspace(*p))
5122 {
5123 if (*p == '\\' && p[1] != NUL)
5124 {
5125 if (rembs)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005126 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 else
5128 ++p;
5129 }
Bram Moolenaar91acfff2017-03-12 19:22:36 +01005130 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 }
5132 return p;
5133}
5134
Bram Moolenaar333b80a2018-04-04 22:57:29 +02005135 int
5136get_bad_opt(char_u *p, exarg_T *eap)
5137{
5138 if (STRICMP(p, "keep") == 0)
5139 eap->bad_char = BAD_KEEP;
5140 else if (STRICMP(p, "drop") == 0)
5141 eap->bad_char = BAD_DROP;
5142 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
5143 eap->bad_char = *p;
Bram Moolenaar75808492018-06-12 12:39:41 +02005144 else
5145 return FAIL;
5146 return OK;
Bram Moolenaar333b80a2018-04-04 22:57:29 +02005147}
5148
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149/*
5150 * Get "++opt=arg" argument.
5151 * Return FAIL or OK.
5152 */
5153 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005154getargopt(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155{
5156 char_u *arg = eap->arg + 2;
5157 int *pp = NULL;
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005158 int bad_char_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005161 // ":edit ++[no]bin[ary] file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
5163 {
5164 if (*arg == 'n')
5165 {
5166 arg += 2;
5167 eap->force_bin = FORCE_NOBIN;
5168 }
5169 else
5170 eap->force_bin = FORCE_BIN;
5171 if (!checkforcmd(&arg, "binary", 3))
5172 return FAIL;
5173 eap->arg = skipwhite(arg);
5174 return OK;
5175 }
5176
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005177 // ":read ++edit file"
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005178 if (STRNCMP(arg, "edit", 4) == 0)
5179 {
5180 eap->read_edit = TRUE;
5181 eap->arg = skipwhite(arg + 4);
5182 return OK;
5183 }
5184
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185 if (STRNCMP(arg, "ff", 2) == 0)
5186 {
5187 arg += 2;
5188 pp = &eap->force_ff;
5189 }
5190 else if (STRNCMP(arg, "fileformat", 10) == 0)
5191 {
5192 arg += 10;
5193 pp = &eap->force_ff;
5194 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 else if (STRNCMP(arg, "enc", 3) == 0)
5196 {
Bram Moolenaarb38e9ab2011-12-14 14:49:45 +01005197 if (STRNCMP(arg, "encoding", 8) == 0)
5198 arg += 8;
5199 else
5200 arg += 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 pp = &eap->force_enc;
5202 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005203 else if (STRNCMP(arg, "bad", 3) == 0)
5204 {
5205 arg += 3;
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005206 pp = &bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005207 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005208
5209 if (pp == NULL || *arg != '=')
5210 return FAIL;
5211
5212 ++arg;
5213 *pp = (int)(arg - eap->cmd);
5214 arg = skip_cmd_arg(arg, FALSE);
5215 eap->arg = skipwhite(arg);
5216 *arg = NUL;
5217
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 if (pp == &eap->force_ff)
5219 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
5221 return FAIL;
Bram Moolenaar333b80a2018-04-04 22:57:29 +02005222 eap->force_ff = eap->cmd[eap->force_ff];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005224 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005226 // Make 'fileencoding' lower case.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
5228 *p = TOLOWER_ASC(*p);
5229 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005230 else
5231 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005232 // Check ++bad= argument. Must be a single-byte character, "keep" or
5233 // "drop".
Bram Moolenaar333b80a2018-04-04 22:57:29 +02005234 if (get_bad_opt(eap->cmd + bad_char_idx, eap) == FAIL)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005235 return FAIL;
5236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237
5238 return OK;
5239}
5240
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005242ex_autocmd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243{
5244 /*
Bram Moolenaar26d4b892018-07-04 22:26:28 +02005245 * Disallow autocommands from .exrc and .vimrc in current
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246 * directory for security reasons.
5247 */
5248 if (secure)
5249 {
5250 secure = 2;
Bram Moolenaar108010a2021-06-27 22:03:33 +02005251 eap->errmsg =
5252 _(e_command_not_allowed_from_vimrc_in_current_dir_or_tag_search);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 }
5254 else if (eap->cmdidx == CMD_autocmd)
Bram Moolenaar73b8b0a2021-08-01 14:52:32 +02005255 do_autocmd(eap, eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 else
5257 do_augroup(eap->arg, eap->forceit);
5258}
5259
5260/*
5261 * ":doautocmd": Apply the automatic commands to the current buffer.
5262 */
5263 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005264ex_doautocmd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265{
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005266 char_u *arg = eap->arg;
5267 int call_do_modelines = check_nomodeline(&arg);
Bram Moolenaar1610d052016-06-09 22:53:01 +02005268 int did_aucmd;
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005269
Bram Moolenaar1610d052016-06-09 22:53:01 +02005270 (void)do_doautocmd(arg, TRUE, &did_aucmd);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005271 // Only when there is no <nomodeline>.
Bram Moolenaar1610d052016-06-09 22:53:01 +02005272 if (call_do_modelines && did_aucmd)
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005273 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276/*
5277 * :[N]bunload[!] [N] [bufname] unload buffer
5278 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
5279 * :[N]bwipeout[!] [N] [bufname] delete buffer really
5280 */
5281 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005282ex_bunload(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283{
Bram Moolenaar3c01c4a2020-02-01 23:04:24 +01005284 if (ERROR_IF_ANY_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02005285 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 eap->errmsg = do_bufdel(
5287 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
5288 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
5289 : DOBUF_UNLOAD, eap->arg,
5290 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
5291}
5292
5293/*
5294 * :[N]buffer [N] to buffer N
5295 * :[N]sbuffer [N] to buffer N
5296 */
5297 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005298ex_buffer(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299{
Bram Moolenaar3c01c4a2020-02-01 23:04:24 +01005300 if (ERROR_IF_ANY_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02005301 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 if (*eap->arg)
Bram Moolenaar8930caa2020-07-23 16:37:03 +02005303 eap->errmsg = ex_errmsg(e_trailing_arg, eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005304 else
5305 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005306 if (eap->addr_count == 0) // default is current buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
5308 else
5309 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005310 if (eap->do_ecmd_cmd != NULL)
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01005311 do_cmd_argument(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 }
5313}
5314
5315/*
5316 * :[N]bmodified [N] to next mod. buffer
5317 * :[N]sbmodified [N] to next mod. buffer
5318 */
5319 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005320ex_bmodified(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321{
5322 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005323 if (eap->do_ecmd_cmd != NULL)
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01005324 do_cmd_argument(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325}
5326
5327/*
5328 * :[N]bnext [N] to next buffer
5329 * :[N]sbnext [N] split and to next buffer
5330 */
5331 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005332ex_bnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333{
Bram Moolenaar3c01c4a2020-02-01 23:04:24 +01005334 if (ERROR_IF_ANY_POPUP_WINDOW)
Bram Moolenaar3029bcc2020-01-18 15:06:19 +01005335 return;
5336
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005338 if (eap->do_ecmd_cmd != NULL)
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01005339 do_cmd_argument(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340}
5341
5342/*
5343 * :[N]bNext [N] to previous buffer
5344 * :[N]bprevious [N] to previous buffer
5345 * :[N]sbNext [N] split and to previous buffer
5346 * :[N]sbprevious [N] split and to previous buffer
5347 */
5348 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005349ex_bprevious(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350{
Bram Moolenaar3c01c4a2020-02-01 23:04:24 +01005351 if (ERROR_IF_ANY_POPUP_WINDOW)
Bram Moolenaar3029bcc2020-01-18 15:06:19 +01005352 return;
5353
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005355 if (eap->do_ecmd_cmd != NULL)
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01005356 do_cmd_argument(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357}
5358
5359/*
5360 * :brewind to first buffer
5361 * :bfirst to first buffer
5362 * :sbrewind split and to first buffer
5363 * :sbfirst split and to first buffer
5364 */
5365 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005366ex_brewind(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367{
Bram Moolenaar3c01c4a2020-02-01 23:04:24 +01005368 if (ERROR_IF_ANY_POPUP_WINDOW)
Bram Moolenaar3029bcc2020-01-18 15:06:19 +01005369 return;
5370
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005372 if (eap->do_ecmd_cmd != NULL)
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01005373 do_cmd_argument(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374}
5375
5376/*
5377 * :blast to last buffer
5378 * :sblast split and to last buffer
5379 */
5380 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005381ex_blast(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005382{
Bram Moolenaar3c01c4a2020-02-01 23:04:24 +01005383 if (ERROR_IF_ANY_POPUP_WINDOW)
Bram Moolenaar3029bcc2020-01-18 15:06:19 +01005384 return;
5385
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005387 if (eap->do_ecmd_cmd != NULL)
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01005388 do_cmd_argument(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005390
Bram Moolenaar7a092242020-04-16 22:10:49 +02005391/*
5392 * Check if "c" ends an Ex command.
Bram Moolenaarb5b94802020-12-13 17:50:20 +01005393 * In Vim9 script does not check for white space before #.
Bram Moolenaar7a092242020-04-16 22:10:49 +02005394 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005395 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005396ends_excmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397{
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02005398 int comment_char = '"';
5399
Bram Moolenaarfbda69b2020-04-13 15:06:53 +02005400#ifdef FEAT_EVAL
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02005401 if (in_vim9script())
5402 comment_char = '#';
Bram Moolenaar7a092242020-04-16 22:10:49 +02005403#endif
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02005404 return (c == NUL || c == '|' || c == comment_char || c == '\n');
Bram Moolenaar7a092242020-04-16 22:10:49 +02005405}
5406
5407/*
5408 * Like ends_excmd() but checks that a # in Vim9 script either has "cmd" equal
5409 * to "cmd_start" or has a white space character before it.
5410 */
5411 int
Bram Moolenaar21cfe502020-04-16 23:01:50 +02005412ends_excmd2(char_u *cmd_start UNUSED, char_u *cmd)
Bram Moolenaar7a092242020-04-16 22:10:49 +02005413{
5414 int c = *cmd;
5415
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02005416 if (c == NUL || c == '|' || c == '\n')
5417 return TRUE;
Bram Moolenaar7a092242020-04-16 22:10:49 +02005418#ifdef FEAT_EVAL
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02005419 if (in_vim9script())
Bram Moolenaara0399ef2021-03-20 15:00:01 +01005420 // # starts a comment, #{ might be a mistake, #{{ can start a fold
5421 return c == '#' && (cmd[1] != '{' || cmd[2] == '{')
Bram Moolenaar5c7a2992021-03-20 13:29:38 +01005422 && (cmd == cmd_start || VIM_ISWHITE(cmd[-1]));
Bram Moolenaarfbda69b2020-04-13 15:06:53 +02005423#endif
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02005424 return c == '"';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425}
5426
5427#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
5428 || defined(PROTO)
5429/*
5430 * Return the next command, after the first '|' or '\n'.
5431 * Return NULL if not found.
5432 */
5433 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005434find_nextcmd(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435{
5436 while (*p != '|' && *p != '\n')
5437 {
5438 if (*p == NUL)
5439 return NULL;
5440 ++p;
5441 }
5442 return (p + 1);
5443}
5444#endif
5445
5446/*
Bram Moolenaar2256c992016-11-15 21:17:07 +01005447 * Check if *p is a separator between Ex commands, skipping over white space.
5448 * Return NULL if it isn't, the following character if it is.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005449 */
5450 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005451check_nextcmd(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452{
Bram Moolenaar2256c992016-11-15 21:17:07 +01005453 char_u *s = skipwhite(p);
5454
5455 if (*s == '|' || *s == '\n')
5456 return (s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457 else
5458 return NULL;
5459}
5460
5461/*
Bram Moolenaar63b91732021-08-05 20:40:03 +02005462 * If "eap->nextcmd" is not set, check for a next command at "p".
5463 */
5464 void
5465set_nextcmd(exarg_T *eap, char_u *arg)
5466{
5467 char_u *p = check_nextcmd(arg);
5468
5469 if (eap->nextcmd == NULL)
5470 eap->nextcmd = p;
5471 else if (p != NULL)
5472 // cannot use "| command" inside a {} block
5473 semsg(_(e_cannot_use_bar_to_separate_commands_here_str), arg);
5474}
5475
5476/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 * - if there are more files to edit
5478 * - and this is the last window
5479 * - and forceit not used
5480 * - and not repeated twice on a row
5481 * return FAIL and give error message if 'message' TRUE
5482 * return OK otherwise
5483 */
5484 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005485check_more(
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005486 int message, // when FALSE check only, no messages
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005487 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488{
5489 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5490
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005491 if (!forceit && only_one_window()
Bram Moolenaar7b221172020-08-17 19:34:10 +02005492 && ARGCOUNT > 1 && !arg_had_last && n > 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 {
5494 if (message)
5495 {
5496#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02005497 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM))
5498 && curbuf->b_fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02005500 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005501
Bram Moolenaarda6e8912018-08-21 15:12:14 +02005502 vim_snprintf((char *)buff, DIALOG_MSG_SIZE,
5503 NGETTEXT("%d more file to edit. Quit anyway?",
5504 "%d more files to edit. Quit anyway?", n), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5506 return OK;
5507 return FAIL;
5508 }
5509#endif
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01005510 semsg(NGETTEXT("E173: %d more file to edit",
5511 "E173: %d more files to edit", n), n);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005512 quitmore = 2; // next try to quit is allowed
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 }
5514 return FAIL;
5515 }
5516 return OK;
5517}
5518
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519/*
5520 * Function given to ExpandGeneric() to obtain the list of command names.
5521 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005523get_command_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524{
5525 if (idx >= (int)CMD_SIZE)
Bram Moolenaar80c88ea2021-09-08 14:29:46 +02005526 return expand_user_command_name(idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 return cmdnames[idx].cmd_name;
5528}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005531ex_colorscheme(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532{
Bram Moolenaare6850792010-05-14 15:28:44 +02005533 if (*eap->arg == NUL)
5534 {
5535#ifdef FEAT_EVAL
5536 char_u *expr = vim_strsave((char_u *)"g:colors_name");
5537 char_u *p = NULL;
5538
5539 if (expr != NULL)
5540 {
5541 ++emsg_off;
Bram Moolenaarb171fb12020-06-24 20:34:03 +02005542 p = eval_to_string(expr, FALSE);
Bram Moolenaare6850792010-05-14 15:28:44 +02005543 --emsg_off;
5544 vim_free(expr);
5545 }
5546 if (p != NULL)
5547 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005548 msg((char *)p);
Bram Moolenaare6850792010-05-14 15:28:44 +02005549 vim_free(p);
5550 }
5551 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005552 msg("default");
Bram Moolenaare6850792010-05-14 15:28:44 +02005553#else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005554 msg(_("unknown"));
Bram Moolenaare6850792010-05-14 15:28:44 +02005555#endif
5556 }
5557 else if (load_colors(eap->arg) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005558 semsg(_("E185: Cannot find color scheme '%s'"), eap->arg);
Bram Moolenaarf58d81a2019-01-28 20:19:05 +01005559
5560#ifdef FEAT_VTP
5561 else if (has_vtp_working())
5562 {
5563 // background color change requires clear + redraw
5564 update_screen(CLEAR);
5565 redrawcmd();
5566 }
5567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568}
5569
5570 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005571ex_highlight(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572{
5573 if (*eap->arg == NUL && eap->cmd[2] == '!')
Bram Moolenaar32526b32019-01-19 17:43:09 +01005574 msg(_("Greetings, Vim user!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 do_highlight(eap->arg, eap->forceit, FALSE);
5576}
5577
5578
5579/*
5580 * Call this function if we thought we were going to exit, but we won't
5581 * (because of an error). May need to restore the terminal mode.
5582 */
5583 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005584not_exiting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585{
5586 exiting = FALSE;
5587 settmode(TMODE_RAW);
5588}
5589
Bram Moolenaar3552e742021-05-29 12:21:58 +02005590 int
Bram Moolenaar12a96de2018-03-11 14:44:18 +01005591before_quit_autocmds(win_T *wp, int quit_all, int forceit)
5592{
5593 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, wp->w_buffer);
5594
Bram Moolenaar34ba06b2019-10-20 22:27:10 +02005595 // Bail out when autocommands closed the window.
5596 // Refuse to quit when the buffer in the last window is being closed (can
5597 // only happen in autocommands).
Bram Moolenaar12a96de2018-03-11 14:44:18 +01005598 if (!win_valid(wp)
5599 || curbuf_locked()
5600 || (wp->w_buffer->b_nwindows == 1 && wp->w_buffer->b_locked > 0))
5601 return TRUE;
5602
5603 if (quit_all || (check_more(FALSE, forceit) == OK && only_one_window()))
5604 {
5605 apply_autocmds(EVENT_EXITPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar34ba06b2019-10-20 22:27:10 +02005606 // Refuse to quit when locked or when the window was closed or the
5607 // buffer in the last window is being closed (can only happen in
5608 // autocommands).
5609 if (!win_valid(wp) || curbuf_locked()
Bram Moolenaar12a96de2018-03-11 14:44:18 +01005610 || (curbuf->b_nwindows == 1 && curbuf->b_locked > 0))
5611 return TRUE;
5612 }
5613
5614 return FALSE;
5615}
5616
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617/*
Bram Moolenaarf240e182014-11-27 18:33:02 +01005618 * ":quit": quit current window, quit Vim if the last window is closed.
Bram Moolenaar12a96de2018-03-11 14:44:18 +01005619 * ":{nr}quit": quit window {nr}
Bram Moolenaar4d14bac2019-10-20 21:15:15 +02005620 * Also used when closing a terminal window that's the last one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 */
Bram Moolenaar4d14bac2019-10-20 21:15:15 +02005622 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005623ex_quit(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005625 win_T *wp;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005626
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627#ifdef FEAT_CMDWIN
5628 if (cmdwin_type != 0)
5629 {
5630 cmdwin_result = Ctrl_C;
5631 return;
5632 }
5633#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005634 // Don't quit while editing the command line.
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005635 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00005636 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005637 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00005638 return;
5639 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005640 if (eap->addr_count > 0)
5641 {
Bram Moolenaarf240e182014-11-27 18:33:02 +01005642 int wnr = eap->line2;
5643
5644 for (wp = firstwin; wp->w_next != NULL; wp = wp->w_next)
5645 if (--wnr <= 0)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005646 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005647 }
5648 else
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005649 wp = curwin;
Bram Moolenaarf240e182014-11-27 18:33:02 +01005650
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005651 // Refuse to quit when locked.
Bram Moolenaar87ffb5c2017-10-19 12:37:42 +02005652 if (curbuf_locked())
5653 return;
Bram Moolenaar12a96de2018-03-11 14:44:18 +01005654
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005655 // Trigger QuitPre and maybe ExitPre
Bram Moolenaar12a96de2018-03-11 14:44:18 +01005656 if (before_quit_autocmds(wp, FALSE, eap->forceit))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005657 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658
5659#ifdef FEAT_NETBEANS_INTG
5660 netbeansForcedQuit = eap->forceit;
5661#endif
5662
5663 /*
Bram Moolenaar3552e742021-05-29 12:21:58 +02005664 * If there is only one relevant window we will exit.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665 */
5666 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
5667 exiting = TRUE;
Bram Moolenaarff930ca2017-10-19 17:12:10 +02005668 if ((!buf_hide(wp->w_buffer)
5669 && check_changed(wp->w_buffer, (p_awa ? CCGD_AW : 0)
Bram Moolenaar45d3b142013-11-09 03:31:51 +01005670 | (eap->forceit ? CCGD_FORCEIT : 0)
5671 | CCGD_EXCMD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 || check_more(TRUE, eap->forceit) == FAIL
Bram Moolenaar027387f2016-01-02 22:25:52 +01005673 || (only_one_window() && check_changed_any(eap->forceit, TRUE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 {
5675 not_exiting();
5676 }
5677 else
5678 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005679 // quit last window
5680 // Note: only_one_window() returns true, even so a help window is
5681 // still open. In that case only quit, if no address has been
5682 // specified. Example:
5683 // :h|wincmd w|1q - don't quit
5684 // :h|wincmd w|q - quit
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01005685 if (only_one_window() && (ONE_WINDOW || eap->addr_count == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 getout(0);
Bram Moolenaar2c33d7b2017-10-14 16:06:20 +02005687 not_exiting();
Bram Moolenaar4033c552017-09-16 20:54:51 +02005688#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005690#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005691 // close window; may free buffer
Bram Moolenaareb44a682017-08-03 22:44:55 +02005692 win_close(wp, !buf_hide(wp->w_buffer) || eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 }
5694}
5695
5696/*
5697 * ":cquit".
5698 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005700ex_cquit(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701{
Bram Moolenaar1860bde2020-01-06 21:47:21 +01005702 // this does not always pass on the exit code to the Manx compiler. why?
5703 getout(eap->addr_count > 0 ? (int)eap->line2 : EXIT_FAILURE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704}
5705
5706/*
5707 * ":qall": try to quit all windows
5708 */
5709 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005710ex_quit_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005711{
5712# ifdef FEAT_CMDWIN
5713 if (cmdwin_type != 0)
5714 {
5715 if (eap->forceit)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005716 cmdwin_result = K_XF1; // ex_window() takes care of this
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 else
5718 cmdwin_result = K_XF2;
5719 return;
5720 }
5721# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00005722
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005723 // Don't quit while editing the command line.
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005724 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00005725 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005726 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00005727 return;
5728 }
Bram Moolenaar12a96de2018-03-11 14:44:18 +01005729
5730 if (before_quit_autocmds(curwin, TRUE, eap->forceit))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005731 return;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00005732
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 exiting = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01005734 if (eap->forceit || !check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 getout(0);
5736 not_exiting();
5737}
5738
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739/*
5740 * ":close": close current window, unless it is the last one
5741 */
5742 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005743ex_close(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005745 win_T *win;
5746 int winnr = 0;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005747#ifdef FEAT_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 if (cmdwin_type != 0)
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02005749 cmdwin_result = Ctrl_C;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02005751#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005752 if (!text_locked() && !curbuf_locked())
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005753 {
5754 if (eap->addr_count == 0)
5755 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar6d41c782018-06-06 09:11:12 +02005756 else
5757 {
Bram Moolenaar29323592016-07-24 22:04:11 +02005758 FOR_ALL_WINDOWS(win)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005759 {
5760 winnr++;
5761 if (winnr == eap->line2)
5762 break;
5763 }
5764 if (win == NULL)
5765 win = lastwin;
5766 ex_win_close(eap->forceit, win, NULL);
5767 }
5768 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769}
5770
Bram Moolenaar4033c552017-09-16 20:54:51 +02005771#ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005772/*
5773 * ":pclose": Close any preview window.
5774 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005776ex_pclose(exarg_T *eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005777{
5778 win_T *win;
5779
Bram Moolenaar79648732019-07-18 21:43:07 +02005780 // First close any normal window.
Bram Moolenaar29323592016-07-24 22:04:11 +02005781 FOR_ALL_WINDOWS(win)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005782 if (win->w_p_pvw)
5783 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00005784 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar79648732019-07-18 21:43:07 +02005785 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005786 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005787# ifdef FEAT_PROP_POPUP
Bram Moolenaar79648732019-07-18 21:43:07 +02005788 // Also when 'previewpopup' is empty, it might have been cleared.
Bram Moolenaarc7c5f102019-08-21 18:31:03 +02005789 popup_close_preview();
Bram Moolenaar79648732019-07-18 21:43:07 +02005790# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005791}
Bram Moolenaar4033c552017-09-16 20:54:51 +02005792#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005793
Bram Moolenaarf740b292006-02-16 22:11:02 +00005794/*
5795 * Close window "win" and take care of handling closing the last window for a
5796 * modified buffer.
5797 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005798 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005799ex_win_close(
5800 int forceit,
5801 win_T *win,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005802 tabpage_T *tp) // NULL or the tab page "win" is in
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803{
5804 int need_hide;
5805 buf_T *buf = win->w_buffer;
5806
Bram Moolenaarcf844172020-06-26 19:44:06 +02005807 // Never close the autocommand window.
5808 if (win == aucmd_win)
5809 {
5810 emsg(_(e_autocmd_close));
5811 return;
5812 }
5813
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaareb44a682017-08-03 22:44:55 +02005815 if (need_hide && !buf_hide(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02005817#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaare1004402020-10-24 20:49:43 +02005818 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM)) && p_write)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02005820 bufref_T bufref;
5821
5822 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823 dialog_changed(buf, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02005824 if (bufref_valid(&bufref) && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825 return;
5826 need_hide = FALSE;
5827 }
5828 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02005829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02005831 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 return;
5833 }
5834 }
5835
Bram Moolenaar4033c552017-09-16 20:54:51 +02005836#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005838#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00005839
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005840 // free buffer when not hiding it or when it's a scratch buffer
Bram Moolenaarf740b292006-02-16 22:11:02 +00005841 if (tp == NULL)
Bram Moolenaareb44a682017-08-03 22:44:55 +02005842 win_close(win, !need_hide && !buf_hide(buf));
Bram Moolenaarf740b292006-02-16 22:11:02 +00005843 else
Bram Moolenaareb44a682017-08-03 22:44:55 +02005844 win_close_othertab(win, !need_hide && !buf_hide(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845}
5846
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847/*
Bram Moolenaardea25702017-01-29 15:18:10 +01005848 * Handle the argument for a tabpage related ex command.
5849 * Returns a tabpage number.
5850 * When an error is encountered then eap->errmsg is set.
5851 */
5852 static int
5853get_tabpage_arg(exarg_T *eap)
5854{
5855 int tab_number;
5856 int unaccept_arg0 = (eap->cmdidx == CMD_tabmove) ? 0 : 1;
5857
5858 if (eap->arg && *eap->arg != NUL)
5859 {
5860 char_u *p = eap->arg;
5861 char_u *p_save;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005862 int relative = 0; // argument +N/-N means: go to N places to the
5863 // right/left relative to the current position.
Bram Moolenaardea25702017-01-29 15:18:10 +01005864
5865 if (*p == '-')
5866 {
5867 relative = -1;
5868 p++;
5869 }
5870 else if (*p == '+')
5871 {
5872 relative = 1;
5873 p++;
5874 }
5875
5876 p_save = p;
5877 tab_number = getdigits(&p);
5878
5879 if (relative == 0)
5880 {
5881 if (STRCMP(p, "$") == 0)
5882 tab_number = LAST_TAB_NR;
Bram Moolenaar94f4ffa2020-08-10 19:21:15 +02005883 else if (STRCMP(p, "#") == 0)
5884 if (valid_tabpage(lastused_tabpage))
5885 tab_number = tabpage_index(lastused_tabpage);
5886 else
5887 {
5888 eap->errmsg = ex_errmsg(e_invargval, eap->arg);
5889 tab_number = 0;
5890 goto theend;
5891 }
Bram Moolenaardea25702017-01-29 15:18:10 +01005892 else if (p == p_save || *p_save == '-' || *p != NUL
5893 || tab_number > LAST_TAB_NR)
5894 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005895 // No numbers as argument.
Bram Moolenaar8930caa2020-07-23 16:37:03 +02005896 eap->errmsg = ex_errmsg(e_invarg2, eap->arg);
Bram Moolenaardea25702017-01-29 15:18:10 +01005897 goto theend;
5898 }
5899 }
5900 else
5901 {
5902 if (*p_save == NUL)
5903 tab_number = 1;
5904 else if (p == p_save || *p_save == '-' || *p != NUL
5905 || tab_number == 0)
5906 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01005907 // No numbers as argument.
Bram Moolenaar8930caa2020-07-23 16:37:03 +02005908 eap->errmsg = ex_errmsg(e_invarg2, eap->arg);
Bram Moolenaardea25702017-01-29 15:18:10 +01005909 goto theend;
5910 }
5911 tab_number = tab_number * relative + tabpage_index(curtab);
5912 if (!unaccept_arg0 && relative == -1)
5913 --tab_number;
5914 }
5915 if (tab_number < unaccept_arg0 || tab_number > LAST_TAB_NR)
Bram Moolenaar8930caa2020-07-23 16:37:03 +02005916 eap->errmsg = ex_errmsg(e_invarg2, eap->arg);
Bram Moolenaardea25702017-01-29 15:18:10 +01005917 }
5918 else if (eap->addr_count > 0)
5919 {
5920 if (unaccept_arg0 && eap->line2 == 0)
Bram Moolenaarc6251552017-01-29 21:42:20 +01005921 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02005922 eap->errmsg = _(e_invalid_range);
Bram Moolenaarc6251552017-01-29 21:42:20 +01005923 tab_number = 0;
5924 }
Bram Moolenaardea25702017-01-29 15:18:10 +01005925 else
5926 {
5927 tab_number = eap->line2;
Bram Moolenaar82a12462019-01-22 22:41:42 +01005928 if (!unaccept_arg0 && *skipwhite(*eap->cmdlinep) == '-')
Bram Moolenaardea25702017-01-29 15:18:10 +01005929 {
5930 --tab_number;
5931 if (tab_number < unaccept_arg0)
Bram Moolenaar108010a2021-06-27 22:03:33 +02005932 eap->errmsg = _(e_invalid_range);
Bram Moolenaardea25702017-01-29 15:18:10 +01005933 }
5934 }
5935 }
5936 else
5937 {
5938 switch (eap->cmdidx)
5939 {
5940 case CMD_tabnext:
5941 tab_number = tabpage_index(curtab) + 1;
5942 if (tab_number > LAST_TAB_NR)
5943 tab_number = 1;
5944 break;
5945 case CMD_tabmove:
5946 tab_number = LAST_TAB_NR;
5947 break;
5948 default:
5949 tab_number = tabpage_index(curtab);
5950 }
5951 }
5952
5953theend:
5954 return tab_number;
5955}
5956
5957/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00005958 * ":tabclose": close current tab page, unless it is the last one.
5959 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960 */
5961 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005962ex_tabclose(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963{
Bram Moolenaarf740b292006-02-16 22:11:02 +00005964 tabpage_T *tp;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005965 int tab_number;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005966
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005967# ifdef FEAT_CMDWIN
5968 if (cmdwin_type != 0)
5969 cmdwin_result = K_IGNORE;
5970 else
5971# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00005972 if (first_tabpage->tp_next == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005973 emsg(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00005974 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975 {
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005976 tab_number = get_tabpage_arg(eap);
5977 if (eap->errmsg == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005978 {
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005979 tp = find_tabpage(tab_number);
Bram Moolenaarf740b292006-02-16 22:11:02 +00005980 if (tp == NULL)
5981 {
5982 beep_flush();
5983 return;
5984 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00005985 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00005986 {
5987 tabpage_close_other(tp, eap->forceit);
5988 return;
5989 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005990 else if (!text_locked() && !curbuf_locked())
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005991 tabpage_close(eap->forceit);
5992 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005994}
5995
5996/*
5997 * ":tabonly": close all tab pages except the current one
5998 */
5999 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006000ex_tabonly(exarg_T *eap)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006001{
6002 tabpage_T *tp;
6003 int done;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006004 int tab_number;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006005
6006# ifdef FEAT_CMDWIN
6007 if (cmdwin_type != 0)
6008 cmdwin_result = K_IGNORE;
6009 else
6010# endif
6011 if (first_tabpage->tp_next == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006012 msg(_("Already only one tab page"));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006013 else
6014 {
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006015 tab_number = get_tabpage_arg(eap);
6016 if (eap->errmsg == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006017 {
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006018 goto_tabpage(tab_number);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006019 // Repeat this up to a 1000 times, because autocommands may
6020 // mess up the lists.
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006021 for (done = 0; done < 1000; ++done)
6022 {
6023 FOR_ALL_TABPAGES(tp)
6024 if (tp->tp_topframe != topframe)
6025 {
6026 tabpage_close_other(tp, eap->forceit);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006027 // if we failed to close it quit
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006028 if (valid_tabpage(tp))
6029 done = 1000;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006030 // start over, "tp" is now invalid
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006031 break;
6032 }
6033 if (first_tabpage->tp_next == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006034 break;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006035 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006036 }
6037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039
6040/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006041 * Close the current tab page.
6042 */
6043 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006044tabpage_close(int forceit)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006045{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006046 // First close all the windows but the current one. If that worked then
6047 // close the last window in this tab, that will close it.
Bram Moolenaar459ca562016-11-10 18:16:33 +01006048 if (!ONE_WINDOW)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006049 close_others(TRUE, forceit);
Bram Moolenaar459ca562016-11-10 18:16:33 +01006050 if (ONE_WINDOW)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006051 ex_win_close(forceit, curwin, NULL);
6052# ifdef FEAT_GUI
6053 need_mouse_correct = TRUE;
6054# endif
6055}
6056
6057/*
6058 * Close tab page "tp", which is not the current tab page.
6059 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006060 * Also takes care of the tab pages line disappearing when closing the
6061 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006062 */
6063 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006064tabpage_close_other(tabpage_T *tp, int forceit)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006065{
6066 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006067 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006068 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006069
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006070 // Limit to 1000 windows, autocommands may add a window while we close
6071 // one. OK, so I'm paranoid...
Bram Moolenaarf740b292006-02-16 22:11:02 +00006072 while (++done < 1000)
6073 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006074 wp = tp->tp_firstwin;
6075 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006076
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006077 // Autocommands may delete the tab page under our fingers and we may
6078 // fail to close a window with a modified buffer.
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006079 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006080 break;
6081 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006082
Bram Moolenaar29323592016-07-24 22:04:11 +02006083 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar29323592016-07-24 22:04:11 +02006084
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006085 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006086 if (h != tabline_height())
6087 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006088}
6089
6090/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091 * ":only".
6092 */
6093 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006094ex_only(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01006096 win_T *wp;
6097 int wnr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006098# ifdef FEAT_GUI
6099 need_mouse_correct = TRUE;
6100# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01006101 if (eap->addr_count > 0)
6102 {
6103 wnr = eap->line2;
6104 for (wp = firstwin; --wnr > 0; )
6105 {
6106 if (wp->w_next == NULL)
6107 break;
6108 else
6109 wp = wp->w_next;
6110 }
6111 win_goto(wp);
6112 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113 close_others(TRUE, eap->forceit);
6114}
6115
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 static void
Bram Moolenaar5e1e6d22017-01-02 17:26:00 +01006117ex_hide(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006118{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006119 // ":hide" or ":hide | cmd": hide current window
Bram Moolenaar2256c992016-11-15 21:17:07 +01006120 if (!eap->skip)
6121 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02006122#ifdef FEAT_GUI
Bram Moolenaar2256c992016-11-15 21:17:07 +01006123 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006124#endif
Bram Moolenaar2256c992016-11-15 21:17:07 +01006125 if (eap->addr_count == 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006126 win_close(curwin, FALSE); // don't free buffer
Bram Moolenaar2256c992016-11-15 21:17:07 +01006127 else
6128 {
6129 int winnr = 0;
6130 win_T *win;
Bram Moolenaarf240e182014-11-27 18:33:02 +01006131
Bram Moolenaar2256c992016-11-15 21:17:07 +01006132 FOR_ALL_WINDOWS(win)
6133 {
6134 winnr++;
6135 if (winnr == eap->line2)
6136 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01006137 }
Bram Moolenaar2256c992016-11-15 21:17:07 +01006138 if (win == NULL)
6139 win = lastwin;
6140 win_close(win, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006141 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006142 }
6143}
6144
6145/*
6146 * ":stop" and ":suspend": Suspend Vim.
6147 */
6148 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006149ex_stop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150{
6151 /*
6152 * Disallow suspending for "rvim".
6153 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02006154 if (!check_restricted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 {
6156 if (!eap->forceit)
6157 autowrite_all();
Bram Moolenaar100118c2020-12-11 19:30:34 +01006158 apply_autocmds(EVENT_VIMSUSPEND, NULL, NULL, FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 windgoto((int)Rows - 1, 0);
6160 out_char('\n');
6161 out_flush();
6162 stoptermcap();
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006163 out_flush(); // needed for SUN to restore xterm buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164#ifdef FEAT_TITLE
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006165 mch_restore_title(SAVE_RESTORE_BOTH); // restore window titles
Bram Moolenaar071d4272004-06-13 20:20:40 +00006166#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006167 ui_suspend(); // call machine specific function
Bram Moolenaar071d4272004-06-13 20:20:40 +00006168#ifdef FEAT_TITLE
6169 maketitle();
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006170 resettitle(); // force updating the title
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171#endif
6172 starttermcap();
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006173 scroll_start(); // scroll screen before redrawing
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174 redraw_later_clear();
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006175 shell_resized(); // may have resized window
Bram Moolenaar100118c2020-12-11 19:30:34 +01006176 apply_autocmds(EVENT_VIMRESUME, NULL, NULL, FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177 }
6178}
6179
6180/*
Bram Moolenaar1174b012021-05-29 14:30:43 +02006181 * ":exit", ":xit" and ":wq": Write file and quit the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182 */
6183 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006184ex_exit(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185{
Bram Moolenaar461f2122020-07-28 20:25:47 +02006186#ifdef FEAT_EVAL
Bram Moolenaarae616492020-07-28 20:07:27 +02006187 if (not_in_vim9(eap) == FAIL)
6188 return;
Bram Moolenaar461f2122020-07-28 20:25:47 +02006189#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190#ifdef FEAT_CMDWIN
6191 if (cmdwin_type != 0)
6192 {
6193 cmdwin_result = Ctrl_C;
6194 return;
6195 }
6196#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006197 // Don't quit while editing the command line.
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006198 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006199 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006200 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006201 return;
6202 }
Bram Moolenaar12a96de2018-03-11 14:44:18 +01006203
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204 /*
Bram Moolenaar1174b012021-05-29 14:30:43 +02006205 * we plan to exit if there is only one relevant window
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 */
6207 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6208 exiting = TRUE;
Bram Moolenaar1174b012021-05-29 14:30:43 +02006209
6210 // Write the buffer for ":wq" or when it was changed.
6211 // Trigger QuitPre and ExitPre.
6212 // Check if we can exit now, after autocommands have changed things.
6213 if (((eap->cmdidx == CMD_wq || curbufIsChanged()) && do_write(eap) == FAIL)
6214 || before_quit_autocmds(curwin, FALSE, eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 || check_more(TRUE, eap->forceit) == FAIL
Bram Moolenaar027387f2016-01-02 22:25:52 +01006216 || (only_one_window() && check_changed_any(eap->forceit, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217 {
6218 not_exiting();
6219 }
6220 else
6221 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006222 if (only_one_window()) // quit last window, exit Vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00006223 getout(0);
Bram Moolenaar2c33d7b2017-10-14 16:06:20 +02006224 not_exiting();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225# ifdef FEAT_GUI
6226 need_mouse_correct = TRUE;
6227# endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006228 // Quit current window, may free the buffer.
Bram Moolenaareb44a682017-08-03 22:44:55 +02006229 win_close(curwin, !buf_hide(curwin->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 }
6231}
6232
6233/*
6234 * ":print", ":list", ":number".
6235 */
6236 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006237ex_print(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006239 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006240 emsg(_(e_emptybuf));
Bram Moolenaardf177f62005-02-22 08:39:57 +00006241 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006243 for ( ;!got_int; ui_breakcheck())
6244 {
6245 print_line(eap->line1,
6246 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6247 || (eap->flags & EXFLAG_NR)),
6248 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6249 if (++eap->line1 > eap->line2)
6250 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006251 out_flush(); // show one line at a time
Bram Moolenaardf177f62005-02-22 08:39:57 +00006252 }
6253 setpcmark();
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006254 // put cursor at last line
Bram Moolenaardf177f62005-02-22 08:39:57 +00006255 curwin->w_cursor.lnum = eap->line2;
6256 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 }
6258
Bram Moolenaar071d4272004-06-13 20:20:40 +00006259 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006260}
6261
6262#ifdef FEAT_BYTEOFF
6263 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006264ex_goto(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265{
6266 goto_byte(eap->line2);
6267}
6268#endif
6269
6270/*
6271 * ":shell".
6272 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006273 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006274ex_shell(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275{
6276 do_shell(NULL, 0);
6277}
6278
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006279#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006281static int drop_busy = FALSE;
6282static int drop_filec;
6283static char_u **drop_filev = NULL;
6284static int drop_split;
6285static void (*drop_callback)(void *);
6286static void *drop_cookie;
6287
6288 static void
6289handle_drop_internal(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006290{
6291 exarg_T ea;
6292 int save_msg_scroll = msg_scroll;
6293
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006294 // Setting the argument list may cause screen updates and being called
6295 // recursively. Avoid that by setting drop_busy.
6296 drop_busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006298 // Check whether the current buffer is changed. If so, we will need
6299 // to split the current window or data could be lost.
6300 // We don't need to check if the 'hidden' option is set, as in this
6301 // case the buffer won't be lost.
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006302 if (!buf_hide(curbuf) && !drop_split)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 {
6304 ++emsg_off;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006305 drop_split = check_changed(curbuf, CCGD_AW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 --emsg_off;
6307 }
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006308 if (drop_split)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 if (win_split(0, 0) == FAIL)
6311 return;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006312 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006314 // When splitting the window, create a new alist. Otherwise the
6315 // existing one is overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316 alist_unlink(curwin->w_alist);
6317 alist_new();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318 }
6319
6320 /*
6321 * Set up the new argument list.
6322 */
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006323 alist_set(ALIST(curwin), drop_filec, drop_filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324
6325 /*
6326 * Move to the first file.
6327 */
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006328 // Fake up a minimal "next" command for do_argfile()
Bram Moolenaara80faa82020-04-12 19:37:17 +02006329 CLEAR_FIELD(ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 ea.cmd = (char_u *)"next";
6331 do_argfile(&ea, 0);
6332
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006333 // do_ecmd() may set need_start_insertmode, but since we never left Insert
6334 // mode that is not needed here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 need_start_insertmode = FALSE;
6336
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006337 // Restore msg_scroll, otherwise a following command may cause scrolling
6338 // unexpectedly. The screen will be redrawn by the caller, thus
6339 // msg_scroll being set by displaying a message is irrelevant.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 msg_scroll = save_msg_scroll;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006341
6342 if (drop_callback != NULL)
6343 drop_callback(drop_cookie);
6344
6345 drop_filev = NULL;
6346 drop_busy = FALSE;
6347}
6348
6349/*
6350 * Handle a file drop. The code is here because a drop is *nearly* like an
6351 * :args command, but not quite (we have a list of exact filenames, so we
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01006352 * don't want to (a) parse a command line, or (b) expand wildcards). So the
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006353 * code is very similar to :args and hence needs access to a lot of the static
6354 * functions in this file.
6355 *
6356 * The "filev" list must have been allocated using alloc(), as should each item
6357 * in the list. This function takes over responsibility for freeing the "filev"
6358 * list.
6359 */
6360 void
6361handle_drop(
6362 int filec, // the number of files dropped
6363 char_u **filev, // the list of files dropped
6364 int split, // force splitting the window
6365 void (*callback)(void *), // to be called after setting the argument
6366 // list
6367 void *cookie) // argument for "callback" (allocated)
6368{
6369 // Cannot handle recursive drops, finish the pending one.
6370 if (drop_busy)
6371 {
6372 FreeWild(filec, filev);
6373 vim_free(cookie);
6374 return;
6375 }
6376
6377 // When calling handle_drop() more than once in a row we only use the last
6378 // one.
6379 if (drop_filev != NULL)
6380 {
6381 FreeWild(drop_filec, drop_filev);
6382 vim_free(drop_cookie);
6383 }
6384
6385 drop_filec = filec;
6386 drop_filev = filev;
6387 drop_split = split;
6388 drop_callback = callback;
6389 drop_cookie = cookie;
6390
6391 // Postpone this when:
6392 // - editing the command line
6393 // - not possible to change the current buffer
6394 // - updating the screen
6395 // As it may change buffers and window structures that are in use and cause
6396 // freed memory to be used.
6397 if (text_locked() || curbuf_locked() || updating_screen)
6398 return;
6399
6400 handle_drop_internal();
6401}
6402
6403/*
6404 * To be called when text is unlocked, curbuf is unlocked or updating_screen is
6405 * reset: Handle a postponed drop.
6406 */
6407 void
6408handle_any_postponed_drop(void)
6409{
6410 if (!drop_busy && drop_filev != NULL
Bram Moolenaar6adb9ea2020-04-30 22:31:18 +02006411 && !text_locked() && !curbuf_locked() && !updating_screen)
Bram Moolenaar92d147b2018-07-29 17:35:23 +02006412 handle_drop_internal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413}
6414#endif
6415
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 * ":preserve".
6418 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006420ex_preserve(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006422 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423 ml_preserve(curbuf, TRUE);
6424}
6425
6426/*
6427 * ":recover".
6428 */
6429 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006430ex_recover(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006432 // Set recoverymode right away to avoid the ATTENTION prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006433 recoverymode = TRUE;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01006434 if (!check_changed(curbuf, (p_awa ? CCGD_AW : 0)
6435 | CCGD_MULTWIN
6436 | (eap->forceit ? CCGD_FORCEIT : 0)
6437 | CCGD_EXCMD)
6438
Bram Moolenaar071d4272004-06-13 20:20:40 +00006439 && (*eap->arg == NUL
6440 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
Bram Moolenaar99499b12019-05-23 21:35:48 +02006441 ml_recover(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442 recoverymode = FALSE;
6443}
6444
6445/*
6446 * Command modifier used in a wrong way.
6447 */
6448 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006449ex_wrongmodifier(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006450{
Bram Moolenaar451c2e32020-08-15 16:33:28 +02006451 eap->errmsg = _(e_invalid_command);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452}
6453
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454/*
6455 * :sview [+command] file split window with new file, read-only
6456 * :split [[+command] file] split window with current or new file
6457 * :vsplit [[+command] file] split window vertically with current or new file
6458 * :new [[+command] file] split window with no or new file
6459 * :vnew [[+command] file] split vertically window with no or new file
6460 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006461 *
6462 * :tabedit open new Tab page with empty window
6463 * :tabedit [+command] file open new Tab page and edit "file"
6464 * :tabnew [[+command] file] just like :tabedit
6465 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466 */
6467 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006468ex_splitview(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006470 win_T *old_curwin = curwin;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006471#if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 char_u *fname = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006473#endif
6474#ifdef FEAT_BROWSE
Bram Moolenaar21cbe172020-10-13 19:08:24 +02006475 char_u dot_path[] = ".";
Bram Moolenaare1004402020-10-24 20:49:43 +02006476 int save_cmod_flags = cmdmod.cmod_flags;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006477#endif
Bram Moolenaar39902a02018-06-21 22:10:08 +02006478 int use_tab = eap->cmdidx == CMD_tabedit
6479 || eap->cmdidx == CMD_tabfind
6480 || eap->cmdidx == CMD_tabnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481
Bram Moolenaar3c01c4a2020-02-01 23:04:24 +01006482 if (ERROR_IF_ANY_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02006483 return;
6484
Bram Moolenaar4033c552017-09-16 20:54:51 +02006485#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006486 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006487#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488
Bram Moolenaar4033c552017-09-16 20:54:51 +02006489#ifdef FEAT_QUICKFIX
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006490 // A ":split" in the quickfix window works like ":new". Don't want two
6491 // quickfix windows. But it's OK when doing ":tab split".
Bram Moolenaare1004402020-10-24 20:49:43 +02006492 if (bt_quickfix(curbuf) && cmdmod.cmod_tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493 {
6494 if (eap->cmdidx == CMD_split)
6495 eap->cmdidx = CMD_new;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496 if (eap->cmdidx == CMD_vsplit)
6497 eap->cmdidx = CMD_vnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006498 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02006499#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500
Bram Moolenaar4033c552017-09-16 20:54:51 +02006501#ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006502 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006503 {
6504 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
6505 FNAME_MESS, TRUE, curbuf->b_ffname);
6506 if (fname == NULL)
6507 goto theend;
6508 eap->arg = fname;
6509 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006510# ifdef FEAT_BROWSE
Bram Moolenaar4033c552017-09-16 20:54:51 +02006511 else
6512# endif
6513#endif
6514#ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02006515 if ((cmdmod.cmod_flags & CMOD_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516 && eap->cmdidx != CMD_vnew
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517 && eap->cmdidx != CMD_new)
6518 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00006519 if (
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006520# ifdef FEAT_GUI
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00006521 !gui.in_use &&
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006522# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00006523 au_has_group((char_u *)"FileExplorer"))
6524 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006525 // No browsing supported but we do have the file explorer:
6526 // Edit the directory.
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00006527 if (*eap->arg == NUL || !mch_isdir(eap->arg))
Bram Moolenaar21cbe172020-10-13 19:08:24 +02006528 eap->arg = dot_path;
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00006529 }
6530 else
6531 {
Bram Moolenaar39902a02018-06-21 22:10:08 +02006532 fname = do_browse(0, (char_u *)(use_tab
6533 ? _("Edit File in new tab page")
6534 : _("Edit File in new window")),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00006536 if (fname == NULL)
6537 goto theend;
6538 eap->arg = fname;
6539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006540 }
Bram Moolenaare1004402020-10-24 20:49:43 +02006541 cmdmod.cmod_flags &= ~CMOD_BROWSE; // Don't browse again in do_ecmd().
Bram Moolenaar4033c552017-09-16 20:54:51 +02006542#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006544 /*
6545 * Either open new tab page or split the window.
6546 */
Bram Moolenaar39902a02018-06-21 22:10:08 +02006547 if (use_tab)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006548 {
Bram Moolenaare1004402020-10-24 20:49:43 +02006549 if (win_new_tabpage(cmdmod.cmod_tab != 0 ? cmdmod.cmod_tab
Bram Moolenaar8dff8182006-04-06 20:18:50 +00006550 : eap->addr_count == 0 ? 0
6551 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006552 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00006553 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006554
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006555 // set the alternate buffer for the window we came from
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006556 if (curwin != old_curwin
6557 && win_valid(old_curwin)
6558 && old_curwin->w_buffer != curbuf
Bram Moolenaare1004402020-10-24 20:49:43 +02006559 && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006560 old_curwin->w_alt_fnum = curbuf->b_fnum;
6561 }
6562 }
6563 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
6565 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006566 // Reset 'scrollbind' when editing another file, but keep it when
6567 // doing ":split" without arguments.
Bram Moolenaare1004402020-10-24 20:49:43 +02006568 if (*eap->arg != NUL)
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006569 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006570 else
6571 do_check_scrollbind(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006572 do_exedit(eap, old_curwin);
6573 }
6574
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006575# ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02006576 cmdmod.cmod_flags = save_cmod_flags;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006577# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006579# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580theend:
6581 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006582# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006584
6585/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006586 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006587 */
6588 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006589tabpage_new(void)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006590{
6591 exarg_T ea;
6592
Bram Moolenaara80faa82020-04-12 19:37:17 +02006593 CLEAR_FIELD(ea);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006594 ea.cmdidx = CMD_tabnew;
6595 ea.cmd = (char_u *)"tabn";
6596 ea.arg = (char_u *)"";
6597 ex_splitview(&ea);
6598}
6599
6600/*
6601 * :tabnext command
6602 */
6603 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006604ex_tabnext(exarg_T *eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006605{
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006606 int tab_number;
6607
Bram Moolenaar8cdbd5b2019-06-16 15:50:45 +02006608 if (ERROR_IF_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02006609 return;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006610 switch (eap->cmdidx)
6611 {
6612 case CMD_tabfirst:
6613 case CMD_tabrewind:
6614 goto_tabpage(1);
6615 break;
6616 case CMD_tablast:
6617 goto_tabpage(9999);
6618 break;
6619 case CMD_tabprevious:
6620 case CMD_tabNext:
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006621 if (eap->arg && *eap->arg != NUL)
6622 {
6623 char_u *p = eap->arg;
6624 char_u *p_save = p;
6625
6626 tab_number = getdigits(&p);
6627 if (p == p_save || *p_save == '-' || *p != NUL
6628 || tab_number == 0)
6629 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006630 // No numbers as argument.
Bram Moolenaar8930caa2020-07-23 16:37:03 +02006631 eap->errmsg = ex_errmsg(e_invarg2, eap->arg);
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006632 return;
6633 }
6634 }
6635 else
6636 {
6637 if (eap->addr_count == 0)
6638 tab_number = 1;
6639 else
6640 {
6641 tab_number = eap->line2;
6642 if (tab_number < 1)
6643 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02006644 eap->errmsg = _(e_invalid_range);
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006645 return;
6646 }
6647 }
6648 }
6649 goto_tabpage(-tab_number);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006650 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006651 default: // CMD_tabnext
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006652 tab_number = get_tabpage_arg(eap);
6653 if (eap->errmsg == NULL)
6654 goto_tabpage(tab_number);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00006655 break;
6656 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006657}
6658
6659/*
6660 * :tabmove command
6661 */
6662 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006663ex_tabmove(exarg_T *eap)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006664{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02006665 int tab_number;
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02006666
Bram Moolenaar2f72c702017-01-29 14:48:10 +01006667 tab_number = get_tabpage_arg(eap);
6668 if (eap->errmsg == NULL)
6669 tabpage_move(tab_number);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006670}
6671
6672/*
6673 * :tabs command: List tabs and their contents.
6674 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006675 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006676ex_tabs(exarg_T *eap UNUSED)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006677{
6678 tabpage_T *tp;
6679 win_T *wp;
6680 int tabcount = 1;
6681
6682 msg_start();
6683 msg_scroll = TRUE;
6684 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
6685 {
6686 msg_putchar('\n');
6687 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
Bram Moolenaar8820b482017-03-16 17:23:31 +01006688 msg_outtrans_attr(IObuff, HL_ATTR(HLF_T));
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006689 out_flush(); // output one line at a time
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006690 ui_breakcheck();
6691
Bram Moolenaar030f0df2006-02-21 22:02:53 +00006692 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006693 wp = firstwin;
6694 else
6695 wp = tp->tp_firstwin;
6696 for ( ; wp != NULL && !got_int; wp = wp->w_next)
6697 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00006698 msg_putchar('\n');
6699 msg_putchar(wp == curwin ? '>' : ' ');
6700 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006701 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
6702 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006703 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02006704 vim_strncpy(IObuff, buf_spname(wp->w_buffer), IOSIZE - 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006705 else
6706 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
6707 IObuff, IOSIZE, TRUE);
6708 msg_outtrans(IObuff);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006709 out_flush(); // output one line at a time
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006710 ui_breakcheck();
6711 }
6712 }
6713}
6714
Bram Moolenaar071d4272004-06-13 20:20:40 +00006715/*
6716 * ":mode": Set screen mode.
6717 * If no argument given, just get the screen size and redraw.
6718 */
6719 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006720ex_mode(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006721{
6722 if (*eap->arg == NUL)
6723 shell_resized();
6724 else
Bram Moolenaar3c71aec2020-01-17 19:32:20 +01006725 emsg(_(e_screenmode));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726}
6727
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728/*
6729 * ":resize".
6730 * set, increment or decrement current window height
6731 */
6732 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006733ex_resize(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734{
6735 int n;
6736 win_T *wp = curwin;
6737
6738 if (eap->addr_count > 0)
6739 {
6740 n = eap->line2;
6741 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
6742 ;
6743 }
6744
Bram Moolenaar44a2f922016-03-19 22:11:51 +01006745# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01006747# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748 n = atol((char *)eap->arg);
Bram Moolenaare1004402020-10-24 20:49:43 +02006749 if (cmdmod.cmod_split & WSP_VERT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006750 {
6751 if (*eap->arg == '-' || *eap->arg == '+')
Bram Moolenaar9668cc52020-10-17 17:39:55 +02006752 n += wp->w_width;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006753 else if (n == 0 && eap->arg[0] == NUL) // default is very wide
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754 n = 9999;
6755 win_setwidth_win((int)n, wp);
6756 }
6757 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758 {
6759 if (*eap->arg == '-' || *eap->arg == '+')
Bram Moolenaar9668cc52020-10-17 17:39:55 +02006760 n += wp->w_height;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006761 else if (n == 0 && eap->arg[0] == NUL) // default is very high
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 n = 9999;
6763 win_setheight_win((int)n, wp);
6764 }
6765}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006766
6767/*
6768 * ":find [+command] <file>" command.
6769 */
6770 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006771ex_find(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772{
6773#ifdef FEAT_SEARCHPATH
6774 char_u *fname;
6775 int count;
6776
6777 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
6778 TRUE, curbuf->b_ffname);
6779 if (eap->addr_count > 0)
6780 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006781 // Repeat finding the file "count" times. This matters when it
6782 // appears several times in the path.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006783 count = eap->line2;
6784 while (fname != NULL && --count > 0)
6785 {
6786 vim_free(fname);
6787 fname = find_file_in_path(NULL, 0, FNAME_MESS,
6788 FALSE, curbuf->b_ffname);
6789 }
6790 }
6791
6792 if (fname != NULL)
6793 {
6794 eap->arg = fname;
6795#endif
6796 do_exedit(eap, NULL);
6797#ifdef FEAT_SEARCHPATH
6798 vim_free(fname);
6799 }
6800#endif
6801}
6802
6803/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00006804 * ":open" simulation: for now just work like ":visual".
6805 */
6806 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006807ex_open(exarg_T *eap)
Bram Moolenaardf177f62005-02-22 08:39:57 +00006808{
6809 regmatch_T regmatch;
6810 char_u *p;
6811
Bram Moolenaar65088802021-03-13 21:07:21 +01006812#ifdef FEAT_EVAL
6813 if (not_in_vim9(eap) == FAIL)
6814 return;
6815#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00006816 curwin->w_cursor.lnum = eap->line2;
6817 beginline(BL_SOL | BL_FIX);
6818 if (*eap->arg == '/')
6819 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006820 // ":open /pattern/": put cursor in column found with pattern
Bram Moolenaardf177f62005-02-22 08:39:57 +00006821 ++eap->arg;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01006822 p = skip_regexp(eap->arg, '/', magic_isset());
Bram Moolenaardf177f62005-02-22 08:39:57 +00006823 *p = NUL;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01006824 regmatch.regprog = vim_regcomp(eap->arg, magic_isset() ? RE_MAGIC : 0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006825 if (regmatch.regprog != NULL)
6826 {
6827 regmatch.rm_ic = p_ic;
6828 p = ml_get_curline();
6829 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006830 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006831 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006832 emsg(_(e_nomatch));
Bram Moolenaar473de612013-06-08 18:19:48 +02006833 vim_regfree(regmatch.regprog);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006834 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006835 // Move to the NUL, ignore any other arguments.
Bram Moolenaardf177f62005-02-22 08:39:57 +00006836 eap->arg += STRLEN(eap->arg);
6837 }
6838 check_cursor();
6839
6840 eap->cmdidx = CMD_visual;
6841 do_exedit(eap, NULL);
6842}
6843
6844/*
Bram Moolenaar59d8e562020-11-07 18:41:10 +01006845 * ":edit", ":badd", ":balt", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846 */
6847 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006848ex_edit(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849{
6850 do_exedit(eap, NULL);
6851}
6852
6853/*
Bram Moolenaar4b96df52020-01-26 22:00:26 +01006854 * ":edit <file>" command and alike.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006857do_exedit(
6858 exarg_T *eap,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006859 win_T *old_curwin) // curwin before doing a split or NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860{
6861 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862 int need_hide;
Bram Moolenaardf177f62005-02-22 08:39:57 +00006863 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864
Bram Moolenaar3c01c4a2020-02-01 23:04:24 +01006865 if ((eap->cmdidx != CMD_pedit && ERROR_IF_POPUP_WINDOW)
6866 || ERROR_IF_TERM_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02006867 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 /*
6869 * ":vi" command ends Ex mode.
6870 */
6871 if (exmode_active && (eap->cmdidx == CMD_visual
6872 || eap->cmdidx == CMD_view))
6873 {
6874 exmode_active = FALSE;
Bram Moolenaar158ea172020-06-18 17:28:39 +02006875 ex_pressedreturn = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00006877 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006878 // Special case: ":global/pat/visual\NLvi-commands"
Bram Moolenaardf177f62005-02-22 08:39:57 +00006879 if (global_busy)
6880 {
6881 int rd = RedrawingDisabled;
6882 int nwr = no_wait_return;
6883 int ms = msg_scroll;
6884#ifdef FEAT_GUI
6885 int he = hold_gui_events;
6886#endif
6887
6888 if (eap->nextcmd != NULL)
6889 {
6890 stuffReadbuff(eap->nextcmd);
6891 eap->nextcmd = NULL;
6892 }
6893
6894 if (exmode_was != EXMODE_VIM)
6895 settmode(TMODE_RAW);
6896 RedrawingDisabled = 0;
6897 no_wait_return = 0;
6898 need_wait_return = FALSE;
6899 msg_scroll = 0;
6900#ifdef FEAT_GUI
6901 hold_gui_events = 0;
6902#endif
6903 must_redraw = CLEAR;
Bram Moolenaar9e2bcb52020-02-18 21:33:00 +01006904 pending_exmode_active = TRUE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00006905
6906 main_loop(FALSE, TRUE);
6907
Bram Moolenaar9e2bcb52020-02-18 21:33:00 +01006908 pending_exmode_active = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00006909 RedrawingDisabled = rd;
6910 no_wait_return = nwr;
6911 msg_scroll = ms;
6912#ifdef FEAT_GUI
6913 hold_gui_events = he;
6914#endif
6915 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006916 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00006917 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 }
6919
6920 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006921 || eap->cmdidx == CMD_tabnew
6922 || eap->cmdidx == CMD_tabedit
Bram Moolenaar4033c552017-09-16 20:54:51 +02006923 || eap->cmdidx == CMD_vnew) && *eap->arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006925 // ":new" or ":tabnew" without argument: edit an new empty buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 setpcmark();
6927 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006928 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
6929 old_curwin == NULL ? curwin : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02006931 else if ((eap->cmdidx != CMD_split && eap->cmdidx != CMD_vsplit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932 || *eap->arg != NUL
6933#ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02006934 || (cmdmod.cmod_flags & CMOD_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935#endif
6936 )
6937 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006938 // Can't edit another file when "curbuf_lock" is set. Only ":edit"
6939 // can bring us here, others are stopped earlier.
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006940 if (*eap->arg != NUL && curbuf_locked())
6941 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006942
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943 n = readonlymode;
6944 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
6945 readonlymode = TRUE;
6946 else if (eap->cmdidx == CMD_enew)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006947 readonlymode = FALSE; // 'readonly' doesn't make sense in an
6948 // empty buffer
Bram Moolenaar3482be62020-11-27 11:00:38 +01006949 if (eap->cmdidx != CMD_balt && eap->cmdidx != CMD_badd)
6950 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006951 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
6952 NULL, eap,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006953 // ":edit" goes to first line if Vi compatible
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
6955 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
6956 ? ECMD_ONE : eap->do_ecmd_lnum,
Bram Moolenaareb44a682017-08-03 22:44:55 +02006957 (buf_hide(curbuf) ? ECMD_HIDE : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958 + (eap->forceit ? ECMD_FORCEIT : 0)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006959 // after a split we can use an existing buffer
Bram Moolenaar7b449342014-03-25 13:03:48 +01006960 + (old_curwin != NULL ? ECMD_OLDBUF : 0)
Bram Moolenaar59d8e562020-11-07 18:41:10 +01006961 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0)
6962 + (eap->cmdidx == CMD_balt ? ECMD_ALTBUF : 0)
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006963 , old_curwin == NULL ? curwin : NULL) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006964 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006965 // Editing the file failed. If the window was split, close it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966 if (old_curwin != NULL)
6967 {
6968 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
Bram Moolenaareb44a682017-08-03 22:44:55 +02006969 if (!need_hide || buf_hide(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006970 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006971#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006972 cleanup_T cs;
6973
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006974 // Reset the error/interrupt/exception state here so that
6975 // aborting() returns FALSE when closing a window.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006976 enter_cleanup(&cs);
Bram Moolenaar4033c552017-09-16 20:54:51 +02006977#endif
6978#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006979 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006980#endif
Bram Moolenaareb44a682017-08-03 22:44:55 +02006981 win_close(curwin, !need_hide && !buf_hide(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006982
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006983#if defined(FEAT_EVAL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006984 // Restore the error/interrupt/exception state if not
6985 // discarded by a new aborting error, interrupt, or
6986 // uncaught exception.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006987 leave_cleanup(&cs);
Bram Moolenaar4033c552017-09-16 20:54:51 +02006988#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989 }
6990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991 }
6992 else if (readonlymode && curbuf->b_nwindows == 1)
6993 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01006994 // When editing an already visited buffer, 'readonly' won't be set
6995 // but the previous value is kept. With ":view" and ":sview" we
6996 // want the file to be readonly, except when another window is
6997 // editing the same buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006998 curbuf->b_p_ro = TRUE;
6999 }
7000 readonlymode = n;
7001 }
7002 else
7003 {
7004 if (eap->do_ecmd_cmd != NULL)
Bram Moolenaar47a2abf2020-11-25 20:12:11 +01007005 do_cmd_argument(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006#ifdef FEAT_TITLE
7007 n = curwin->w_arg_idx_invalid;
7008#endif
7009 check_arg_idx(curwin);
7010#ifdef FEAT_TITLE
7011 if (n != curwin->w_arg_idx_invalid)
7012 maketitle();
7013#endif
7014 }
7015
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016 /*
7017 * if ":split file" worked, set alternate file name in old window to new
7018 * file
7019 */
7020 if (old_curwin != NULL
7021 && *eap->arg != NUL
7022 && curwin != old_curwin
7023 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007024 && old_curwin->w_buffer != curbuf
Bram Moolenaare1004402020-10-24 20:49:43 +02007025 && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026 old_curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027
7028 ex_no_reprint = TRUE;
7029}
7030
7031#ifndef FEAT_GUI
7032/*
7033 * ":gui" and ":gvim" when there is no GUI.
7034 */
7035 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007036ex_nogui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037{
Bram Moolenaare29a27f2021-07-20 21:07:36 +02007038 eap->errmsg = _(e_gui_cannot_be_used_not_enabled_at_compile_time);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039}
7040#endif
7041
Bram Moolenaar4f974752019-02-17 17:44:42 +01007042#if defined(FEAT_GUI_MSWIN) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007044ex_tearoff(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045{
7046 gui_make_tearoff(eap->arg);
7047}
7048#endif
7049
Bram Moolenaar29a2c082018-03-05 21:06:23 +01007050#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
7051 || defined(FEAT_TERM_POPUP_MENU)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007053ex_popup(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054{
Bram Moolenaar29a2c082018-03-05 21:06:23 +01007055# if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)
7056 if (gui.in_use)
7057 gui_make_popup(eap->arg, eap->forceit);
7058# ifdef FEAT_TERM_POPUP_MENU
7059 else
7060# endif
7061# endif
7062# ifdef FEAT_TERM_POPUP_MENU
7063 pum_make_popup(eap->arg, eap->forceit);
7064# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065}
7066#endif
7067
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007069ex_swapname(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070{
7071 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007072 msg(_("No swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01007074 msg((char *)curbuf->b_ml.ml_mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075}
7076
7077/*
7078 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7079 * offset.
7080 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7081 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007083ex_syncbind(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085 win_T *wp;
Bram Moolenaardedd1b02013-12-14 13:06:17 +01007086 win_T *save_curwin = curwin;
7087 buf_T *save_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088 long topline;
7089 long y;
7090 linenr_T old_linenr = curwin->w_cursor.lnum;
7091
7092 setpcmark();
7093
7094 /*
7095 * determine max topline
7096 */
7097 if (curwin->w_p_scb)
7098 {
7099 topline = curwin->w_topline;
Bram Moolenaar29323592016-07-24 22:04:11 +02007100 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007101 {
7102 if (wp->w_p_scb && wp->w_buffer)
7103 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01007104 y = wp->w_buffer->b_ml.ml_line_count - get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007105 if (topline > y)
7106 topline = y;
7107 }
7108 }
7109 if (topline < 1)
7110 topline = 1;
7111 }
7112 else
7113 {
7114 topline = 1;
7115 }
7116
7117
7118 /*
Bram Moolenaardedd1b02013-12-14 13:06:17 +01007119 * Set all scrollbind windows to the same topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120 */
Bram Moolenaar29323592016-07-24 22:04:11 +02007121 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007122 {
7123 if (curwin->w_p_scb)
7124 {
Bram Moolenaardedd1b02013-12-14 13:06:17 +01007125 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 y = topline - curwin->w_topline;
7127 if (y > 0)
7128 scrollup(y, TRUE);
7129 else
7130 scrolldown(-y, TRUE);
7131 curwin->w_scbind_pos = topline;
7132 redraw_later(VALID);
7133 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 }
7136 }
Bram Moolenaardedd1b02013-12-14 13:06:17 +01007137 curwin = save_curwin;
7138 curbuf = save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007139 if (curwin->w_p_scb)
7140 {
7141 did_syncbind = TRUE;
7142 checkpcmark();
7143 if (old_linenr != curwin->w_cursor.lnum)
7144 {
7145 char_u ctrl_o[2];
7146
7147 ctrl_o[0] = Ctrl_O;
7148 ctrl_o[1] = 0;
7149 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7150 }
7151 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152}
7153
7154
7155 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007156ex_read(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007157{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007158 int i;
7159 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7160 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007162 if (eap->usefilter) // :r!cmd
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163 do_bang(1, eap, FALSE, FALSE, TRUE);
7164 else
7165 {
7166 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7167 return;
7168
7169#ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02007170 if (cmdmod.cmod_flags & CMOD_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171 {
7172 char_u *browseFile;
7173
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007174 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 NULL, NULL, NULL, curbuf);
7176 if (browseFile != NULL)
7177 {
7178 i = readfile(browseFile, NULL,
7179 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7180 vim_free(browseFile);
7181 }
7182 else
7183 i = OK;
7184 }
7185 else
7186#endif
7187 if (*eap->arg == NUL)
7188 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007189 if (check_fname() == FAIL) // check for no file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00007190 return;
7191 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7192 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7193 }
7194 else
7195 {
7196 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7197 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7198 i = readfile(eap->arg, NULL,
7199 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7200
7201 }
Bram Moolenaare13b9af2017-01-13 22:01:02 +01007202 if (i != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007204#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 if (!aborting())
7206#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007207 semsg(_(e_notopen), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007208 }
7209 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007210 {
7211 if (empty && exmode_active)
7212 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007213 // Delete the empty line that remains. Historically ex does
7214 // this but vi doesn't.
Bram Moolenaardf177f62005-02-22 08:39:57 +00007215 if (eap->line2 == 0)
7216 lnum = curbuf->b_ml.ml_line_count;
7217 else
7218 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007219 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007220 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02007221 ml_delete(lnum);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007222 if (curwin->w_cursor.lnum > 1
7223 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007224 --curwin->w_cursor.lnum;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00007225 deleted_lines_mark(lnum, 1L);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007226 }
7227 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 }
7231}
7232
Bram Moolenaarea408852005-06-25 22:49:46 +00007233static char_u *prev_dir = NULL;
7234
7235#if defined(EXITFREE) || defined(PROTO)
7236 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007237free_cd_dir(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00007238{
Bram Moolenaard23a8232018-02-10 18:45:26 +01007239 VIM_CLEAR(prev_dir);
7240 VIM_CLEAR(globaldir);
Bram Moolenaarea408852005-06-25 22:49:46 +00007241}
7242#endif
7243
Bram Moolenaarf4258302013-06-02 18:20:17 +02007244/*
Bram Moolenaar002bc792020-06-05 22:33:42 +02007245 * Get the previous directory for the given chdir scope.
7246 */
7247 static char_u *
7248get_prevdir(cdscope_T scope)
7249{
7250 if (scope == CDSCOPE_WINDOW)
7251 return curwin->w_prevdir;
7252 else if (scope == CDSCOPE_TABPAGE)
7253 return curtab->tp_prevdir;
7254 return prev_dir;
7255}
7256
7257/*
Bram Moolenaarf4258302013-06-02 18:20:17 +02007258 * Deal with the side effects of changing the current directory.
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007259 * When 'scope' is CDSCOPE_TABPAGE then this was after an ":tcd" command.
7260 * When 'scope' is CDSCOPE_WINDOW then this was after an ":lcd" command.
Bram Moolenaarf4258302013-06-02 18:20:17 +02007261 */
7262 void
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007263post_chdir(cdscope_T scope)
Bram Moolenaarf4258302013-06-02 18:20:17 +02007264{
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007265 if (scope != CDSCOPE_WINDOW)
Bram Moolenaar00aa0692019-04-27 20:37:57 +02007266 // Clear tab local directory for both :cd and :tcd
7267 VIM_CLEAR(curtab->tp_localdir);
Bram Moolenaard23a8232018-02-10 18:45:26 +01007268 VIM_CLEAR(curwin->w_localdir);
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007269 if (scope != CDSCOPE_GLOBAL)
Bram Moolenaarf4258302013-06-02 18:20:17 +02007270 {
Bram Moolenaar002bc792020-06-05 22:33:42 +02007271 char_u *pdir = get_prevdir(scope);
7272
7273 // If still in the global directory, need to remember current
7274 // directory as the global directory.
7275 if (globaldir == NULL && pdir != NULL)
7276 globaldir = vim_strsave(pdir);
7277
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007278 // Remember this local directory for the window.
Bram Moolenaarf4258302013-06-02 18:20:17 +02007279 if (mch_dirname(NameBuff, MAXPATHL) == OK)
Bram Moolenaar00aa0692019-04-27 20:37:57 +02007280 {
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007281 if (scope == CDSCOPE_TABPAGE)
Bram Moolenaar00aa0692019-04-27 20:37:57 +02007282 curtab->tp_localdir = vim_strsave(NameBuff);
7283 else
7284 curwin->w_localdir = vim_strsave(NameBuff);
7285 }
Bram Moolenaarf4258302013-06-02 18:20:17 +02007286 }
7287 else
7288 {
Bram Moolenaar002bc792020-06-05 22:33:42 +02007289 // We are now in the global directory, no need to remember its name.
Bram Moolenaard23a8232018-02-10 18:45:26 +01007290 VIM_CLEAR(globaldir);
Bram Moolenaarf4258302013-06-02 18:20:17 +02007291 }
7292
7293 shorten_fnames(TRUE);
7294}
7295
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007296/*
7297 * Change directory function used by :cd/:tcd/:lcd Ex commands and the
Bram Moolenaar95058722020-06-01 16:26:19 +02007298 * chdir() function.
7299 * scope == CDSCOPE_WINDOW: changes the window-local directory
7300 * scope == CDSCOPE_TABPAGE: changes the tab-local directory
7301 * Otherwise: changes the global directory
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007302 * Returns TRUE if the directory is successfully changed.
7303 */
7304 int
7305changedir_func(
7306 char_u *new_dir,
7307 int forceit,
7308 cdscope_T scope)
7309{
7310 char_u *tofree;
Bram Moolenaar002bc792020-06-05 22:33:42 +02007311 char_u *pdir = NULL;
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007312 int dir_differs;
7313 int retval = FALSE;
7314
Bram Moolenaar7cc96922020-01-31 22:41:38 +01007315 if (new_dir == NULL || allbuf_locked())
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007316 return FALSE;
7317
7318 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged() && !forceit)
7319 {
7320 emsg(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
7321 return FALSE;
7322 }
7323
7324 // ":cd -": Change to previous directory
7325 if (STRCMP(new_dir, "-") == 0)
7326 {
Bram Moolenaar002bc792020-06-05 22:33:42 +02007327 pdir = get_prevdir(scope);
7328 if (pdir == NULL)
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007329 {
7330 emsg(_("E186: No previous directory"));
7331 return FALSE;
7332 }
Bram Moolenaar002bc792020-06-05 22:33:42 +02007333 new_dir = pdir;
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007334 }
7335
Bram Moolenaar002bc792020-06-05 22:33:42 +02007336 // Free the previous directory
7337 tofree = get_prevdir(scope);
7338
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007339 // Save current directory for next ":cd -"
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007340 if (mch_dirname(NameBuff, MAXPATHL) == OK)
Bram Moolenaar002bc792020-06-05 22:33:42 +02007341 pdir = vim_strsave(NameBuff);
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007342 else
Bram Moolenaar002bc792020-06-05 22:33:42 +02007343 pdir = NULL;
7344 if (scope == CDSCOPE_WINDOW)
7345 curwin->w_prevdir = pdir;
7346 else if (scope == CDSCOPE_TABPAGE)
7347 curtab->tp_prevdir = pdir;
7348 else
7349 prev_dir = pdir;
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007350
7351#if defined(UNIX) || defined(VMS)
7352 // for UNIX ":cd" means: go to home directory
7353 if (*new_dir == NUL)
7354 {
7355 // use NameBuff for home directory name
7356# ifdef VMS
7357 char_u *p;
7358
7359 p = mch_getenv((char_u *)"SYS$LOGIN");
7360 if (p == NULL || *p == NUL) // empty is the same as not set
7361 NameBuff[0] = NUL;
7362 else
7363 vim_strncpy(NameBuff, p, MAXPATHL - 1);
7364# else
7365 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7366# endif
7367 new_dir = NameBuff;
7368 }
7369#endif
Bram Moolenaar002bc792020-06-05 22:33:42 +02007370 dir_differs = new_dir == NULL || pdir == NULL
7371 || pathcmp((char *)pdir, (char *)new_dir, -1) != 0;
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007372 if (new_dir == NULL || (dir_differs && vim_chdir(new_dir)))
7373 emsg(_(e_failed));
7374 else
7375 {
7376 char_u *acmd_fname;
7377
7378 post_chdir(scope);
7379
7380 if (dir_differs)
7381 {
7382 if (scope == CDSCOPE_WINDOW)
7383 acmd_fname = (char_u *)"window";
7384 else if (scope == CDSCOPE_TABPAGE)
7385 acmd_fname = (char_u *)"tabpage";
7386 else
7387 acmd_fname = (char_u *)"global";
7388 apply_autocmds(EVENT_DIRCHANGED, acmd_fname, new_dir, FALSE,
7389 curbuf);
7390 }
7391 retval = TRUE;
7392 }
7393 vim_free(tofree);
7394
7395 return retval;
7396}
Bram Moolenaarea408852005-06-25 22:49:46 +00007397
Bram Moolenaar071d4272004-06-13 20:20:40 +00007398/*
Bram Moolenaar00aa0692019-04-27 20:37:57 +02007399 * ":cd", ":tcd", ":lcd", ":chdir" ":tchdir" and ":lchdir".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007400 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00007401 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007402ex_cd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403{
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01007404 char_u *new_dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007405
7406 new_dir = eap->arg;
7407#if !defined(UNIX) && !defined(VMS)
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007408 // for non-UNIX ":cd" means: print current directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409 if (*new_dir == NUL)
7410 ex_pwd(NULL);
7411 else
7412#endif
7413 {
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007414 cdscope_T scope = CDSCOPE_GLOBAL;
7415
7416 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7417 scope = CDSCOPE_WINDOW;
7418 else if (eap->cmdidx == CMD_tcd || eap->cmdidx == CMD_tchdir)
7419 scope = CDSCOPE_TABPAGE;
7420
7421 if (changedir_func(new_dir, eap->forceit, scope))
Bram Moolenaardf177f62005-02-22 08:39:57 +00007422 {
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02007423 // Echo the new current directory if the command was typed.
Bram Moolenaarfcfbc672009-07-09 18:13:49 +00007424 if (KeyTyped || p_verbose >= 5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425 ex_pwd(eap);
7426 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007427 }
7428}
7429
7430/*
7431 * ":pwd".
7432 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007433 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007434ex_pwd(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007435{
7436 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7437 {
7438#ifdef BACKSLASH_IN_FILENAME
7439 slash_adjust(NameBuff);
7440#endif
Bram Moolenaar95058722020-06-01 16:26:19 +02007441 if (p_verbose > 0)
7442 {
7443 char *context = "global";
7444
7445 if (curwin->w_localdir != NULL)
7446 context = "window";
7447 else if (curtab->tp_localdir != NULL)
7448 context = "tabpage";
7449 smsg("[%s] %s", context, (char *)NameBuff);
7450 }
7451 else
7452 msg((char *)NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007453 }
7454 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007455 emsg(_("E187: Unknown"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007456}
7457
7458/*
7459 * ":=".
7460 */
7461 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007462ex_equal(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007463{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007464 smsg("%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007465 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466}
7467
7468 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007469ex_sleep(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007470{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007471 int n;
7472 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007473
7474 if (cursor_valid())
7475 {
7476 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7477 if (n >= 0)
Bram Moolenaar53f81742017-09-22 14:35:51 +02007478 windgoto((int)n, curwin->w_wincol + curwin->w_wcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007480
7481 len = eap->line2;
7482 switch (*eap->arg)
7483 {
7484 case 'm': break;
7485 case NUL: len *= 1000L; break;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007486 default: semsg(_(e_invarg2), eap->arg); return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007487 }
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01007488
7489 // Hide the cursor if invoked with !
7490 do_sleep(len, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007491}
7492
7493/*
7494 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01007495 * Hide the cursor if "hide_cursor" is TRUE.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007496 */
7497 void
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01007498do_sleep(long msec, int hide_cursor)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499{
Bram Moolenaar52953192019-08-16 10:27:13 +02007500 long done = 0;
Bram Moolenaar975b5272016-03-15 23:10:59 +01007501 long wait_now;
Bram Moolenaar52953192019-08-16 10:27:13 +02007502# ifdef ELAPSED_FUNC
7503 elapsed_T start_tv;
7504
7505 // Remember at what time we started, so that we know how much longer we
7506 // should wait after waiting for a bit.
7507 ELAPSED_INIT(start_tv);
7508# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007509
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01007510 if (hide_cursor)
Bram Moolenaar09f067f2021-04-11 13:29:18 +02007511 cursor_sleep();
Bram Moolenaare2edc2e2021-01-16 20:21:23 +01007512 else
7513 cursor_on();
7514
Bram Moolenaarf45d7472018-09-30 18:22:26 +02007515 out_flush_cursor(FALSE, FALSE);
Bram Moolenaar52953192019-08-16 10:27:13 +02007516 while (!got_int && done < msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007517 {
Bram Moolenaar975b5272016-03-15 23:10:59 +01007518 wait_now = msec - done > 1000L ? 1000L : msec - done;
7519#ifdef FEAT_TIMERS
7520 {
7521 long due_time = check_due_timer();
7522
7523 if (due_time > 0 && due_time < wait_now)
7524 wait_now = due_time;
7525 }
7526#endif
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02007527#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar28e67e02019-08-15 23:05:49 +02007528 if (has_any_channel() && wait_now > 20L)
7529 wait_now = 20L;
7530#endif
7531#ifdef FEAT_SOUND
7532 if (has_any_sound_callback() && wait_now > 20L)
7533 wait_now = 20L;
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02007534#endif
Bram Moolenaar975b5272016-03-15 23:10:59 +01007535 ui_delay(wait_now, TRUE);
Bram Moolenaar52953192019-08-16 10:27:13 +02007536
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02007537#ifdef FEAT_JOB_CHANNEL
7538 if (has_any_channel())
7539 ui_breakcheck_force(TRUE);
7540 else
7541#endif
7542 ui_breakcheck();
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007543#ifdef MESSAGE_QUEUE
Bram Moolenaar52953192019-08-16 10:27:13 +02007544 // Process the netbeans and clientserver messages that may have been
7545 // received in the call to ui_breakcheck() when the GUI is in use. This
7546 // may occur when running a test case.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007547 parse_queued_messages();
Bram Moolenaare3cc6d42011-10-20 21:58:34 +02007548#endif
Bram Moolenaar52953192019-08-16 10:27:13 +02007549
7550# ifdef ELAPSED_FUNC
7551 // actual time passed
7552 done = ELAPSED_FUNC(start_tv);
7553# else
7554 // guestimate time passed (will actually be more)
7555 done += wait_now;
7556# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007557 }
Bram Moolenaar1ebff3d2018-07-07 16:18:13 +02007558
7559 // If CTRL-C was typed to interrupt the sleep, drop the CTRL-C from the
7560 // input buffer, otherwise a following call to input() fails.
7561 if (got_int)
7562 (void)vpeekc();
Bram Moolenaar09f067f2021-04-11 13:29:18 +02007563
7564 if (hide_cursor)
7565 cursor_unsleep();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007566}
7567
Bram Moolenaar071d4272004-06-13 20:20:40 +00007568/*
7569 * ":winsize" command (obsolete).
7570 */
7571 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007572ex_winsize(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007573{
7574 int w, h;
7575 char_u *arg = eap->arg;
7576 char_u *p;
7577
Bram Moolenaarf5a51162021-02-06 12:58:18 +01007578 if (!isdigit(*arg))
7579 {
7580 semsg(_(e_invarg2), arg);
7581 return;
7582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007583 w = getdigits(&arg);
7584 arg = skipwhite(arg);
7585 p = arg;
7586 h = getdigits(&arg);
7587 if (*p != NUL && *arg == NUL)
7588 set_shellsize(w, h, TRUE);
7589 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007590 emsg(_("E465: :winsize requires two number arguments"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007591}
7592
Bram Moolenaar071d4272004-06-13 20:20:40 +00007593 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007594ex_wincmd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007595{
7596 int xchar = NUL;
7597 char_u *p;
7598
7599 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
7600 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007601 // CTRL-W g and CTRL-W CTRL-G have an extra command character
Bram Moolenaar071d4272004-06-13 20:20:40 +00007602 if (eap->arg[1] == NUL)
7603 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007604 emsg(_(e_invarg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007605 return;
7606 }
7607 xchar = eap->arg[1];
7608 p = eap->arg + 2;
7609 }
7610 else
7611 p = eap->arg + 1;
7612
Bram Moolenaar63b91732021-08-05 20:40:03 +02007613 set_nextcmd(eap, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007614 p = skipwhite(p);
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +02007615 if (*p != NUL && *p != (
7616#ifdef FEAT_EVAL
7617 in_vim9script() ? '#' :
7618#endif
7619 '"')
7620 && eap->nextcmd == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007621 emsg(_(e_invarg));
Bram Moolenaar12bde492011-06-13 01:19:56 +02007622 else if (!eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007623 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007624 // Pass flags on for ":vertical wincmd ]".
Bram Moolenaare1004402020-10-24 20:49:43 +02007625 postponed_split_flags = cmdmod.cmod_split;
7626 postponed_split_tab = cmdmod.cmod_tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007627 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
7628 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00007629 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007630 }
7631}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007632
Bram Moolenaar843ee412004-06-30 16:16:41 +00007633#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007634/*
7635 * ":winpos".
7636 */
7637 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007638ex_winpos(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007639{
7640 int x, y;
7641 char_u *arg = eap->arg;
7642 char_u *p;
7643
7644 if (*arg == NUL)
7645 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00007646# if defined(FEAT_GUI) || defined(MSWIN)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007647# ifdef VIMDLL
7648 if (gui.in_use ? gui_mch_get_winpos(&x, &y) != FAIL :
7649 mch_get_winpos(&x, &y) != FAIL)
7650# elif defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007651 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00007652# else
7653 if (mch_get_winpos(&x, &y) != FAIL)
7654# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007655 {
7656 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
Bram Moolenaar32526b32019-01-19 17:43:09 +01007657 msg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007658 }
7659 else
7660# endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007661 emsg(_("E188: Obtaining window position not implemented for this platform"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007662 }
7663 else
7664 {
7665 x = getdigits(&arg);
7666 arg = skipwhite(arg);
7667 p = arg;
7668 y = getdigits(&arg);
7669 if (*p == NUL || *arg != NUL)
7670 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007671 emsg(_("E466: :winpos requires two number arguments"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007672 return;
7673 }
7674# ifdef FEAT_GUI
7675 if (gui.in_use)
7676 gui_mch_set_winpos(x, y);
7677 else if (gui.starting)
7678 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007679 // Remember the coordinates for when the window is opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007680 gui_win_x = x;
7681 gui_win_y = y;
7682 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007683# if defined(HAVE_TGETENT) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007684 else
7685# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007686# endif
7687# if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
Bram Moolenaar843ee412004-06-30 16:16:41 +00007688 mch_set_winpos(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007689# endif
7690# ifdef HAVE_TGETENT
7691 if (*T_CWP)
7692 term_set_winpos(x, y);
7693# endif
7694 }
7695}
7696#endif
7697
7698/*
7699 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
7700 */
7701 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007702ex_operators(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007703{
7704 oparg_T oa;
7705
7706 clear_oparg(&oa);
7707 oa.regname = eap->regname;
7708 oa.start.lnum = eap->line1;
7709 oa.end.lnum = eap->line2;
7710 oa.line_count = eap->line2 - eap->line1 + 1;
7711 oa.motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007712 virtual_op = FALSE;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007713 if (eap->cmdidx != CMD_yank) // position cursor for undo
Bram Moolenaar071d4272004-06-13 20:20:40 +00007714 {
7715 setpcmark();
7716 curwin->w_cursor.lnum = eap->line1;
7717 beginline(BL_SOL | BL_FIX);
7718 }
7719
Bram Moolenaard07c6e12013-11-21 14:21:40 +01007720 if (VIsual_active)
7721 end_visual_mode();
Bram Moolenaard07c6e12013-11-21 14:21:40 +01007722
Bram Moolenaar071d4272004-06-13 20:20:40 +00007723 switch (eap->cmdidx)
7724 {
7725 case CMD_delete:
7726 oa.op_type = OP_DELETE;
7727 op_delete(&oa);
7728 break;
7729
7730 case CMD_yank:
7731 oa.op_type = OP_YANK;
7732 (void)op_yank(&oa, FALSE, TRUE);
7733 break;
7734
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007735 default: // CMD_rshift or CMD_lshift
Bram Moolenaar6e707362013-06-14 19:15:58 +02007736 if (
Bram Moolenaar071d4272004-06-13 20:20:40 +00007737#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e707362013-06-14 19:15:58 +02007738 (eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
7739#else
7740 eap->cmdidx == CMD_rshift
Bram Moolenaar071d4272004-06-13 20:20:40 +00007741#endif
Bram Moolenaar6e707362013-06-14 19:15:58 +02007742 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007743 oa.op_type = OP_RSHIFT;
7744 else
7745 oa.op_type = OP_LSHIFT;
7746 op_shift(&oa, FALSE, eap->amount);
7747 break;
7748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007749 virtual_op = MAYBE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007750 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007751}
7752
7753/*
7754 * ":put".
7755 */
7756 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007757ex_put(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007758{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007759 // ":0put" works like ":1put!".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007760 if (eap->line2 == 0)
7761 {
7762 eap->line2 = 1;
7763 eap->forceit = TRUE;
7764 }
7765 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaarc3516f72020-09-08 22:45:35 +02007766 do_put(eap->regname, NULL, eap->forceit ? BACKWARD : FORWARD, 1L,
Bram Moolenaardf177f62005-02-22 08:39:57 +00007767 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007768}
7769
7770/*
7771 * Handle ":copy" and ":move".
7772 */
7773 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007774ex_copymove(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007775{
7776 long n;
7777
Bram Moolenaar491799b2020-08-01 19:23:43 +02007778#ifdef FEAT_EVAL
Bram Moolenaarf5a48012020-08-01 17:00:03 +02007779 if (not_in_vim9(eap) == FAIL)
7780 return;
Bram Moolenaar491799b2020-08-01 19:23:43 +02007781#endif
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02007782 n = get_address(eap, &eap->arg, eap->addr_type, FALSE, FALSE, FALSE, 1);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007783 if (eap->arg == NULL) // error detected
Bram Moolenaar071d4272004-06-13 20:20:40 +00007784 {
7785 eap->nextcmd = NULL;
7786 return;
7787 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00007788 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007789
7790 /*
7791 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
7792 */
7793 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
7794 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02007795 emsg(_(e_invalid_range));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007796 return;
7797 }
7798
7799 if (eap->cmdidx == CMD_move)
7800 {
7801 if (do_move(eap->line1, eap->line2, n) == FAIL)
7802 return;
7803 }
7804 else
7805 ex_copy(eap->line1, eap->line2, n);
7806 u_clearline();
7807 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007808 ex_may_print(eap);
7809}
7810
7811/*
7812 * Print the current line if flags were given to the Ex command.
7813 */
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02007814 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007815ex_may_print(exarg_T *eap)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007816{
7817 if (eap->flags != 0)
7818 {
7819 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
7820 (eap->flags & EXFLAG_LIST));
7821 ex_no_reprint = TRUE;
7822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007823}
7824
7825/*
7826 * ":smagic" and ":snomagic".
7827 */
7828 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007829ex_submagic(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007830{
Bram Moolenaard93a7fc2021-01-04 12:42:13 +01007831 optmagic_T saved = magic_overruled;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007832
Bram Moolenaard93a7fc2021-01-04 12:42:13 +01007833 magic_overruled = eap->cmdidx == CMD_smagic
7834 ? OPTION_MAGIC_ON : OPTION_MAGIC_OFF;
Bram Moolenaar66e00142020-08-12 21:58:12 +02007835 ex_substitute(eap);
Bram Moolenaarf4e20992020-12-21 19:59:08 +01007836 magic_overruled = saved;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007837}
7838
7839/*
7840 * ":join".
7841 */
7842 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007843ex_join(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007844{
7845 curwin->w_cursor.lnum = eap->line1;
7846 if (eap->line1 == eap->line2)
7847 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007848 if (eap->addr_count >= 2) // :2,2join does nothing
Bram Moolenaar071d4272004-06-13 20:20:40 +00007849 return;
7850 if (eap->line2 == curbuf->b_ml.ml_line_count)
7851 {
7852 beep_flush();
7853 return;
7854 }
7855 ++eap->line2;
7856 }
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02007857 (void)do_join(eap->line2 - eap->line1 + 1, !eap->forceit, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007858 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007859 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007860}
7861
7862/*
7863 * ":[addr]@r" or ":[addr]*r": execute register
7864 */
7865 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007866ex_at(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007867{
7868 int c;
Bram Moolenaar60462872009-11-03 11:40:19 +00007869 int prev_len = typebuf.tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007870
7871 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaar4930a762016-09-11 14:39:53 +02007872 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007873
7874#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007875 dont_scroll = TRUE; // disallow scrolling here
Bram Moolenaar071d4272004-06-13 20:20:40 +00007876#endif
7877
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007878 // get the register name. No name means to use the previous one
Bram Moolenaar071d4272004-06-13 20:20:40 +00007879 c = *eap->arg;
7880 if (c == NUL || (c == '*' && *eap->cmd == '*'))
7881 c = '@';
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007882 // Put the register in the typeahead buffer with the "silent" flag.
Bram Moolenaard333d1e2006-11-07 17:43:47 +00007883 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
7884 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007885 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007886 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00007887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007888 else
7889 {
7890 int save_efr = exec_from_reg;
7891
7892 exec_from_reg = TRUE;
7893
7894 /*
7895 * Execute from the typeahead buffer.
Bram Moolenaar60462872009-11-03 11:40:19 +00007896 * Continue until the stuff buffer is empty and all added characters
7897 * have been consumed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007898 */
Bram Moolenaar60462872009-11-03 11:40:19 +00007899 while (!stuff_empty() || typebuf.tb_len > prev_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007900 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
7901
7902 exec_from_reg = save_efr;
7903 }
7904}
7905
7906/*
7907 * ":!".
7908 */
7909 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007910ex_bang(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007911{
7912 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
7913}
7914
7915/*
7916 * ":undo".
7917 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007918 static void
Bram Moolenaarf1d25012016-03-03 12:22:53 +01007919ex_undo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007920{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01007921 if (eap->addr_count == 1) // :undo 123
Bram Moolenaar730cde92010-06-27 05:18:54 +02007922 undo_time(eap->line2, FALSE, FALSE, TRUE);
Bram Moolenaard3667a22006-03-16 21:35:52 +00007923 else
7924 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007925}
7926
Bram Moolenaar55debbe2010-05-23 23:34:36 +02007927#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar6df6f472010-07-18 18:04:50 +02007928 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007929ex_wundo(exarg_T *eap)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02007930{
7931 char_u hash[UNDO_HASH_SIZE];
7932
7933 u_compute_hash(hash);
7934 u_write_undo(eap->arg, eap->forceit, curbuf, hash);
7935}
7936
Bram Moolenaar6df6f472010-07-18 18:04:50 +02007937 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007938ex_rundo(exarg_T *eap)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02007939{
7940 char_u hash[UNDO_HASH_SIZE];
7941
7942 u_compute_hash(hash);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02007943 u_read_undo(eap->arg, hash, NULL);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02007944}
7945#endif
7946
Bram Moolenaar071d4272004-06-13 20:20:40 +00007947/*
7948 * ":redo".
7949 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007950 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007951ex_redo(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007952{
7953 u_redo(1);
7954}
7955
7956/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007957 * ":earlier" and ":later".
7958 */
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007959 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007960ex_later(exarg_T *eap)
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007961{
7962 long count = 0;
7963 int sec = FALSE;
Bram Moolenaar730cde92010-06-27 05:18:54 +02007964 int file = FALSE;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007965 char_u *p = eap->arg;
7966
7967 if (*p == NUL)
7968 count = 1;
7969 else if (isdigit(*p))
7970 {
7971 count = getdigits(&p);
7972 switch (*p)
7973 {
7974 case 's': ++p; sec = TRUE; break;
7975 case 'm': ++p; sec = TRUE; count *= 60; break;
7976 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
Bram Moolenaar730cde92010-06-27 05:18:54 +02007977 case 'd': ++p; sec = TRUE; count *= 24 * 60 * 60; break;
7978 case 'f': ++p; file = TRUE; break;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007979 }
7980 }
7981
7982 if (*p != NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007983 semsg(_(e_invarg2), eap->arg);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007984 else
Bram Moolenaar730cde92010-06-27 05:18:54 +02007985 undo_time(eap->cmdidx == CMD_earlier ? -count : count,
7986 sec, file, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007987}
7988
7989/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007990 * ":redir": start/stop redirection.
7991 */
7992 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007993ex_redir(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007994{
7995 char *mode;
7996 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00007997 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007998
Bram Moolenaarba768492016-07-08 15:32:54 +02007999#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02008000 if (redir_execute)
Bram Moolenaar245a7cb2016-07-08 10:53:12 +02008001 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008002 emsg(_("E930: Cannot use :redir inside execute()"));
Bram Moolenaar245a7cb2016-07-08 10:53:12 +02008003 return;
8004 }
Bram Moolenaarba768492016-07-08 15:32:54 +02008005#endif
Bram Moolenaar245a7cb2016-07-08 10:53:12 +02008006
Bram Moolenaar071d4272004-06-13 20:20:40 +00008007 if (STRICMP(eap->arg, "END") == 0)
8008 close_redir();
8009 else
8010 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008011 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008012 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008013 ++arg;
8014 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008015 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008016 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008017 mode = "a";
8018 }
8019 else
8020 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008021 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008022
8023 close_redir();
8024
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008025 // Expand environment variables and "~/".
Bram Moolenaarca472992005-01-21 11:46:23 +00008026 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008027 if (fname == NULL)
8028 return;
8029#ifdef FEAT_BROWSE
Bram Moolenaare1004402020-10-24 20:49:43 +02008030 if (cmdmod.cmod_flags & CMOD_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008031 {
8032 char_u *browseFile;
8033
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008034 browseFile = do_browse(BROWSE_SAVE,
8035 (char_u *)_("Save Redirection"),
Bram Moolenaarc36651b2018-04-29 12:22:56 +02008036 fname, NULL, NULL,
8037 (char_u *)_(BROWSE_FILTER_ALL_FILES), curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008038 if (browseFile == NULL)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008039 return; // operation cancelled
Bram Moolenaar071d4272004-06-13 20:20:40 +00008040 vim_free(fname);
8041 fname = browseFile;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008042 eap->forceit = TRUE; // since dialog already asked
Bram Moolenaar071d4272004-06-13 20:20:40 +00008043 }
8044#endif
8045
8046 redir_fd = open_exfile(fname, eap->forceit, mode);
8047 vim_free(fname);
8048 }
8049#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008050 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008051 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008052 // redirect to a register a-z (resp. A-Z for appending)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008053 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008054 ++arg;
8055 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008056# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008057 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008058 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008059# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008060 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008061 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008062 redir_reg = *arg++;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008063 if (*arg == '>' && arg[1] == '>') // append
Bram Moolenaard9d30582005-05-18 22:10:28 +00008064 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008065 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008066 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008067 // Can use both "@a" and "@a>".
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008068 if (*arg == '>')
8069 arg++;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008070 // Make register empty when not using @A-@Z and the
8071 // command is valid.
Bram Moolenaarc188b882007-10-19 14:20:54 +00008072 if (*arg == NUL && !isupper(redir_reg))
8073 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008074 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008075 }
8076 if (*arg != NUL)
8077 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008078 redir_reg = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008079 semsg(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008080 }
8081 }
8082 else if (*arg == '=' && arg[1] == '>')
8083 {
8084 int append;
8085
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008086 // redirect to a variable
Bram Moolenaardf177f62005-02-22 08:39:57 +00008087 close_redir();
8088 arg += 2;
8089
8090 if (*arg == '>')
8091 {
8092 ++arg;
8093 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008094 }
8095 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008096 append = FALSE;
8097
8098 if (var_redir_start(skipwhite(arg), append) == OK)
8099 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008100 }
8101#endif
8102
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008103 // TODO: redirect to a buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00008104
Bram Moolenaar071d4272004-06-13 20:20:40 +00008105 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008106 semsg(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008107 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008108
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008109 // Make sure redirection is not off. Can happen for cmdline completion
8110 // that indirectly invokes a command to catch its output.
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008111 if (redir_fd != NULL
8112#ifdef FEAT_EVAL
8113 || redir_reg || redir_vname
8114#endif
8115 )
8116 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008117}
8118
8119/*
8120 * ":redraw": force redraw
8121 */
Bram Moolenaarfb1f6262016-01-31 20:24:32 +01008122 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008123ex_redraw(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008124{
8125 int r = RedrawingDisabled;
8126 int p = p_lz;
8127
8128 RedrawingDisabled = 0;
8129 p_lz = FALSE;
Bram Moolenaarabc39ab2017-03-01 18:04:05 +01008130 validate_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008131 update_topline();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008132 update_screen(eap->forceit ? CLEAR : VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008133#ifdef FEAT_TITLE
8134 if (need_maketitle)
8135 maketitle();
8136#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02008137#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
8138# ifdef VIMDLL
8139 if (!gui.in_use)
8140# endif
8141 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01008142#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008143 RedrawingDisabled = r;
8144 p_lz = p;
8145
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008146 // Reset msg_didout, so that a message that's there is overwritten.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008147 msg_didout = FALSE;
8148 msg_col = 0;
8149
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008150 // No need to wait after an intentional redraw.
Bram Moolenaar56667a52013-07-17 11:54:28 +02008151 need_wait_return = FALSE;
8152
Bram Moolenaar071d4272004-06-13 20:20:40 +00008153 out_flush();
8154}
8155
8156/*
8157 * ":redrawstatus": force redraw of status line(s)
8158 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008159 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008160ex_redrawstatus(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008161{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008162 int r = RedrawingDisabled;
8163 int p = p_lz;
8164
8165 RedrawingDisabled = 0;
8166 p_lz = FALSE;
8167 if (eap->forceit)
8168 status_redraw_all();
8169 else
8170 status_redraw_curbuf();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01008171 update_screen(VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008172 RedrawingDisabled = r;
8173 p_lz = p;
8174 out_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008175}
8176
Bram Moolenaare12bab32019-01-08 22:02:56 +01008177/*
8178 * ":redrawtabline": force redraw of the tabline
8179 */
8180 static void
8181ex_redrawtabline(exarg_T *eap UNUSED)
8182{
8183 int r = RedrawingDisabled;
8184 int p = p_lz;
8185
8186 RedrawingDisabled = 0;
8187 p_lz = FALSE;
8188
8189 draw_tabline();
8190
8191 RedrawingDisabled = r;
8192 p_lz = p;
8193 out_flush();
8194}
8195
Bram Moolenaar071d4272004-06-13 20:20:40 +00008196 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008197close_redir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008198{
8199 if (redir_fd != NULL)
8200 {
8201 fclose(redir_fd);
8202 redir_fd = NULL;
8203 }
8204#ifdef FEAT_EVAL
8205 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008206 if (redir_vname)
8207 {
8208 var_redir_stop();
8209 redir_vname = 0;
8210 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008211#endif
8212}
8213
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02008214#if (defined(FEAT_SESSION) || defined(FEAT_EVAL)) || defined(PROTO)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008215 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02008216vim_mkdir_emsg(char_u *name, int prot UNUSED)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008217{
8218 if (vim_mkdir(name, prot) != 0)
8219 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008220 semsg(_("E739: Cannot create directory: %s"), name);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008221 return FAIL;
8222 }
8223 return OK;
8224}
8225#endif
8226
Bram Moolenaar071d4272004-06-13 20:20:40 +00008227/*
8228 * Open a file for writing for an Ex command, with some checks.
8229 * Return file descriptor, or NULL on failure.
8230 */
8231 FILE *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008232open_exfile(
8233 char_u *fname,
8234 int forceit,
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008235 char *mode) // "w" for create new file or "a" for append
Bram Moolenaar071d4272004-06-13 20:20:40 +00008236{
8237 FILE *fd;
8238
8239#ifdef UNIX
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008240 // with Unix it is possible to open a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00008241 if (mch_isdir(fname))
8242 {
Bram Moolenaar108010a2021-06-27 22:03:33 +02008243 semsg(_(e_src_is_directory), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008244 return NULL;
8245 }
8246#endif
8247 if (!forceit && *mode != 'a' && vim_fexists(fname))
8248 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008249 semsg(_("E189: \"%s\" exists (add ! to override)"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008250 return NULL;
8251 }
8252
8253 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008254 semsg(_("E190: Cannot open \"%s\" for writing"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008255
8256 return fd;
8257}
8258
8259/*
8260 * ":mark" and ":k".
8261 */
8262 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008263ex_mark(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008264{
8265 pos_T pos;
8266
Bram Moolenaar10b94212021-02-19 21:42:57 +01008267#ifdef FEAT_EVAL
8268 if (not_in_vim9(eap) == FAIL)
8269 return;
8270#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008271 if (*eap->arg == NUL) // No argument?
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008272 emsg(_(e_argreq));
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008273 else if (eap->arg[1] != NUL) // more than one character?
Bram Moolenaar2d06bfd2020-07-23 17:16:18 +02008274 semsg(_(e_trailing_arg), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008275 else
8276 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008277 pos = curwin->w_cursor; // save curwin->w_cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00008278 curwin->w_cursor.lnum = eap->line2;
8279 beginline(BL_WHITE | BL_FIX);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008280 if (setmark(*eap->arg) == FAIL) // set mark
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008281 emsg(_("E191: Argument must be a letter or forward/backward quote"));
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008282 curwin->w_cursor = pos; // restore curwin->w_cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00008283 }
8284}
8285
8286/*
8287 * Update w_topline, w_leftcol and the cursor position.
8288 */
8289 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008290update_topline_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008291{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008292 check_cursor(); // put cursor on valid line
Bram Moolenaar071d4272004-06-13 20:20:40 +00008293 update_topline();
8294 if (!curwin->w_p_wrap)
8295 validate_cursor();
8296 update_curswant();
8297}
8298
Bram Moolenaar071d4272004-06-13 20:20:40 +00008299/*
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008300 * Save the current State and go to Normal mode.
8301 * Return TRUE if the typeahead could be saved.
8302 */
8303 int
8304save_current_state(save_state_T *sst)
8305{
8306 sst->save_msg_scroll = msg_scroll;
8307 sst->save_restart_edit = restart_edit;
8308 sst->save_msg_didout = msg_didout;
8309 sst->save_State = State;
8310 sst->save_insertmode = p_im;
8311 sst->save_finish_op = finish_op;
8312 sst->save_opcount = opcount;
Bram Moolenaarcce713d2019-03-04 11:40:12 +01008313 sst->save_reg_executing = reg_executing;
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008314
Bram Moolenaar4324d872020-12-01 20:12:24 +01008315 msg_scroll = FALSE; // no msg scrolling in Normal mode
8316 restart_edit = 0; // don't go to Insert mode
8317 p_im = FALSE; // don't use 'insertmode'
Bram Moolenaar9b8d6222020-12-28 18:26:00 +01008318
Bram Moolenaara452b802020-12-01 21:47:59 +01008319 sst->save_script_version = current_sctx.sc_version;
Bram Moolenaar4324d872020-12-01 20:12:24 +01008320 current_sctx.sc_version = 1; // not in Vim9 script
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008321
8322 /*
8323 * Save the current typeahead. This is required to allow using ":normal"
8324 * from an event handler and makes sure we don't hang when the argument
8325 * ends with half a command.
8326 */
8327 save_typeahead(&sst->tabuf);
8328 return sst->tabuf.typebuf_valid;
8329}
8330
8331 void
8332restore_current_state(save_state_T *sst)
8333{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008334 // Restore the previous typeahead.
Bram Moolenaarc41badb2021-06-07 22:04:52 +02008335 restore_typeahead(&sst->tabuf, FALSE);
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008336
8337 msg_scroll = sst->save_msg_scroll;
8338 restart_edit = sst->save_restart_edit;
8339 p_im = sst->save_insertmode;
8340 finish_op = sst->save_finish_op;
8341 opcount = sst->save_opcount;
Bram Moolenaarcce713d2019-03-04 11:40:12 +01008342 reg_executing = sst->save_reg_executing;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008343 msg_didout |= sst->save_msg_didout; // don't reset msg_didout now
Bram Moolenaar4324d872020-12-01 20:12:24 +01008344 current_sctx.sc_version = sst->save_script_version;
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008345
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008346 // Restore the state (needed when called from a function executed for
8347 // 'indentexpr'). Update the mouse and cursor, they may have changed.
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008348 State = sst->save_State;
8349#ifdef CURSOR_SHAPE
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008350 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008351#endif
8352}
8353
8354/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008355 * ":normal[!] {commands}": Execute normal mode commands.
8356 */
Bram Moolenaar20fb9f32016-01-30 23:20:33 +01008357 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008358ex_normal(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008359{
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008360 save_state_T save_state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008361 char_u *arg = NULL;
8362 int l;
8363 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008364
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008365 if (ex_normal_lock > 0)
8366 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008367 emsg(_(e_secure));
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008368 return;
8369 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008370 if (ex_normal_busy >= p_mmd)
8371 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008372 emsg(_("E192: Recursive use of :normal too deep"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008373 return;
8374 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008375
Bram Moolenaar071d4272004-06-13 20:20:40 +00008376 /*
8377 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8378 * this for the K_SPECIAL leading byte, otherwise special keys will not
8379 * work.
8380 */
8381 if (has_mbyte)
8382 {
8383 int len = 0;
8384
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008385 // Count the number of characters to be escaped.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008386 for (p = eap->arg; *p != NUL; ++p)
8387 {
Bram Moolenaar13505972019-01-24 15:04:48 +01008388#ifdef FEAT_GUI
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008389 if (*p == CSI) // leadbyte CSI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008390 len += 2;
Bram Moolenaar13505972019-01-24 15:04:48 +01008391#endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008392 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008393 if (*++p == K_SPECIAL // trailbyte K_SPECIAL or CSI
Bram Moolenaar13505972019-01-24 15:04:48 +01008394#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008395 || *p == CSI
Bram Moolenaar13505972019-01-24 15:04:48 +01008396#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008397 )
8398 len += 2;
8399 }
8400 if (len > 0)
8401 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02008402 arg = alloc(STRLEN(eap->arg) + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008403 if (arg != NULL)
8404 {
8405 len = 0;
8406 for (p = eap->arg; *p != NUL; ++p)
8407 {
8408 arg[len++] = *p;
Bram Moolenaar13505972019-01-24 15:04:48 +01008409#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008410 if (*p == CSI)
8411 {
8412 arg[len++] = KS_EXTRA;
8413 arg[len++] = (int)KE_CSI;
8414 }
Bram Moolenaar13505972019-01-24 15:04:48 +01008415#endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008416 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008417 {
8418 arg[len++] = *++p;
8419 if (*p == K_SPECIAL)
8420 {
8421 arg[len++] = KS_SPECIAL;
8422 arg[len++] = KE_FILLER;
8423 }
Bram Moolenaar13505972019-01-24 15:04:48 +01008424#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008425 else if (*p == CSI)
8426 {
8427 arg[len++] = KS_EXTRA;
8428 arg[len++] = (int)KE_CSI;
8429 }
Bram Moolenaar13505972019-01-24 15:04:48 +01008430#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008431 }
8432 arg[len] = NUL;
8433 }
8434 }
8435 }
8436 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008437
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008438 ++ex_normal_busy;
8439 if (save_current_state(&save_state))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008440 {
8441 /*
8442 * Repeat the :normal command for each line in the range. When no
8443 * range given, execute it just once, without positioning the cursor
8444 * first.
8445 */
8446 do
8447 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008448 if (eap->addr_count != 0)
8449 {
8450 curwin->w_cursor.lnum = eap->line1++;
8451 curwin->w_cursor.col = 0;
Bram Moolenaard5d37532017-03-27 23:02:07 +02008452 check_cursor_moved(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008453 }
8454
Bram Moolenaar13505972019-01-24 15:04:48 +01008455 exec_normal_cmd(arg != NULL
8456 ? arg
8457 : eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008458 }
8459 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
8460 }
8461
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008462 // Might not return to the main loop when in an event handler.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008463 update_topline_cursor();
8464
Bram Moolenaara21a6a92017-09-23 16:33:50 +02008465 restore_current_state(&save_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008466 --ex_normal_busy;
Bram Moolenaareda73602014-11-05 09:53:23 +01008467 setmouse();
Bram Moolenaareda73602014-11-05 09:53:23 +01008468#ifdef CURSOR_SHAPE
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008469 ui_cursor_shape(); // may show different cursor shape
Bram Moolenaareda73602014-11-05 09:53:23 +01008470#endif
8471
Bram Moolenaar071d4272004-06-13 20:20:40 +00008472 vim_free(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008473}
8474
8475/*
Bram Moolenaar64969662005-12-14 21:59:55 +00008476 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008477 */
8478 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008479ex_startinsert(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008480{
Bram Moolenaarfd371682005-01-14 21:42:54 +00008481 if (eap->forceit)
8482 {
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02008483 // cursor line can be zero on startup
Bram Moolenaar09ca9322017-09-26 17:40:45 +02008484 if (!curwin->w_cursor.lnum)
8485 curwin->w_cursor.lnum = 1;
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02008486 set_cursor_for_append_to_line();
Bram Moolenaarfd371682005-01-14 21:42:54 +00008487 }
Bram Moolenaareb58a242020-04-19 18:13:19 +02008488#ifdef FEAT_TERMINAL
8489 // Ignore this when running in an active terminal.
8490 if (term_job_running(curbuf->b_term))
8491 return;
8492#endif
Bram Moolenaarfd371682005-01-14 21:42:54 +00008493
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02008494 // Ignore the command when already in Insert mode. Inserting an
8495 // expression register that invokes a function can do this.
Bram Moolenaara40c5002005-01-09 21:16:21 +00008496 if (State & INSERT)
8497 return;
8498
Bram Moolenaar64969662005-12-14 21:59:55 +00008499 if (eap->cmdidx == CMD_startinsert)
8500 restart_edit = 'a';
8501 else if (eap->cmdidx == CMD_startreplace)
8502 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00008503 else
Bram Moolenaar64969662005-12-14 21:59:55 +00008504 restart_edit = 'V';
8505
8506 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008507 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00008508 if (eap->cmdidx == CMD_startinsert)
8509 restart_edit = 'i';
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02008510 curwin->w_curswant = 0; // avoid MAXCOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008511 }
Bram Moolenaar957cf672020-11-12 14:21:06 +01008512
8513 if (VIsual_active)
8514 showmode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008515}
8516
8517/*
8518 * ":stopinsert"
8519 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008520 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008521ex_stopinsert(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008522{
8523 restart_edit = 0;
8524 stop_insert_mode = TRUE;
Bram Moolenaarfd773e92016-04-02 19:39:16 +02008525 clearmode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008526}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008527
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008528/*
8529 * Execute normal mode command "cmd".
8530 * "remap" can be REMAP_NONE or REMAP_YES.
8531 */
8532 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008533exec_normal_cmd(char_u *cmd, int remap, int silent)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008534{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008535 // Stuff the argument into the typeahead buffer.
Bram Moolenaar25281632016-01-21 23:32:32 +01008536 ins_typebuf(cmd, remap, 0, TRUE, silent);
Bram Moolenaar586c70c2018-10-02 16:23:58 +02008537 exec_normal(FALSE, FALSE, FALSE);
Bram Moolenaar25281632016-01-21 23:32:32 +01008538}
Bram Moolenaar25281632016-01-21 23:32:32 +01008539
Bram Moolenaar25281632016-01-21 23:32:32 +01008540/*
8541 * Execute normal_cmd() until there is no typeahead left.
Bram Moolenaar586c70c2018-10-02 16:23:58 +02008542 * When "use_vpeekc" is TRUE use vpeekc() to check for available chars.
Bram Moolenaar25281632016-01-21 23:32:32 +01008543 */
8544 void
Bram Moolenaar586c70c2018-10-02 16:23:58 +02008545exec_normal(int was_typed, int use_vpeekc, int may_use_terminal_loop UNUSED)
Bram Moolenaar25281632016-01-21 23:32:32 +01008546{
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008547 oparg_T oa;
Bram Moolenaar905dd902019-04-07 14:21:47 +02008548 int c;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008549
Bram Moolenaar905dd902019-04-07 14:21:47 +02008550 // When calling vpeekc() from feedkeys() it will return Ctrl_C when there
8551 // is nothing to get, so also check for Ctrl_C.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008552 clear_oparg(&oa);
8553 finish_op = FALSE;
Bram Moolenaar586c70c2018-10-02 16:23:58 +02008554 while ((!stuff_empty()
8555 || ((was_typed || !typebuf_typed()) && typebuf.tb_len > 0)
Bram Moolenaar905dd902019-04-07 14:21:47 +02008556 || (use_vpeekc && (c = vpeekc()) != NUL && c != Ctrl_C))
Bram Moolenaar586c70c2018-10-02 16:23:58 +02008557 && !got_int)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008558 {
8559 update_topline_cursor();
Bram Moolenaarb2ac14c2018-05-01 18:47:59 +02008560#ifdef FEAT_TERMINAL
Bram Moolenaar655a82a2018-05-08 22:01:07 +02008561 if (may_use_terminal_loop && term_use_loop()
Bram Moolenaarb2ac14c2018-05-01 18:47:59 +02008562 && oa.op_type == OP_NOP && oa.regname == NUL
8563 && !VIsual_active)
8564 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008565 // If terminal_loop() returns OK we got a key that is handled
8566 // in Normal model. With FAIL we first need to position the
8567 // cursor and the screen needs to be redrawn.
Bram Moolenaarb2ac14c2018-05-01 18:47:59 +02008568 if (terminal_loop(TRUE) == OK)
8569 normal_cmd(&oa, TRUE);
8570 }
8571 else
8572#endif
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008573 // execute a Normal mode cmd
Bram Moolenaarb2ac14c2018-05-01 18:47:59 +02008574 normal_cmd(&oa, TRUE);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008575 }
8576}
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008577
Bram Moolenaar071d4272004-06-13 20:20:40 +00008578#ifdef FEAT_FIND_ID
8579 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008580ex_checkpath(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008581{
8582 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
8583 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
8584 (linenr_T)1, (linenr_T)MAXLNUM);
8585}
8586
Bram Moolenaar4033c552017-09-16 20:54:51 +02008587#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008588/*
8589 * ":psearch"
8590 */
8591 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008592ex_psearch(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008593{
8594 g_do_tagpreview = p_pvh;
8595 ex_findpat(eap);
8596 g_do_tagpreview = 0;
8597}
8598#endif
8599
8600 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008601ex_findpat(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008602{
8603 int whole = TRUE;
8604 long n;
8605 char_u *p;
8606 int action;
8607
8608 switch (cmdnames[eap->cmdidx].cmd_name[2])
8609 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008610 case 'e': // ":psearch", ":isearch" and ":dsearch"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008611 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
8612 action = ACTION_GOTO;
8613 else
8614 action = ACTION_SHOW;
8615 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008616 case 'i': // ":ilist" and ":dlist"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008617 action = ACTION_SHOW_ALL;
8618 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008619 case 'u': // ":ijump" and ":djump"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008620 action = ACTION_GOTO;
8621 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008622 default: // ":isplit" and ":dsplit"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008623 action = ACTION_SPLIT;
8624 break;
8625 }
8626
8627 n = 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008628 if (vim_isdigit(*eap->arg)) // get count
Bram Moolenaar071d4272004-06-13 20:20:40 +00008629 {
8630 n = getdigits(&eap->arg);
8631 eap->arg = skipwhite(eap->arg);
8632 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008633 if (*eap->arg == '/') // Match regexp, not just whole words
Bram Moolenaar071d4272004-06-13 20:20:40 +00008634 {
8635 whole = FALSE;
8636 ++eap->arg;
Bram Moolenaarf4e20992020-12-21 19:59:08 +01008637 p = skip_regexp(eap->arg, '/', magic_isset());
Bram Moolenaar071d4272004-06-13 20:20:40 +00008638 if (*p)
8639 {
8640 *p++ = NUL;
8641 p = skipwhite(p);
8642
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008643 // Check for trailing illegal characters
Bram Moolenaarfaac4102020-04-20 17:46:14 +02008644 if (!ends_excmd2(eap->arg, p))
Bram Moolenaar8930caa2020-07-23 16:37:03 +02008645 eap->errmsg = ex_errmsg(e_trailing_arg, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008646 else
Bram Moolenaar63b91732021-08-05 20:40:03 +02008647 set_nextcmd(eap, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008648 }
8649 }
8650 if (!eap->skip)
8651 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
8652 whole, !eap->forceit,
8653 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
8654 n, action, eap->line1, eap->line2);
8655}
8656#endif
8657
Bram Moolenaar071d4272004-06-13 20:20:40 +00008658
Bram Moolenaar4033c552017-09-16 20:54:51 +02008659#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00008660/*
8661 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
8662 */
8663 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008664ex_ptag(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008665{
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008666 g_do_tagpreview = p_pvh; // will be reset to 0 in ex_tag_cmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00008667 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
8668}
8669
8670/*
8671 * ":pedit"
8672 */
8673 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008674ex_pedit(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008675{
8676 win_T *curwin_save = curwin;
8677
Bram Moolenaar3a2505c2020-03-09 16:40:41 +01008678 if (ERROR_IF_ANY_POPUP_WINDOW)
8679 return;
8680
Bram Moolenaar026587b2019-08-17 15:08:00 +02008681 // Open the preview window or popup and make it the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008682 g_do_tagpreview = p_pvh;
Bram Moolenaar576a4a62019-08-18 15:25:17 +02008683 prepare_tagpreview(TRUE, TRUE, FALSE);
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02008684
Bram Moolenaar026587b2019-08-17 15:08:00 +02008685 // Edit the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008686 do_exedit(eap, NULL);
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02008687
Bram Moolenaar071d4272004-06-13 20:20:40 +00008688 if (curwin != curwin_save && win_valid(curwin_save))
8689 {
Bram Moolenaar026587b2019-08-17 15:08:00 +02008690 // Return cursor to where we were
Bram Moolenaar071d4272004-06-13 20:20:40 +00008691 validate_cursor();
8692 redraw_later(VALID);
8693 win_enter(curwin_save, TRUE);
8694 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01008695# ifdef FEAT_PROP_POPUP
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02008696 else if (WIN_IS_POPUP(curwin))
8697 {
8698 // can't keep focus in popup window
8699 win_enter(firstwin, TRUE);
8700 }
8701# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008702 g_do_tagpreview = 0;
8703}
Bram Moolenaar4033c552017-09-16 20:54:51 +02008704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008705
8706/*
8707 * ":stag", ":stselect" and ":stjump".
8708 */
8709 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008710ex_stag(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008711{
8712 postponed_split = -1;
Bram Moolenaare1004402020-10-24 20:49:43 +02008713 postponed_split_flags = cmdmod.cmod_split;
8714 postponed_split_tab = cmdmod.cmod_tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008715 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
8716 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008717 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008718}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008719
8720/*
8721 * ":tag", ":tselect", ":tjump", ":tnext", etc.
8722 */
8723 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008724ex_tag(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008725{
8726 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
8727}
8728
8729 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008730ex_tag_cmd(exarg_T *eap, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008731{
8732 int cmd;
8733
8734 switch (name[1])
8735 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008736 case 'j': cmd = DT_JUMP; // ":tjump"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008737 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008738 case 's': cmd = DT_SELECT; // ":tselect"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008739 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008740 case 'p': cmd = DT_PREV; // ":tprevious"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008741 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008742 case 'N': cmd = DT_PREV; // ":tNext"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008743 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008744 case 'n': cmd = DT_NEXT; // ":tnext"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008745 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008746 case 'o': cmd = DT_POP; // ":pop"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008747 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008748 case 'f': // ":tfirst"
8749 case 'r': cmd = DT_FIRST; // ":trewind"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008750 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008751 case 'l': cmd = DT_LAST; // ":tlast"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008752 break;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008753 default: // ":tag"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008754#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +00008755 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008756 {
Bram Moolenaard4db7712016-11-12 19:16:46 +01008757 ex_cstag(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008758 return;
8759 }
8760#endif
8761 cmd = DT_TAG;
8762 break;
8763 }
8764
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00008765 if (name[0] == 'l')
8766 {
8767#ifndef FEAT_QUICKFIX
8768 ex_ni(eap);
8769 return;
8770#else
8771 cmd = DT_LTAG;
8772#endif
8773 }
8774
Bram Moolenaar071d4272004-06-13 20:20:40 +00008775 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
8776 eap->forceit, TRUE);
8777}
8778
8779/*
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008780 * Check "str" for starting with a special cmdline variable.
8781 * If found return one of the SPEC_ values and set "*usedlen" to the length of
8782 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
8783 */
8784 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008785find_cmdline_var(char_u *src, int *usedlen)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008786{
8787 int len;
8788 int i;
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +00008789 static char *(spec_str[]) = {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008790 "%",
8791#define SPEC_PERC 0
8792 "#",
Bram Moolenaar65f08472017-09-10 18:16:20 +02008793#define SPEC_HASH (SPEC_PERC + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008794 "<cword>", // cursor word
Bram Moolenaar65f08472017-09-10 18:16:20 +02008795#define SPEC_CWORD (SPEC_HASH + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008796 "<cWORD>", // cursor WORD
Bram Moolenaar65f08472017-09-10 18:16:20 +02008797#define SPEC_CCWORD (SPEC_CWORD + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008798 "<cexpr>", // expr under cursor
Bram Moolenaar65f08472017-09-10 18:16:20 +02008799#define SPEC_CEXPR (SPEC_CCWORD + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008800 "<cfile>", // cursor path name
Bram Moolenaar65f08472017-09-10 18:16:20 +02008801#define SPEC_CFILE (SPEC_CEXPR + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008802 "<sfile>", // ":so" file name
Bram Moolenaar65f08472017-09-10 18:16:20 +02008803#define SPEC_SFILE (SPEC_CFILE + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008804 "<slnum>", // ":so" file line number
Bram Moolenaar65f08472017-09-10 18:16:20 +02008805#define SPEC_SLNUM (SPEC_SFILE + 1)
Bram Moolenaara5d04232020-07-26 15:37:02 +02008806 "<stack>", // call stack
8807#define SPEC_STACK (SPEC_SLNUM + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008808 "<afile>", // autocommand file name
Bram Moolenaara5d04232020-07-26 15:37:02 +02008809#define SPEC_AFILE (SPEC_STACK + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008810 "<abuf>", // autocommand buffer number
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02008811#define SPEC_ABUF (SPEC_AFILE + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008812 "<amatch>", // autocommand match name
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01008813#define SPEC_AMATCH (SPEC_ABUF + 1)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008814 "<sflnum>", // script file line number
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02008815#define SPEC_SFLNUM (SPEC_AMATCH + 1)
Bram Moolenaar90944302020-08-01 20:45:11 +02008816 "<SID>", // script ID: <SNR>123_
8817#define SPEC_SID (SPEC_SFLNUM + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008818#ifdef FEAT_CLIENTSERVER
8819 "<client>"
Bram Moolenaar90944302020-08-01 20:45:11 +02008820# define SPEC_CLIENT (SPEC_SID + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008821#endif
8822 };
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008823
K.Takataeeec2542021-06-02 13:28:16 +02008824 for (i = 0; i < (int)ARRAY_LENGTH(spec_str); ++i)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008825 {
8826 len = (int)STRLEN(spec_str[i]);
8827 if (STRNCMP(src, spec_str[i], len) == 0)
8828 {
8829 *usedlen = len;
8830 return i;
8831 }
8832 }
8833 return -1;
8834}
8835
8836/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008837 * Evaluate cmdline variables.
8838 *
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008839 * change "%" to curbuf->b_ffname
8840 * "#" to curwin->w_alt_fnum
8841 * "%%" to curwin->w_alt_fnum in Vim9 script
8842 * "<cword>" to word under the cursor
8843 * "<cWORD>" to WORD under the cursor
8844 * "<cexpr>" to C-expression under the cursor
8845 * "<cfile>" to path name under the cursor
8846 * "<sfile>" to sourced file name
8847 * "<stack>" to call stack
8848 * "<slnum>" to sourced file line number
8849 * "<afile>" to file name for autocommand
8850 * "<abuf>" to buffer number for autocommand
8851 * "<amatch>" to matching name for autocommand
Bram Moolenaar071d4272004-06-13 20:20:40 +00008852 *
8853 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
8854 * "" for error without a message) and NULL is returned.
8855 * Returns an allocated string if a valid match was found.
8856 * Returns NULL if no match was found. "usedlen" then still contains the
8857 * number of characters to skip.
8858 */
8859 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008860eval_vars(
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008861 char_u *src, // pointer into commandline
8862 char_u *srcstart, // beginning of valid memory for src
8863 int *usedlen, // characters after src that are used
8864 linenr_T *lnump, // line number for :e command, or NULL
8865 char **errormsg, // pointer to error message
8866 int *escaped) // return value has escaped white space (can
8867 // be NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008868{
8869 int i;
8870 char_u *s;
8871 char_u *result;
8872 char_u *resultbuf = NULL;
8873 int resultlen;
8874 buf_T *buf;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008875 int valid = VALID_HEAD + VALID_PATH; // assume valid result
Bram Moolenaar071d4272004-06-13 20:20:40 +00008876 int spec_idx;
Bram Moolenaarfd249462018-07-28 16:14:30 +02008877 int tilde_file = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008878 int skip_mod = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008879 char_u strbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008880
8881 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00008882 if (escaped != NULL)
8883 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008884
8885 /*
8886 * Check if there is something to do.
8887 */
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008888 spec_idx = find_cmdline_var(src, usedlen);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008889 if (spec_idx < 0) // no match
Bram Moolenaar071d4272004-06-13 20:20:40 +00008890 {
8891 *usedlen = 1;
8892 return NULL;
8893 }
8894
8895 /*
8896 * Skip when preceded with a backslash "\%" and "\#".
8897 * Note: In "\\%" the % is also not recognized!
8898 */
8899 if (src > srcstart && src[-1] == '\\')
8900 {
8901 *usedlen = 0;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008902 STRMOVE(src - 1, src); // remove backslash
Bram Moolenaar071d4272004-06-13 20:20:40 +00008903 return NULL;
8904 }
8905
8906 /*
8907 * word or WORD under cursor
8908 */
Bram Moolenaar65f08472017-09-10 18:16:20 +02008909 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD
8910 || spec_idx == SPEC_CEXPR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008911 {
Bram Moolenaar65f08472017-09-10 18:16:20 +02008912 resultlen = find_ident_under_cursor(&result,
8913 spec_idx == SPEC_CWORD ? (FIND_IDENT | FIND_STRING)
8914 : spec_idx == SPEC_CEXPR ? (FIND_IDENT | FIND_STRING | FIND_EVAL)
8915 : FIND_STRING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008916 if (resultlen == 0)
8917 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008918 *errormsg = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00008919 return NULL;
8920 }
8921 }
8922
8923 /*
8924 * '#': Alternate file name
8925 * '%': Current file name
8926 * File name under the cursor
8927 * File name for autocommand
8928 * and following modifiers
8929 */
8930 else
8931 {
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008932 int off = 0;
8933
Bram Moolenaar071d4272004-06-13 20:20:40 +00008934 switch (spec_idx)
8935 {
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008936 case SPEC_PERC:
Bram Moolenaar39cb2da2020-12-27 17:35:18 +01008937#ifdef FEAT_EVAL
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008938 if (!in_vim9script() || src[1] != '%')
Bram Moolenaar39cb2da2020-12-27 17:35:18 +01008939#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008940 {
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008941 // '%': current file
8942 if (curbuf->b_fname == NULL)
8943 {
8944 result = (char_u *)"";
8945 valid = 0; // Must have ":p:h" to be valid
8946 }
8947 else
8948 {
8949 result = curbuf->b_fname;
8950 tilde_file = STRCMP(result, "~") == 0;
8951 }
8952 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008953 }
Bram Moolenaar39cb2da2020-12-27 17:35:18 +01008954#ifdef FEAT_EVAL
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008955 // "%%" alternate file
8956 off = 1;
Bram Moolenaar39cb2da2020-12-27 17:35:18 +01008957#endif
Bram Moolenaar9618a252020-12-27 19:18:03 +01008958 // FALLTHROUGH
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008959 case SPEC_HASH: // '#' or "#99": alternate file
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008960 if (off == 0 ? src[1] == '#' : src[2] == '%')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008961 {
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008962 // "##" or "%%%": the argument list
Bram Moolenaar071d4272004-06-13 20:20:40 +00008963 result = arg_all();
8964 resultbuf = result;
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008965 *usedlen = off + 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00008966 if (escaped != NULL)
8967 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008968 skip_mod = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008969 break;
8970 }
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008971 s = src + off + 1;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008972 if (*s == '<') // "#<99" uses v:oldfiles
Bram Moolenaard812df62008-11-09 12:46:09 +00008973 ++s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008974 i = (int)getdigits(&s);
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008975 if (s == src + off + 2 && src[off + 1] == '-')
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008976 // just a minus sign, don't skip over it
Bram Moolenaarc312b8b2017-10-28 17:53:04 +02008977 s--;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008978 *usedlen = (int)(s - src); // length of what we expand
Bram Moolenaar071d4272004-06-13 20:20:40 +00008979
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008980 if (src[off + 1] == '<' && i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008981 {
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008982 if (*usedlen < off + 2)
Bram Moolenaard812df62008-11-09 12:46:09 +00008983 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01008984 // Should we give an error message for #<text?
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01008985 *usedlen = off + 1;
Bram Moolenaard812df62008-11-09 12:46:09 +00008986 return NULL;
8987 }
8988#ifdef FEAT_EVAL
8989 result = list_find_str(get_vim_var_list(VV_OLDFILES),
8990 (long)i);
8991 if (result == NULL)
8992 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008993 *errormsg = "";
Bram Moolenaard812df62008-11-09 12:46:09 +00008994 return NULL;
8995 }
8996#else
Bram Moolenaar8e481e82019-01-15 20:07:48 +01008997 *errormsg = _("E809: #< is not available without the +eval feature");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008998 return NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +00008999#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009000 }
9001 else
Bram Moolenaard812df62008-11-09 12:46:09 +00009002 {
Bram Moolenaar4389f9c2020-12-27 16:55:11 +01009003 if (i == 0 && src[off + 1] == '<' && *usedlen > off + 1)
9004 *usedlen = off + 1;
Bram Moolenaard812df62008-11-09 12:46:09 +00009005 buf = buflist_findnr(i);
9006 if (buf == NULL)
9007 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009008 *errormsg = _("E194: No alternate file name to substitute for '#'");
Bram Moolenaard812df62008-11-09 12:46:09 +00009009 return NULL;
9010 }
9011 if (lnump != NULL)
9012 *lnump = ECMD_LAST;
9013 if (buf->b_fname == NULL)
9014 {
9015 result = (char_u *)"";
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009016 valid = 0; // Must have ":p:h" to be valid
Bram Moolenaard812df62008-11-09 12:46:09 +00009017 }
9018 else
Bram Moolenaar00136dc2018-07-25 21:19:13 +02009019 {
Bram Moolenaard812df62008-11-09 12:46:09 +00009020 result = buf->b_fname;
Bram Moolenaar00136dc2018-07-25 21:19:13 +02009021 tilde_file = STRCMP(result, "~") == 0;
9022 }
Bram Moolenaard812df62008-11-09 12:46:09 +00009023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009024 break;
9025
9026#ifdef FEAT_SEARCHPATH
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009027 case SPEC_CFILE: // file name under cursor
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009028 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009029 if (result == NULL)
9030 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009031 *errormsg = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00009032 return NULL;
9033 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009034 resultbuf = result; // remember allocated string
Bram Moolenaar071d4272004-06-13 20:20:40 +00009035 break;
9036#endif
9037
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009038 case SPEC_AFILE: // file name for autocommand
Bram Moolenaar071d4272004-06-13 20:20:40 +00009039 result = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009040 if (result != NULL && !autocmd_fname_full)
9041 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009042 // Still need to turn the fname into a full path. It is
9043 // postponed to avoid a delay when <afile> is not used.
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009044 autocmd_fname_full = TRUE;
9045 result = FullName_save(autocmd_fname, FALSE);
9046 vim_free(autocmd_fname);
9047 autocmd_fname = result;
9048 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009049 if (result == NULL)
9050 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009051 *errormsg = _("E495: no autocommand file name to substitute for \"<afile>\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009052 return NULL;
9053 }
Bram Moolenaara0174af2008-01-02 20:08:25 +00009054 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009055 break;
9056
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009057 case SPEC_ABUF: // buffer number for autocommand
Bram Moolenaar071d4272004-06-13 20:20:40 +00009058 if (autocmd_bufnr <= 0)
9059 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009060 *errormsg = _("E496: no autocommand buffer number to substitute for \"<abuf>\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009061 return NULL;
9062 }
9063 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9064 result = strbuf;
9065 break;
9066
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009067 case SPEC_AMATCH: // match name for autocommand
Bram Moolenaar071d4272004-06-13 20:20:40 +00009068 result = autocmd_match;
9069 if (result == NULL)
9070 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009071 *errormsg = _("E497: no autocommand match name to substitute for \"<amatch>\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009072 return NULL;
9073 }
9074 break;
9075
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009076 case SPEC_SFILE: // file name for ":so" command
Bram Moolenaara5d04232020-07-26 15:37:02 +02009077 case SPEC_STACK: // call stack
Bram Moolenaar4f25b1a2020-09-10 19:25:05 +02009078 result = estack_sfile(spec_idx == SPEC_SFILE
9079 ? ESTACK_SFILE : ESTACK_STACK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009080 if (result == NULL)
9081 {
Bram Moolenaara5d04232020-07-26 15:37:02 +02009082 *errormsg = spec_idx == SPEC_SFILE
9083 ? _("E498: no :source file name to substitute for \"<sfile>\"")
9084 : _("E489: no call stack to substitute for \"<stack>\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009085 return NULL;
9086 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01009087 resultbuf = result; // remember allocated string
Bram Moolenaar071d4272004-06-13 20:20:40 +00009088 break;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02009089
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009090 case SPEC_SLNUM: // line in file for ":so" command
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01009091 if (SOURCING_NAME == NULL || SOURCING_LNUM == 0)
Bram Moolenaar4dbbff52010-11-24 15:50:59 +01009092 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009093 *errormsg = _("E842: no line number to use for \"<slnum>\"");
Bram Moolenaar4dbbff52010-11-24 15:50:59 +01009094 return NULL;
9095 }
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01009096 sprintf((char *)strbuf, "%ld", SOURCING_LNUM);
Bram Moolenaar4dbbff52010-11-24 15:50:59 +01009097 result = strbuf;
9098 break;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02009099
9100#ifdef FEAT_EVAL
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009101 case SPEC_SFLNUM: // line in script file
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01009102 if (current_sctx.sc_lnum + SOURCING_LNUM == 0)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02009103 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009104 *errormsg = _("E961: no line number to use for \"<sflnum>\"");
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02009105 return NULL;
9106 }
9107 sprintf((char *)strbuf, "%ld",
Bram Moolenaar1a47ae32019-12-29 23:04:25 +01009108 (long)(current_sctx.sc_lnum + SOURCING_LNUM));
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02009109 result = strbuf;
9110 break;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02009111
Bram Moolenaar90944302020-08-01 20:45:11 +02009112 case SPEC_SID:
9113 if (current_sctx.sc_sid <= 0)
9114 {
9115 *errormsg = _(e_usingsid);
9116 return NULL;
9117 }
9118 sprintf((char *)strbuf, "<SNR>%d_", current_sctx.sc_sid);
9119 result = strbuf;
9120 break;
Bram Moolenaare4218b92020-08-01 21:11:38 +02009121#endif
Bram Moolenaar90944302020-08-01 20:45:11 +02009122
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02009123#ifdef FEAT_CLIENTSERVER
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009124 case SPEC_CLIENT: // Source of last submitted input
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009125 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9126 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009127 result = strbuf;
9128 break;
9129#endif
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02009130
Bram Moolenaar9e0f6ec2017-05-16 09:36:54 +02009131 default:
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009132 result = (char_u *)""; // avoid gcc warning
Bram Moolenaar9e0f6ec2017-05-16 09:36:54 +02009133 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009134 }
9135
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009136 resultlen = (int)STRLEN(result); // length of new string
9137 if (src[*usedlen] == '<') // remove the file name extension
Bram Moolenaar071d4272004-06-13 20:20:40 +00009138 {
9139 ++*usedlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009140 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009141 resultlen = (int)(s - result);
9142 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009143 else if (!skip_mod)
9144 {
Bram Moolenaar00136dc2018-07-25 21:19:13 +02009145 valid |= modify_fname(src, tilde_file, usedlen, &result, &resultbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009146 &resultlen);
9147 if (result == NULL)
9148 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009149 *errormsg = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00009150 return NULL;
9151 }
9152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009153 }
9154
9155 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9156 {
9157 if (valid != VALID_HEAD + VALID_PATH)
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009158 // xgettext:no-c-format
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009159 *errormsg = _("E499: Empty file name for '%' or '#', only works with \":p:h\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009160 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009161 *errormsg = _("E500: Evaluates to an empty string");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009162 result = NULL;
9163 }
9164 else
9165 result = vim_strnsave(result, resultlen);
9166 vim_free(resultbuf);
9167 return result;
9168}
9169
9170/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009171 * Expand the <sfile> string in "arg".
9172 *
9173 * Returns an allocated string, or NULL for any error.
9174 */
9175 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009176expand_sfile(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009177{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009178 char *errormsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009179 int len;
9180 char_u *result;
9181 char_u *newres;
9182 char_u *repl;
9183 int srclen;
9184 char_u *p;
9185
9186 result = vim_strsave(arg);
9187 if (result == NULL)
9188 return NULL;
9189
9190 for (p = result; *p; )
9191 {
9192 if (STRNCMP(p, "<sfile>", 7) != 0)
9193 ++p;
9194 else
9195 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009196 // replace "<sfile>" with the sourced file name, and do ":" stuff
Bram Moolenaar63b92542007-03-27 14:57:09 +00009197 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009198 if (errormsg != NULL)
9199 {
9200 if (*errormsg)
9201 emsg(errormsg);
9202 vim_free(result);
9203 return NULL;
9204 }
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009205 if (repl == NULL) // no match (cannot happen)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009206 {
9207 p += srclen;
9208 continue;
9209 }
9210 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9211 newres = alloc(len);
9212 if (newres == NULL)
9213 {
9214 vim_free(repl);
9215 vim_free(result);
9216 return NULL;
9217 }
9218 mch_memmove(newres, result, (size_t)(p - result));
9219 STRCPY(newres + (p - result), repl);
9220 len = (int)STRLEN(newres);
9221 STRCAT(newres, p + srclen);
9222 vim_free(repl);
9223 vim_free(result);
9224 result = newres;
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009225 p = newres + len; // continue after the match
Bram Moolenaar071d4272004-06-13 20:20:40 +00009226 }
9227 }
9228
9229 return result;
9230}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009231
Bram Moolenaar071d4272004-06-13 20:20:40 +00009232#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00009233/*
Bram Moolenaard9462e32011-04-11 21:35:11 +02009234 * Make a dialog message in "buff[DIALOG_MSG_SIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +00009235 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +00009236 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009237 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009238dialog_msg(char_u *buff, char *format, char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009239{
Bram Moolenaar071d4272004-06-13 20:20:40 +00009240 if (fname == NULL)
9241 fname = (char_u *)_("Untitled");
Bram Moolenaard9462e32011-04-11 21:35:11 +02009242 vim_snprintf((char *)buff, DIALOG_MSG_SIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009243}
9244#endif
9245
9246/*
9247 * ":behave {mswin,xterm}"
9248 */
9249 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009250ex_behave(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009251{
9252 if (STRCMP(eap->arg, "mswin") == 0)
9253 {
9254 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
9255 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
9256 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
9257 set_option_value((char_u *)"keymodel", 0L,
9258 (char_u *)"startsel,stopsel", 0);
9259 }
9260 else if (STRCMP(eap->arg, "xterm") == 0)
9261 {
9262 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
9263 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
9264 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
9265 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
9266 }
9267 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009268 semsg(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009269}
9270
Bram Moolenaar071d4272004-06-13 20:20:40 +00009271static int filetype_detect = FALSE;
9272static int filetype_plugin = FALSE;
9273static int filetype_indent = FALSE;
9274
9275/*
9276 * ":filetype [plugin] [indent] {on,off,detect}"
9277 * on: Load the filetype.vim file to install autocommands for file types.
9278 * off: Load the ftoff.vim file to remove all autocommands for file types.
9279 * plugin on: load filetype.vim and ftplugin.vim
9280 * plugin off: load ftplugof.vim
9281 * indent on: load filetype.vim and indent.vim
9282 * indent off: load indoff.vim
9283 */
9284 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009285ex_filetype(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009286{
9287 char_u *arg = eap->arg;
9288 int plugin = FALSE;
9289 int indent = FALSE;
9290
9291 if (*eap->arg == NUL)
9292 {
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009293 // Print current status.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009294 smsg("filetype detection:%s plugin:%s indent:%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00009295 filetype_detect ? "ON" : "OFF",
9296 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
9297 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
9298 return;
9299 }
9300
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009301 // Accept "plugin" and "indent" in any order.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009302 for (;;)
9303 {
9304 if (STRNCMP(arg, "plugin", 6) == 0)
9305 {
9306 plugin = TRUE;
9307 arg = skipwhite(arg + 6);
9308 continue;
9309 }
9310 if (STRNCMP(arg, "indent", 6) == 0)
9311 {
9312 indent = TRUE;
9313 arg = skipwhite(arg + 6);
9314 continue;
9315 }
9316 break;
9317 }
9318 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
9319 {
9320 if (*arg == 'o' || !filetype_detect)
9321 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01009322 source_runtime((char_u *)FILETYPE_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009323 filetype_detect = TRUE;
9324 if (plugin)
9325 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01009326 source_runtime((char_u *)FTPLUGIN_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009327 filetype_plugin = TRUE;
9328 }
9329 if (indent)
9330 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01009331 source_runtime((char_u *)INDENT_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009332 filetype_indent = TRUE;
9333 }
9334 }
9335 if (*arg == 'd')
9336 {
Bram Moolenaar1610d052016-06-09 22:53:01 +02009337 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00009338 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009339 }
9340 }
9341 else if (STRCMP(arg, "off") == 0)
9342 {
9343 if (plugin || indent)
9344 {
9345 if (plugin)
9346 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01009347 source_runtime((char_u *)FTPLUGOF_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009348 filetype_plugin = FALSE;
9349 }
9350 if (indent)
9351 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01009352 source_runtime((char_u *)INDOFF_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009353 filetype_indent = FALSE;
9354 }
9355 }
9356 else
9357 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01009358 source_runtime((char_u *)FTOFF_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009359 filetype_detect = FALSE;
9360 }
9361 }
9362 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01009363 semsg(_(e_invarg2), arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009364}
9365
9366/*
Bram Moolenaar3e545692017-06-04 19:00:32 +02009367 * ":setfiletype [FALLBACK] {name}"
Bram Moolenaar071d4272004-06-13 20:20:40 +00009368 */
9369 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009370ex_setfiletype(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009371{
9372 if (!did_filetype)
Bram Moolenaar3e545692017-06-04 19:00:32 +02009373 {
9374 char_u *arg = eap->arg;
9375
9376 if (STRNCMP(arg, "FALLBACK ", 9) == 0)
9377 arg += 9;
9378
9379 set_option_value((char_u *)"filetype", 0L, arg, OPT_LOCAL);
9380 if (arg != eap->arg)
9381 did_filetype = FALSE;
9382 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009383}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009384
Bram Moolenaar071d4272004-06-13 20:20:40 +00009385 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009386ex_digraphs(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009387{
9388#ifdef FEAT_DIGRAPHS
9389 if (*eap->arg != NUL)
9390 putdigraph(eap->arg);
9391 else
Bram Moolenaareae8ae12018-12-14 18:53:02 +01009392 listdigraphs(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009393#else
mityu61065042021-07-19 20:07:21 +02009394 emsg(_(e_no_digraphs_version));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009395#endif
9396}
9397
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02009398#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
9399 void
9400set_no_hlsearch(int flag)
9401{
9402 no_hlsearch = flag;
9403# ifdef FEAT_EVAL
9404 set_vim_var_nr(VV_HLSEARCH, !no_hlsearch && p_hls);
9405# endif
9406}
9407
Bram Moolenaar071d4272004-06-13 20:20:40 +00009408/*
9409 * ":nohlsearch"
9410 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009411 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009412ex_nohlsearch(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009413{
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02009414 set_no_hlsearch(TRUE);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00009415 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009416}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009417#endif
9418
9419#ifdef FEAT_CRYPT
9420/*
9421 * ":X": Get crypt key
9422 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009423 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009424ex_X(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009425{
Bram Moolenaar3a0c9082014-11-12 15:15:42 +01009426 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02009427 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009428}
9429#endif
9430
9431#ifdef FEAT_FOLDING
9432 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009433ex_fold(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009434{
9435 if (foldManualAllowed(TRUE))
9436 foldCreate(eap->line1, eap->line2);
9437}
9438
9439 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009440ex_foldopen(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009441{
9442 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
9443 eap->forceit, FALSE);
9444}
9445
9446 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009447ex_folddo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009448{
9449 linenr_T lnum;
9450
Bram Moolenaar4facea32019-10-12 20:17:40 +02009451# ifdef FEAT_CLIPBOARD
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02009452 start_global_changes();
Bram Moolenaar4facea32019-10-12 20:17:40 +02009453# endif
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02009454
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009455 // First set the marks for all lines closed/open.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009456 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
9457 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
9458 ml_setmarked(lnum);
9459
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009460 // Execute the command on the marked lines.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009461 global_exe(eap->arg);
Bram Moolenaar217e1b82019-12-01 21:41:28 +01009462 ml_clearmarked(); // clear rest of the marks
Bram Moolenaar4facea32019-10-12 20:17:40 +02009463# ifdef FEAT_CLIPBOARD
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02009464 end_global_changes();
Bram Moolenaar4facea32019-10-12 20:17:40 +02009465# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009466}
9467#endif
Bram Moolenaarf5291f32017-09-14 22:55:37 +02009468
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01009469#if defined(FEAT_QUICKFIX) || defined(PROTO)
Bram Moolenaar39665952018-08-15 20:59:48 +02009470/*
9471 * Returns TRUE if the supplied Ex cmdidx is for a location list command
9472 * instead of a quickfix command.
9473 */
9474 int
9475is_loclist_cmd(int cmdidx)
9476{
Bram Moolenaar74c8be22018-08-23 22:51:40 +02009477 if (cmdidx < 0 || cmdidx >= CMD_SIZE)
Bram Moolenaar39665952018-08-15 20:59:48 +02009478 return FALSE;
9479 return cmdnames[cmdidx].cmd_name[0] == 'l';
9480}
9481#endif
9482
Bram Moolenaar4facea32019-10-12 20:17:40 +02009483#if defined(FEAT_TIMERS) || defined(PROTO)
Bram Moolenaarf5291f32017-09-14 22:55:37 +02009484 int
9485get_pressedreturn(void)
9486{
9487 return ex_pressedreturn;
9488}
9489
9490 void
9491set_pressedreturn(int val)
9492{
9493 ex_pressedreturn = val;
9494}
9495#endif