blob: 576a75674a4830d809b979034a65f73b9d9d2d03 [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 Moolenaare96a2492019-06-25 04:12:16 +020023static char_u *do_one_cmd(char_u **, int, struct condstack *, char_u *(*fgetline)(int, void *, int, int), void *cookie);
Bram Moolenaar071d4272004-06-13 20:20:40 +000024#else
Bram Moolenaare96a2492019-06-25 04:12:16 +020025static char_u *do_one_cmd(char_u **, int, char_u *(*fgetline)(int, void *, int, int), void *cookie);
Bram Moolenaar071d4272004-06-13 20:20:40 +000026static int if_level = 0; /* depth in :if */
27#endif
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +020028static void free_cmdmod(void);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010029static void append_command(char_u *cmd);
30static char_u *find_command(exarg_T *eap, int *full);
Bram Moolenaar071d4272004-06-13 20:20:40 +000031
Bram Moolenaar071d4272004-06-13 20:20:40 +000032#ifndef FEAT_MENU
33# define ex_emenu ex_ni
34# define ex_menu ex_ni
35# define ex_menutranslate ex_ni
36#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010037static void ex_autocmd(exarg_T *eap);
38static void ex_doautocmd(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010039static void ex_bunload(exarg_T *eap);
40static void ex_buffer(exarg_T *eap);
41static void ex_bmodified(exarg_T *eap);
42static void ex_bnext(exarg_T *eap);
43static void ex_bprevious(exarg_T *eap);
44static void ex_brewind(exarg_T *eap);
45static void ex_blast(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010046static char_u *getargcmd(char_u **);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010047static int getargopt(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +000048#ifndef FEAT_QUICKFIX
49# define ex_make ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +000050# define ex_cbuffer ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000051# define ex_cc ex_ni
52# define ex_cnext ex_ni
Bram Moolenaar3ff33112019-05-03 21:56:35 +020053# define ex_cbelow ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000054# define ex_cfile ex_ni
55# define qf_list ex_ni
56# define qf_age ex_ni
Bram Moolenaarf6acffb2016-07-16 16:54:24 +020057# define qf_history ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000058# define ex_helpgrep ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +000059# define ex_vimgrep ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000060#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +020061#if !defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +000062# define ex_cclose ex_ni
63# define ex_copen ex_ni
64# define ex_cwindow ex_ni
Bram Moolenaardcb17002016-07-07 18:58:59 +020065# define ex_cbottom ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +000066#endif
Bram Moolenaar1e015462005-09-25 22:16:38 +000067#if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
68# define ex_cexpr ex_ni
69#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
Bram Moolenaarb7316892019-05-01 18:08:42 +020071static 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 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 Moolenaare4ce8252019-08-04 15:30:16 +0200266# define ex_break ex_ni
267# define ex_breakadd ex_ni
268# define ex_breakdel ex_ni
269# define ex_breaklist ex_ni
270# define ex_call ex_ni
271# define ex_catch ex_ni
272# define ex_compiler ex_ni
273# define ex_const ex_ni
274# define ex_continue ex_ni
275# define ex_debug ex_ni
276# define ex_debuggreedy ex_ni
277# define ex_delfunction ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278# define ex_echo ex_ni
279# define ex_echohl ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280# define ex_else ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200281# define ex_endfunction ex_ni
282# define ex_endif ex_ni
283# define ex_endtry ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284# define ex_endwhile ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200285# define ex_eval ex_ni
286# define ex_execute ex_ni
287# define ex_finally ex_ni
288# define ex_finish ex_ni
289# define ex_function ex_ni
290# define ex_if ex_ni
291# define ex_let ex_ni
292# define ex_lockvar ex_ni
293# define ex_oldfiles ex_ni
294# define ex_options ex_ni
295# define ex_packadd ex_ni
296# define ex_packloadall ex_ni
297# define ex_return ex_ni
298# define ex_scriptnames ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299# define ex_throw ex_ni
300# define ex_try ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301# define ex_unlet ex_ni
Bram Moolenaar65c1b012005-01-31 19:02:28 +0000302# define ex_unlockvar ex_ni
Bram Moolenaare4ce8252019-08-04 15:30:16 +0200303# define ex_while ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304#endif
Bram Moolenaar84538072019-07-28 14:15:42 +0200305#ifndef FEAT_SESSION
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306# define ex_loadview ex_ni
307#endif
Bram Moolenaardefa0672019-07-21 19:25:37 +0200308#ifndef FEAT_VIMINFO
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309# define ex_viminfo ex_ni
310#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100311static void ex_behave(exarg_T *eap);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100312static void ex_filetype(exarg_T *eap);
313static void ex_setfiletype(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000315# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316# define ex_diffpatch ex_ni
317# define ex_diffgetput ex_ni
318# define ex_diffsplit ex_ni
319# define ex_diffthis ex_ni
320# define ex_diffupdate ex_ni
321#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100322static void ex_digraphs(exarg_T *eap);
323static void ex_set(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100325static void ex_nohlsearch(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326#else
327# define ex_nohlsearch ex_ni
328# define ex_match ex_ni
329#endif
330#ifdef FEAT_CRYPT
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100331static void ex_X(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332#else
333# define ex_X ex_ni
334#endif
335#ifdef FEAT_FOLDING
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100336static void ex_fold(exarg_T *eap);
337static void ex_foldopen(exarg_T *eap);
338static void ex_folddo(exarg_T *eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339#else
340# define ex_fold ex_ni
341# define ex_foldopen ex_ni
342# define ex_folddo ex_ni
343#endif
Bram Moolenaar13505972019-01-24 15:04:48 +0100344#if !(defined(HAVE_LOCALE_H) || defined(X_LOCALE))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345# define ex_language ex_ni
346#endif
347#ifndef FEAT_SIGNS
348# define ex_sign ex_ni
349#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000350#ifndef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200351# define ex_nbclose ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000352# define ex_nbkey ex_ni
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200353# define ex_nbstart ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000354#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356#ifndef FEAT_JUMPLIST
357# define ex_jumps ex_ni
Bram Moolenaar2d358992016-06-12 21:20:54 +0200358# define ex_clearjumps ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359# define ex_changes ex_ni
360#endif
361
Bram Moolenaar05159a02005-02-26 23:04:13 +0000362#ifndef FEAT_PROFILE
363# define ex_profile ex_ni
364#endif
Bram Moolenaare4f25e42017-07-07 11:54:15 +0200365#ifndef FEAT_TERMINAL
366# define ex_terminal ex_ni
367#endif
Bram Moolenaard4aa83a2019-05-09 18:59:31 +0200368#if !defined(FEAT_X11) || !defined(FEAT_XCLIPBOARD)
369# define ex_xrestore ex_ni
370#endif
Bram Moolenaar682725c2019-05-25 20:10:37 +0200371#if !defined(FEAT_TEXT_PROP)
372# define ex_popupclear ex_ni
373#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +0000374
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375/*
376 * Declare cmdnames[].
377 */
378#define DO_DECLARE_EXCMD
379#include "ex_cmds.h"
Bram Moolenaar6de5e122017-04-20 21:55:44 +0200380#include "ex_cmdidxs.h"
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +0100381
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382static char_u dollar_command[2] = {'$', 0};
383
384
385#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000386/* Struct for storing a line inside a while/for loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387typedef struct
388{
389 char_u *line; /* command line */
390 linenr_T lnum; /* sourcing_lnum of the line */
391} wcmd_T;
392
393/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000394 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000396 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000398struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399{
400 garray_T *lines_gap; /* growarray with line info */
401 int current_line; /* last read line from growarray */
402 int repeating; /* TRUE when looping a second time */
403 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
Bram Moolenaare96a2492019-06-25 04:12:16 +0200404 char_u *(*getline)(int, void *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405 void *cookie;
406};
407
Bram Moolenaare96a2492019-06-25 04:12:16 +0200408static char_u *get_loop_line(int c, void *cookie, int indent, int do_concat);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100409static int store_loop_line(garray_T *gap, char_u *line);
410static void free_cmdlines(garray_T *gap);
Bram Moolenaared203462004-06-16 11:19:22 +0000411
412/* Struct to save a few things while debugging. Used in do_cmdline() only. */
413struct dbg_stuff
414{
415 int trylevel;
416 int force_abort;
417 except_T *caught_stack;
418 char_u *vv_exception;
419 char_u *vv_throwpoint;
420 int did_emsg;
421 int got_int;
422 int did_throw;
423 int need_rethrow;
424 int check_cstack;
425 except_T *current_exception;
426};
427
Bram Moolenaared203462004-06-16 11:19:22 +0000428 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100429save_dbg_stuff(struct dbg_stuff *dsp)
Bram Moolenaared203462004-06-16 11:19:22 +0000430{
431 dsp->trylevel = trylevel; trylevel = 0;
432 dsp->force_abort = force_abort; force_abort = FALSE;
433 dsp->caught_stack = caught_stack; caught_stack = NULL;
434 dsp->vv_exception = v_exception(NULL);
435 dsp->vv_throwpoint = v_throwpoint(NULL);
436
437 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
438 dsp->did_emsg = did_emsg; did_emsg = FALSE;
439 dsp->got_int = got_int; got_int = FALSE;
440 dsp->did_throw = did_throw; did_throw = FALSE;
441 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
442 dsp->check_cstack = check_cstack; check_cstack = FALSE;
443 dsp->current_exception = current_exception; current_exception = NULL;
444}
445
446 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100447restore_dbg_stuff(struct dbg_stuff *dsp)
Bram Moolenaared203462004-06-16 11:19:22 +0000448{
449 suppress_errthrow = FALSE;
450 trylevel = dsp->trylevel;
451 force_abort = dsp->force_abort;
452 caught_stack = dsp->caught_stack;
453 (void)v_exception(dsp->vv_exception);
454 (void)v_throwpoint(dsp->vv_throwpoint);
455 did_emsg = dsp->did_emsg;
456 got_int = dsp->got_int;
457 did_throw = dsp->did_throw;
458 need_rethrow = dsp->need_rethrow;
459 check_cstack = dsp->check_cstack;
460 current_exception = dsp->current_exception;
461}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462#endif
463
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464/*
465 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
466 * command is given.
467 */
468 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100469do_exmode(
470 int improved) /* TRUE for "improved Ex" mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471{
472 int save_msg_scroll;
473 int prev_msg_row;
474 linenr_T prev_line;
Bram Moolenaar79518e22017-02-17 16:31:35 +0100475 varnumber_T changedtick;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000476
477 if (improved)
478 exmode_active = EXMODE_VIM;
479 else
480 exmode_active = EXMODE_NORMAL;
481 State = NORMAL;
482
483 /* When using ":global /pat/ visual" and then "Q" we return to continue
484 * the :global command. */
485 if (global_busy)
486 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487
488 save_msg_scroll = msg_scroll;
489 ++RedrawingDisabled; /* don't redisplay the window */
490 ++no_wait_return; /* don't wait for return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491#ifdef FEAT_GUI
492 /* Ignore scrollbar and mouse events in Ex mode */
493 ++hold_gui_events;
494#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495
Bram Moolenaar32526b32019-01-19 17:43:09 +0100496 msg(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 while (exmode_active)
498 {
Bram Moolenaar7c626922005-02-07 22:01:03 +0000499 /* Check for a ":normal" command and no more characters left. */
500 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
501 {
502 exmode_active = FALSE;
503 break;
504 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 msg_scroll = TRUE;
506 need_wait_return = FALSE;
507 ex_pressedreturn = FALSE;
508 ex_no_reprint = FALSE;
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100509 changedtick = CHANGEDTICK(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 prev_msg_row = msg_row;
511 prev_line = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 if (improved)
513 {
514 cmdline_row = msg_row;
515 do_cmdline(NULL, getexline, NULL, 0);
516 }
517 else
518 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
519 lines_left = Rows - 1;
520
Bram Moolenaardf177f62005-02-22 08:39:57 +0000521 if ((prev_line != curwin->w_cursor.lnum
Bram Moolenaar95c526e2017-02-25 14:59:34 +0100522 || changedtick != CHANGEDTICK(curbuf)) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000524 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100525 emsg(_(e_emptybuf));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000526 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000528 if (ex_pressedreturn)
529 {
530 /* go up one line, to overwrite the ":<CR>" line, so the
Bram Moolenaar81870892007-11-11 18:17:28 +0000531 * output doesn't contain empty lines. */
Bram Moolenaardf177f62005-02-22 08:39:57 +0000532 msg_row = prev_msg_row;
533 if (prev_msg_row == Rows - 1)
534 msg_row--;
535 }
536 msg_col = 0;
537 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
538 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 }
Bram Moolenaardf177f62005-02-22 08:39:57 +0000541 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
542 {
543 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100544 emsg(_(e_emptybuf));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000545 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100546 emsg(_("E501: At end-of-file"));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 }
549
550#ifdef FEAT_GUI
551 --hold_gui_events;
552#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 --RedrawingDisabled;
554 --no_wait_return;
555 update_screen(CLEAR);
556 need_wait_return = FALSE;
557 msg_scroll = save_msg_scroll;
558}
559
560/*
Bram Moolenaar4facea32019-10-12 20:17:40 +0200561 * Print the executed command for when 'verbose' is set.
562 * When "lnum" is 0 only print the command.
563 */
564 static void
565msg_verbose_cmd(linenr_T lnum, char_u *cmd)
566{
567 ++no_wait_return;
568 verbose_enter_scroll();
569
570 if (lnum == 0)
571 smsg(_("Executing: %s"), cmd);
572 else
573 smsg(_("line %ld: %s"), (long)lnum, cmd);
574 if (msg_silent == 0)
575 msg_puts("\n"); // don't overwrite this
576
577 verbose_leave_scroll();
578 --no_wait_return;
579}
580
581/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 * Execute a simple command line. Used for translated commands like "*".
583 */
584 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100585do_cmdline_cmd(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586{
587 return do_cmdline(cmd, NULL, NULL,
588 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
589}
590
591/*
592 * do_cmdline(): execute one Ex command line
593 *
594 * 1. Execute "cmdline" when it is not NULL.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100595 * If "cmdline" is NULL, or more lines are needed, fgetline() is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 * 2. Split up in parts separated with '|'.
597 *
598 * This function can be called recursively!
599 *
600 * flags:
601 * DOCMD_VERBOSE - The command will be included in the error message.
602 * DOCMD_NOWAIT - Don't call wait_return() and friends.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100603 * DOCMD_REPEAT - Repeat execution until fgetline() returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 * DOCMD_KEYTYPED - Don't reset KeyTyped.
605 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
606 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
607 *
608 * return FAIL if cmdline could not be executed, OK otherwise
609 */
610 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100611do_cmdline(
612 char_u *cmdline,
Bram Moolenaare96a2492019-06-25 04:12:16 +0200613 char_u *(*fgetline)(int, void *, int, int),
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100614 void *cookie, /* argument for fgetline() */
615 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616{
617 char_u *next_cmdline; /* next cmd to execute */
618 char_u *cmdline_copy = NULL; /* copy of cmd line */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100619 int used_getline = FALSE; /* used "fgetline" to obtain command */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620 static int recursive = 0; /* recursive depth */
621 int msg_didout_before_start = 0;
622 int count = 0; /* line number count */
623 int did_inc = FALSE; /* incremented RedrawingDisabled */
624 int retval = OK;
625#ifdef FEAT_EVAL
626 struct condstack cstack; /* conditional stack */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000627 garray_T lines_ga; /* keep lines for ":while"/":for" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 int current_line = 0; /* active line in lines_ga */
629 char_u *fname = NULL; /* function or script name */
630 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
631 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
Bram Moolenaared203462004-06-16 11:19:22 +0000632 struct dbg_stuff debug_saved; /* saved things for debug mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 int initial_trylevel;
634 struct msglist **saved_msg_list = NULL;
635 struct msglist *private_msg_list;
636
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100637 /* "fgetline" and "cookie" passed to do_one_cmd() */
Bram Moolenaare96a2492019-06-25 04:12:16 +0200638 char_u *(*cmd_getline)(int, void *, int, int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000640 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000642 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643#else
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100644# define cmd_getline fgetline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645# define cmd_cookie cookie
646#endif
647 static int call_depth = 0; /* recursiveness */
648
649#ifdef FEAT_EVAL
650 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
651 * location for storing error messages to be converted to an exception.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000652 * This ensures that the do_errthrow() call in do_one_cmd() does not
653 * combine the messages stored by an earlier invocation of do_one_cmd()
654 * with the command name of the later one. This would happen when
655 * BufWritePost autocommands are executed after a write error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 saved_msg_list = msg_list;
657 msg_list = &private_msg_list;
658 private_msg_list = NULL;
659#endif
660
661 /* It's possible to create an endless loop with ":execute", catch that
Bram Moolenaar777b30f2017-01-02 15:26:27 +0100662 * here. The value of 200 allows nested function calls, ":source", etc.
663 * Allow 200 or 'maxfuncdepth', whatever is larger. */
Bram Moolenaarb094ff42017-01-02 16:16:39 +0100664 if (call_depth >= 200
665#ifdef FEAT_EVAL
666 && call_depth >= p_mfd
667#endif
668 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100670 emsg(_("E169: Command too recursive"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671#ifdef FEAT_EVAL
672 /* When converting to an exception, we do not include the command name
673 * since this is not an error of the specific command. */
674 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
675 msg_list = saved_msg_list;
676#endif
677 return FAIL;
678 }
679 ++call_depth;
680
681#ifdef FEAT_EVAL
682 cstack.cs_idx = -1;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000683 cstack.cs_looplevel = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 cstack.cs_trylevel = 0;
685 cstack.cs_emsg_silent_list = NULL;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000686 cstack.cs_lflags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
688
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100689 real_cookie = getline_cookie(fgetline, cookie);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690
691 /* Inside a function use a higher nesting level. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100692 getline_is_func = getline_equal(fgetline, cookie, get_func_line);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000693 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 ++ex_nesting_level;
695
696 /* Get the function or script name and the address where the next breakpoint
697 * line and the debug tick for a function or script are stored. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000698 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 {
700 fname = func_name(real_cookie);
701 breakpoint = func_breakpoint(real_cookie);
702 dbg_tick = func_dbg_tick(real_cookie);
703 }
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100704 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 {
706 fname = sourcing_name;
707 breakpoint = source_breakpoint(real_cookie);
708 dbg_tick = source_dbg_tick(real_cookie);
709 }
710
711 /*
712 * Initialize "force_abort" and "suppress_errthrow" at the top level.
713 */
714 if (!recursive)
715 {
716 force_abort = FALSE;
717 suppress_errthrow = FALSE;
718 }
719
720 /*
721 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000722 * exception handling (used when debugging). Otherwise clear it to avoid
723 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000725 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000726 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000727 else
Bram Moolenaar69b67f72015-09-25 16:59:47 +0200728 vim_memset(&debug_saved, 0, sizeof(debug_saved));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729
730 initial_trylevel = trylevel;
731
732 /*
733 * "did_throw" will be set to TRUE when an exception is being thrown.
734 */
735 did_throw = FALSE;
736#endif
737 /*
738 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000739 * cancel the whole command line, and any if/endif or loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 * If force_abort is set, we cancel everything.
741 */
742 did_emsg = FALSE;
743
744 /*
745 * KeyTyped is only set when calling vgetc(). Reset it here when not
746 * calling vgetc() (sourced command lines).
747 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100748 if (!(flags & DOCMD_KEYTYPED)
749 && !getline_equal(fgetline, cookie, getexline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 KeyTyped = FALSE;
751
752 /*
753 * Continue executing command lines:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000754 * - when inside an ":if", ":while" or ":for"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 * - for multiple commands on one line, separated with '|'
756 * - when repeating until there are no more lines (for ":source")
757 */
758 next_cmdline = cmdline;
759 do
760 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000761#ifdef FEAT_EVAL
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100762 getline_is_func = getline_equal(fgetline, cookie, get_func_line);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000763#endif
764
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000765 /* stop skipping cmds for an error msg after all endif/while/for */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 if (next_cmdline == NULL
767#ifdef FEAT_EVAL
768 && !force_abort
769 && cstack.cs_idx < 0
Bram Moolenaar05159a02005-02-26 23:04:13 +0000770 && !(getline_is_func && func_has_abort(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771#endif
772 )
773 did_emsg = FALSE;
774
775 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000776 * 1. If repeating a line in a loop, get a line from lines_ga.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100777 * 2. If no line given: Get an allocated line with fgetline().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 * 3. If a line is given: Make a copy, so we can mess with it.
779 */
780
781#ifdef FEAT_EVAL
782 /* 1. If repeating, get a previous line from lines_ga. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000783 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 {
785 /* Each '|' separated command is stored separately in lines_ga, to
786 * be able to jump to it. Don't use next_cmdline now. */
Bram Moolenaard23a8232018-02-10 18:45:26 +0100787 VIM_CLEAR(cmdline_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788
789 /* Check if a function has returned or, unless it has an unclosed
790 * try conditional, aborted. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000791 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000793# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000794 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000795 func_line_end(real_cookie);
796# endif
797 if (func_has_ended(real_cookie))
798 {
799 retval = FAIL;
800 break;
801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000803#ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000804 else if (do_profiling == PROF_YES
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100805 && getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000806 script_line_end();
807#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808
809 /* Check if a sourced file hit a ":finish" command. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100810 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 {
812 retval = FAIL;
813 break;
814 }
815
816 /* If breakpoints have been added/deleted need to check for it. */
817 if (breakpoint != NULL && dbg_tick != NULL
818 && *dbg_tick != debug_tick)
819 {
820 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100821 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 fname, sourcing_lnum);
823 *dbg_tick = debug_tick;
824 }
825
826 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
827 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
828
829 /* Did we encounter a breakpoint? */
830 if (breakpoint != NULL && *breakpoint != 0
831 && *breakpoint <= sourcing_lnum)
832 {
833 dbg_breakpoint(fname, sourcing_lnum);
834 /* Find next breakpoint. */
835 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100836 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 fname, sourcing_lnum);
838 *dbg_tick = debug_tick;
839 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000840# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000841 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000842 {
843 if (getline_is_func)
844 func_line_start(real_cookie);
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100845 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000846 script_line_start();
847 }
848# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 }
850
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000851 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000853 /* Inside a while/for loop we need to store the lines and use them
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100854 * again. Pass a different "fgetline" function to do_one_cmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 * below, so that it stores lines in or reads them from
856 * "lines_ga". Makes it possible to define a function inside a
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000857 * while/for loop. */
858 cmd_getline = get_loop_line;
859 cmd_cookie = (void *)&cmd_loop_cookie;
860 cmd_loop_cookie.lines_gap = &lines_ga;
861 cmd_loop_cookie.current_line = current_line;
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100862 cmd_loop_cookie.getline = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000863 cmd_loop_cookie.cookie = cookie;
864 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 }
866 else
867 {
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100868 cmd_getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 cmd_cookie = cookie;
870 }
871#endif
872
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100873 /* 2. If no line given, get an allocated line with fgetline(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 if (next_cmdline == NULL)
875 {
876 /*
877 * Need to set msg_didout for the first line after an ":if",
878 * otherwise the ":if" will be overwritten.
879 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100880 if (count == 1 && getline_equal(fgetline, cookie, getexline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 msg_didout = TRUE;
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100882 if (fgetline == NULL || (next_cmdline = fgetline(':', cookie,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883#ifdef FEAT_EVAL
884 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
885#else
886 0
887#endif
Bram Moolenaare96a2492019-06-25 04:12:16 +0200888 , TRUE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 {
890 /* Don't call wait_return for aborted command line. The NULL
891 * returned for the end of a sourced file or executed function
892 * doesn't do this. */
893 if (KeyTyped && !(flags & DOCMD_REPEAT))
894 need_wait_return = FALSE;
895 retval = FAIL;
896 break;
897 }
898 used_getline = TRUE;
899
900 /*
901 * Keep the first typed line. Clear it when more lines are typed.
902 */
903 if (flags & DOCMD_KEEPLINE)
904 {
905 vim_free(repeat_cmdline);
906 if (count == 0)
907 repeat_cmdline = vim_strsave(next_cmdline);
908 else
909 repeat_cmdline = NULL;
910 }
911 }
912
913 /* 3. Make a copy of the command so we can mess with it. */
914 else if (cmdline_copy == NULL)
915 {
916 next_cmdline = vim_strsave(next_cmdline);
917 if (next_cmdline == NULL)
918 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100919 emsg(_(e_outofmem));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 retval = FAIL;
921 break;
922 }
923 }
924 cmdline_copy = next_cmdline;
925
926#ifdef FEAT_EVAL
927 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000928 * Save the current line when inside a ":while" or ":for", and when
929 * the command looks like a ":while" or ":for", because we may need it
930 * later. When there is a '|' and another command, it is stored
931 * separately, because we need to be able to jump back to it from an
932 * :endwhile/:endfor.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000934 if (current_line == lines_ga.ga_len
935 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000937 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938 {
939 retval = FAIL;
940 break;
941 }
942 }
943 did_endif = FALSE;
944#endif
945
946 if (count++ == 0)
947 {
948 /*
949 * All output from the commands is put below each other, without
950 * waiting for a return. Don't do this when executing commands
951 * from a script or when being called recursive (e.g. for ":e
952 * +command file").
953 */
954 if (!(flags & DOCMD_NOWAIT) && !recursive)
955 {
956 msg_didout_before_start = msg_didout;
957 msg_didany = FALSE; /* no output yet */
958 msg_start();
959 msg_scroll = TRUE; /* put messages below each other */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200960 ++no_wait_return; /* don't wait for return until finished */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 ++RedrawingDisabled;
962 did_inc = TRUE;
963 }
964 }
965
966 if (p_verbose >= 15 && sourcing_name != NULL)
Bram Moolenaar4facea32019-10-12 20:17:40 +0200967 msg_verbose_cmd(sourcing_lnum, cmdline_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968
969 /*
970 * 2. Execute one '|' separated command.
971 * do_one_cmd() will return NULL if there is no trailing '|'.
972 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
973 */
974 ++recursive;
975 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
976#ifdef FEAT_EVAL
977 &cstack,
978#endif
979 cmd_getline, cmd_cookie);
980 --recursive;
981
982#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000983 if (cmd_cookie == (void *)&cmd_loop_cookie)
984 /* Use "current_line" from "cmd_loop_cookie", it may have been
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985 * incremented when defining a function. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000986 current_line = cmd_loop_cookie.current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987#endif
988
989 if (next_cmdline == NULL)
990 {
Bram Moolenaard23a8232018-02-10 18:45:26 +0100991 VIM_CLEAR(cmdline_copy);
Bram Moolenaard7663c22019-08-06 21:59:57 +0200992
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993 /*
994 * If the command was typed, remember it for the ':' register.
995 * Do this AFTER executing the command to make :@: work.
996 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100997 if (getline_equal(fgetline, cookie, getexline)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 && new_last_cmdline != NULL)
999 {
1000 vim_free(last_cmdline);
1001 last_cmdline = new_last_cmdline;
1002 new_last_cmdline = NULL;
1003 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 }
1005 else
1006 {
1007 /* need to copy the command after the '|' to cmdline_copy, for the
1008 * next do_one_cmd() */
Bram Moolenaara7241f52008-06-24 20:39:31 +00001009 STRMOVE(cmdline_copy, next_cmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010 next_cmdline = cmdline_copy;
1011 }
1012
1013
1014#ifdef FEAT_EVAL
1015 /* reset did_emsg for a function that is not aborted by an error */
1016 if (did_emsg && !force_abort
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001017 && getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 && !func_has_abort(real_cookie))
1019 did_emsg = FALSE;
1020
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001021 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 {
1023 ++current_line;
1024
1025 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001026 * An ":endwhile", ":endfor" and ":continue" is handled here.
1027 * If we were executing commands, jump back to the ":while" or
1028 * ":for".
1029 * If we were not executing commands, decrement cs_looplevel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001031 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001033 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001035 /* Jump back to the matching ":while" or ":for". Be careful
1036 * not to use a cs_line[] from an entry that isn't a ":while"
1037 * or ":for": It would make "current_line" invalid and can
1038 * cause a crash. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039 if (!did_emsg && !got_int && !did_throw
1040 && cstack.cs_idx >= 0
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001041 && (cstack.cs_flags[cstack.cs_idx]
1042 & (CSF_WHILE | CSF_FOR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 && cstack.cs_line[cstack.cs_idx] >= 0
1044 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1045 {
1046 current_line = cstack.cs_line[cstack.cs_idx];
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001047 /* remember we jumped there */
1048 cstack.cs_lflags |= CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 line_breakcheck(); /* check if CTRL-C typed */
1050
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001051 /* Check for the next breakpoint at or after the ":while"
1052 * or ":for". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 if (breakpoint != NULL)
1054 {
1055 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001056 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 fname,
1058 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1059 *dbg_tick = debug_tick;
1060 }
1061 }
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001062 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001064 /* can only get here with ":endwhile" or ":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 if (cstack.cs_idx >= 0)
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001066 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1067 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 }
1069 }
1070
1071 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001072 * For a ":while" or ":for" we need to remember the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001074 else if (cstack.cs_lflags & CSL_HAD_LOOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001076 cstack.cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1078 }
1079 }
1080
Bram Moolenaarc6f9f732018-02-11 19:06:26 +01001081 /* Check for the next breakpoint after a watchexpression */
1082 if (breakpoint != NULL && has_watchexpr())
1083 {
1084 *breakpoint = dbg_find_breakpoint(FALSE, fname, sourcing_lnum);
1085 *dbg_tick = debug_tick;
1086 }
1087
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 /*
1089 * When not inside any ":while" loop, clear remembered lines.
1090 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001091 if (cstack.cs_looplevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 {
1093 if (lines_ga.ga_len > 0)
1094 {
1095 sourcing_lnum =
1096 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1097 free_cmdlines(&lines_ga);
1098 }
1099 current_line = 0;
1100 }
1101
1102 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001103 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1104 * being restored at the ":endtry". Reset them here and set the
1105 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1106 * This includes the case where a missing ":endif", ":endwhile" or
1107 * ":endfor" was detected by the ":finally" itself.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001109 if (cstack.cs_lflags & CSL_HAD_FINA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001111 cstack.cs_lflags &= ~CSL_HAD_FINA;
1112 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1113 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 did_throw ? (void *)current_exception : NULL);
1115 did_emsg = got_int = did_throw = FALSE;
1116 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1117 }
1118
1119 /* Update global "trylevel" for recursive calls to do_cmdline() from
1120 * within this loop. */
1121 trylevel = initial_trylevel + cstack.cs_trylevel;
1122
1123 /*
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001124 * If the outermost try conditional (across function calls and sourced
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 * files) is aborted because of an error, an interrupt, or an uncaught
1126 * exception, cancel everything. If it is left normally, reset
1127 * force_abort to get the non-EH compatible abortion behavior for
1128 * the rest of the script.
1129 */
1130 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1131 force_abort = FALSE;
1132
1133 /* Convert an interrupt to an exception if appropriate. */
1134 (void)do_intthrow(&cstack);
1135#endif /* FEAT_EVAL */
1136
1137 }
1138 /*
1139 * Continue executing command lines when:
1140 * - no CTRL-C typed, no aborting error, no exception thrown or try
1141 * conditionals need to be checked for executing finally clauses or
1142 * catching an interrupt exception
1143 * - didn't get an error message or lines are not typed
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001144 * - there is a command after '|', inside a :if, :while, :for or :try, or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 * looping for ":source" command or function call.
1146 */
1147 while (!((got_int
1148#ifdef FEAT_EVAL
1149 || (did_emsg && force_abort) || did_throw
1150#endif
1151 )
1152#ifdef FEAT_EVAL
1153 && cstack.cs_trylevel == 0
1154#endif
1155 )
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001156 && !(did_emsg
1157#ifdef FEAT_EVAL
1158 /* Keep going when inside try/catch, so that the error can be
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001159 * deal with, except when it is a syntax error, it may cause
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001160 * the :endtry to be missed. */
1161 && (cstack.cs_trylevel == 0 || did_emsg_syntax)
1162#endif
1163 && used_getline
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001164 && (getline_equal(fgetline, cookie, getexmodeline)
1165 || getline_equal(fgetline, cookie, getexline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 && (next_cmdline != NULL
1167#ifdef FEAT_EVAL
1168 || cstack.cs_idx >= 0
1169#endif
1170 || (flags & DOCMD_REPEAT)));
1171
1172 vim_free(cmdline_copy);
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001173 did_emsg_syntax = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174#ifdef FEAT_EVAL
1175 free_cmdlines(&lines_ga);
1176 ga_clear(&lines_ga);
1177
1178 if (cstack.cs_idx >= 0)
1179 {
1180 /*
1181 * If a sourced file or executed function ran to its end, report the
1182 * unclosed conditional.
1183 */
1184 if (!got_int && !did_throw
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001185 && ((getline_equal(fgetline, cookie, getsourceline)
1186 && !source_finished(fgetline, cookie))
1187 || (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 && !func_has_ended(real_cookie))))
1189 {
1190 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001191 emsg(_(e_endtry));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001193 emsg(_(e_endwhile));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001194 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001195 emsg(_(e_endfor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001197 emsg(_(e_endif));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 }
1199
1200 /*
1201 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1202 * ":endtry" in a sourced file or executed function. If the try
1203 * conditional is in its finally clause, ignore anything pending.
1204 * If it is in a catch clause, finish the caught exception.
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001205 * Also cleanup any "cs_forinfo" structures.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 */
1207 do
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001208 {
1209 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1210
Bram Moolenaar89e5d682005-01-17 22:06:23 +00001211 if (idx >= 0)
1212 --idx; /* remove try block not in its finally clause */
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001213 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1214 &cstack.cs_looplevel);
1215 }
1216 while (cstack.cs_idx >= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 trylevel = initial_trylevel;
1218 }
1219
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001220 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1221 * lack was reported above and the error message is to be converted to an
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 * exception, do this now after rewinding the cstack. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001223 do_errthrow(&cstack, getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 ? (char_u *)"endfunction" : (char_u *)NULL);
1225
1226 if (trylevel == 0)
1227 {
1228 /*
1229 * When an exception is being thrown out of the outermost try
1230 * conditional, discard the uncaught exception, disable the conversion
1231 * of interrupts or errors to exceptions, and ensure that no more
1232 * commands are executed.
1233 */
1234 if (did_throw)
1235 {
1236 void *p = NULL;
1237 char_u *saved_sourcing_name;
1238 int saved_sourcing_lnum;
1239 struct msglist *messages = NULL, *next;
1240
1241 /*
1242 * If the uncaught exception is a user exception, report it as an
1243 * error. If it is an error exception, display the saved error
1244 * message now. For an interrupt exception, do nothing; the
1245 * interrupt message is given elsewhere.
1246 */
1247 switch (current_exception->type)
1248 {
1249 case ET_USER:
Bram Moolenaar9c13b352005-05-19 20:53:52 +00001250 vim_snprintf((char *)IObuff, IOSIZE,
1251 _("E605: Exception not caught: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 current_exception->value);
1253 p = vim_strsave(IObuff);
1254 break;
1255 case ET_ERROR:
1256 messages = current_exception->messages;
1257 current_exception->messages = NULL;
1258 break;
1259 case ET_INTERRUPT:
1260 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 }
1262
1263 saved_sourcing_name = sourcing_name;
1264 saved_sourcing_lnum = sourcing_lnum;
1265 sourcing_name = current_exception->throw_name;
1266 sourcing_lnum = current_exception->throw_lnum;
1267 current_exception->throw_name = NULL;
1268
1269 discard_current_exception(); /* uses IObuff if 'verbose' */
1270 suppress_errthrow = TRUE;
1271 force_abort = TRUE;
1272
1273 if (messages != NULL)
1274 {
1275 do
1276 {
1277 next = messages->next;
1278 emsg(messages->msg);
1279 vim_free(messages->msg);
1280 vim_free(messages);
1281 messages = next;
1282 }
1283 while (messages != NULL);
1284 }
1285 else if (p != NULL)
1286 {
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01001287 emsg(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 vim_free(p);
1289 }
1290 vim_free(sourcing_name);
1291 sourcing_name = saved_sourcing_name;
1292 sourcing_lnum = saved_sourcing_lnum;
1293 }
1294
1295 /*
1296 * On an interrupt or an aborting error not converted to an exception,
1297 * disable the conversion of errors to exceptions. (Interrupts are not
1298 * converted any more, here.) This enables also the interrupt message
1299 * when force_abort is set and did_emsg unset in case of an interrupt
1300 * from a finally clause after an error.
1301 */
1302 else if (got_int || (did_emsg && force_abort))
1303 suppress_errthrow = TRUE;
1304 }
1305
1306 /*
1307 * The current cstack will be freed when do_cmdline() returns. An uncaught
1308 * exception will have to be rethrown in the previous cstack. If a function
1309 * has just returned or a script file was just finished and the previous
1310 * cstack belongs to the same function or, respectively, script file, it
1311 * will have to be checked for finally clauses to be executed due to the
1312 * ":return" or ":finish". This is done in do_one_cmd().
1313 */
1314 if (did_throw)
1315 need_rethrow = TRUE;
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001316 if ((getline_equal(fgetline, cookie, getsourceline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 && ex_nesting_level > source_level(real_cookie))
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001318 || (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 && ex_nesting_level > func_level(real_cookie) + 1))
1320 {
1321 if (!did_throw)
1322 check_cstack = TRUE;
1323 }
1324 else
1325 {
1326 /* When leaving a function, reduce nesting level. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001327 if (getline_equal(fgetline, cookie, get_func_line))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 --ex_nesting_level;
1329 /*
1330 * Go to debug mode when returning from a function in which we are
1331 * single-stepping.
1332 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001333 if ((getline_equal(fgetline, cookie, getsourceline)
1334 || getline_equal(fgetline, cookie, get_func_line))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 && ex_nesting_level + 1 <= debug_break_level)
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001336 do_debug(getline_equal(fgetline, cookie, getsourceline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 ? (char_u *)_("End of sourced file")
1338 : (char_u *)_("End of function"));
1339 }
1340
1341 /*
1342 * Restore the exception environment (done after returning from the
1343 * debugger).
1344 */
1345 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +00001346 restore_dbg_stuff(&debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347
1348 msg_list = saved_msg_list;
1349#endif /* FEAT_EVAL */
1350
1351 /*
1352 * If there was too much output to fit on the command line, ask the user to
1353 * hit return before redrawing the screen. With the ":global" command we do
1354 * this only once after the command is finished.
1355 */
1356 if (did_inc)
1357 {
1358 --RedrawingDisabled;
1359 --no_wait_return;
1360 msg_scroll = FALSE;
1361
1362 /*
1363 * When just finished an ":if"-":else" which was typed, no need to
1364 * wait for hit-return. Also for an error situation.
1365 */
1366 if (retval == FAIL
1367#ifdef FEAT_EVAL
1368 || (did_endif && KeyTyped && !did_emsg)
1369#endif
1370 )
1371 {
1372 need_wait_return = FALSE;
1373 msg_didany = FALSE; /* don't wait when restarting edit */
1374 }
1375 else if (need_wait_return)
1376 {
1377 /*
1378 * The msg_start() above clears msg_didout. The wait_return we do
1379 * here should not overwrite the command that may be shown before
1380 * doing that.
1381 */
1382 msg_didout |= msg_didout_before_start;
1383 wait_return(FALSE);
1384 }
1385 }
1386
Bram Moolenaar2a942252012-11-28 23:03:07 +01001387#ifdef FEAT_EVAL
1388 did_endif = FALSE; /* in case do_cmdline used recursively */
1389#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 /*
1391 * Reset if_level, in case a sourced script file contains more ":if" than
1392 * ":endif" (could be ":if x | foo | endif").
1393 */
1394 if_level = 0;
Bram Moolenaar2e18a122012-11-28 19:10:54 +01001395#endif
Bram Moolenaard4ad0d42012-11-28 17:34:48 +01001396
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 --call_depth;
1398 return retval;
1399}
1400
1401#ifdef FEAT_EVAL
1402/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001403 * Obtain a line when inside a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 */
1405 static char_u *
Bram Moolenaare96a2492019-06-25 04:12:16 +02001406get_loop_line(int c, void *cookie, int indent, int do_concat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407{
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001408 struct loop_cookie *cp = (struct loop_cookie *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 wcmd_T *wp;
1410 char_u *line;
1411
1412 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1413 {
1414 if (cp->repeating)
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001415 return NULL; /* trying to read past ":endwhile"/":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001417 /* First time inside the ":while"/":for": get line normally. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 if (cp->getline == NULL)
Bram Moolenaare96a2492019-06-25 04:12:16 +02001419 line = getcmdline(c, 0L, indent, do_concat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 else
Bram Moolenaare96a2492019-06-25 04:12:16 +02001421 line = cp->getline(c, cp->cookie, indent, do_concat);
Bram Moolenaard68071d2006-05-02 22:08:30 +00001422 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 ++cp->current_line;
1424
1425 return line;
1426 }
1427
1428 KeyTyped = FALSE;
1429 ++cp->current_line;
1430 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1431 sourcing_lnum = wp->lnum;
1432 return vim_strsave(wp->line);
1433}
1434
1435/*
1436 * Store a line in "gap" so that a ":while" loop can execute it again.
1437 */
1438 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001439store_loop_line(garray_T *gap, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440{
1441 if (ga_grow(gap, 1) == FAIL)
1442 return FAIL;
1443 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1444 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1445 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 return OK;
1447}
1448
1449/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001450 * Free the lines stored for a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 */
1452 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001453free_cmdlines(garray_T *gap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454{
1455 while (gap->ga_len > 0)
1456 {
1457 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1458 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459 }
1460}
1461#endif
1462
1463/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001464 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1465 * "func". * Otherwise return TRUE when "fgetline" equals "func".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001466 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001467 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001468getline_equal(
Bram Moolenaare96a2492019-06-25 04:12:16 +02001469 char_u *(*fgetline)(int, void *, int, int),
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001470 void *cookie UNUSED, /* argument for fgetline() */
Bram Moolenaare96a2492019-06-25 04:12:16 +02001471 char_u *(*func)(int, void *, int, int))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472{
1473#ifdef FEAT_EVAL
Bram Moolenaare96a2492019-06-25 04:12:16 +02001474 char_u *(*gp)(int, void *, int, int);
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001475 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476
Bram Moolenaar89d40322006-08-29 15:30:07 +00001477 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001478 * function that's originally used to obtain the lines. This may be
1479 * nested several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001480 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001481 cp = (struct loop_cookie *)cookie;
1482 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 {
1484 gp = cp->getline;
1485 cp = cp->cookie;
1486 }
1487 return gp == func;
1488#else
Bram Moolenaar89d40322006-08-29 15:30:07 +00001489 return fgetline == func;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490#endif
1491}
1492
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001494 * If "fgetline" is get_loop_line(), return the cookie used by the original
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 * getline function. Otherwise return "cookie".
1496 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001498getline_cookie(
Bram Moolenaare96a2492019-06-25 04:12:16 +02001499 char_u *(*fgetline)(int, void *, int, int) UNUSED,
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001500 void *cookie) /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001501{
Bram Moolenaar13505972019-01-24 15:04:48 +01001502#ifdef FEAT_EVAL
Bram Moolenaare96a2492019-06-25 04:12:16 +02001503 char_u *(*gp)(int, void *, int, int);
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001504 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505
Bram Moolenaar89d40322006-08-29 15:30:07 +00001506 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001507 * cookie that's originally used to obtain the lines. This may be nested
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508 * several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001509 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001510 cp = (struct loop_cookie *)cookie;
1511 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 {
1513 gp = cp->getline;
1514 cp = cp->cookie;
1515 }
1516 return cp;
Bram Moolenaar13505972019-01-24 15:04:48 +01001517#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 return cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519#endif
Bram Moolenaar13505972019-01-24 15:04:48 +01001520}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001522
1523/*
1524 * Helper function to apply an offset for buffer commands, i.e. ":bdelete",
1525 * ":bwipeout", etc.
1526 * Returns the buffer number.
1527 */
1528 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001529compute_buffer_local_count(int addr_type, int lnum, int offset)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001530{
1531 buf_T *buf;
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001532 buf_T *nextbuf;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001533 int count = offset;
1534
1535 buf = firstbuf;
1536 while (buf->b_next != NULL && buf->b_fnum < lnum)
1537 buf = buf->b_next;
1538 while (count != 0)
1539 {
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001540 count += (offset < 0) ? 1 : -1;
1541 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next;
1542 if (nextbuf == NULL)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001543 break;
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001544 buf = nextbuf;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001545 if (addr_type == ADDR_LOADED_BUFFERS)
1546 /* skip over unloaded buffers */
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001547 while (buf->b_ml.ml_mfp == NULL)
1548 {
1549 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next;
1550 if (nextbuf == NULL)
1551 break;
1552 buf = nextbuf;
1553 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001554 }
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001555 /* we might have gone too far, last buffer is not loadedd */
1556 if (addr_type == ADDR_LOADED_BUFFERS)
1557 while (buf->b_ml.ml_mfp == NULL)
1558 {
1559 nextbuf = (offset >= 0) ? buf->b_prev : buf->b_next;
1560 if (nextbuf == NULL)
1561 break;
1562 buf = nextbuf;
1563 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001564 return buf->b_fnum;
1565}
1566
Bram Moolenaarb7316892019-05-01 18:08:42 +02001567/*
1568 * Return the window number of "win".
1569 * When "win" is NULL return the number of windows.
1570 */
Bram Moolenaarf240e182014-11-27 18:33:02 +01001571 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001572current_win_nr(win_T *win)
Bram Moolenaarf240e182014-11-27 18:33:02 +01001573{
1574 win_T *wp;
1575 int nr = 0;
1576
Bram Moolenaar29323592016-07-24 22:04:11 +02001577 FOR_ALL_WINDOWS(wp)
Bram Moolenaarf240e182014-11-27 18:33:02 +01001578 {
1579 ++nr;
1580 if (wp == win)
1581 break;
1582 }
1583 return nr;
1584}
1585
1586 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001587current_tab_nr(tabpage_T *tab)
Bram Moolenaarf240e182014-11-27 18:33:02 +01001588{
1589 tabpage_T *tp;
1590 int nr = 0;
1591
Bram Moolenaar29323592016-07-24 22:04:11 +02001592 FOR_ALL_TABPAGES(tp)
Bram Moolenaarf240e182014-11-27 18:33:02 +01001593 {
1594 ++nr;
1595 if (tp == tab)
1596 break;
1597 }
1598 return nr;
1599}
1600
1601# define CURRENT_WIN_NR current_win_nr(curwin)
1602# define LAST_WIN_NR current_win_nr(NULL)
1603# define CURRENT_TAB_NR current_tab_nr(curtab)
1604# define LAST_TAB_NR current_tab_nr(NULL)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001605
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606/*
1607 * Execute one Ex command.
1608 *
1609 * If 'sourcing' is TRUE, the command will be included in the error message.
1610 *
1611 * 1. skip comment lines and leading space
1612 * 2. handle command modifiers
Bram Moolenaar1c40a662014-11-27 16:38:11 +01001613 * 3. find the command
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001614 * 4. parse range
Bram Moolenaar1c40a662014-11-27 16:38:11 +01001615 * 5. Parse the command.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001616 * 6. parse arguments
1617 * 7. switch on command name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001619 * Note: "fgetline" can be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 *
1621 * This function may be called recursively!
1622 */
1623#if (_MSC_VER == 1200)
1624/*
Bram Moolenaared203462004-06-16 11:19:22 +00001625 * Avoid optimisation bug in VC++ version 6.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 */
Bram Moolenaar281bdce2005-01-25 21:53:18 +00001627 #pragma optimize( "g", off )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628#endif
1629 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001630do_one_cmd(
1631 char_u **cmdlinep,
1632 int sourcing,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633#ifdef FEAT_EVAL
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001634 struct condstack *cstack,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635#endif
Bram Moolenaare96a2492019-06-25 04:12:16 +02001636 char_u *(*fgetline)(int, void *, int, int),
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001637 void *cookie) /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638{
1639 char_u *p;
1640 linenr_T lnum;
1641 long n;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001642 char *errormsg = NULL; /* error message */
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001643 char_u *after_modifier = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 exarg_T ea; /* Ex command arguments */
Bram Moolenaar8e258a42009-07-09 13:55:43 +00001645 int save_msg_scroll = msg_scroll;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 cmdmod_T save_cmdmod;
Bram Moolenaar9a2c0912019-03-30 14:26:18 +01001647 int save_reg_executing = reg_executing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 int ni; /* set when Not Implemented */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001649 char_u *cmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650
1651 vim_memset(&ea, 0, sizeof(ea));
1652 ea.line1 = 1;
1653 ea.line2 = 1;
1654#ifdef FEAT_EVAL
1655 ++ex_nesting_level;
1656#endif
1657
Bram Moolenaar21691f82012-12-05 19:13:18 +01001658 /* When the last file has not been edited :q has to be typed twice. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 if (quitmore
1660#ifdef FEAT_EVAL
1661 /* avoid that a function call in 'statusline' does this */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001662 && !getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01001663#endif
Bram Moolenaar21691f82012-12-05 19:13:18 +01001664 /* avoid that an autocommand, e.g. QuitPre, does this */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001665 && !getline_equal(fgetline, cookie, getnextac))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 --quitmore;
1667
1668 /*
1669 * Reset browse, confirm, etc.. They are restored when returning, for
1670 * recursive calls.
1671 */
1672 save_cmdmod = cmdmod;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673
Bram Moolenaarcbb37ad2006-08-16 15:04:21 +00001674 /* "#!anything" is handled like a comment. */
1675 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1676 goto doend;
1677
Bram Moolenaar4facea32019-10-12 20:17:40 +02001678 if (p_verbose >= 16)
1679 msg_verbose_cmd(0, *cmdlinep);
1680
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02001681/*
1682 * 1. Skip comment lines and leading white space and colons.
1683 * 2. Handle command modifiers.
1684 */
1685 // The "ea" structure holds the arguments that can be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 ea.cmd = *cmdlinep;
Bram Moolenaareffed932018-08-14 13:38:17 +02001687 ea.cmdlinep = cmdlinep;
1688 ea.getline = fgetline;
1689 ea.cookie = cookie;
1690#ifdef FEAT_EVAL
1691 ea.cstack = cstack;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692#endif
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02001693 if (parse_command_modifiers(&ea, &errormsg, FALSE) == FAIL)
Bram Moolenaareffed932018-08-14 13:38:17 +02001694 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001696 after_modifier = ea.cmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697
1698#ifdef FEAT_EVAL
1699 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1700 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1701#else
1702 ea.skip = (if_level > 0);
1703#endif
1704
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001706 * 3. Skip over the range to find the command. Let "p" point to after it.
1707 *
1708 * We need the command to know what kind of range it uses.
1709 */
1710 cmd = ea.cmd;
1711 ea.cmd = skip_range(ea.cmd, NULL);
1712 if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1713 ea.cmd = skipwhite(ea.cmd + 1);
1714 p = find_command(&ea, NULL);
1715
Bram Moolenaar7feb35e2018-08-21 17:49:54 +02001716#ifdef FEAT_EVAL
1717# ifdef FEAT_PROFILE
1718 // Count this line for profiling if skip is TRUE.
1719 if (do_profiling == PROF_YES
1720 && (!ea.skip || cstack->cs_idx == 0 || (cstack->cs_idx > 0
1721 && (cstack->cs_flags[cstack->cs_idx - 1] & CSF_ACTIVE))))
1722 {
1723 int skip = did_emsg || got_int || did_throw;
1724
1725 if (ea.cmdidx == CMD_catch)
1726 skip = !skip && !(cstack->cs_idx >= 0
1727 && (cstack->cs_flags[cstack->cs_idx] & CSF_THROWN)
1728 && !(cstack->cs_flags[cstack->cs_idx] & CSF_CAUGHT));
1729 else if (ea.cmdidx == CMD_else || ea.cmdidx == CMD_elseif)
1730 skip = skip || !(cstack->cs_idx >= 0
1731 && !(cstack->cs_flags[cstack->cs_idx]
1732 & (CSF_ACTIVE | CSF_TRUE)));
1733 else if (ea.cmdidx == CMD_finally)
1734 skip = FALSE;
1735 else if (ea.cmdidx != CMD_endif
1736 && ea.cmdidx != CMD_endfor
1737 && ea.cmdidx != CMD_endtry
1738 && ea.cmdidx != CMD_endwhile)
1739 skip = ea.skip;
1740
1741 if (!skip)
1742 {
1743 if (getline_equal(fgetline, cookie, get_func_line))
1744 func_line_exec(getline_cookie(fgetline, cookie));
1745 else if (getline_equal(fgetline, cookie, getsourceline))
1746 script_line_exec();
1747 }
1748 }
1749# endif
1750
1751 /* May go to debug mode. If this happens and the ">quit" debug command is
1752 * used, throw an interrupt exception and skip the next command. */
1753 dbg_check_breakpoint(&ea);
1754 if (!ea.skip && got_int)
1755 {
1756 ea.skip = TRUE;
1757 (void)do_intthrow(cstack);
1758 }
1759#endif
1760
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001761/*
1762 * 4. parse a range specifier of the form: addr [,addr] [;addr] ..
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 *
1764 * where 'addr' is:
1765 *
1766 * % (entire file)
1767 * $ [+-NUM]
1768 * 'x [+-NUM] (where x denotes a currently defined mark)
1769 * . [+-NUM]
1770 * [+-NUM]..
1771 * NUM
1772 *
1773 * The ea.cmd pointer is updated to point to the first character following the
1774 * range spec. If an initial address is found, but no second, the upper bound
1775 * is equal to the lower.
1776 */
1777
Bram Moolenaar25190db2019-05-04 15:05:28 +02001778 // ea.addr_type for user commands is set by find_ucmd
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01001779 if (!IS_USER_CMDIDX(ea.cmdidx))
1780 {
1781 if (ea.cmdidx != CMD_SIZE)
1782 ea.addr_type = cmdnames[(int)ea.cmdidx].cmd_addr_type;
1783 else
1784 ea.addr_type = ADDR_LINES;
1785
Bram Moolenaar25190db2019-05-04 15:05:28 +02001786 // :wincmd range depends on the argument.
Bram Moolenaar164f3262015-01-14 21:22:01 +01001787 if (ea.cmdidx == CMD_wincmd && p != NULL)
1788 get_wincmd_addr_type(skipwhite(p), &ea);
Bram Moolenaar25190db2019-05-04 15:05:28 +02001789#ifdef FEAT_QUICKFIX
1790 // :.cc in quickfix window uses line number
1791 if ((ea.cmdidx == CMD_cc || ea.cmdidx == CMD_ll) && bt_quickfix(curbuf))
1792 ea.addr_type = ADDR_OTHER;
1793#endif
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01001794 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001795
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01001796 ea.cmd = cmd;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02001797 if (parse_cmd_address(&ea, &errormsg, FALSE) == FAIL)
Bram Moolenaaree8415b2018-08-10 23:13:12 +02001798 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001801 * 5. Parse the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 */
1803
1804 /*
1805 * Skip ':' and any white space
1806 */
1807 ea.cmd = skipwhite(ea.cmd);
1808 while (*ea.cmd == ':')
1809 ea.cmd = skipwhite(ea.cmd + 1);
1810
1811 /*
1812 * If we got a line, but no command, then go to the line.
1813 * If we find a '|' or '\n' we set ea.nextcmd.
1814 */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001815 if (*ea.cmd == NUL || *ea.cmd == '"'
1816 || (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 {
1818 /*
1819 * strange vi behaviour:
1820 * ":3" jumps to line 3
1821 * ":3|..." prints line 3
1822 * ":|" prints current line
1823 */
1824 if (ea.skip) /* skip this if inside :if */
1825 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001826 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 {
1828 ea.cmdidx = CMD_print;
Bram Moolenaar8071cb22019-07-12 17:58:01 +02001829 ea.argt = EX_RANGE+EX_COUNT+EX_TRLBAR;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 if ((errormsg = invalid_range(&ea)) == NULL)
1831 {
1832 correct_range(&ea);
1833 ex_print(&ea);
1834 }
1835 }
1836 else if (ea.addr_count != 0)
1837 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001838 if (ea.line2 > curbuf->b_ml.ml_line_count)
1839 {
1840 /* With '-' in 'cpoptions' a line number past the file is an
1841 * error, otherwise put it at the end of the file. */
1842 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
1843 ea.line2 = -1;
1844 else
1845 ea.line2 = curbuf->b_ml.ml_line_count;
1846 }
1847
1848 if (ea.line2 < 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001849 errormsg = _(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 else
1851 {
1852 if (ea.line2 == 0)
1853 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 else
1855 curwin->w_cursor.lnum = ea.line2;
1856 beginline(BL_SOL | BL_FIX);
1857 }
1858 }
1859 goto doend;
1860 }
1861
Bram Moolenaard5005162014-08-22 23:05:54 +02001862 /* If this looks like an undefined user command and there are CmdUndefined
1863 * autocommands defined, trigger the matching autocommands. */
1864 if (p != NULL && ea.cmdidx == CMD_SIZE && !ea.skip
1865 && ASCII_ISUPPER(*ea.cmd)
1866 && has_cmdundefined())
1867 {
Bram Moolenaard5005162014-08-22 23:05:54 +02001868 int ret;
1869
Bram Moolenaar5a31b462014-08-23 14:16:20 +02001870 p = ea.cmd;
Bram Moolenaard5005162014-08-22 23:05:54 +02001871 while (ASCII_ISALNUM(*p))
1872 ++p;
Bram Moolenaar120f4a82014-09-09 12:22:06 +02001873 p = vim_strnsave(ea.cmd, (int)(p - ea.cmd));
Bram Moolenaard5005162014-08-22 23:05:54 +02001874 ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL);
1875 vim_free(p);
Bram Moolenaar829aef12015-07-28 14:25:48 +02001876 /* If the autocommands did something and didn't cause an error, try
1877 * finding the command again. */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001878 p = (ret
1879#ifdef FEAT_EVAL
1880 && !aborting()
Bram Moolenaard5005162014-08-22 23:05:54 +02001881#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001882 ) ? find_command(&ea, NULL) : ea.cmd;
1883 }
Bram Moolenaard5005162014-08-22 23:05:54 +02001884
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 if (p == NULL)
1886 {
1887 if (!ea.skip)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001888 errormsg = _("E464: Ambiguous use of user-defined command");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 goto doend;
1890 }
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001891 // Check for wrong commands.
Bram Moolenaar6f9a4762017-06-22 20:39:17 +02001892 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78
1893 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 {
1895 errormsg = uc_fun_cmd();
1896 goto doend;
1897 }
Bram Moolenaarac9fb182019-04-27 13:04:13 +02001898
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 if (ea.cmdidx == CMD_SIZE)
1900 {
1901 if (!ea.skip)
1902 {
1903 STRCPY(IObuff, _("E492: Not an editor command"));
1904 if (!sourcing)
Bram Moolenaar7b668e82016-08-23 23:51:21 +02001905 {
1906 /* If the modifier was parsed OK the error must be in the
1907 * following command */
1908 if (after_modifier != NULL)
1909 append_command(after_modifier);
1910 else
1911 append_command(*cmdlinep);
1912 }
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001913 errormsg = (char *)IObuff;
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001914 did_emsg_syntax = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 }
1916 goto doend;
1917 }
1918
Bram Moolenaar958636c2014-10-21 20:01:58 +02001919 ni = (!IS_USER_CMDIDX(ea.cmdidx)
1920 && (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00001921#ifdef HAVE_EX_SCRIPT_NI
1922 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
1923#endif
1924 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925
1926#ifndef FEAT_EVAL
1927 /*
1928 * When the expression evaluation is disabled, recognize the ":if" and
1929 * ":endif" commands and ignore everything in between it.
1930 */
1931 if (ea.cmdidx == CMD_if)
1932 ++if_level;
1933 if (if_level)
1934 {
1935 if (ea.cmdidx == CMD_endif)
1936 --if_level;
1937 goto doend;
1938 }
1939
1940#endif
1941
Bram Moolenaar196b3b02008-06-20 16:51:41 +00001942 /* forced commands */
1943 if (*p == '!' && ea.cmdidx != CMD_substitute
1944 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 {
1946 ++p;
1947 ea.forceit = TRUE;
1948 }
1949 else
1950 ea.forceit = FALSE;
1951
1952/*
Bram Moolenaarb7316892019-05-01 18:08:42 +02001953 * 6. Parse arguments. Then check for errors.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02001955 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001956 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957
1958 if (!ea.skip)
1959 {
1960#ifdef HAVE_SANDBOX
Bram Moolenaar8071cb22019-07-12 17:58:01 +02001961 if (sandbox != 0 && !(ea.argt & EX_SBOXOK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 {
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001963 // Command not allowed in sandbox.
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001964 errormsg = _(e_sandbox);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 goto doend;
1966 }
1967#endif
Bram Moolenaar8071cb22019-07-12 17:58:01 +02001968 if (restricted != 0 && (ea.argt & EX_RESTRICT))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001969 {
1970 errormsg = _("E981: Command not allowed in rvim");
1971 goto doend;
1972 }
Bram Moolenaar8071cb22019-07-12 17:58:01 +02001973 if (!curbuf->b_p_ma && (ea.argt & EX_MODIFY))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 {
1975 /* Command not allowed in non-'modifiable' buffer */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001976 errormsg = _(e_modifiable);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 goto doend;
1978 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001979
Bram Moolenaar8071cb22019-07-12 17:58:01 +02001980 if (text_locked() && !(ea.argt & EX_CMDWIN)
Bram Moolenaar958636c2014-10-21 20:01:58 +02001981 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001982 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00001983 /* Command not allowed when editing the command line. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001984 errormsg = _(get_text_locked_msg());
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 goto doend;
1986 }
Bram Moolenaar379fb762018-08-30 15:58:28 +02001987
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001988 /* Disallow editing another buffer when "curbuf_lock" is set.
Bram Moolenaar379fb762018-08-30 15:58:28 +02001989 * Do allow ":checktime" (it is postponed).
1990 * Do allow ":edit" (check for an argument later).
1991 * Do allow ":file" with no arguments (check for an argument later). */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02001992 if (!(ea.argt & EX_CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00001993 && ea.cmdidx != CMD_checktime
Bram Moolenaar379fb762018-08-30 15:58:28 +02001994 && ea.cmdidx != CMD_edit
1995 && ea.cmdidx != CMD_file
Bram Moolenaar958636c2014-10-21 20:01:58 +02001996 && !IS_USER_CMDIDX(ea.cmdidx)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001997 && curbuf_locked())
1998 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002000 if (!ni && !(ea.argt & EX_RANGE) && ea.addr_count > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 {
2002 /* no range allowed */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002003 errormsg = _(e_norange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 goto doend;
2005 }
2006 }
2007
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002008 if (!ni && !(ea.argt & EX_BANG) && ea.forceit) // no <!> allowed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002010 errormsg = _(e_nobang);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 goto doend;
2012 }
2013
2014 /*
2015 * Don't complain about the range if it is not used
2016 * (could happen if line_count is accidentally set to 0).
2017 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002018 if (!ea.skip && !ni && (ea.argt & EX_RANGE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 {
2020 /*
2021 * If the range is backwards, ask for confirmation and, if given, swap
2022 * ea.line1 & ea.line2 so it's forwards again.
2023 * When global command is busy, don't ask, will fail below.
2024 */
2025 if (!global_busy && ea.line1 > ea.line2)
2026 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002027 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002029 if (sourcing || exmode_active)
2030 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002031 errormsg = _("E493: Backwards range given");
Bram Moolenaara5792f52005-11-23 21:25:05 +00002032 goto doend;
2033 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 if (ask_yesno((char_u *)
2035 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002036 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 }
2038 lnum = ea.line1;
2039 ea.line1 = ea.line2;
2040 ea.line2 = lnum;
2041 }
2042 if ((errormsg = invalid_range(&ea)) != NULL)
2043 goto doend;
2044 }
2045
Bram Moolenaarb7316892019-05-01 18:08:42 +02002046 if ((ea.addr_type == ADDR_OTHER) && ea.addr_count == 0)
2047 // default is 1, not cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 ea.line2 = 1;
2049
2050 correct_range(&ea);
2051
2052#ifdef FEAT_FOLDING
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002053 if (((ea.argt & EX_WHOLEFOLD) || ea.addr_count >= 2) && !global_busy
Bram Moolenaara3306952016-01-02 21:41:06 +01002054 && ea.addr_type == ADDR_LINES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 {
2056 /* Put the first line at the start of a closed fold, put the last line
2057 * at the end of a closed fold. */
2058 (void)hasFolding(ea.line1, &ea.line1, NULL);
2059 (void)hasFolding(ea.line2, NULL, &ea.line2);
2060 }
2061#endif
2062
2063#ifdef FEAT_QUICKFIX
2064 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002065 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 * option here, so things like % get expanded.
2067 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002068 p = replace_makeprg(&ea, p, cmdlinep);
2069 if (p == NULL)
2070 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071#endif
2072
2073 /*
2074 * Skip to start of argument.
2075 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2076 */
2077 if (ea.cmdidx == CMD_bang)
2078 ea.arg = p;
2079 else
2080 ea.arg = skipwhite(p);
2081
Bram Moolenaar379fb762018-08-30 15:58:28 +02002082 // ":file" cannot be run with an argument when "curbuf_lock" is set
2083 if (ea.cmdidx == CMD_file && *ea.arg != NUL && curbuf_locked())
2084 goto doend;
2085
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086 /*
2087 * Check for "++opt=val" argument.
2088 * Must be first, allow ":w ++enc=utf8 !cmd"
2089 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002090 if (ea.argt & EX_ARGOPT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2092 if (getargopt(&ea) == FAIL && !ni)
2093 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002094 errormsg = _(e_invarg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 goto doend;
2096 }
2097
2098 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2099 {
2100 if (*ea.arg == '>') /* append */
2101 {
2102 if (*++ea.arg != '>') /* typed wrong */
2103 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002104 errormsg = _("E494: Use w or w>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 goto doend;
2106 }
2107 ea.arg = skipwhite(ea.arg + 1);
2108 ea.append = TRUE;
2109 }
2110 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2111 {
2112 ++ea.arg;
2113 ea.usefilter = TRUE;
2114 }
2115 }
2116
2117 if (ea.cmdidx == CMD_read)
2118 {
2119 if (ea.forceit)
2120 {
2121 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2122 ea.forceit = FALSE;
2123 }
2124 else if (*ea.arg == '!') /* :r !filter */
2125 {
2126 ++ea.arg;
2127 ea.usefilter = TRUE;
2128 }
2129 }
2130
2131 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2132 {
2133 ea.amount = 1;
2134 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2135 {
2136 ++ea.arg;
2137 ++ea.amount;
2138 }
2139 ea.arg = skipwhite(ea.arg);
2140 }
2141
2142 /*
2143 * Check for "+command" argument, before checking for next command.
2144 * Don't do this for ":read !cmd" and ":write !cmd".
2145 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002146 if ((ea.argt & EX_CMDARG) && !ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002147 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2148
2149 /*
2150 * Check for '|' to separate commands and '"' to start comments.
2151 * Don't do this for ":read !cmd" and ":write !cmd".
2152 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002153 if ((ea.argt & EX_TRLBAR) && !ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 separate_nextcmd(&ea);
2155
2156 /*
2157 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002158 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2159 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002161 else if (ea.cmdidx == CMD_bang
Bram Moolenaar67883b42017-07-27 22:57:00 +02002162 || ea.cmdidx == CMD_terminal
Bram Moolenaardf177f62005-02-22 08:39:57 +00002163 || ea.cmdidx == CMD_global
2164 || ea.cmdidx == CMD_vglobal
2165 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 {
2167 for (p = ea.arg; *p; ++p)
2168 {
2169 /* Remove one backslash before a newline, so that it's possible to
2170 * pass a newline to the shell and also a newline that is preceded
2171 * with a backslash. This makes it impossible to end a shell
2172 * command in a backslash, but that doesn't appear useful.
2173 * Halving the number of backslashes is incompatible with previous
2174 * versions. */
2175 if (*p == '\\' && p[1] == '\n')
Bram Moolenaara7241f52008-06-24 20:39:31 +00002176 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 else if (*p == '\n')
2178 {
2179 ea.nextcmd = p + 1;
2180 *p = NUL;
2181 break;
2182 }
2183 }
2184 }
2185
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002186 if ((ea.argt & EX_DFLALL) && ea.addr_count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 {
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002188 buf_T *buf;
2189
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 ea.line1 = 1;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002191 switch (ea.addr_type)
2192 {
2193 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02002194 case ADDR_OTHER:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002195 ea.line2 = curbuf->b_ml.ml_line_count;
2196 break;
2197 case ADDR_LOADED_BUFFERS:
2198 buf = firstbuf;
2199 while (buf->b_next != NULL && buf->b_ml.ml_mfp == NULL)
2200 buf = buf->b_next;
2201 ea.line1 = buf->b_fnum;
2202 buf = lastbuf;
2203 while (buf->b_prev != NULL && buf->b_ml.ml_mfp == NULL)
2204 buf = buf->b_prev;
2205 ea.line2 = buf->b_fnum;
2206 break;
2207 case ADDR_BUFFERS:
2208 ea.line1 = firstbuf->b_fnum;
2209 ea.line2 = lastbuf->b_fnum;
2210 break;
2211 case ADDR_WINDOWS:
2212 ea.line2 = LAST_WIN_NR;
2213 break;
2214 case ADDR_TABS:
2215 ea.line2 = LAST_TAB_NR;
2216 break;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01002217 case ADDR_TABS_RELATIVE:
2218 ea.line2 = 1;
2219 break;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002220 case ADDR_ARGUMENTS:
2221 if (ARGCOUNT == 0)
2222 ea.line1 = ea.line2 = 0;
2223 else
2224 ea.line2 = ARGCOUNT;
2225 break;
Bram Moolenaar25190db2019-05-04 15:05:28 +02002226 case ADDR_QUICKFIX_VALID:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02002227#ifdef FEAT_QUICKFIX
Bram Moolenaar25190db2019-05-04 15:05:28 +02002228 ea.line2 = qf_get_valid_size(&ea);
Bram Moolenaaraa23b372015-09-08 18:46:31 +02002229 if (ea.line2 == 0)
2230 ea.line2 = 1;
Bram Moolenaare906c502015-09-09 21:10:39 +02002231#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02002232 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02002233 case ADDR_NONE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02002234 case ADDR_UNSIGNED:
2235 case ADDR_QUICKFIX:
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002236 iemsg(_("INTERNAL: Cannot use EX_DFLALL with ADDR_NONE, ADDR_UNSIGNED or ADDR_QUICKFIX"));
Bram Moolenaarb7316892019-05-01 18:08:42 +02002237 break;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 }
2240
2241 /* accept numbered register only when no count allowed (:put) */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002242 if ( (ea.argt & EX_REGSTR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 && *ea.arg != NUL
Bram Moolenaar958636c2014-10-21 20:01:58 +02002244 /* Do not allow register = for user commands */
2245 && (!IS_USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002246 && !((ea.argt & EX_COUNT) && VIM_ISDIGIT(*ea.arg)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002248#ifndef FEAT_CLIPBOARD
2249 /* check these explicitly for a more specific error message */
2250 if (*ea.arg == '*' || *ea.arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 {
Bram Moolenaar99b12722019-01-14 20:16:40 +01002252 errormsg = _(e_invalidreg);
Bram Moolenaar85de2062011-05-05 14:26:41 +02002253 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 }
2255#endif
Bram Moolenaar958636c2014-10-21 20:01:58 +02002256 if (valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2257 && !IS_USER_CMDIDX(ea.cmdidx))))
Bram Moolenaar85de2062011-05-05 14:26:41 +02002258 {
2259 ea.regname = *ea.arg++;
2260#ifdef FEAT_EVAL
2261 /* for '=' register: accept the rest of the line as an expression */
2262 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2263 {
2264 set_expr_line(vim_strsave(ea.arg));
2265 ea.arg += STRLEN(ea.arg);
2266 }
2267#endif
2268 ea.arg = skipwhite(ea.arg);
2269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 }
2271
2272 /*
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002273 * Check for a count. When accepting a EX_BUFNAME, don't use "123foo" as a
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 * count, it's a buffer name.
2275 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002276 if ((ea.argt & EX_COUNT) && VIM_ISDIGIT(*ea.arg)
2277 && (!(ea.argt & EX_BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
Bram Moolenaar1c465442017-03-12 20:10:05 +01002278 || VIM_ISWHITE(*p)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002279 {
2280 n = getdigits(&ea.arg);
2281 ea.arg = skipwhite(ea.arg);
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002282 if (n <= 0 && !ni && (ea.argt & EX_ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002284 errormsg = _(e_zerocount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285 goto doend;
2286 }
Bram Moolenaarb7316892019-05-01 18:08:42 +02002287 if (ea.addr_type != ADDR_LINES) // e.g. :buffer 2, :sleep 3
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 {
2289 ea.line2 = n;
2290 if (ea.addr_count == 0)
2291 ea.addr_count = 1;
2292 }
2293 else
2294 {
2295 ea.line1 = ea.line2;
2296 ea.line2 += n - 1;
2297 ++ea.addr_count;
2298 /*
2299 * Be vi compatible: no error message for out of range.
2300 */
Bram Moolenaarb7316892019-05-01 18:08:42 +02002301 if (ea.line2 > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 ea.line2 = curbuf->b_ml.ml_line_count;
2303 }
2304 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002305
2306 /*
2307 * Check for flags: 'l', 'p' and '#'.
2308 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002309 if (ea.argt & EX_FLAGS)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002310 get_flags(&ea);
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002311 if (!ni && !(ea.argt & EX_EXTRA) && *ea.arg != NUL
2312 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & EX_TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 {
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002314 // no arguments allowed but there is something
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002315 errormsg = _(e_trailing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 goto doend;
2317 }
2318
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002319 if (!ni && (ea.argt & EX_NEEDARG) && *ea.arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002321 errormsg = _(e_argreq);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322 goto doend;
2323 }
2324
2325#ifdef FEAT_EVAL
2326 /*
2327 * Skip the command when it's not going to be executed.
2328 * The commands like :if, :endif, etc. always need to be executed.
2329 * Also make an exception for commands that handle a trailing command
2330 * themselves.
2331 */
2332 if (ea.skip)
2333 {
2334 switch (ea.cmdidx)
2335 {
2336 /* commands that need evaluation */
2337 case CMD_while:
2338 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002339 case CMD_for:
2340 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 case CMD_if:
2342 case CMD_elseif:
2343 case CMD_else:
2344 case CMD_endif:
2345 case CMD_try:
2346 case CMD_catch:
2347 case CMD_finally:
2348 case CMD_endtry:
2349 case CMD_function:
2350 break;
2351
2352 /* Commands that handle '|' themselves. Check: A command should
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002353 * either have the EX_TRLBAR flag, appear in this list or appear in
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 * the list at ":help :bar". */
2355 case CMD_aboveleft:
2356 case CMD_and:
2357 case CMD_belowright:
2358 case CMD_botright:
2359 case CMD_browse:
2360 case CMD_call:
2361 case CMD_confirm:
Bram Moolenaar8f76e6b2019-11-26 16:50:30 +01002362 case CMD_const:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 case CMD_delfunction:
2364 case CMD_djump:
2365 case CMD_dlist:
2366 case CMD_dsearch:
2367 case CMD_dsplit:
2368 case CMD_echo:
2369 case CMD_echoerr:
2370 case CMD_echomsg:
2371 case CMD_echon:
2372 case CMD_execute:
Bram Moolenaar7b668e82016-08-23 23:51:21 +02002373 case CMD_filter:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 case CMD_help:
2375 case CMD_hide:
2376 case CMD_ijump:
2377 case CMD_ilist:
2378 case CMD_isearch:
2379 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002380 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 case CMD_keepjumps:
2382 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01002383 case CMD_keeppatterns:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 case CMD_leftabove:
2385 case CMD_let:
2386 case CMD_lockmarks:
Bram Moolenaar0ba04292010-07-14 23:23:17 +02002387 case CMD_lua:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002389 case CMD_mzscheme:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01002390 case CMD_noautocmd:
2391 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 case CMD_perl:
2393 case CMD_psearch:
2394 case CMD_python:
Bram Moolenaar368373e2010-07-19 20:46:22 +02002395 case CMD_py3:
Bram Moolenaarb6590522010-07-21 16:00:43 +02002396 case CMD_python3:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 case CMD_return:
2398 case CMD_rightbelow:
2399 case CMD_ruby:
2400 case CMD_silent:
2401 case CMD_smagic:
2402 case CMD_snomagic:
2403 case CMD_substitute:
2404 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002405 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 case CMD_tcl:
2407 case CMD_throw:
2408 case CMD_tilde:
2409 case CMD_topleft:
2410 case CMD_unlet:
2411 case CMD_verbose:
2412 case CMD_vertical:
Bram Moolenaar12bde492011-06-13 01:19:56 +02002413 case CMD_wincmd:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 break;
2415
2416 default: goto doend;
2417 }
2418 }
2419#endif
2420
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002421 if (ea.argt & EX_XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 {
2423 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2424 goto doend;
2425 }
2426
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 /*
2428 * Accept buffer name. Cannot be used at the same time with a buffer
2429 * number. Don't do this for a user command.
2430 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002431 if ((ea.argt & EX_BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
Bram Moolenaar958636c2014-10-21 20:01:58 +02002432 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 {
2434 /*
2435 * :bdelete, :bwipeout and :bunload take several arguments, separated
2436 * by spaces: find next space (skipping over escaped characters).
2437 * The others take one argument: ignore trailing spaces.
2438 */
2439 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2440 || ea.cmdidx == CMD_bunload)
2441 p = skiptowhite_esc(ea.arg);
2442 else
2443 {
2444 p = ea.arg + STRLEN(ea.arg);
Bram Moolenaar1c465442017-03-12 20:10:05 +01002445 while (p > ea.arg && VIM_ISWHITE(p[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 --p;
2447 }
Bram Moolenaar8071cb22019-07-12 17:58:01 +02002448 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & EX_BUFUNL) != 0,
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002449 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 if (ea.line2 < 0) /* failed */
2451 goto doend;
2452 ea.addr_count = 1;
2453 ea.arg = skipwhite(p);
2454 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455
Bram Moolenaar2be57332018-02-13 18:05:18 +01002456 /* The :try command saves the emsg_silent flag, reset it here when
2457 * ":silent! try" was used, it should only apply to :try itself. */
Bram Moolenaareffed932018-08-14 13:38:17 +02002458 if (ea.cmdidx == CMD_try && ea.did_esilent > 0)
Bram Moolenaar2be57332018-02-13 18:05:18 +01002459 {
Bram Moolenaareffed932018-08-14 13:38:17 +02002460 emsg_silent -= ea.did_esilent;
Bram Moolenaar2be57332018-02-13 18:05:18 +01002461 if (emsg_silent < 0)
2462 emsg_silent = 0;
Bram Moolenaareffed932018-08-14 13:38:17 +02002463 ea.did_esilent = 0;
Bram Moolenaar2be57332018-02-13 18:05:18 +01002464 }
2465
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466/*
Bram Moolenaar2be57332018-02-13 18:05:18 +01002467 * 7. Execute the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469
Bram Moolenaar958636c2014-10-21 20:01:58 +02002470 if (IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 {
2472 /*
2473 * Execute a user-defined command.
2474 */
2475 do_ucmd(&ea);
2476 }
2477 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 {
2479 /*
Bram Moolenaarac9fb182019-04-27 13:04:13 +02002480 * Call the function to execute the builtin command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 */
2482 ea.errmsg = NULL;
2483 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2484 if (ea.errmsg != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002485 errormsg = _(ea.errmsg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 }
2487
2488#ifdef FEAT_EVAL
2489 /*
2490 * If the command just executed called do_cmdline(), any throw or ":return"
2491 * or ":finish" encountered there must also check the cstack of the still
2492 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2493 * exception, or reanimate a returned function or finished script file and
2494 * return or finish it again.
2495 */
2496 if (need_rethrow)
2497 do_throw(cstack);
2498 else if (check_cstack)
2499 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002500 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002502 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503 && current_func_returned())
2504 do_return(&ea, TRUE, FALSE, NULL);
2505 }
2506 need_rethrow = check_cstack = FALSE;
2507#endif
2508
2509doend:
2510 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
Bram Moolenaar6de5e122017-04-20 21:55:44 +02002511 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 curwin->w_cursor.lnum = 1;
Bram Moolenaar6de5e122017-04-20 21:55:44 +02002513 curwin->w_cursor.col = 0;
2514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515
2516 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2517 {
2518 if (sourcing)
2519 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002520 if (errormsg != (char *)IObuff)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 {
2522 STRCPY(IObuff, errormsg);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002523 errormsg = (char *)IObuff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 }
Bram Moolenaara6f4d612011-09-21 19:10:46 +02002525 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 }
2527 emsg(errormsg);
2528 }
2529#ifdef FEAT_EVAL
2530 do_errthrow(cstack,
Bram Moolenaar958636c2014-10-21 20:01:58 +02002531 (ea.cmdidx != CMD_SIZE && !IS_USER_CMDIDX(ea.cmdidx))
2532 ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533#endif
2534
Bram Moolenaareffed932018-08-14 13:38:17 +02002535 if (ea.verbose_save >= 0)
2536 p_verbose = ea.verbose_save;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01002537
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002538 free_cmdmod();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539 cmdmod = save_cmdmod;
Bram Moolenaar9a2c0912019-03-30 14:26:18 +01002540 reg_executing = save_reg_executing;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541
Bram Moolenaareffed932018-08-14 13:38:17 +02002542 if (ea.save_msg_silent != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 {
2544 /* messages could be enabled for a serious error, need to check if the
2545 * counters don't become negative */
Bram Moolenaareffed932018-08-14 13:38:17 +02002546 if (!did_emsg || msg_silent > ea.save_msg_silent)
2547 msg_silent = ea.save_msg_silent;
2548 emsg_silent -= ea.did_esilent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 if (emsg_silent < 0)
2550 emsg_silent = 0;
2551 /* Restore msg_scroll, it's set by file I/O commands, even when no
2552 * message is actually displayed. */
2553 msg_scroll = save_msg_scroll;
Bram Moolenaar77ab2802009-04-22 12:44:48 +00002554
2555 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
2556 * somewhere in the line. Put it back in the first column. */
2557 if (redirecting())
2558 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 }
2560
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002561#ifdef HAVE_SANDBOX
Bram Moolenaareffed932018-08-14 13:38:17 +02002562 if (ea.did_sandbox)
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002563 --sandbox;
2564#endif
2565
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2567 ea.nextcmd = NULL;
2568
2569#ifdef FEAT_EVAL
2570 --ex_nesting_level;
2571#endif
2572
2573 return ea.nextcmd;
2574}
2575#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00002576 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577#endif
2578
2579/*
Bram Moolenaareffed932018-08-14 13:38:17 +02002580 * Parse and skip over command modifiers:
2581 * - update eap->cmd
2582 * - store flags in "cmdmod".
2583 * - Set ex_pressedreturn for an empty command line.
2584 * - set msg_silent for ":silent"
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002585 * - set 'eventignore' to "all" for ":noautocmd"
Bram Moolenaareffed932018-08-14 13:38:17 +02002586 * - set p_verbose for ":verbose"
2587 * - Increment "sandbox" for ":sandbox"
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002588 * When "skip_only" is TRUE the global variables are not changed, except for
2589 * "cmdmod".
Bram Moolenaareffed932018-08-14 13:38:17 +02002590 * Return FAIL when the command is not to be executed.
2591 * May set "errormsg" to an error message.
2592 */
2593 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002594parse_command_modifiers(exarg_T *eap, char **errormsg, int skip_only)
Bram Moolenaareffed932018-08-14 13:38:17 +02002595{
2596 char_u *p;
2597
2598 vim_memset(&cmdmod, 0, sizeof(cmdmod));
2599 eap->verbose_save = -1;
2600 eap->save_msg_silent = -1;
2601
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002602 // Repeat until no more command modifiers are found.
Bram Moolenaareffed932018-08-14 13:38:17 +02002603 for (;;)
2604 {
Bram Moolenaareffed932018-08-14 13:38:17 +02002605 while (*eap->cmd == ' ' || *eap->cmd == '\t' || *eap->cmd == ':')
2606 ++eap->cmd;
2607
2608 /* in ex mode, an empty line works like :+ */
2609 if (*eap->cmd == NUL && exmode_active
2610 && (getline_equal(eap->getline, eap->cookie, getexmodeline)
2611 || getline_equal(eap->getline, eap->cookie, getexline))
2612 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
2613 {
2614 eap->cmd = (char_u *)"+";
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002615 if (!skip_only)
2616 ex_pressedreturn = TRUE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002617 }
2618
2619 /* ignore comment and empty lines */
2620 if (*eap->cmd == '"')
2621 return FAIL;
2622 if (*eap->cmd == NUL)
2623 {
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002624 if (!skip_only)
2625 ex_pressedreturn = TRUE;
Bram Moolenaareffed932018-08-14 13:38:17 +02002626 return FAIL;
2627 }
2628
Bram Moolenaareffed932018-08-14 13:38:17 +02002629 p = skip_range(eap->cmd, NULL);
2630 switch (*p)
2631 {
2632 /* When adding an entry, also modify cmd_exists(). */
2633 case 'a': if (!checkforcmd(&eap->cmd, "aboveleft", 3))
2634 break;
2635 cmdmod.split |= WSP_ABOVE;
2636 continue;
2637
2638 case 'b': if (checkforcmd(&eap->cmd, "belowright", 3))
2639 {
2640 cmdmod.split |= WSP_BELOW;
2641 continue;
2642 }
2643 if (checkforcmd(&eap->cmd, "browse", 3))
2644 {
2645#ifdef FEAT_BROWSE_CMD
2646 cmdmod.browse = TRUE;
2647#endif
2648 continue;
2649 }
2650 if (!checkforcmd(&eap->cmd, "botright", 2))
2651 break;
2652 cmdmod.split |= WSP_BOT;
2653 continue;
2654
2655 case 'c': if (!checkforcmd(&eap->cmd, "confirm", 4))
2656 break;
2657#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2658 cmdmod.confirm = TRUE;
2659#endif
2660 continue;
2661
2662 case 'k': if (checkforcmd(&eap->cmd, "keepmarks", 3))
2663 {
2664 cmdmod.keepmarks = TRUE;
2665 continue;
2666 }
2667 if (checkforcmd(&eap->cmd, "keepalt", 5))
2668 {
2669 cmdmod.keepalt = TRUE;
2670 continue;
2671 }
2672 if (checkforcmd(&eap->cmd, "keeppatterns", 5))
2673 {
2674 cmdmod.keeppatterns = TRUE;
2675 continue;
2676 }
2677 if (!checkforcmd(&eap->cmd, "keepjumps", 5))
2678 break;
2679 cmdmod.keepjumps = TRUE;
2680 continue;
2681
2682 case 'f': /* only accept ":filter {pat} cmd" */
2683 {
2684 char_u *reg_pat;
2685
2686 if (!checkforcmd(&p, "filter", 4)
2687 || *p == NUL || ends_excmd(*p))
2688 break;
2689 if (*p == '!')
2690 {
2691 cmdmod.filter_force = TRUE;
2692 p = skipwhite(p + 1);
2693 if (*p == NUL || ends_excmd(*p))
2694 break;
2695 }
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002696 if (skip_only)
2697 p = skip_vimgrep_pat(p, NULL, NULL);
2698 else
2699 // NOTE: This puts a NUL after the pattern.
2700 p = skip_vimgrep_pat(p, &reg_pat, NULL);
Bram Moolenaareffed932018-08-14 13:38:17 +02002701 if (p == NULL || *p == NUL)
2702 break;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002703 if (!skip_only)
2704 {
2705 cmdmod.filter_regmatch.regprog =
Bram Moolenaareffed932018-08-14 13:38:17 +02002706 vim_regcomp(reg_pat, RE_MAGIC);
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002707 if (cmdmod.filter_regmatch.regprog == NULL)
2708 break;
2709 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002710 eap->cmd = p;
2711 continue;
2712 }
2713
2714 /* ":hide" and ":hide | cmd" are not modifiers */
2715 case 'h': if (p != eap->cmd || !checkforcmd(&p, "hide", 3)
2716 || *p == NUL || ends_excmd(*p))
2717 break;
2718 eap->cmd = p;
2719 cmdmod.hide = TRUE;
2720 continue;
2721
2722 case 'l': if (checkforcmd(&eap->cmd, "lockmarks", 3))
2723 {
2724 cmdmod.lockmarks = TRUE;
2725 continue;
2726 }
2727
2728 if (!checkforcmd(&eap->cmd, "leftabove", 5))
2729 break;
2730 cmdmod.split |= WSP_ABOVE;
2731 continue;
2732
2733 case 'n': if (checkforcmd(&eap->cmd, "noautocmd", 3))
2734 {
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002735 if (cmdmod.save_ei == NULL && !skip_only)
Bram Moolenaareffed932018-08-14 13:38:17 +02002736 {
2737 /* Set 'eventignore' to "all". Restore the
2738 * existing option value later. */
2739 cmdmod.save_ei = vim_strsave(p_ei);
2740 set_string_option_direct((char_u *)"ei", -1,
2741 (char_u *)"all", OPT_FREE, SID_NONE);
2742 }
2743 continue;
2744 }
2745 if (!checkforcmd(&eap->cmd, "noswapfile", 3))
2746 break;
2747 cmdmod.noswapfile = TRUE;
2748 continue;
2749
2750 case 'r': if (!checkforcmd(&eap->cmd, "rightbelow", 6))
2751 break;
2752 cmdmod.split |= WSP_BELOW;
2753 continue;
2754
2755 case 's': if (checkforcmd(&eap->cmd, "sandbox", 3))
2756 {
2757#ifdef HAVE_SANDBOX
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002758 if (!skip_only)
2759 {
2760 if (!eap->did_sandbox)
2761 ++sandbox;
2762 eap->did_sandbox = TRUE;
2763 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002764#endif
2765 continue;
2766 }
2767 if (!checkforcmd(&eap->cmd, "silent", 3))
2768 break;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002769 if (!skip_only)
2770 {
2771 if (eap->save_msg_silent == -1)
2772 eap->save_msg_silent = msg_silent;
2773 ++msg_silent;
2774 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002775 if (*eap->cmd == '!' && !VIM_ISWHITE(eap->cmd[-1]))
2776 {
2777 /* ":silent!", but not "silent !cmd" */
2778 eap->cmd = skipwhite(eap->cmd + 1);
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002779 if (!skip_only)
2780 {
2781 ++emsg_silent;
2782 ++eap->did_esilent;
2783 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002784 }
2785 continue;
2786
2787 case 't': if (checkforcmd(&p, "tab", 3))
2788 {
Bram Moolenaar548e5982018-12-26 21:45:00 +01002789 if (!skip_only)
Bram Moolenaareffed932018-08-14 13:38:17 +02002790 {
Bram Moolenaar548e5982018-12-26 21:45:00 +01002791 long tabnr = get_address(eap, &eap->cmd,
2792 ADDR_TABS, eap->skip,
2793 skip_only, FALSE, 1);
2794 if (tabnr == MAXLNUM)
2795 cmdmod.tab = tabpage_index(curtab) + 1;
2796 else
Bram Moolenaareffed932018-08-14 13:38:17 +02002797 {
Bram Moolenaar548e5982018-12-26 21:45:00 +01002798 if (tabnr < 0 || tabnr > LAST_TAB_NR)
2799 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002800 *errormsg = _(e_invrange);
Bram Moolenaar548e5982018-12-26 21:45:00 +01002801 return FAIL;
2802 }
2803 cmdmod.tab = tabnr + 1;
Bram Moolenaareffed932018-08-14 13:38:17 +02002804 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002805 }
2806 eap->cmd = p;
2807 continue;
2808 }
2809 if (!checkforcmd(&eap->cmd, "topleft", 2))
2810 break;
2811 cmdmod.split |= WSP_TOP;
2812 continue;
2813
2814 case 'u': if (!checkforcmd(&eap->cmd, "unsilent", 3))
2815 break;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002816 if (!skip_only)
2817 {
2818 if (eap->save_msg_silent == -1)
2819 eap->save_msg_silent = msg_silent;
2820 msg_silent = 0;
2821 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002822 continue;
2823
2824 case 'v': if (checkforcmd(&eap->cmd, "vertical", 4))
2825 {
2826 cmdmod.split |= WSP_VERT;
2827 continue;
2828 }
2829 if (!checkforcmd(&p, "verbose", 4))
2830 break;
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002831 if (!skip_only)
2832 {
2833 if (eap->verbose_save < 0)
2834 eap->verbose_save = p_verbose;
2835 if (vim_isdigit(*eap->cmd))
2836 p_verbose = atoi((char *)eap->cmd);
2837 else
2838 p_verbose = 1;
2839 }
Bram Moolenaareffed932018-08-14 13:38:17 +02002840 eap->cmd = p;
2841 continue;
2842 }
2843 break;
2844 }
2845
2846 return OK;
2847}
2848
2849/*
Bram Moolenaar33c4dbb2018-08-14 16:06:16 +02002850 * Free contents of "cmdmod".
2851 */
2852 static void
2853free_cmdmod(void)
2854{
2855 if (cmdmod.save_ei != NULL)
2856 {
2857 /* Restore 'eventignore' to the value before ":noautocmd". */
2858 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2859 OPT_FREE, SID_NONE);
2860 free_string_option(cmdmod.save_ei);
2861 }
2862
2863 if (cmdmod.filter_regmatch.regprog != NULL)
2864 vim_regfree(cmdmod.filter_regmatch.regprog);
2865}
2866
2867/*
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002868 * Parse the address range, if any, in "eap".
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02002869 * May set the last search pattern, unless "silent" is TRUE.
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002870 * Return FAIL and set "errormsg" or return OK.
2871 */
2872 int
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002873parse_cmd_address(exarg_T *eap, char **errormsg, int silent)
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002874{
2875 int address_count = 1;
2876 linenr_T lnum;
2877
2878 // Repeat for all ',' or ';' separated addresses.
2879 for (;;)
2880 {
2881 eap->line1 = eap->line2;
2882 switch (eap->addr_type)
2883 {
2884 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02002885 case ADDR_OTHER:
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002886 // default is current line number
2887 eap->line2 = curwin->w_cursor.lnum;
2888 break;
2889 case ADDR_WINDOWS:
2890 eap->line2 = CURRENT_WIN_NR;
2891 break;
2892 case ADDR_ARGUMENTS:
2893 eap->line2 = curwin->w_arg_idx + 1;
2894 if (eap->line2 > ARGCOUNT)
2895 eap->line2 = ARGCOUNT;
2896 break;
2897 case ADDR_LOADED_BUFFERS:
2898 case ADDR_BUFFERS:
2899 eap->line2 = curbuf->b_fnum;
2900 break;
2901 case ADDR_TABS:
2902 eap->line2 = CURRENT_TAB_NR;
2903 break;
2904 case ADDR_TABS_RELATIVE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02002905 case ADDR_UNSIGNED:
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002906 eap->line2 = 1;
2907 break;
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002908 case ADDR_QUICKFIX:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02002909#ifdef FEAT_QUICKFIX
Bram Moolenaar25190db2019-05-04 15:05:28 +02002910 eap->line2 = qf_get_cur_idx(eap);
2911#endif
2912 break;
2913 case ADDR_QUICKFIX_VALID:
2914#ifdef FEAT_QUICKFIX
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002915 eap->line2 = qf_get_cur_valid_idx(eap);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002916#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02002917 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02002918 case ADDR_NONE:
2919 // Will give an error later if a range is found.
2920 break;
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002921 }
2922 eap->cmd = skipwhite(eap->cmd);
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02002923 lnum = get_address(eap, &eap->cmd, eap->addr_type, eap->skip, silent,
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002924 eap->addr_count == 0, address_count++);
2925 if (eap->cmd == NULL) // error detected
2926 return FAIL;
2927 if (lnum == MAXLNUM)
2928 {
2929 if (*eap->cmd == '%') // '%' - all lines
2930 {
2931 ++eap->cmd;
2932 switch (eap->addr_type)
2933 {
2934 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02002935 case ADDR_OTHER:
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002936 eap->line1 = 1;
2937 eap->line2 = curbuf->b_ml.ml_line_count;
2938 break;
2939 case ADDR_LOADED_BUFFERS:
2940 {
2941 buf_T *buf = firstbuf;
2942
2943 while (buf->b_next != NULL
2944 && buf->b_ml.ml_mfp == NULL)
2945 buf = buf->b_next;
2946 eap->line1 = buf->b_fnum;
2947 buf = lastbuf;
2948 while (buf->b_prev != NULL
2949 && buf->b_ml.ml_mfp == NULL)
2950 buf = buf->b_prev;
2951 eap->line2 = buf->b_fnum;
2952 break;
2953 }
2954 case ADDR_BUFFERS:
2955 eap->line1 = firstbuf->b_fnum;
2956 eap->line2 = lastbuf->b_fnum;
2957 break;
2958 case ADDR_WINDOWS:
2959 case ADDR_TABS:
2960 if (IS_USER_CMDIDX(eap->cmdidx))
2961 {
2962 eap->line1 = 1;
2963 eap->line2 = eap->addr_type == ADDR_WINDOWS
2964 ? LAST_WIN_NR : LAST_TAB_NR;
2965 }
2966 else
2967 {
2968 // there is no Vim command which uses '%' and
2969 // ADDR_WINDOWS or ADDR_TABS
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002970 *errormsg = _(e_invrange);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002971 return FAIL;
2972 }
2973 break;
2974 case ADDR_TABS_RELATIVE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02002975 case ADDR_UNSIGNED:
2976 case ADDR_QUICKFIX:
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002977 *errormsg = _(e_invrange);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002978 return FAIL;
2979 case ADDR_ARGUMENTS:
2980 if (ARGCOUNT == 0)
2981 eap->line1 = eap->line2 = 0;
2982 else
2983 {
2984 eap->line1 = 1;
2985 eap->line2 = ARGCOUNT;
2986 }
2987 break;
Bram Moolenaar25190db2019-05-04 15:05:28 +02002988 case ADDR_QUICKFIX_VALID:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02002989#ifdef FEAT_QUICKFIX
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002990 eap->line1 = 1;
Bram Moolenaar25190db2019-05-04 15:05:28 +02002991 eap->line2 = qf_get_valid_size(eap);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002992 if (eap->line2 == 0)
2993 eap->line2 = 1;
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002994#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02002995 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02002996 case ADDR_NONE:
2997 // Will give an error later if a range is found.
2998 break;
Bram Moolenaaree8415b2018-08-10 23:13:12 +02002999 }
3000 ++eap->addr_count;
3001 }
3002 else if (*eap->cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
3003 {
3004 pos_T *fp;
3005
3006 // '*' - visual area
3007 if (eap->addr_type != ADDR_LINES)
3008 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003009 *errormsg = _(e_invrange);
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003010 return FAIL;
3011 }
3012
3013 ++eap->cmd;
3014 if (!eap->skip)
3015 {
3016 fp = getmark('<', FALSE);
3017 if (check_mark(fp) == FAIL)
3018 return FAIL;
3019 eap->line1 = fp->lnum;
3020 fp = getmark('>', FALSE);
3021 if (check_mark(fp) == FAIL)
3022 return FAIL;
3023 eap->line2 = fp->lnum;
3024 ++eap->addr_count;
3025 }
3026 }
3027 }
3028 else
3029 eap->line2 = lnum;
3030 eap->addr_count++;
3031
3032 if (*eap->cmd == ';')
3033 {
3034 if (!eap->skip)
3035 {
3036 curwin->w_cursor.lnum = eap->line2;
3037 // don't leave the cursor on an illegal line or column
3038 check_cursor();
3039 }
3040 }
3041 else if (*eap->cmd != ',')
3042 break;
3043 ++eap->cmd;
3044 }
3045
3046 // One address given: set start and end lines.
3047 if (eap->addr_count == 1)
3048 {
3049 eap->line1 = eap->line2;
3050 // ... but only implicit: really no address given
3051 if (lnum == MAXLNUM)
3052 eap->addr_count = 0;
3053 }
3054 return OK;
3055}
3056
3057/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003058 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 * If there is a match advance "pp" to the argument and return TRUE.
3060 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003061 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003062checkforcmd(
3063 char_u **pp, /* start of command */
3064 char *cmd, /* name of command */
3065 int len) /* required length */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066{
3067 int i;
3068
3069 for (i = 0; cmd[i] != NUL; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003070 if (((char_u *)cmd)[i] != (*pp)[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 break;
3072 if (i >= len && !isalpha((*pp)[i]))
3073 {
3074 *pp = skipwhite(*pp + i);
3075 return TRUE;
3076 }
3077 return FALSE;
3078}
3079
3080/*
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003081 * Append "cmd" to the error message in IObuff.
3082 * Takes care of limiting the length and handling 0xa0, which would be
3083 * invisible otherwise.
3084 */
3085 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003086append_command(char_u *cmd)
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003087{
3088 char_u *s = cmd;
3089 char_u *d;
3090
3091 STRCAT(IObuff, ": ");
3092 d = IObuff + STRLEN(IObuff);
3093 while (*s != NUL && d - IObuff < IOSIZE - 7)
3094 {
Bram Moolenaar13505972019-01-24 15:04:48 +01003095 if (enc_utf8 ? (s[0] == 0xc2 && s[1] == 0xa0) : *s == 0xa0)
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003096 {
Bram Moolenaar13505972019-01-24 15:04:48 +01003097 s += enc_utf8 ? 2 : 1;
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003098 STRCPY(d, "<a0>");
3099 d += 4;
3100 }
3101 else
3102 MB_COPY_CHAR(s, d);
3103 }
3104 *d = NUL;
3105}
3106
3107/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003109 * Start of the name can be found at eap->cmd.
Bram Moolenaar25190db2019-05-04 15:05:28 +02003110 * Sets eap->cmdidx and returns a pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003111 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 * Returns NULL for an ambiguous user command.
3113 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003114 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003115find_command(exarg_T *eap, int *full UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116{
3117 int len;
3118 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003119 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120
3121 /*
3122 * Isolate the command and search for it in the command table.
Bram Moolenaar81870892007-11-11 18:17:28 +00003123 * Exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 * - the 'k' command can directly be followed by any character.
3125 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003126 * but :sre[wind] is another command, as are :scr[iptnames],
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00003128 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 */
3130 p = eap->cmd;
3131 if (*p == 'k')
3132 {
3133 eap->cmdidx = CMD_k;
3134 ++p;
3135 }
3136 else if (p[0] == 's'
Bram Moolenaar204b93f2015-08-04 22:02:51 +02003137 && ((p[1] == 'c' && (p[2] == NUL || (p[2] != 's' && p[2] != 'r'
3138 && (p[3] == NUL || (p[3] != 'i' && p[4] != 'p')))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 || p[1] == 'g'
3140 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
3141 || p[1] == 'I'
3142 || (p[1] == 'r' && p[2] != 'e')))
3143 {
3144 eap->cmdidx = CMD_substitute;
3145 ++p;
3146 }
3147 else
3148 {
3149 while (ASCII_ISALPHA(*p))
3150 ++p;
Bram Moolenaarb6590522010-07-21 16:00:43 +02003151 /* for python 3.x support ":py3", ":python3", ":py3file", etc. */
Bram Moolenaar55d5c032010-07-17 23:52:29 +02003152 if (eap->cmd[0] == 'p' && eap->cmd[1] == 'y')
Bram Moolenaarb6590522010-07-21 16:00:43 +02003153 while (ASCII_ISALNUM(*p))
3154 ++p;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02003155
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 /* check for non-alpha command */
3157 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3158 ++p;
3159 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003160 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
3161 {
3162 /* Check for ":dl", ":dell", etc. to ":deletel": that's
3163 * :delete with the 'l' flag. Same for 'p'. */
3164 for (i = 0; i < len; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003165 if (eap->cmd[i] != ((char_u *)"delete")[i])
Bram Moolenaardf177f62005-02-22 08:39:57 +00003166 break;
3167 if (i == len - 1)
3168 {
3169 --len;
3170 if (p[-1] == 'l')
3171 eap->flags |= EXFLAG_LIST;
3172 else
3173 eap->flags |= EXFLAG_PRINT;
3174 }
3175 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003177 if (ASCII_ISLOWER(eap->cmd[0]))
3178 {
Bram Moolenaar6c0c1e82017-03-25 15:07:43 +01003179 int c1 = eap->cmd[0];
Bram Moolenaar94f82cb2019-07-24 22:30:27 +02003180 int c2 = len == 1 ? NUL : eap->cmd[1];
Bram Moolenaar6c0c1e82017-03-25 15:07:43 +01003181
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003182 if (command_count != (int)CMD_SIZE)
3183 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003184 iemsg(_("E943: Command table needs to be updated, run 'make cmdidxs'"));
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003185 getout(1);
3186 }
3187
3188 /* Use a precomputed index for fast look-up in cmdnames[]
3189 * taking into account the first 2 letters of eap->cmd. */
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003190 eap->cmdidx = cmdidxs1[CharOrdLow(c1)];
3191 if (ASCII_ISLOWER(c2))
3192 eap->cmdidx += cmdidxs2[CharOrdLow(c1)][CharOrdLow(c2)];
3193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 else
Bram Moolenaare5e0fbc2017-03-25 14:51:01 +01003195 eap->cmdidx = CMD_bang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196
3197 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
3198 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
3199 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
3200 (size_t)len) == 0)
3201 {
3202#ifdef FEAT_EVAL
3203 if (full != NULL
3204 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
3205 *full = TRUE;
3206#endif
3207 break;
3208 }
3209
Bram Moolenaarac9fb182019-04-27 13:04:13 +02003210 // Look for a user defined command as a last resort. Let ":Print" be
3211 // overruled by a user defined command.
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01003212 if ((eap->cmdidx == CMD_SIZE || eap->cmdidx == CMD_Print)
3213 && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214 {
Bram Moolenaarac9fb182019-04-27 13:04:13 +02003215 // User defined commands may contain digits.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 while (ASCII_ISALNUM(*p))
3217 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003218 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003220 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 eap->cmdidx = CMD_SIZE;
3222 }
3223
3224 return p;
3225}
3226
3227#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003228static struct cmdmod
3229{
3230 char *name;
3231 int minlen;
3232 int has_count; /* :123verbose :3tab */
3233} cmdmods[] = {
3234 {"aboveleft", 3, FALSE},
3235 {"belowright", 3, FALSE},
3236 {"botright", 2, FALSE},
3237 {"browse", 3, FALSE},
3238 {"confirm", 4, FALSE},
Bram Moolenaar7b668e82016-08-23 23:51:21 +02003239 {"filter", 4, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003240 {"hide", 3, FALSE},
3241 {"keepalt", 5, FALSE},
3242 {"keepjumps", 5, FALSE},
3243 {"keepmarks", 3, FALSE},
Bram Moolenaara939e432013-11-09 05:30:26 +01003244 {"keeppatterns", 5, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003245 {"leftabove", 5, FALSE},
3246 {"lockmarks", 3, FALSE},
Bram Moolenaarca9f9582008-09-18 10:44:28 +00003247 {"noautocmd", 3, FALSE},
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003248 {"noswapfile", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003249 {"rightbelow", 6, FALSE},
3250 {"sandbox", 3, FALSE},
3251 {"silent", 3, FALSE},
3252 {"tab", 3, TRUE},
3253 {"topleft", 2, FALSE},
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003254 {"unsilent", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003255 {"verbose", 4, TRUE},
3256 {"vertical", 4, FALSE},
3257};
3258
3259/*
3260 * Return length of a command modifier (including optional count).
3261 * Return zero when it's not a modifier.
3262 */
3263 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003264modifier_len(char_u *cmd)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003265{
3266 int i, j;
3267 char_u *p = cmd;
3268
3269 if (VIM_ISDIGIT(*cmd))
3270 p = skipwhite(skipdigits(cmd));
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003271 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003272 {
3273 for (j = 0; p[j] != NUL; ++j)
3274 if (p[j] != cmdmods[i].name[j])
3275 break;
Bram Moolenaar2d473ab2013-06-12 17:12:24 +02003276 if (!ASCII_ISALPHA(p[j]) && j >= cmdmods[i].minlen
Bram Moolenaared53fb92007-11-24 20:50:24 +00003277 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003278 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003279 }
3280 return 0;
3281}
3282
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283/*
3284 * Return > 0 if an Ex command "name" exists.
3285 * Return 2 if there is an exact match.
3286 * Return 3 if there is an ambiguous match.
3287 */
3288 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003289cmd_exists(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290{
3291 exarg_T ea;
3292 int full = FALSE;
3293 int i;
3294 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003295 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296
3297 /* Check command modifiers. */
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003298 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 {
3300 for (j = 0; name[j] != NUL; ++j)
3301 if (name[j] != cmdmods[i].name[j])
3302 break;
3303 if (name[j] == NUL && j >= cmdmods[i].minlen)
3304 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3305 }
3306
Bram Moolenaara9587612006-05-04 21:47:50 +00003307 /* Check built-in commands and user defined commands.
3308 * For ":2match" and ":3match" we need to skip the number. */
3309 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003311 p = find_command(&ea, &full);
3312 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003314 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3315 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003316 if (*skipwhite(p) != NUL)
3317 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3319}
3320#endif
3321
Bram Moolenaard0190392019-08-23 21:17:35 +02003322 cmdidx_T
3323excmd_get_cmdidx(char_u *cmd, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324{
Bram Moolenaard0190392019-08-23 21:17:35 +02003325 cmdidx_T idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326
Bram Moolenaard0190392019-08-23 21:17:35 +02003327 for (idx = (cmdidx_T)0; (int)idx < (int)CMD_SIZE;
3328 idx = (cmdidx_T)((int)idx + 1))
3329 if (STRNCMP(cmdnames[(int)idx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003330 break;
3331
Bram Moolenaard0190392019-08-23 21:17:35 +02003332 return idx;
3333}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334
Bram Moolenaard0190392019-08-23 21:17:35 +02003335 long
3336excmd_get_argt(cmdidx_T idx)
3337{
3338 return (long)cmdnames[(int)idx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339}
3340
3341/*
Bram Moolenaaree8415b2018-08-10 23:13:12 +02003342 * Skip a range specifier of the form: addr [,addr] [;addr] ..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343 *
3344 * Backslashed delimiters after / or ? will be skipped, and commands will
3345 * not be expanded between /'s and ?'s or after "'".
3346 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003347 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 * Returns the "cmd" pointer advanced to beyond the range.
3349 */
3350 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003351skip_range(
3352 char_u *cmd,
3353 int *ctx) /* pointer to xp_context or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003355 unsigned delim;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356
Bram Moolenaarcbf20fb2017-02-03 21:19:04 +01003357 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;\\", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003358 {
Bram Moolenaarcbf20fb2017-02-03 21:19:04 +01003359 if (*cmd == '\\')
3360 {
3361 if (cmd[1] == '?' || cmd[1] == '/' || cmd[1] == '&')
3362 ++cmd;
3363 else
3364 break;
3365 }
3366 else if (*cmd == '\'')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 {
3368 if (*++cmd == NUL && ctx != NULL)
3369 *ctx = EXPAND_NOTHING;
3370 }
3371 else if (*cmd == '/' || *cmd == '?')
3372 {
3373 delim = *cmd++;
3374 while (*cmd != NUL && *cmd != delim)
3375 if (*cmd++ == '\\' && *cmd != NUL)
3376 ++cmd;
3377 if (*cmd == NUL && ctx != NULL)
3378 *ctx = EXPAND_NOTHING;
3379 }
3380 if (*cmd != NUL)
3381 ++cmd;
3382 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003383
3384 /* Skip ":" and white space. */
3385 while (*cmd == ':')
3386 cmd = skipwhite(cmd + 1);
3387
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 return cmd;
3389}
3390
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003391 static void
3392addr_error(cmd_addr_T addr_type)
3393{
3394 if (addr_type == ADDR_NONE)
3395 emsg(_(e_norange));
3396 else
3397 emsg(_(e_invrange));
3398}
3399
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400/*
Bram Moolenaar198cb662018-09-06 21:44:17 +02003401 * Get a single EX address.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 *
3403 * Set ptr to the next character after the part that was interpreted.
3404 * Set ptr to NULL when an error is encountered.
Bram Moolenaar198cb662018-09-06 21:44:17 +02003405 * This may set the last used search pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 *
3407 * Return MAXLNUM when no Ex address was found.
3408 */
3409 static linenr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003410get_address(
3411 exarg_T *eap UNUSED,
3412 char_u **ptr,
Bram Moolenaarb7316892019-05-01 18:08:42 +02003413 cmd_addr_T addr_type_arg,
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02003414 int skip, // only skip the address, don't use it
3415 int silent, // no errors or side effects
3416 int to_other_file, // flag: may jump to other file
3417 int address_count UNUSED) // 1 for first address, >1 after comma
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418{
Bram Moolenaarb7316892019-05-01 18:08:42 +02003419 cmd_addr_T addr_type = addr_type_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 int c;
3421 int i;
3422 long n;
3423 char_u *cmd;
3424 pos_T pos;
3425 pos_T *fp;
3426 linenr_T lnum;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003427 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428
3429 cmd = skipwhite(*ptr);
3430 lnum = MAXLNUM;
3431 do
3432 {
3433 switch (*cmd)
3434 {
3435 case '.': /* '.' - Cursor position */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003436 ++cmd;
3437 switch (addr_type)
3438 {
3439 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02003440 case ADDR_OTHER:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 lnum = curwin->w_cursor.lnum;
3442 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003443 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01003444 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003445 break;
3446 case ADDR_ARGUMENTS:
3447 lnum = curwin->w_arg_idx + 1;
3448 break;
3449 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003450 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003451 lnum = curbuf->b_fnum;
3452 break;
3453 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01003454 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003455 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02003456 case ADDR_NONE:
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003457 case ADDR_TABS_RELATIVE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02003458 case ADDR_UNSIGNED:
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003459 addr_error(addr_type);
Bram Moolenaar2f72c702017-01-29 14:48:10 +01003460 cmd = NULL;
3461 goto error;
3462 break;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003463 case ADDR_QUICKFIX:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003464#ifdef FEAT_QUICKFIX
Bram Moolenaar25190db2019-05-04 15:05:28 +02003465 lnum = qf_get_cur_idx(eap);
3466#endif
3467 break;
3468 case ADDR_QUICKFIX_VALID:
3469#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003470 lnum = qf_get_cur_valid_idx(eap);
Bram Moolenaare906c502015-09-09 21:10:39 +02003471#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003472 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003473 }
3474 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475
3476 case '$': /* '$' - last line */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003477 ++cmd;
3478 switch (addr_type)
3479 {
3480 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02003481 case ADDR_OTHER:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 lnum = curbuf->b_ml.ml_line_count;
3483 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003484 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01003485 lnum = LAST_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003486 break;
3487 case ADDR_ARGUMENTS:
3488 lnum = ARGCOUNT;
3489 break;
3490 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003491 buf = lastbuf;
3492 while (buf->b_ml.ml_mfp == NULL)
3493 {
3494 if (buf->b_prev == NULL)
3495 break;
3496 buf = buf->b_prev;
3497 }
3498 lnum = buf->b_fnum;
3499 break;
3500 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003501 lnum = lastbuf->b_fnum;
3502 break;
3503 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01003504 lnum = LAST_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003505 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02003506 case ADDR_NONE:
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003507 case ADDR_TABS_RELATIVE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02003508 case ADDR_UNSIGNED:
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003509 addr_error(addr_type);
Bram Moolenaar2f72c702017-01-29 14:48:10 +01003510 cmd = NULL;
3511 goto error;
3512 break;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003513 case ADDR_QUICKFIX:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003514#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003515 lnum = qf_get_size(eap);
3516 if (lnum == 0)
3517 lnum = 1;
Bram Moolenaare906c502015-09-09 21:10:39 +02003518#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003519 break;
Bram Moolenaar25190db2019-05-04 15:05:28 +02003520 case ADDR_QUICKFIX_VALID:
3521#ifdef FEAT_QUICKFIX
3522 lnum = qf_get_valid_size(eap);
3523 if (lnum == 0)
3524 lnum = 1;
3525#endif
3526 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003527 }
3528 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529
3530 case '\'': /* ''' - mark */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003531 if (*++cmd == NUL)
3532 {
3533 cmd = NULL;
3534 goto error;
3535 }
3536 if (addr_type != ADDR_LINES)
3537 {
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003538 addr_error(addr_type);
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01003539 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003540 goto error;
3541 }
3542 if (skip)
3543 ++cmd;
3544 else
3545 {
3546 /* Only accept a mark in another file when it is
3547 * used by itself: ":'M". */
3548 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3549 ++cmd;
3550 if (fp == (pos_T *)-1)
3551 /* Jumped to another file. */
3552 lnum = curwin->w_cursor.lnum;
3553 else
3554 {
3555 if (check_mark(fp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 {
3557 cmd = NULL;
3558 goto error;
3559 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003560 lnum = fp->lnum;
3561 }
3562 }
3563 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564
3565 case '/':
3566 case '?': /* '/' or '?' - search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003567 c = *cmd++;
3568 if (addr_type != ADDR_LINES)
3569 {
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003570 addr_error(addr_type);
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01003571 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003572 goto error;
3573 }
3574 if (skip) /* skip "/pat/" */
3575 {
3576 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3577 if (*cmd == c)
3578 ++cmd;
3579 }
3580 else
3581 {
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02003582 int flags;
3583
3584 pos = curwin->w_cursor; // save curwin->w_cursor
3585
3586 // When '/' or '?' follows another address, start from
3587 // there.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003588 if (lnum != MAXLNUM)
3589 curwin->w_cursor.lnum = lnum;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02003590
3591 // Start a forward search at the end of the line (unless
3592 // before the first line).
3593 // Start a backward search at the start of the line.
3594 // This makes sure we never match in the current
3595 // line, and can match anywhere in the
3596 // next/previous line.
Bram Moolenaar8ada6aa2017-12-19 21:23:21 +01003597 if (c == '/' && curwin->w_cursor.lnum > 0)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003598 curwin->w_cursor.col = MAXCOL;
3599 else
3600 curwin->w_cursor.col = 0;
3601 searchcmdlen = 0;
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02003602 flags = silent ? 0 : SEARCH_HIS | SEARCH_MSG;
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003603 if (!do_search(NULL, c, cmd, 1L, flags, NULL))
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003604 {
3605 curwin->w_cursor = pos;
3606 cmd = NULL;
3607 goto error;
3608 }
3609 lnum = curwin->w_cursor.lnum;
3610 curwin->w_cursor = pos;
3611 /* adjust command string pointer */
3612 cmd += searchcmdlen;
3613 }
3614 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615
3616 case '\\': /* "\?", "\/" or "\&", repeat search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003617 ++cmd;
3618 if (addr_type != ADDR_LINES)
3619 {
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02003620 addr_error(addr_type);
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01003621 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003622 goto error;
3623 }
3624 if (*cmd == '&')
3625 i = RE_SUBST;
3626 else if (*cmd == '?' || *cmd == '/')
3627 i = RE_SEARCH;
3628 else
3629 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003630 emsg(_(e_backslash));
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003631 cmd = NULL;
3632 goto error;
3633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003635 if (!skip)
3636 {
3637 /*
3638 * When search follows another address, start from
3639 * there.
3640 */
3641 if (lnum != MAXLNUM)
3642 pos.lnum = lnum;
3643 else
3644 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003646 /*
3647 * Start the search just like for the above
3648 * do_search().
3649 */
3650 if (*cmd != '?')
3651 pos.col = MAXCOL;
3652 else
3653 pos.col = 0;
Bram Moolenaarbd8539a2015-08-11 18:53:03 +02003654 pos.coladd = 0;
Bram Moolenaar5d24a222018-12-23 19:10:09 +01003655 if (searchit(curwin, curbuf, &pos, NULL,
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003656 *cmd == '?' ? BACKWARD : FORWARD,
Bram Moolenaar92ea26b2019-10-18 20:53:34 +02003657 (char_u *)"", 1L, SEARCH_MSG, i, NULL) != FAIL)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003658 lnum = pos.lnum;
3659 else
3660 {
3661 cmd = NULL;
3662 goto error;
3663 }
3664 }
3665 ++cmd;
3666 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667
3668 default:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003669 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3670 lnum = getdigits(&cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 }
3672
3673 for (;;)
3674 {
3675 cmd = skipwhite(cmd);
3676 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
3677 break;
3678
3679 if (lnum == MAXLNUM)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003680 {
3681 switch (addr_type)
3682 {
3683 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02003684 case ADDR_OTHER:
3685 // "+1" is same as ".+1"
Bram Moolenaarf240e182014-11-27 18:33:02 +01003686 lnum = curwin->w_cursor.lnum;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003687 break;
3688 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01003689 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003690 break;
3691 case ADDR_ARGUMENTS:
3692 lnum = curwin->w_arg_idx + 1;
3693 break;
3694 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003695 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003696 lnum = curbuf->b_fnum;
3697 break;
3698 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01003699 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003700 break;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01003701 case ADDR_TABS_RELATIVE:
3702 lnum = 1;
3703 break;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003704 case ADDR_QUICKFIX:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003705#ifdef FEAT_QUICKFIX
Bram Moolenaar25190db2019-05-04 15:05:28 +02003706 lnum = qf_get_cur_idx(eap);
3707#endif
3708 break;
3709 case ADDR_QUICKFIX_VALID:
3710#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003711 lnum = qf_get_cur_valid_idx(eap);
Bram Moolenaare906c502015-09-09 21:10:39 +02003712#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003713 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02003714 case ADDR_NONE:
Bram Moolenaar25190db2019-05-04 15:05:28 +02003715 case ADDR_UNSIGNED:
3716 lnum = 0;
Bram Moolenaarb7316892019-05-01 18:08:42 +02003717 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01003718 }
3719 }
3720
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 if (VIM_ISDIGIT(*cmd))
3722 i = '+'; /* "number" is same as "+number" */
3723 else
3724 i = *cmd++;
3725 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
3726 n = 1;
3727 else
3728 n = getdigits(&cmd);
Bram Moolenaar2f72c702017-01-29 14:48:10 +01003729
3730 if (addr_type == ADDR_TABS_RELATIVE)
3731 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003732 emsg(_(e_invrange));
Bram Moolenaar2f72c702017-01-29 14:48:10 +01003733 cmd = NULL;
3734 goto error;
3735 }
3736 else if (addr_type == ADDR_LOADED_BUFFERS
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003737 || addr_type == ADDR_BUFFERS)
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01003738 lnum = compute_buffer_local_count(
3739 addr_type, lnum, (i == '-') ? -1 * n : n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 else
Bram Moolenaarded27822017-01-02 14:27:34 +01003741 {
3742#ifdef FEAT_FOLDING
3743 /* Relative line addressing, need to adjust for folded lines
3744 * now, but only do it after the first address. */
3745 if (addr_type == ADDR_LINES && (i == '-' || i == '+')
3746 && address_count >= 2)
3747 (void)hasFolding(lnum, NULL, &lnum);
3748#endif
3749 if (i == '-')
3750 lnum -= n;
3751 else
3752 lnum += n;
3753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 }
3755 } while (*cmd == '/' || *cmd == '?');
3756
3757error:
3758 *ptr = cmd;
3759 return lnum;
3760}
3761
3762/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003763 * Get flags from an Ex command argument.
3764 */
3765 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003766get_flags(exarg_T *eap)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003767{
3768 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
3769 {
3770 if (*eap->arg == 'l')
3771 eap->flags |= EXFLAG_LIST;
3772 else if (*eap->arg == 'p')
3773 eap->flags |= EXFLAG_PRINT;
3774 else
3775 eap->flags |= EXFLAG_NR;
3776 eap->arg = skipwhite(eap->arg + 1);
3777 }
3778}
3779
3780/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 * Function called for command which is Not Implemented. NI!
3782 */
3783 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003784ex_ni(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003785{
3786 if (!eap->skip)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003787 eap->errmsg = N_("E319: Sorry, the command is not available in this version");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788}
3789
Bram Moolenaar7bb75552007-07-16 18:39:49 +00003790#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791/*
3792 * Function called for script command which is Not Implemented. NI!
3793 * Skips over ":perl <<EOF" constructs.
3794 */
3795 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003796ex_script_ni(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797{
3798 if (!eap->skip)
3799 ex_ni(eap);
3800 else
3801 vim_free(script_get(eap, eap->arg));
3802}
3803#endif
3804
3805/*
3806 * Check range in Ex command for validity.
3807 * Return NULL when valid, error message when invalid.
3808 */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003809 static char *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003810invalid_range(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811{
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003812 buf_T *buf;
Bram Moolenaar25190db2019-05-04 15:05:28 +02003813
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 if ( eap->line1 < 0
3815 || eap->line2 < 0
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003816 || eap->line1 > eap->line2)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003817 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003818
Bram Moolenaar8071cb22019-07-12 17:58:01 +02003819 if (eap->argt & EX_RANGE)
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003820 {
Bram Moolenaarb7316892019-05-01 18:08:42 +02003821 switch (eap->addr_type)
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003822 {
3823 case ADDR_LINES:
Bram Moolenaarb7316892019-05-01 18:08:42 +02003824 if (eap->line2 > curbuf->b_ml.ml_line_count
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003825#ifdef FEAT_DIFF
3826 + (eap->cmdidx == CMD_diffget)
3827#endif
3828 )
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003829 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003830 break;
3831 case ADDR_ARGUMENTS:
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01003832 /* add 1 if ARGCOUNT is 0 */
3833 if (eap->line2 > ARGCOUNT + (!ARGCOUNT))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003834 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003835 break;
3836 case ADDR_BUFFERS:
Bram Moolenaar00b0d6d2019-08-21 22:25:30 +02003837 // Only a boundary check, not whether the buffers actually
3838 // exist.
3839 if (eap->line1 < 1 || eap->line2 > get_highest_fnum())
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003840 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003841 break;
3842 case ADDR_LOADED_BUFFERS:
3843 buf = firstbuf;
3844 while (buf->b_ml.ml_mfp == NULL)
3845 {
3846 if (buf->b_next == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003847 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003848 buf = buf->b_next;
3849 }
3850 if (eap->line1 < buf->b_fnum)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003851 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003852 buf = lastbuf;
3853 while (buf->b_ml.ml_mfp == NULL)
3854 {
3855 if (buf->b_prev == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003856 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003857 buf = buf->b_prev;
3858 }
3859 if (eap->line2 > buf->b_fnum)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003860 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003861 break;
3862 case ADDR_WINDOWS:
Bram Moolenaar8be63882015-01-14 11:25:05 +01003863 if (eap->line2 > LAST_WIN_NR)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003864 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003865 break;
3866 case ADDR_TABS:
3867 if (eap->line2 > LAST_TAB_NR)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003868 return _(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003869 break;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01003870 case ADDR_TABS_RELATIVE:
Bram Moolenaarb7316892019-05-01 18:08:42 +02003871 case ADDR_OTHER:
3872 // Any range is OK.
Bram Moolenaar2f72c702017-01-29 14:48:10 +01003873 break;
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003874 case ADDR_QUICKFIX:
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003875#ifdef FEAT_QUICKFIX
Bram Moolenaar25190db2019-05-04 15:05:28 +02003876 // No error for value that is too big, will use the last entry.
3877 if (eap->line2 <= 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003878 return _(e_invrange);
Bram Moolenaare906c502015-09-09 21:10:39 +02003879#endif
Bram Moolenaar26f0cb12019-05-01 21:43:42 +02003880 break;
Bram Moolenaar25190db2019-05-04 15:05:28 +02003881 case ADDR_QUICKFIX_VALID:
3882#ifdef FEAT_QUICKFIX
3883 if ((eap->line2 != 1 && eap->line2 > qf_get_valid_size(eap))
3884 || eap->line2 < 0)
3885 return _(e_invrange);
3886#endif
3887 break;
3888 case ADDR_UNSIGNED:
3889 if (eap->line2 < 0)
3890 return _(e_invrange);
3891 break;
Bram Moolenaarb7316892019-05-01 18:08:42 +02003892 case ADDR_NONE:
3893 // Will give an error elsewhere.
3894 break;
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003895 }
3896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 return NULL;
3898}
3899
3900/*
3901 * Correct the range for zero line number, if required.
3902 */
3903 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003904correct_range(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905{
Bram Moolenaar8071cb22019-07-12 17:58:01 +02003906 if (!(eap->argt & EX_ZEROR)) // zero in range not allowed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 {
3908 if (eap->line1 == 0)
3909 eap->line1 = 1;
3910 if (eap->line2 == 0)
3911 eap->line2 = 1;
3912 }
3913}
3914
Bram Moolenaar748bf032005-02-02 23:04:36 +00003915#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00003916/*
3917 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
3918 * pattern. Otherwise return eap->arg.
3919 */
3920 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003921skip_grep_pat(exarg_T *eap)
Bram Moolenaar748bf032005-02-02 23:04:36 +00003922{
3923 char_u *p = eap->arg;
3924
Bram Moolenaara37420f2006-02-04 22:37:47 +00003925 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
3926 || eap->cmdidx == CMD_vimgrepadd
3927 || eap->cmdidx == CMD_lvimgrepadd
3928 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00003929 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00003930 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00003931 if (p == NULL)
3932 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00003933 }
3934 return p;
3935}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003936
3937/*
3938 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
3939 * in the command line, so that things like % get expanded.
3940 */
3941 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003942replace_makeprg(exarg_T *eap, char_u *p, char_u **cmdlinep)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003943{
3944 char_u *new_cmdline;
3945 char_u *program;
3946 char_u *pos;
3947 char_u *ptr;
3948 int len;
3949 int i;
3950
3951 /*
3952 * Don't do it when ":vimgrep" is used for ":grep".
3953 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00003954 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
3955 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
3956 || eap->cmdidx == CMD_grepadd
3957 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003958 && !grep_internal(eap->cmdidx))
3959 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00003960 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
3961 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003962 {
3963 if (*curbuf->b_p_gp == NUL)
3964 program = p_gp;
3965 else
3966 program = curbuf->b_p_gp;
3967 }
3968 else
3969 {
3970 if (*curbuf->b_p_mp == NUL)
3971 program = p_mp;
3972 else
3973 program = curbuf->b_p_mp;
3974 }
3975
3976 p = skipwhite(p);
3977
3978 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
3979 {
3980 /* replace $* by given arguments */
3981 i = 1;
3982 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
3983 ++i;
3984 len = (int)STRLEN(p);
Bram Moolenaar51e14382019-05-25 20:21:28 +02003985 new_cmdline = alloc(STRLEN(program) + i * (len - 2) + 1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003986 if (new_cmdline == NULL)
3987 return NULL; /* out of memory */
3988 ptr = new_cmdline;
3989 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
3990 {
3991 i = (int)(pos - program);
3992 STRNCPY(ptr, program, i);
3993 STRCPY(ptr += i, p);
3994 ptr += len;
3995 program = pos + 2;
3996 }
3997 STRCPY(ptr, program);
3998 }
3999 else
4000 {
Bram Moolenaar51e14382019-05-25 20:21:28 +02004001 new_cmdline = alloc(STRLEN(program) + STRLEN(p) + 2);
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004002 if (new_cmdline == NULL)
4003 return NULL; /* out of memory */
4004 STRCPY(new_cmdline, program);
4005 STRCAT(new_cmdline, " ");
4006 STRCAT(new_cmdline, p);
4007 }
4008 msg_make(p);
4009
4010 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4011 vim_free(*cmdlinep);
4012 *cmdlinep = new_cmdline;
4013 p = new_cmdline;
4014 }
4015 return p;
4016}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004017#endif
4018
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019/*
4020 * Expand file name in Ex command argument.
Bram Moolenaar0abb4272019-06-15 16:06:00 +02004021 * When an error is detected, "errormsgp" is set to a non-NULL pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 * Return FAIL for failure, OK otherwise.
4023 */
4024 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004025expand_filename(
4026 exarg_T *eap,
4027 char_u **cmdlinep,
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004028 char **errormsgp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029{
4030 int has_wildcards; /* need to expand wildcards */
4031 char_u *repl;
4032 int srclen;
4033 char_u *p;
4034 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004035 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036
Bram Moolenaar748bf032005-02-02 23:04:36 +00004037#ifdef FEAT_QUICKFIX
4038 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4039 p = skip_grep_pat(eap);
4040#else
4041 p = eap->arg;
4042#endif
4043
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 /*
4045 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4046 * the file name contains a wildcard it should not cause expanding.
4047 * (it will be expanded anyway if there is a wildcard before replacing).
4048 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004049 has_wildcards = mch_has_wildcard(p);
4050 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004052#ifdef FEAT_EVAL
4053 /* Skip over `=expr`, wildcards in it are not expanded. */
4054 if (p[0] == '`' && p[1] == '=')
4055 {
4056 p += 2;
4057 (void)skip_expr(&p);
4058 if (*p == '`')
4059 ++p;
4060 continue;
4061 }
4062#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 /*
4064 * Quick check if this cannot be the start of a special string.
4065 * Also removes backslash before '%', '#' and '<'.
4066 */
4067 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4068 {
4069 ++p;
4070 continue;
4071 }
4072
4073 /*
4074 * Try to find a match at this position.
4075 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004076 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4077 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 if (*errormsgp != NULL) /* error detected */
4079 return FAIL;
4080 if (repl == NULL) /* no match found */
4081 {
4082 p += srclen;
4083 continue;
4084 }
4085
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004086 /* Wildcards won't be expanded below, the replacement is taken
4087 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4088 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4089 {
4090 char_u *l = repl;
4091
4092 repl = expand_env_save(repl);
4093 vim_free(l);
4094 }
4095
Bram Moolenaar63b92542007-03-27 14:57:09 +00004096 /* Need to escape white space et al. with a backslash.
4097 * Don't do this for:
4098 * - replacement that already has been escaped: "##"
4099 * - shell commands (may have to use quotes instead).
4100 * - non-unix systems when there is a single argument (spaces don't
4101 * separate arguments then).
4102 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004104 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105 && eap->cmdidx != CMD_bang
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 && eap->cmdidx != CMD_grep
4107 && eap->cmdidx != CMD_grepadd
Bram Moolenaarbf15b8d2017-06-04 20:43:48 +02004108 && eap->cmdidx != CMD_hardcopy
Bram Moolenaar67883b42017-07-27 22:57:00 +02004109 && eap->cmdidx != CMD_lgrep
4110 && eap->cmdidx != CMD_lgrepadd
4111 && eap->cmdidx != CMD_lmake
4112 && eap->cmdidx != CMD_make
4113 && eap->cmdidx != CMD_terminal
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114#ifndef UNIX
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004115 && !(eap->argt & EX_NOSPC)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116#endif
4117 )
4118 {
4119 char_u *l;
4120#ifdef BACKSLASH_IN_FILENAME
4121 /* Don't escape a backslash here, because rem_backslash() doesn't
4122 * remove it later. */
4123 static char_u *nobslash = (char_u *)" \t\"|";
4124# define ESCAPE_CHARS nobslash
4125#else
4126# define ESCAPE_CHARS escape_chars
4127#endif
4128
4129 for (l = repl; *l; ++l)
4130 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4131 {
4132 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4133 if (l != NULL)
4134 {
4135 vim_free(repl);
4136 repl = l;
4137 }
4138 break;
4139 }
4140 }
4141
4142 /* For a shell command a '!' must be escaped. */
Bram Moolenaar67883b42017-07-27 22:57:00 +02004143 if ((eap->usefilter || eap->cmdidx == CMD_bang
4144 || eap->cmdidx == CMD_terminal)
Bram Moolenaar31b7d382014-04-01 18:54:48 +02004145 && vim_strpbrk(repl, (char_u *)"!") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 {
4147 char_u *l;
4148
Bram Moolenaar31b7d382014-04-01 18:54:48 +02004149 l = vim_strsave_escaped(repl, (char_u *)"!");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 if (l != NULL)
4151 {
4152 vim_free(repl);
4153 repl = l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 }
4155 }
4156
4157 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4158 vim_free(repl);
4159 if (p == NULL)
4160 return FAIL;
4161 }
4162
4163 /*
4164 * One file argument: Expand wildcards.
4165 * Don't do this with ":r !command" or ":w !command".
4166 */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004167 if ((eap->argt & EX_NOSPC) && !eap->usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 {
4169 /*
4170 * May do this twice:
4171 * 1. Replace environment variables.
4172 * 2. Replace any other wildcards, remove backslashes.
4173 */
4174 for (n = 1; n <= 2; ++n)
4175 {
4176 if (n == 2)
4177 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 /*
4179 * Halve the number of backslashes (this is Vi compatible).
4180 * For Unix and OS/2, when wildcards are expanded, this is
4181 * done by ExpandOne() below.
4182 */
Bram Moolenaare7fedb62015-12-31 19:07:19 +01004183#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 if (!has_wildcards)
4185#endif
4186 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 }
4188
4189 if (has_wildcards)
4190 {
4191 if (n == 1)
4192 {
4193 /*
4194 * First loop: May expand environment variables. This
4195 * can be done much faster with expand_env() than with
4196 * something else (e.g., calling a shell).
4197 * After expanding environment variables, check again
4198 * if there are still wildcards present.
4199 */
4200 if (vim_strchr(eap->arg, '$') != NULL
4201 || vim_strchr(eap->arg, '~') != NULL)
4202 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004203 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004204 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 has_wildcards = mch_has_wildcard(NameBuff);
4206 p = NameBuff;
4207 }
4208 else
4209 p = NULL;
4210 }
4211 else /* n == 2 */
4212 {
4213 expand_T xpc;
Bram Moolenaarb40c2572019-10-19 21:01:05 +02004214 int options = WILD_LIST_NOTFOUND
4215 | WILD_NOERROR | WILD_ADD_SLASH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216
4217 ExpandInit(&xpc);
4218 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar94950a92010-12-02 16:01:29 +01004219 if (p_wic)
4220 options += WILD_ICASE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 p = ExpandOne(&xpc, eap->arg, NULL,
Bram Moolenaar94950a92010-12-02 16:01:29 +01004222 options, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 if (p == NULL)
4224 return FAIL;
4225 }
4226 if (p != NULL)
4227 {
4228 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4229 p, cmdlinep);
4230 if (n == 2) /* p came from ExpandOne() */
4231 vim_free(p);
4232 }
4233 }
4234 }
4235 }
4236 return OK;
4237}
4238
4239/*
4240 * Replace part of the command line, keeping eap->cmd, eap->arg and
4241 * eap->nextcmd correct.
4242 * "src" points to the part that is to be replaced, of length "srclen".
4243 * "repl" is the replacement string.
4244 * Returns a pointer to the character after the replaced string.
4245 * Returns NULL for failure.
4246 */
4247 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004248repl_cmdline(
4249 exarg_T *eap,
4250 char_u *src,
4251 int srclen,
4252 char_u *repl,
4253 char_u **cmdlinep)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254{
4255 int len;
4256 int i;
4257 char_u *new_cmdline;
4258
4259 /*
4260 * The new command line is build in new_cmdline[].
4261 * First allocate it.
4262 * Careful: a "+cmd" argument may have been NUL terminated.
4263 */
4264 len = (int)STRLEN(repl);
4265 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004266 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004267 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004268 if ((new_cmdline = alloc(i)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 return NULL; /* out of memory! */
4270
4271 /*
4272 * Copy the stuff before the expanded part.
4273 * Copy the expanded stuff.
4274 * Copy what came after the expanded part.
4275 * Copy the next commands, if there are any.
4276 */
4277 i = (int)(src - *cmdlinep); /* length of part before match */
4278 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004279
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 mch_memmove(new_cmdline + i, repl, (size_t)len);
4281 i += len; /* remember the end of the string */
4282 STRCPY(new_cmdline + i, src + srclen);
4283 src = new_cmdline + i; /* remember where to continue */
4284
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004285 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 {
4287 i = (int)STRLEN(new_cmdline) + 1;
4288 STRCPY(new_cmdline + i, eap->nextcmd);
4289 eap->nextcmd = new_cmdline + i;
4290 }
4291 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4292 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4293 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4294 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4295 vim_free(*cmdlinep);
4296 *cmdlinep = new_cmdline;
4297
4298 return src;
4299}
4300
4301/*
4302 * Check for '|' to separate commands and '"' to start comments.
4303 */
4304 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004305separate_nextcmd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306{
4307 char_u *p;
4308
Bram Moolenaar86b68352004-12-27 21:59:20 +00004309#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004310 p = skip_grep_pat(eap);
4311#else
4312 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004313#endif
4314
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004315 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 {
4317 if (*p == Ctrl_V)
4318 {
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004319 if (eap->argt & (EX_CTRLV | EX_XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 ++p; /* skip CTRL-V and next char */
4321 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00004322 /* remove CTRL-V and skip next char */
Bram Moolenaara7241f52008-06-24 20:39:31 +00004323 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 if (*p == NUL) /* stop at NUL after CTRL-V */
4325 break;
4326 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004327
4328#ifdef FEAT_EVAL
4329 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004330 else if (p[0] == '`' && p[1] == '=' && (eap->argt & EX_XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004331 {
4332 p += 2;
4333 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004334 }
4335#endif
4336
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 /* Check for '"': start of comment or '|': next command */
4338 /* :@" and :*" do not start a comment!
4339 * :redir @" doesn't either. */
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004340 else if ((*p == '"' && !(eap->argt & EX_NOTRLCOM)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4342 || p != eap->arg)
4343 && (eap->cmdidx != CMD_redir
4344 || p != eap->arg + 1 || p[-1] != '@'))
4345 || *p == '|' || *p == '\n')
4346 {
4347 /*
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004348 * We remove the '\' before the '|', unless EX_CTRLV is used
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 * AND 'b' is present in 'cpoptions'.
4350 */
4351 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004352 || !(eap->argt & EX_CTRLV)) && *(p - 1) == '\\')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00004354 STRMOVE(p - 1, p); /* remove the '\' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 --p;
4356 }
4357 else
4358 {
4359 eap->nextcmd = check_nextcmd(p);
4360 *p = NUL;
4361 break;
4362 }
4363 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004365
Bram Moolenaar8071cb22019-07-12 17:58:01 +02004366 if (!(eap->argt & EX_NOTRLCOM)) /* remove trailing spaces */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 del_trailing_spaces(eap->arg);
4368}
4369
4370/*
4371 * get + command from ex argument
4372 */
4373 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004374getargcmd(char_u **argp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375{
4376 char_u *arg = *argp;
4377 char_u *command = NULL;
4378
4379 if (*arg == '+') /* +[command] */
4380 {
4381 ++arg;
Bram Moolenaar3e451592014-04-02 14:22:05 +02004382 if (vim_isspace(*arg) || *arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 command = dollar_command;
4384 else
4385 {
4386 command = arg;
4387 arg = skip_cmd_arg(command, TRUE);
4388 if (*arg != NUL)
4389 *arg++ = NUL; /* terminate command with NUL */
4390 }
4391
4392 arg = skipwhite(arg); /* skip over spaces */
4393 *argp = arg;
4394 }
4395 return command;
4396}
4397
4398/*
4399 * Find end of "+command" argument. Skip over "\ " and "\\".
4400 */
Bram Moolenaard0190392019-08-23 21:17:35 +02004401 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004402skip_cmd_arg(
4403 char_u *p,
4404 int rembs) /* TRUE to halve the number of backslashes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405{
4406 while (*p && !vim_isspace(*p))
4407 {
4408 if (*p == '\\' && p[1] != NUL)
4409 {
4410 if (rembs)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004411 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 else
4413 ++p;
4414 }
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004415 MB_PTR_ADV(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 }
4417 return p;
4418}
4419
Bram Moolenaar333b80a2018-04-04 22:57:29 +02004420 int
4421get_bad_opt(char_u *p, exarg_T *eap)
4422{
4423 if (STRICMP(p, "keep") == 0)
4424 eap->bad_char = BAD_KEEP;
4425 else if (STRICMP(p, "drop") == 0)
4426 eap->bad_char = BAD_DROP;
4427 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4428 eap->bad_char = *p;
Bram Moolenaar75808492018-06-12 12:39:41 +02004429 else
4430 return FAIL;
4431 return OK;
Bram Moolenaar333b80a2018-04-04 22:57:29 +02004432}
4433
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434/*
4435 * Get "++opt=arg" argument.
4436 * Return FAIL or OK.
4437 */
4438 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004439getargopt(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440{
4441 char_u *arg = eap->arg + 2;
4442 int *pp = NULL;
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02004443 int bad_char_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445
4446 /* ":edit ++[no]bin[ary] file" */
4447 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4448 {
4449 if (*arg == 'n')
4450 {
4451 arg += 2;
4452 eap->force_bin = FORCE_NOBIN;
4453 }
4454 else
4455 eap->force_bin = FORCE_BIN;
4456 if (!checkforcmd(&arg, "binary", 3))
4457 return FAIL;
4458 eap->arg = skipwhite(arg);
4459 return OK;
4460 }
4461
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004462 /* ":read ++edit file" */
4463 if (STRNCMP(arg, "edit", 4) == 0)
4464 {
4465 eap->read_edit = TRUE;
4466 eap->arg = skipwhite(arg + 4);
4467 return OK;
4468 }
4469
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 if (STRNCMP(arg, "ff", 2) == 0)
4471 {
4472 arg += 2;
4473 pp = &eap->force_ff;
4474 }
4475 else if (STRNCMP(arg, "fileformat", 10) == 0)
4476 {
4477 arg += 10;
4478 pp = &eap->force_ff;
4479 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 else if (STRNCMP(arg, "enc", 3) == 0)
4481 {
Bram Moolenaarb38e9ab2011-12-14 14:49:45 +01004482 if (STRNCMP(arg, "encoding", 8) == 0)
4483 arg += 8;
4484 else
4485 arg += 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 pp = &eap->force_enc;
4487 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004488 else if (STRNCMP(arg, "bad", 3) == 0)
4489 {
4490 arg += 3;
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02004491 pp = &bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004492 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493
4494 if (pp == NULL || *arg != '=')
4495 return FAIL;
4496
4497 ++arg;
4498 *pp = (int)(arg - eap->cmd);
4499 arg = skip_cmd_arg(arg, FALSE);
4500 eap->arg = skipwhite(arg);
4501 *arg = NUL;
4502
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 if (pp == &eap->force_ff)
4504 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4506 return FAIL;
Bram Moolenaar333b80a2018-04-04 22:57:29 +02004507 eap->force_ff = eap->cmd[eap->force_ff];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004509 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 {
4511 /* Make 'fileencoding' lower case. */
4512 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4513 *p = TOLOWER_ASC(*p);
4514 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004515 else
4516 {
4517 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4518 * "drop". */
Bram Moolenaar333b80a2018-04-04 22:57:29 +02004519 if (get_bad_opt(eap->cmd + bad_char_idx, eap) == FAIL)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004520 return FAIL;
4521 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522
4523 return OK;
4524}
4525
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004527ex_autocmd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528{
4529 /*
Bram Moolenaar26d4b892018-07-04 22:26:28 +02004530 * Disallow autocommands from .exrc and .vimrc in current
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 * directory for security reasons.
4532 */
4533 if (secure)
4534 {
4535 secure = 2;
4536 eap->errmsg = e_curdir;
4537 }
4538 else if (eap->cmdidx == CMD_autocmd)
4539 do_autocmd(eap->arg, eap->forceit);
4540 else
4541 do_augroup(eap->arg, eap->forceit);
4542}
4543
4544/*
4545 * ":doautocmd": Apply the automatic commands to the current buffer.
4546 */
4547 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004548ex_doautocmd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549{
Bram Moolenaar60542ac2012-02-12 20:14:01 +01004550 char_u *arg = eap->arg;
4551 int call_do_modelines = check_nomodeline(&arg);
Bram Moolenaar1610d052016-06-09 22:53:01 +02004552 int did_aucmd;
Bram Moolenaar60542ac2012-02-12 20:14:01 +01004553
Bram Moolenaar1610d052016-06-09 22:53:01 +02004554 (void)do_doautocmd(arg, TRUE, &did_aucmd);
4555 /* Only when there is no <nomodeline>. */
4556 if (call_do_modelines && did_aucmd)
Bram Moolenaar60542ac2012-02-12 20:14:01 +01004557 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560/*
4561 * :[N]bunload[!] [N] [bufname] unload buffer
4562 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4563 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4564 */
4565 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004566ex_bunload(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567{
Bram Moolenaar8cdbd5b2019-06-16 15:50:45 +02004568 if (ERROR_IF_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02004569 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 eap->errmsg = do_bufdel(
4571 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4572 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4573 : DOBUF_UNLOAD, eap->arg,
4574 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4575}
4576
4577/*
4578 * :[N]buffer [N] to buffer N
4579 * :[N]sbuffer [N] to buffer N
4580 */
4581 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004582ex_buffer(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583{
Bram Moolenaar8cdbd5b2019-06-16 15:50:45 +02004584 if (ERROR_IF_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02004585 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 if (*eap->arg)
4587 eap->errmsg = e_trailing;
4588 else
4589 {
4590 if (eap->addr_count == 0) /* default is current buffer */
4591 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4592 else
4593 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02004594 if (eap->do_ecmd_cmd != NULL)
4595 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 }
4597}
4598
4599/*
4600 * :[N]bmodified [N] to next mod. buffer
4601 * :[N]sbmodified [N] to next mod. buffer
4602 */
4603 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004604ex_bmodified(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605{
4606 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02004607 if (eap->do_ecmd_cmd != NULL)
4608 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609}
4610
4611/*
4612 * :[N]bnext [N] to next buffer
4613 * :[N]sbnext [N] split and to next buffer
4614 */
4615 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004616ex_bnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617{
4618 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02004619 if (eap->do_ecmd_cmd != NULL)
4620 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621}
4622
4623/*
4624 * :[N]bNext [N] to previous buffer
4625 * :[N]bprevious [N] to previous buffer
4626 * :[N]sbNext [N] split and to previous buffer
4627 * :[N]sbprevious [N] split and to previous buffer
4628 */
4629 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004630ex_bprevious(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631{
4632 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02004633 if (eap->do_ecmd_cmd != NULL)
4634 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635}
4636
4637/*
4638 * :brewind to first buffer
4639 * :bfirst to first buffer
4640 * :sbrewind split and to first buffer
4641 * :sbfirst split and to first buffer
4642 */
4643 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004644ex_brewind(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645{
4646 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02004647 if (eap->do_ecmd_cmd != NULL)
4648 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649}
4650
4651/*
4652 * :blast to last buffer
4653 * :sblast split and to last buffer
4654 */
4655 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004656ex_blast(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657{
4658 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02004659 if (eap->do_ecmd_cmd != NULL)
4660 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662
4663 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004664ends_excmd(int c)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665{
4666 return (c == NUL || c == '|' || c == '"' || c == '\n');
4667}
4668
4669#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4670 || defined(PROTO)
4671/*
4672 * Return the next command, after the first '|' or '\n'.
4673 * Return NULL if not found.
4674 */
4675 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004676find_nextcmd(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677{
4678 while (*p != '|' && *p != '\n')
4679 {
4680 if (*p == NUL)
4681 return NULL;
4682 ++p;
4683 }
4684 return (p + 1);
4685}
4686#endif
4687
4688/*
Bram Moolenaar2256c992016-11-15 21:17:07 +01004689 * Check if *p is a separator between Ex commands, skipping over white space.
4690 * Return NULL if it isn't, the following character if it is.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 */
4692 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004693check_nextcmd(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004694{
Bram Moolenaar2256c992016-11-15 21:17:07 +01004695 char_u *s = skipwhite(p);
4696
4697 if (*s == '|' || *s == '\n')
4698 return (s + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 else
4700 return NULL;
4701}
4702
4703/*
4704 * - if there are more files to edit
4705 * - and this is the last window
4706 * - and forceit not used
4707 * - and not repeated twice on a row
4708 * return FAIL and give error message if 'message' TRUE
4709 * return OK otherwise
4710 */
4711 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004712check_more(
4713 int message, /* when FALSE check only, no messages */
4714 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715{
4716 int n = ARGCOUNT - curwin->w_arg_idx - 1;
4717
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004718 if (!forceit && only_one_window()
4719 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 {
4721 if (message)
4722 {
4723#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4724 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
4725 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02004726 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727
Bram Moolenaarda6e8912018-08-21 15:12:14 +02004728 vim_snprintf((char *)buff, DIALOG_MSG_SIZE,
4729 NGETTEXT("%d more file to edit. Quit anyway?",
4730 "%d more files to edit. Quit anyway?", n), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
4732 return OK;
4733 return FAIL;
4734 }
4735#endif
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01004736 semsg(NGETTEXT("E173: %d more file to edit",
4737 "E173: %d more files to edit", n), n);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 quitmore = 2; /* next try to quit is allowed */
4739 }
4740 return FAIL;
4741 }
4742 return OK;
4743}
4744
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745/*
4746 * Function given to ExpandGeneric() to obtain the list of command names.
4747 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004749get_command_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750{
4751 if (idx >= (int)CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752 return get_user_command_name(idx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 return cmdnames[idx].cmd_name;
4754}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004757ex_colorscheme(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758{
Bram Moolenaare6850792010-05-14 15:28:44 +02004759 if (*eap->arg == NUL)
4760 {
4761#ifdef FEAT_EVAL
4762 char_u *expr = vim_strsave((char_u *)"g:colors_name");
4763 char_u *p = NULL;
4764
4765 if (expr != NULL)
4766 {
4767 ++emsg_off;
4768 p = eval_to_string(expr, NULL, FALSE);
4769 --emsg_off;
4770 vim_free(expr);
4771 }
4772 if (p != NULL)
4773 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004774 msg((char *)p);
Bram Moolenaare6850792010-05-14 15:28:44 +02004775 vim_free(p);
4776 }
4777 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01004778 msg("default");
Bram Moolenaare6850792010-05-14 15:28:44 +02004779#else
Bram Moolenaar32526b32019-01-19 17:43:09 +01004780 msg(_("unknown"));
Bram Moolenaare6850792010-05-14 15:28:44 +02004781#endif
4782 }
4783 else if (load_colors(eap->arg) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004784 semsg(_("E185: Cannot find color scheme '%s'"), eap->arg);
Bram Moolenaarf58d81a2019-01-28 20:19:05 +01004785
4786#ifdef FEAT_VTP
4787 else if (has_vtp_working())
4788 {
4789 // background color change requires clear + redraw
4790 update_screen(CLEAR);
4791 redrawcmd();
4792 }
4793#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794}
4795
4796 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004797ex_highlight(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004798{
4799 if (*eap->arg == NUL && eap->cmd[2] == '!')
Bram Moolenaar32526b32019-01-19 17:43:09 +01004800 msg(_("Greetings, Vim user!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 do_highlight(eap->arg, eap->forceit, FALSE);
4802}
4803
4804
4805/*
4806 * Call this function if we thought we were going to exit, but we won't
4807 * (because of an error). May need to restore the terminal mode.
4808 */
4809 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004810not_exiting(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004811{
4812 exiting = FALSE;
4813 settmode(TMODE_RAW);
4814}
4815
Bram Moolenaar12a96de2018-03-11 14:44:18 +01004816 static int
4817before_quit_autocmds(win_T *wp, int quit_all, int forceit)
4818{
4819 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, wp->w_buffer);
4820
Bram Moolenaar34ba06b2019-10-20 22:27:10 +02004821 // Bail out when autocommands closed the window.
4822 // Refuse to quit when the buffer in the last window is being closed (can
4823 // only happen in autocommands).
Bram Moolenaar12a96de2018-03-11 14:44:18 +01004824 if (!win_valid(wp)
4825 || curbuf_locked()
4826 || (wp->w_buffer->b_nwindows == 1 && wp->w_buffer->b_locked > 0))
4827 return TRUE;
4828
4829 if (quit_all || (check_more(FALSE, forceit) == OK && only_one_window()))
4830 {
4831 apply_autocmds(EVENT_EXITPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar34ba06b2019-10-20 22:27:10 +02004832 // Refuse to quit when locked or when the window was closed or the
4833 // buffer in the last window is being closed (can only happen in
4834 // autocommands).
4835 if (!win_valid(wp) || curbuf_locked()
Bram Moolenaar12a96de2018-03-11 14:44:18 +01004836 || (curbuf->b_nwindows == 1 && curbuf->b_locked > 0))
4837 return TRUE;
4838 }
4839
4840 return FALSE;
4841}
4842
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843/*
Bram Moolenaarf240e182014-11-27 18:33:02 +01004844 * ":quit": quit current window, quit Vim if the last window is closed.
Bram Moolenaar12a96de2018-03-11 14:44:18 +01004845 * ":{nr}quit": quit window {nr}
Bram Moolenaar4d14bac2019-10-20 21:15:15 +02004846 * Also used when closing a terminal window that's the last one.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 */
Bram Moolenaar4d14bac2019-10-20 21:15:15 +02004848 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004849ex_quit(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004851 win_T *wp;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004852
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853#ifdef FEAT_CMDWIN
4854 if (cmdwin_type != 0)
4855 {
4856 cmdwin_result = Ctrl_C;
4857 return;
4858 }
4859#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004860 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004861 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004862 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004863 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004864 return;
4865 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004866 if (eap->addr_count > 0)
4867 {
Bram Moolenaarf240e182014-11-27 18:33:02 +01004868 int wnr = eap->line2;
4869
4870 for (wp = firstwin; wp->w_next != NULL; wp = wp->w_next)
4871 if (--wnr <= 0)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004872 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004873 }
4874 else
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004875 wp = curwin;
Bram Moolenaarf240e182014-11-27 18:33:02 +01004876
Bram Moolenaar87ffb5c2017-10-19 12:37:42 +02004877 /* Refuse to quit when locked. */
4878 if (curbuf_locked())
4879 return;
Bram Moolenaar12a96de2018-03-11 14:44:18 +01004880
4881 /* Trigger QuitPre and maybe ExitPre */
4882 if (before_quit_autocmds(wp, FALSE, eap->forceit))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004883 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884
4885#ifdef FEAT_NETBEANS_INTG
4886 netbeansForcedQuit = eap->forceit;
4887#endif
4888
4889 /*
4890 * If there are more files or windows we won't exit.
4891 */
4892 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
4893 exiting = TRUE;
Bram Moolenaarff930ca2017-10-19 17:12:10 +02004894 if ((!buf_hide(wp->w_buffer)
4895 && check_changed(wp->w_buffer, (p_awa ? CCGD_AW : 0)
Bram Moolenaar45d3b142013-11-09 03:31:51 +01004896 | (eap->forceit ? CCGD_FORCEIT : 0)
4897 | CCGD_EXCMD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 || check_more(TRUE, eap->forceit) == FAIL
Bram Moolenaar027387f2016-01-02 22:25:52 +01004899 || (only_one_window() && check_changed_any(eap->forceit, TRUE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 {
4901 not_exiting();
4902 }
4903 else
4904 {
Bram Moolenaarc7a0d322015-06-19 12:43:07 +02004905 /* quit last window
4906 * Note: only_one_window() returns true, even so a help window is
4907 * still open. In that case only quit, if no address has been
4908 * specified. Example:
4909 * :h|wincmd w|1q - don't quit
4910 * :h|wincmd w|q - quit
4911 */
Bram Moolenaara1f4cb92016-11-06 15:25:42 +01004912 if (only_one_window() && (ONE_WINDOW || eap->addr_count == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 getout(0);
Bram Moolenaar2c33d7b2017-10-14 16:06:20 +02004914 not_exiting();
Bram Moolenaar4033c552017-09-16 20:54:51 +02004915#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 /* close window; may free buffer */
Bram Moolenaareb44a682017-08-03 22:44:55 +02004919 win_close(wp, !buf_hide(wp->w_buffer) || eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 }
4921}
4922
4923/*
4924 * ":cquit".
4925 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004927ex_cquit(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928{
4929 getout(1); /* this does not always pass on the exit code to the Manx
4930 compiler. why? */
4931}
4932
4933/*
4934 * ":qall": try to quit all windows
4935 */
4936 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004937ex_quit_all(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938{
4939# ifdef FEAT_CMDWIN
4940 if (cmdwin_type != 0)
4941 {
4942 if (eap->forceit)
4943 cmdwin_result = K_XF1; /* ex_window() takes care of this */
4944 else
4945 cmdwin_result = K_XF2;
4946 return;
4947 }
4948# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004949
4950 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004951 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004952 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004953 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004954 return;
4955 }
Bram Moolenaar12a96de2018-03-11 14:44:18 +01004956
4957 if (before_quit_autocmds(curwin, TRUE, eap->forceit))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004958 return;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004959
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 exiting = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01004961 if (eap->forceit || !check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 getout(0);
4963 not_exiting();
4964}
4965
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966/*
4967 * ":close": close current window, unless it is the last one
4968 */
4969 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004970ex_close(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004972 win_T *win;
4973 int winnr = 0;
Bram Moolenaar4033c552017-09-16 20:54:51 +02004974#ifdef FEAT_CMDWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 if (cmdwin_type != 0)
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02004976 cmdwin_result = Ctrl_C;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02004978#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004979 if (!text_locked() && !curbuf_locked())
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004980 {
4981 if (eap->addr_count == 0)
4982 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar6d41c782018-06-06 09:11:12 +02004983 else
4984 {
Bram Moolenaar29323592016-07-24 22:04:11 +02004985 FOR_ALL_WINDOWS(win)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004986 {
4987 winnr++;
4988 if (winnr == eap->line2)
4989 break;
4990 }
4991 if (win == NULL)
4992 win = lastwin;
4993 ex_win_close(eap->forceit, win, NULL);
4994 }
4995 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996}
4997
Bram Moolenaar4033c552017-09-16 20:54:51 +02004998#ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00004999/*
5000 * ":pclose": Close any preview window.
5001 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005003ex_pclose(exarg_T *eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005004{
5005 win_T *win;
5006
Bram Moolenaar79648732019-07-18 21:43:07 +02005007 // First close any normal window.
Bram Moolenaar29323592016-07-24 22:04:11 +02005008 FOR_ALL_WINDOWS(win)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005009 if (win->w_p_pvw)
5010 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00005011 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar79648732019-07-18 21:43:07 +02005012 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005013 }
Bram Moolenaar79648732019-07-18 21:43:07 +02005014# ifdef FEAT_TEXT_PROP
5015 // Also when 'previewpopup' is empty, it might have been cleared.
Bram Moolenaarc7c5f102019-08-21 18:31:03 +02005016 popup_close_preview();
Bram Moolenaar79648732019-07-18 21:43:07 +02005017# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005018}
Bram Moolenaar4033c552017-09-16 20:54:51 +02005019#endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005020
Bram Moolenaarf740b292006-02-16 22:11:02 +00005021/*
5022 * Close window "win" and take care of handling closing the last window for a
5023 * modified buffer.
5024 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005025 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005026ex_win_close(
5027 int forceit,
5028 win_T *win,
5029 tabpage_T *tp) /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030{
5031 int need_hide;
5032 buf_T *buf = win->w_buffer;
5033
5034 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaareb44a682017-08-03 22:44:55 +02005035 if (need_hide && !buf_hide(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02005037#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 if ((p_confirm || cmdmod.confirm) && p_write)
5039 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02005040 bufref_T bufref;
5041
5042 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043 dialog_changed(buf, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02005044 if (bufref_valid(&bufref) && bufIsChanged(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 return;
5046 need_hide = FALSE;
5047 }
5048 else
Bram Moolenaar4033c552017-09-16 20:54:51 +02005049#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 {
Bram Moolenaarf5be7cd2017-08-17 16:55:13 +02005051 no_write_message();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 return;
5053 }
5054 }
5055
Bram Moolenaar4033c552017-09-16 20:54:51 +02005056#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005058#endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00005059
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00005061 if (tp == NULL)
Bram Moolenaareb44a682017-08-03 22:44:55 +02005062 win_close(win, !need_hide && !buf_hide(buf));
Bram Moolenaarf740b292006-02-16 22:11:02 +00005063 else
Bram Moolenaareb44a682017-08-03 22:44:55 +02005064 win_close_othertab(win, !need_hide && !buf_hide(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065}
5066
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067/*
Bram Moolenaardea25702017-01-29 15:18:10 +01005068 * Handle the argument for a tabpage related ex command.
5069 * Returns a tabpage number.
5070 * When an error is encountered then eap->errmsg is set.
5071 */
5072 static int
5073get_tabpage_arg(exarg_T *eap)
5074{
5075 int tab_number;
5076 int unaccept_arg0 = (eap->cmdidx == CMD_tabmove) ? 0 : 1;
5077
5078 if (eap->arg && *eap->arg != NUL)
5079 {
5080 char_u *p = eap->arg;
5081 char_u *p_save;
5082 int relative = 0; /* argument +N/-N means: go to N places to the
5083 * right/left relative to the current position. */
5084
5085 if (*p == '-')
5086 {
5087 relative = -1;
5088 p++;
5089 }
5090 else if (*p == '+')
5091 {
5092 relative = 1;
5093 p++;
5094 }
5095
5096 p_save = p;
5097 tab_number = getdigits(&p);
5098
5099 if (relative == 0)
5100 {
5101 if (STRCMP(p, "$") == 0)
5102 tab_number = LAST_TAB_NR;
5103 else if (p == p_save || *p_save == '-' || *p != NUL
5104 || tab_number > LAST_TAB_NR)
5105 {
5106 /* No numbers as argument. */
5107 eap->errmsg = e_invarg;
5108 goto theend;
5109 }
5110 }
5111 else
5112 {
5113 if (*p_save == NUL)
5114 tab_number = 1;
5115 else if (p == p_save || *p_save == '-' || *p != NUL
5116 || tab_number == 0)
5117 {
5118 /* No numbers as argument. */
5119 eap->errmsg = e_invarg;
5120 goto theend;
5121 }
5122 tab_number = tab_number * relative + tabpage_index(curtab);
5123 if (!unaccept_arg0 && relative == -1)
5124 --tab_number;
5125 }
5126 if (tab_number < unaccept_arg0 || tab_number > LAST_TAB_NR)
5127 eap->errmsg = e_invarg;
5128 }
5129 else if (eap->addr_count > 0)
5130 {
5131 if (unaccept_arg0 && eap->line2 == 0)
Bram Moolenaarc6251552017-01-29 21:42:20 +01005132 {
Bram Moolenaardea25702017-01-29 15:18:10 +01005133 eap->errmsg = e_invrange;
Bram Moolenaarc6251552017-01-29 21:42:20 +01005134 tab_number = 0;
5135 }
Bram Moolenaardea25702017-01-29 15:18:10 +01005136 else
5137 {
5138 tab_number = eap->line2;
Bram Moolenaar82a12462019-01-22 22:41:42 +01005139 if (!unaccept_arg0 && *skipwhite(*eap->cmdlinep) == '-')
Bram Moolenaardea25702017-01-29 15:18:10 +01005140 {
5141 --tab_number;
5142 if (tab_number < unaccept_arg0)
5143 eap->errmsg = e_invarg;
5144 }
5145 }
5146 }
5147 else
5148 {
5149 switch (eap->cmdidx)
5150 {
5151 case CMD_tabnext:
5152 tab_number = tabpage_index(curtab) + 1;
5153 if (tab_number > LAST_TAB_NR)
5154 tab_number = 1;
5155 break;
5156 case CMD_tabmove:
5157 tab_number = LAST_TAB_NR;
5158 break;
5159 default:
5160 tab_number = tabpage_index(curtab);
5161 }
5162 }
5163
5164theend:
5165 return tab_number;
5166}
5167
5168/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00005169 * ":tabclose": close current tab page, unless it is the last one.
5170 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 */
5172 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005173ex_tabclose(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174{
Bram Moolenaarf740b292006-02-16 22:11:02 +00005175 tabpage_T *tp;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005176 int tab_number;
Bram Moolenaarf740b292006-02-16 22:11:02 +00005177
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005178# ifdef FEAT_CMDWIN
5179 if (cmdwin_type != 0)
5180 cmdwin_result = K_IGNORE;
5181 else
5182# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00005183 if (first_tabpage->tp_next == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005184 emsg(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00005185 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 {
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005187 tab_number = get_tabpage_arg(eap);
5188 if (eap->errmsg == NULL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005189 {
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005190 tp = find_tabpage(tab_number);
Bram Moolenaarf740b292006-02-16 22:11:02 +00005191 if (tp == NULL)
5192 {
5193 beep_flush();
5194 return;
5195 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00005196 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00005197 {
5198 tabpage_close_other(tp, eap->forceit);
5199 return;
5200 }
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005201 else if (!text_locked() && !curbuf_locked())
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005202 tabpage_close(eap->forceit);
5203 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005205}
5206
5207/*
5208 * ":tabonly": close all tab pages except the current one
5209 */
5210 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005211ex_tabonly(exarg_T *eap)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005212{
5213 tabpage_T *tp;
5214 int done;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005215 int tab_number;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005216
5217# ifdef FEAT_CMDWIN
5218 if (cmdwin_type != 0)
5219 cmdwin_result = K_IGNORE;
5220 else
5221# endif
5222 if (first_tabpage->tp_next == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01005223 msg(_("Already only one tab page"));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005224 else
5225 {
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005226 tab_number = get_tabpage_arg(eap);
5227 if (eap->errmsg == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005228 {
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005229 goto_tabpage(tab_number);
5230 /* Repeat this up to a 1000 times, because autocommands may
5231 * mess up the lists. */
5232 for (done = 0; done < 1000; ++done)
5233 {
5234 FOR_ALL_TABPAGES(tp)
5235 if (tp->tp_topframe != topframe)
5236 {
5237 tabpage_close_other(tp, eap->forceit);
5238 /* if we failed to close it quit */
5239 if (valid_tabpage(tp))
5240 done = 1000;
5241 /* start over, "tp" is now invalid */
5242 break;
5243 }
5244 if (first_tabpage->tp_next == NULL)
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005245 break;
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005246 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005247 }
5248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250
5251/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00005252 * Close the current tab page.
5253 */
5254 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005255tabpage_close(int forceit)
Bram Moolenaarf740b292006-02-16 22:11:02 +00005256{
5257 /* First close all the windows but the current one. If that worked then
5258 * close the last window in this tab, that will close it. */
Bram Moolenaar459ca562016-11-10 18:16:33 +01005259 if (!ONE_WINDOW)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005260 close_others(TRUE, forceit);
Bram Moolenaar459ca562016-11-10 18:16:33 +01005261 if (ONE_WINDOW)
Bram Moolenaarf740b292006-02-16 22:11:02 +00005262 ex_win_close(forceit, curwin, NULL);
5263# ifdef FEAT_GUI
5264 need_mouse_correct = TRUE;
5265# endif
5266}
5267
5268/*
5269 * Close tab page "tp", which is not the current tab page.
5270 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00005271 * Also takes care of the tab pages line disappearing when closing the
5272 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00005273 */
5274 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005275tabpage_close_other(tabpage_T *tp, int forceit)
Bram Moolenaarf740b292006-02-16 22:11:02 +00005276{
5277 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005278 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00005279 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00005280
5281 /* Limit to 1000 windows, autocommands may add a window while we close
5282 * one. OK, so I'm paranoid... */
5283 while (++done < 1000)
5284 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005285 wp = tp->tp_firstwin;
5286 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00005287
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005288 /* Autocommands may delete the tab page under our fingers and we may
5289 * fail to close a window with a modified buffer. */
5290 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00005291 break;
5292 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00005293
Bram Moolenaar29323592016-07-24 22:04:11 +02005294 apply_autocmds(EVENT_TABCLOSED, NULL, NULL, FALSE, curbuf);
Bram Moolenaar29323592016-07-24 22:04:11 +02005295
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005296 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00005297 if (h != tabline_height())
5298 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00005299}
5300
5301/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 * ":only".
5303 */
5304 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005305ex_only(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005307 win_T *wp;
5308 int wnr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309# ifdef FEAT_GUI
5310 need_mouse_correct = TRUE;
5311# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005312 if (eap->addr_count > 0)
5313 {
5314 wnr = eap->line2;
5315 for (wp = firstwin; --wnr > 0; )
5316 {
5317 if (wp->w_next == NULL)
5318 break;
5319 else
5320 wp = wp->w_next;
5321 }
5322 win_goto(wp);
5323 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 close_others(TRUE, eap->forceit);
5325}
5326
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 static void
Bram Moolenaar5e1e6d22017-01-02 17:26:00 +01005328ex_hide(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329{
Bram Moolenaar2256c992016-11-15 21:17:07 +01005330 /* ":hide" or ":hide | cmd": hide current window */
Bram Moolenaar2256c992016-11-15 21:17:07 +01005331 if (!eap->skip)
5332 {
Bram Moolenaar4033c552017-09-16 20:54:51 +02005333#ifdef FEAT_GUI
Bram Moolenaar2256c992016-11-15 21:17:07 +01005334 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005335#endif
Bram Moolenaar2256c992016-11-15 21:17:07 +01005336 if (eap->addr_count == 0)
5337 win_close(curwin, FALSE); /* don't free buffer */
5338 else
5339 {
5340 int winnr = 0;
5341 win_T *win;
Bram Moolenaarf240e182014-11-27 18:33:02 +01005342
Bram Moolenaar2256c992016-11-15 21:17:07 +01005343 FOR_ALL_WINDOWS(win)
5344 {
5345 winnr++;
5346 if (winnr == eap->line2)
5347 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01005348 }
Bram Moolenaar2256c992016-11-15 21:17:07 +01005349 if (win == NULL)
5350 win = lastwin;
5351 win_close(win, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353 }
5354}
5355
5356/*
5357 * ":stop" and ":suspend": Suspend Vim.
5358 */
5359 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005360ex_stop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361{
5362 /*
5363 * Disallow suspending for "rvim".
5364 */
Bram Moolenaarcea912a2016-10-12 14:20:24 +02005365 if (!check_restricted())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 {
5367 if (!eap->forceit)
5368 autowrite_all();
5369 windgoto((int)Rows - 1, 0);
5370 out_char('\n');
5371 out_flush();
5372 stoptermcap();
5373 out_flush(); /* needed for SUN to restore xterm buffer */
5374#ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02005375 mch_restore_title(SAVE_RESTORE_BOTH); /* restore window titles */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005376#endif
5377 ui_suspend(); /* call machine specific function */
5378#ifdef FEAT_TITLE
5379 maketitle();
5380 resettitle(); /* force updating the title */
5381#endif
5382 starttermcap();
5383 scroll_start(); /* scroll screen before redrawing */
5384 redraw_later_clear();
5385 shell_resized(); /* may have resized window */
5386 }
5387}
5388
5389/*
Bram Moolenaar12a96de2018-03-11 14:44:18 +01005390 * ":exit", ":xit" and ":wq": Write file and quite the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 */
5392 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005393ex_exit(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394{
5395#ifdef FEAT_CMDWIN
5396 if (cmdwin_type != 0)
5397 {
5398 cmdwin_result = Ctrl_C;
5399 return;
5400 }
5401#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00005402 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005403 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00005404 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005405 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00005406 return;
5407 }
Bram Moolenaar12a96de2018-03-11 14:44:18 +01005408
5409 if (before_quit_autocmds(curwin, FALSE, eap->forceit))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005410 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411
5412 /*
5413 * if more files or windows we won't exit
5414 */
5415 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
5416 exiting = TRUE;
5417 if ( ((eap->cmdidx == CMD_wq
5418 || curbufIsChanged())
5419 && do_write(eap) == FAIL)
5420 || check_more(TRUE, eap->forceit) == FAIL
Bram Moolenaar027387f2016-01-02 22:25:52 +01005421 || (only_one_window() && check_changed_any(eap->forceit, FALSE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 {
5423 not_exiting();
5424 }
5425 else
5426 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 if (only_one_window()) /* quit last window, exit Vim */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428 getout(0);
Bram Moolenaar2c33d7b2017-10-14 16:06:20 +02005429 not_exiting();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430# ifdef FEAT_GUI
5431 need_mouse_correct = TRUE;
5432# endif
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02005433 /* Quit current window, may free the buffer. */
Bram Moolenaareb44a682017-08-03 22:44:55 +02005434 win_close(curwin, !buf_hide(curwin->w_buffer));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 }
5436}
5437
5438/*
5439 * ":print", ":list", ":number".
5440 */
5441 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005442ex_print(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443{
Bram Moolenaardf177f62005-02-22 08:39:57 +00005444 if (curbuf->b_ml.ml_flags & ML_EMPTY)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005445 emsg(_(e_emptybuf));
Bram Moolenaardf177f62005-02-22 08:39:57 +00005446 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005448 for ( ;!got_int; ui_breakcheck())
5449 {
5450 print_line(eap->line1,
5451 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
5452 || (eap->flags & EXFLAG_NR)),
5453 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
5454 if (++eap->line1 > eap->line2)
5455 break;
5456 out_flush(); /* show one line at a time */
5457 }
5458 setpcmark();
5459 /* put cursor at last line */
5460 curwin->w_cursor.lnum = eap->line2;
5461 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 }
5463
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465}
5466
5467#ifdef FEAT_BYTEOFF
5468 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005469ex_goto(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470{
5471 goto_byte(eap->line2);
5472}
5473#endif
5474
5475/*
5476 * ":shell".
5477 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005479ex_shell(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480{
5481 do_shell(NULL, 0);
5482}
5483
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005484#if defined(HAVE_DROP_FILE) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005486static int drop_busy = FALSE;
5487static int drop_filec;
5488static char_u **drop_filev = NULL;
5489static int drop_split;
5490static void (*drop_callback)(void *);
5491static void *drop_cookie;
5492
5493 static void
5494handle_drop_internal(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005495{
5496 exarg_T ea;
5497 int save_msg_scroll = msg_scroll;
5498
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005499 // Setting the argument list may cause screen updates and being called
5500 // recursively. Avoid that by setting drop_busy.
5501 drop_busy = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502
5503 /* Check whether the current buffer is changed. If so, we will need
5504 * to split the current window or data could be lost.
5505 * We don't need to check if the 'hidden' option is set, as in this
5506 * case the buffer won't be lost.
5507 */
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005508 if (!buf_hide(curbuf) && !drop_split)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 {
5510 ++emsg_off;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005511 drop_split = check_changed(curbuf, CCGD_AW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 --emsg_off;
5513 }
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005514 if (drop_split)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 if (win_split(0, 0) == FAIL)
5517 return;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005518 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519
5520 /* When splitting the window, create a new alist. Otherwise the
5521 * existing one is overwritten. */
5522 alist_unlink(curwin->w_alist);
5523 alist_new();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005524 }
5525
5526 /*
5527 * Set up the new argument list.
5528 */
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005529 alist_set(ALIST(curwin), drop_filec, drop_filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005530
5531 /*
5532 * Move to the first file.
5533 */
5534 /* Fake up a minimal "next" command for do_argfile() */
5535 vim_memset(&ea, 0, sizeof(ea));
5536 ea.cmd = (char_u *)"next";
5537 do_argfile(&ea, 0);
5538
5539 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
5540 * mode that is not needed here. */
5541 need_start_insertmode = FALSE;
5542
5543 /* Restore msg_scroll, otherwise a following command may cause scrolling
5544 * unexpectedly. The screen will be redrawn by the caller, thus
5545 * msg_scroll being set by displaying a message is irrelevant. */
5546 msg_scroll = save_msg_scroll;
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005547
5548 if (drop_callback != NULL)
5549 drop_callback(drop_cookie);
5550
5551 drop_filev = NULL;
5552 drop_busy = FALSE;
5553}
5554
5555/*
5556 * Handle a file drop. The code is here because a drop is *nearly* like an
5557 * :args command, but not quite (we have a list of exact filenames, so we
Bram Moolenaarb5443cc2019-01-15 20:19:40 +01005558 * don't want to (a) parse a command line, or (b) expand wildcards). So the
Bram Moolenaar92d147b2018-07-29 17:35:23 +02005559 * code is very similar to :args and hence needs access to a lot of the static
5560 * functions in this file.
5561 *
5562 * The "filev" list must have been allocated using alloc(), as should each item
5563 * in the list. This function takes over responsibility for freeing the "filev"
5564 * list.
5565 */
5566 void
5567handle_drop(
5568 int filec, // the number of files dropped
5569 char_u **filev, // the list of files dropped
5570 int split, // force splitting the window
5571 void (*callback)(void *), // to be called after setting the argument
5572 // list
5573 void *cookie) // argument for "callback" (allocated)
5574{
5575 // Cannot handle recursive drops, finish the pending one.
5576 if (drop_busy)
5577 {
5578 FreeWild(filec, filev);
5579 vim_free(cookie);
5580 return;
5581 }
5582
5583 // When calling handle_drop() more than once in a row we only use the last
5584 // one.
5585 if (drop_filev != NULL)
5586 {
5587 FreeWild(drop_filec, drop_filev);
5588 vim_free(drop_cookie);
5589 }
5590
5591 drop_filec = filec;
5592 drop_filev = filev;
5593 drop_split = split;
5594 drop_callback = callback;
5595 drop_cookie = cookie;
5596
5597 // Postpone this when:
5598 // - editing the command line
5599 // - not possible to change the current buffer
5600 // - updating the screen
5601 // As it may change buffers and window structures that are in use and cause
5602 // freed memory to be used.
5603 if (text_locked() || curbuf_locked() || updating_screen)
5604 return;
5605
5606 handle_drop_internal();
5607}
5608
5609/*
5610 * To be called when text is unlocked, curbuf is unlocked or updating_screen is
5611 * reset: Handle a postponed drop.
5612 */
5613 void
5614handle_any_postponed_drop(void)
5615{
5616 if (!drop_busy && drop_filev != NULL
5617 && !text_locked() && !curbuf_locked() && !updating_screen)
5618 handle_drop_internal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619}
5620#endif
5621
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 * ":preserve".
5624 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005626ex_preserve(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00005628 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 ml_preserve(curbuf, TRUE);
5630}
5631
5632/*
5633 * ":recover".
5634 */
5635 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005636ex_recover(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637{
5638 /* Set recoverymode right away to avoid the ATTENTION prompt. */
5639 recoverymode = TRUE;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01005640 if (!check_changed(curbuf, (p_awa ? CCGD_AW : 0)
5641 | CCGD_MULTWIN
5642 | (eap->forceit ? CCGD_FORCEIT : 0)
5643 | CCGD_EXCMD)
5644
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645 && (*eap->arg == NUL
5646 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
Bram Moolenaar99499b12019-05-23 21:35:48 +02005647 ml_recover(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648 recoverymode = FALSE;
5649}
5650
5651/*
5652 * Command modifier used in a wrong way.
5653 */
5654 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005655ex_wrongmodifier(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656{
5657 eap->errmsg = e_invcmd;
5658}
5659
Bram Moolenaar071d4272004-06-13 20:20:40 +00005660/*
5661 * :sview [+command] file split window with new file, read-only
5662 * :split [[+command] file] split window with current or new file
5663 * :vsplit [[+command] file] split window vertically with current or new file
5664 * :new [[+command] file] split window with no or new file
5665 * :vnew [[+command] file] split vertically window with no or new file
5666 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005667 *
5668 * :tabedit open new Tab page with empty window
5669 * :tabedit [+command] file open new Tab page and edit "file"
5670 * :tabnew [[+command] file] just like :tabedit
5671 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 */
5673 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005674ex_splitview(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005676 win_T *old_curwin = curwin;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005677#if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678 char_u *fname = NULL;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005679#endif
5680#ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681 int browse_flag = cmdmod.browse;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005682#endif
Bram Moolenaar39902a02018-06-21 22:10:08 +02005683 int use_tab = eap->cmdidx == CMD_tabedit
5684 || eap->cmdidx == CMD_tabfind
5685 || eap->cmdidx == CMD_tabnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686
Bram Moolenaar8cdbd5b2019-06-16 15:50:45 +02005687 if (ERROR_IF_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02005688 return;
5689
Bram Moolenaar4033c552017-09-16 20:54:51 +02005690#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02005692#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693
Bram Moolenaar4033c552017-09-16 20:54:51 +02005694#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 /* A ":split" in the quickfix window works like ":new". Don't want two
Bram Moolenaar05bb9532008-07-04 09:44:11 +00005696 * quickfix windows. But it's OK when doing ":tab split". */
5697 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 {
5699 if (eap->cmdidx == CMD_split)
5700 eap->cmdidx = CMD_new;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 if (eap->cmdidx == CMD_vsplit)
5702 eap->cmdidx = CMD_vnew;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02005704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705
Bram Moolenaar4033c552017-09-16 20:54:51 +02005706#ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005707 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 {
5709 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
5710 FNAME_MESS, TRUE, curbuf->b_ffname);
5711 if (fname == NULL)
5712 goto theend;
5713 eap->arg = fname;
5714 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005715# ifdef FEAT_BROWSE
Bram Moolenaar4033c552017-09-16 20:54:51 +02005716 else
5717# endif
5718#endif
5719#ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 if (cmdmod.browse
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721 && eap->cmdidx != CMD_vnew
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722 && eap->cmdidx != CMD_new)
5723 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005724 if (
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005725# ifdef FEAT_GUI
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005726 !gui.in_use &&
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005727# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005728 au_has_group((char_u *)"FileExplorer"))
5729 {
5730 /* No browsing supported but we do have the file explorer:
5731 * Edit the directory. */
5732 if (*eap->arg == NUL || !mch_isdir(eap->arg))
5733 eap->arg = (char_u *)".";
5734 }
5735 else
5736 {
Bram Moolenaar39902a02018-06-21 22:10:08 +02005737 fname = do_browse(0, (char_u *)(use_tab
5738 ? _("Edit File in new tab page")
5739 : _("Edit File in new window")),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00005741 if (fname == NULL)
5742 goto theend;
5743 eap->arg = fname;
5744 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745 }
5746 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar4033c552017-09-16 20:54:51 +02005747#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005749 /*
5750 * Either open new tab page or split the window.
5751 */
Bram Moolenaar39902a02018-06-21 22:10:08 +02005752 if (use_tab)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005753 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00005754 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
5755 : eap->addr_count == 0 ? 0
5756 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005757 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00005758 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00005759
5760 /* set the alternate buffer for the window we came from */
5761 if (curwin != old_curwin
5762 && win_valid(old_curwin)
5763 && old_curwin->w_buffer != curbuf
5764 && !cmdmod.keepalt)
5765 old_curwin->w_alt_fnum = curbuf->b_fnum;
5766 }
5767 }
5768 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
5770 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771 /* Reset 'scrollbind' when editing another file, but keep it when
5772 * doing ":split" without arguments. */
5773 if (*eap->arg != NUL
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01005774# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 || cmdmod.browse
Bram Moolenaar8a3bb562018-03-04 20:14:14 +01005776# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 )
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005778 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 else
5780 do_check_scrollbind(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 do_exedit(eap, old_curwin);
5782 }
5783
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005784# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005786# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005788# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789theend:
5790 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005791# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005793
5794/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00005795 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005796 */
5797 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005798tabpage_new(void)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00005799{
5800 exarg_T ea;
5801
5802 vim_memset(&ea, 0, sizeof(ea));
5803 ea.cmdidx = CMD_tabnew;
5804 ea.cmd = (char_u *)"tabn";
5805 ea.arg = (char_u *)"";
5806 ex_splitview(&ea);
5807}
5808
5809/*
5810 * :tabnext command
5811 */
5812 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005813ex_tabnext(exarg_T *eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005814{
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005815 int tab_number;
5816
Bram Moolenaar8cdbd5b2019-06-16 15:50:45 +02005817 if (ERROR_IF_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02005818 return;
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005819 switch (eap->cmdidx)
5820 {
5821 case CMD_tabfirst:
5822 case CMD_tabrewind:
5823 goto_tabpage(1);
5824 break;
5825 case CMD_tablast:
5826 goto_tabpage(9999);
5827 break;
5828 case CMD_tabprevious:
5829 case CMD_tabNext:
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005830 if (eap->arg && *eap->arg != NUL)
5831 {
5832 char_u *p = eap->arg;
5833 char_u *p_save = p;
5834
5835 tab_number = getdigits(&p);
5836 if (p == p_save || *p_save == '-' || *p != NUL
5837 || tab_number == 0)
5838 {
5839 /* No numbers as argument. */
5840 eap->errmsg = e_invarg;
5841 return;
5842 }
5843 }
5844 else
5845 {
5846 if (eap->addr_count == 0)
5847 tab_number = 1;
5848 else
5849 {
5850 tab_number = eap->line2;
5851 if (tab_number < 1)
5852 {
5853 eap->errmsg = e_invrange;
5854 return;
5855 }
5856 }
5857 }
5858 goto_tabpage(-tab_number);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005859 break;
5860 default: /* CMD_tabnext */
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005861 tab_number = get_tabpage_arg(eap);
5862 if (eap->errmsg == NULL)
5863 goto_tabpage(tab_number);
Bram Moolenaar32466aa2006-02-24 23:53:04 +00005864 break;
5865 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00005866}
5867
5868/*
5869 * :tabmove command
5870 */
5871 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005872ex_tabmove(exarg_T *eap)
Bram Moolenaar80a94a52006-02-23 21:26:58 +00005873{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02005874 int tab_number;
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02005875
Bram Moolenaar2f72c702017-01-29 14:48:10 +01005876 tab_number = get_tabpage_arg(eap);
5877 if (eap->errmsg == NULL)
5878 tabpage_move(tab_number);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005879}
5880
5881/*
5882 * :tabs command: List tabs and their contents.
5883 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005884 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005885ex_tabs(exarg_T *eap UNUSED)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005886{
5887 tabpage_T *tp;
5888 win_T *wp;
5889 int tabcount = 1;
5890
5891 msg_start();
5892 msg_scroll = TRUE;
5893 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
5894 {
5895 msg_putchar('\n');
5896 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
Bram Moolenaar8820b482017-03-16 17:23:31 +01005897 msg_outtrans_attr(IObuff, HL_ATTR(HLF_T));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005898 out_flush(); /* output one line at a time */
5899 ui_breakcheck();
5900
Bram Moolenaar030f0df2006-02-21 22:02:53 +00005901 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005902 wp = firstwin;
5903 else
5904 wp = tp->tp_firstwin;
5905 for ( ; wp != NULL && !got_int; wp = wp->w_next)
5906 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00005907 msg_putchar('\n');
5908 msg_putchar(wp == curwin ? '>' : ' ');
5909 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005910 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
5911 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005912 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02005913 vim_strncpy(IObuff, buf_spname(wp->w_buffer), IOSIZE - 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00005914 else
5915 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
5916 IObuff, IOSIZE, TRUE);
5917 msg_outtrans(IObuff);
5918 out_flush(); /* output one line at a time */
5919 ui_breakcheck();
5920 }
5921 }
5922}
5923
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924/*
5925 * ":mode": Set screen mode.
5926 * If no argument given, just get the screen size and redraw.
5927 */
5928 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005929ex_mode(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930{
5931 if (*eap->arg == NUL)
5932 shell_resized();
5933 else
5934 mch_screenmode(eap->arg);
5935}
5936
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937/*
5938 * ":resize".
5939 * set, increment or decrement current window height
5940 */
5941 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005942ex_resize(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943{
5944 int n;
5945 win_T *wp = curwin;
5946
5947 if (eap->addr_count > 0)
5948 {
5949 n = eap->line2;
5950 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
5951 ;
5952 }
5953
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005954# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955 need_mouse_correct = TRUE;
Bram Moolenaar44a2f922016-03-19 22:11:51 +01005956# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 n = atol((char *)eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958 if (cmdmod.split & WSP_VERT)
5959 {
5960 if (*eap->arg == '-' || *eap->arg == '+')
Bram Moolenaar02631462017-09-22 15:20:32 +02005961 n += curwin->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
5963 n = 9999;
5964 win_setwidth_win((int)n, wp);
5965 }
5966 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967 {
5968 if (*eap->arg == '-' || *eap->arg == '+')
5969 n += curwin->w_height;
Bram Moolenaar1f2903c2017-07-23 19:51:01 +02005970 else if (n == 0 && eap->arg[0] == NUL) /* default is very high */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 n = 9999;
5972 win_setheight_win((int)n, wp);
5973 }
5974}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975
5976/*
5977 * ":find [+command] <file>" command.
5978 */
5979 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005980ex_find(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981{
5982#ifdef FEAT_SEARCHPATH
5983 char_u *fname;
5984 int count;
5985
5986 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
5987 TRUE, curbuf->b_ffname);
5988 if (eap->addr_count > 0)
5989 {
5990 /* Repeat finding the file "count" times. This matters when it
5991 * appears several times in the path. */
5992 count = eap->line2;
5993 while (fname != NULL && --count > 0)
5994 {
5995 vim_free(fname);
5996 fname = find_file_in_path(NULL, 0, FNAME_MESS,
5997 FALSE, curbuf->b_ffname);
5998 }
5999 }
6000
6001 if (fname != NULL)
6002 {
6003 eap->arg = fname;
6004#endif
6005 do_exedit(eap, NULL);
6006#ifdef FEAT_SEARCHPATH
6007 vim_free(fname);
6008 }
6009#endif
6010}
6011
6012/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00006013 * ":open" simulation: for now just work like ":visual".
6014 */
6015 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006016ex_open(exarg_T *eap)
Bram Moolenaardf177f62005-02-22 08:39:57 +00006017{
6018 regmatch_T regmatch;
6019 char_u *p;
6020
6021 curwin->w_cursor.lnum = eap->line2;
6022 beginline(BL_SOL | BL_FIX);
6023 if (*eap->arg == '/')
6024 {
6025 /* ":open /pattern/": put cursor in column found with pattern */
6026 ++eap->arg;
6027 p = skip_regexp(eap->arg, '/', p_magic, NULL);
6028 *p = NUL;
6029 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
6030 if (regmatch.regprog != NULL)
6031 {
6032 regmatch.rm_ic = p_ic;
6033 p = ml_get_curline();
6034 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006035 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006036 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006037 emsg(_(e_nomatch));
Bram Moolenaar473de612013-06-08 18:19:48 +02006038 vim_regfree(regmatch.regprog);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006039 }
6040 /* Move to the NUL, ignore any other arguments. */
6041 eap->arg += STRLEN(eap->arg);
6042 }
6043 check_cursor();
6044
6045 eap->cmdidx = CMD_visual;
6046 do_exedit(eap, NULL);
6047}
6048
6049/*
6050 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 */
6052 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006053ex_edit(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006054{
6055 do_exedit(eap, NULL);
6056}
6057
6058/*
6059 * ":edit <file>" command and alikes.
6060 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006062do_exedit(
6063 exarg_T *eap,
6064 win_T *old_curwin) /* curwin before doing a split or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065{
6066 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067 int need_hide;
Bram Moolenaardf177f62005-02-22 08:39:57 +00006068 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02006070 if (eap->cmdidx != CMD_pedit && ERROR_IF_POPUP_WINDOW)
Bram Moolenaar815b76b2019-06-01 14:15:52 +02006071 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 /*
6073 * ":vi" command ends Ex mode.
6074 */
6075 if (exmode_active && (eap->cmdidx == CMD_visual
6076 || eap->cmdidx == CMD_view))
6077 {
6078 exmode_active = FALSE;
6079 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00006080 {
6081 /* Special case: ":global/pat/visual\NLvi-commands" */
6082 if (global_busy)
6083 {
6084 int rd = RedrawingDisabled;
6085 int nwr = no_wait_return;
6086 int ms = msg_scroll;
6087#ifdef FEAT_GUI
6088 int he = hold_gui_events;
6089#endif
6090
6091 if (eap->nextcmd != NULL)
6092 {
6093 stuffReadbuff(eap->nextcmd);
6094 eap->nextcmd = NULL;
6095 }
6096
6097 if (exmode_was != EXMODE_VIM)
6098 settmode(TMODE_RAW);
6099 RedrawingDisabled = 0;
6100 no_wait_return = 0;
6101 need_wait_return = FALSE;
6102 msg_scroll = 0;
6103#ifdef FEAT_GUI
6104 hold_gui_events = 0;
6105#endif
6106 must_redraw = CLEAR;
6107
6108 main_loop(FALSE, TRUE);
6109
6110 RedrawingDisabled = rd;
6111 no_wait_return = nwr;
6112 msg_scroll = ms;
6113#ifdef FEAT_GUI
6114 hold_gui_events = he;
6115#endif
6116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00006118 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006119 }
6120
6121 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006122 || eap->cmdidx == CMD_tabnew
6123 || eap->cmdidx == CMD_tabedit
Bram Moolenaar4033c552017-09-16 20:54:51 +02006124 || eap->cmdidx == CMD_vnew) && *eap->arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006126 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127 setpcmark();
6128 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006129 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
6130 old_curwin == NULL ? curwin : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131 }
Bram Moolenaar4033c552017-09-16 20:54:51 +02006132 else if ((eap->cmdidx != CMD_split && eap->cmdidx != CMD_vsplit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133 || *eap->arg != NUL
6134#ifdef FEAT_BROWSE
6135 || cmdmod.browse
6136#endif
6137 )
6138 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006139 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
6140 * can bring us here, others are stopped earlier. */
6141 if (*eap->arg != NUL && curbuf_locked())
6142 return;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006143
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144 n = readonlymode;
6145 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
6146 readonlymode = TRUE;
6147 else if (eap->cmdidx == CMD_enew)
6148 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
6149 empty buffer */
6150 setpcmark();
6151 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
6152 NULL, eap,
6153 /* ":edit" goes to first line if Vi compatible */
6154 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
6155 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
6156 ? ECMD_ONE : eap->do_ecmd_lnum,
Bram Moolenaareb44a682017-08-03 22:44:55 +02006157 (buf_hide(curbuf) ? ECMD_HIDE : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006158 + (eap->forceit ? ECMD_FORCEIT : 0)
Bram Moolenaar7b449342014-03-25 13:03:48 +01006159 /* after a split we can use an existing buffer */
6160 + (old_curwin != NULL ? ECMD_OLDBUF : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006162 , old_curwin == NULL ? curwin : NULL) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 {
6164 /* Editing the file failed. If the window was split, close it. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165 if (old_curwin != NULL)
6166 {
6167 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
Bram Moolenaareb44a682017-08-03 22:44:55 +02006168 if (!need_hide || buf_hide(curbuf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006170#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006171 cleanup_T cs;
6172
6173 /* Reset the error/interrupt/exception state here so that
6174 * aborting() returns FALSE when closing a window. */
6175 enter_cleanup(&cs);
Bram Moolenaar4033c552017-09-16 20:54:51 +02006176#endif
6177#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 need_mouse_correct = TRUE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02006179#endif
Bram Moolenaareb44a682017-08-03 22:44:55 +02006180 win_close(curwin, !need_hide && !buf_hide(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006181
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006182#if defined(FEAT_EVAL)
Bram Moolenaarc0197e22004-09-13 20:26:32 +00006183 /* Restore the error/interrupt/exception state if not
6184 * discarded by a new aborting error, interrupt, or
6185 * uncaught exception. */
6186 leave_cleanup(&cs);
Bram Moolenaar4033c552017-09-16 20:54:51 +02006187#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006188 }
6189 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190 }
6191 else if (readonlymode && curbuf->b_nwindows == 1)
6192 {
6193 /* When editing an already visited buffer, 'readonly' won't be set
6194 * but the previous value is kept. With ":view" and ":sview" we
6195 * want the file to be readonly, except when another window is
6196 * editing the same buffer. */
6197 curbuf->b_p_ro = TRUE;
6198 }
6199 readonlymode = n;
6200 }
6201 else
6202 {
6203 if (eap->do_ecmd_cmd != NULL)
6204 do_cmdline_cmd(eap->do_ecmd_cmd);
6205#ifdef FEAT_TITLE
6206 n = curwin->w_arg_idx_invalid;
6207#endif
6208 check_arg_idx(curwin);
6209#ifdef FEAT_TITLE
6210 if (n != curwin->w_arg_idx_invalid)
6211 maketitle();
6212#endif
6213 }
6214
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 /*
6216 * if ":split file" worked, set alternate file name in old window to new
6217 * file
6218 */
6219 if (old_curwin != NULL
6220 && *eap->arg != NUL
6221 && curwin != old_curwin
6222 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006223 && old_curwin->w_buffer != curbuf
6224 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225 old_curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226
6227 ex_no_reprint = TRUE;
6228}
6229
6230#ifndef FEAT_GUI
6231/*
6232 * ":gui" and ":gvim" when there is no GUI.
6233 */
6234 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006235ex_nogui(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236{
6237 eap->errmsg = e_nogvim;
6238}
6239#endif
6240
Bram Moolenaar4f974752019-02-17 17:44:42 +01006241#if defined(FEAT_GUI_MSWIN) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006243ex_tearoff(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244{
6245 gui_make_tearoff(eap->arg);
6246}
6247#endif
6248
Bram Moolenaar29a2c082018-03-05 21:06:23 +01006249#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) \
6250 || defined(FEAT_TERM_POPUP_MENU)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006252ex_popup(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253{
Bram Moolenaar29a2c082018-03-05 21:06:23 +01006254# if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)
6255 if (gui.in_use)
6256 gui_make_popup(eap->arg, eap->forceit);
6257# ifdef FEAT_TERM_POPUP_MENU
6258 else
6259# endif
6260# endif
6261# ifdef FEAT_TERM_POPUP_MENU
6262 pum_make_popup(eap->arg, eap->forceit);
6263# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264}
6265#endif
6266
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006268ex_swapname(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269{
6270 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006271 msg(_("No swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01006273 msg((char *)curbuf->b_ml.ml_mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006274}
6275
6276/*
6277 * ":syncbind" forces all 'scrollbind' windows to have the same relative
6278 * offset.
6279 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
6280 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006282ex_syncbind(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283{
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 win_T *wp;
Bram Moolenaardedd1b02013-12-14 13:06:17 +01006285 win_T *save_curwin = curwin;
6286 buf_T *save_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 long topline;
6288 long y;
6289 linenr_T old_linenr = curwin->w_cursor.lnum;
6290
6291 setpcmark();
6292
6293 /*
6294 * determine max topline
6295 */
6296 if (curwin->w_p_scb)
6297 {
6298 topline = curwin->w_topline;
Bram Moolenaar29323592016-07-24 22:04:11 +02006299 FOR_ALL_WINDOWS(wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006300 {
6301 if (wp->w_p_scb && wp->w_buffer)
6302 {
Bram Moolenaar375e3392019-01-31 18:26:10 +01006303 y = wp->w_buffer->b_ml.ml_line_count - get_scrolloff_value();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304 if (topline > y)
6305 topline = y;
6306 }
6307 }
6308 if (topline < 1)
6309 topline = 1;
6310 }
6311 else
6312 {
6313 topline = 1;
6314 }
6315
6316
6317 /*
Bram Moolenaardedd1b02013-12-14 13:06:17 +01006318 * Set all scrollbind windows to the same topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319 */
Bram Moolenaar29323592016-07-24 22:04:11 +02006320 FOR_ALL_WINDOWS(curwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006321 {
6322 if (curwin->w_p_scb)
6323 {
Bram Moolenaardedd1b02013-12-14 13:06:17 +01006324 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006325 y = topline - curwin->w_topline;
6326 if (y > 0)
6327 scrollup(y, TRUE);
6328 else
6329 scrolldown(-y, TRUE);
6330 curwin->w_scbind_pos = topline;
6331 redraw_later(VALID);
6332 cursor_correct();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006333 curwin->w_redr_status = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334 }
6335 }
Bram Moolenaardedd1b02013-12-14 13:06:17 +01006336 curwin = save_curwin;
6337 curbuf = save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338 if (curwin->w_p_scb)
6339 {
6340 did_syncbind = TRUE;
6341 checkpcmark();
6342 if (old_linenr != curwin->w_cursor.lnum)
6343 {
6344 char_u ctrl_o[2];
6345
6346 ctrl_o[0] = Ctrl_O;
6347 ctrl_o[1] = 0;
6348 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
6349 }
6350 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351}
6352
6353
6354 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006355ex_read(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006357 int i;
6358 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
6359 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360
6361 if (eap->usefilter) /* :r!cmd */
6362 do_bang(1, eap, FALSE, FALSE, TRUE);
6363 else
6364 {
6365 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
6366 return;
6367
6368#ifdef FEAT_BROWSE
6369 if (cmdmod.browse)
6370 {
6371 char_u *browseFile;
6372
Bram Moolenaar7171abe2004-10-11 10:06:20 +00006373 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 NULL, NULL, NULL, curbuf);
6375 if (browseFile != NULL)
6376 {
6377 i = readfile(browseFile, NULL,
6378 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
6379 vim_free(browseFile);
6380 }
6381 else
6382 i = OK;
6383 }
6384 else
6385#endif
6386 if (*eap->arg == NUL)
6387 {
6388 if (check_fname() == FAIL) /* check for no file name */
6389 return;
6390 i = readfile(curbuf->b_ffname, curbuf->b_fname,
6391 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
6392 }
6393 else
6394 {
6395 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
6396 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
6397 i = readfile(eap->arg, NULL,
6398 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
6399
6400 }
Bram Moolenaare13b9af2017-01-13 22:01:02 +01006401 if (i != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006403#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404 if (!aborting())
6405#endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006406 semsg(_(e_notopen), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 }
6408 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00006409 {
6410 if (empty && exmode_active)
6411 {
6412 /* Delete the empty line that remains. Historically ex does
6413 * this but vi doesn't. */
6414 if (eap->line2 == 0)
6415 lnum = curbuf->b_ml.ml_line_count;
6416 else
6417 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00006418 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00006419 {
6420 ml_delete(lnum, FALSE);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00006421 if (curwin->w_cursor.lnum > 1
6422 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00006423 --curwin->w_cursor.lnum;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00006424 deleted_lines_mark(lnum, 1L);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006425 }
6426 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006428 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 }
6430}
6431
Bram Moolenaarea408852005-06-25 22:49:46 +00006432static char_u *prev_dir = NULL;
6433
6434#if defined(EXITFREE) || defined(PROTO)
6435 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006436free_cd_dir(void)
Bram Moolenaarea408852005-06-25 22:49:46 +00006437{
Bram Moolenaard23a8232018-02-10 18:45:26 +01006438 VIM_CLEAR(prev_dir);
6439 VIM_CLEAR(globaldir);
Bram Moolenaarea408852005-06-25 22:49:46 +00006440}
6441#endif
6442
Bram Moolenaarf4258302013-06-02 18:20:17 +02006443/*
6444 * Deal with the side effects of changing the current directory.
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02006445 * When 'scope' is CDSCOPE_TABPAGE then this was after an ":tcd" command.
6446 * When 'scope' is CDSCOPE_WINDOW then this was after an ":lcd" command.
Bram Moolenaarf4258302013-06-02 18:20:17 +02006447 */
6448 void
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02006449post_chdir(cdscope_T scope)
Bram Moolenaarf4258302013-06-02 18:20:17 +02006450{
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02006451 if (scope != CDSCOPE_WINDOW)
Bram Moolenaar00aa0692019-04-27 20:37:57 +02006452 // Clear tab local directory for both :cd and :tcd
6453 VIM_CLEAR(curtab->tp_localdir);
Bram Moolenaard23a8232018-02-10 18:45:26 +01006454 VIM_CLEAR(curwin->w_localdir);
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02006455 if (scope != CDSCOPE_GLOBAL)
Bram Moolenaarf4258302013-06-02 18:20:17 +02006456 {
6457 /* If still in global directory, need to remember current
6458 * directory as global directory. */
6459 if (globaldir == NULL && prev_dir != NULL)
6460 globaldir = vim_strsave(prev_dir);
6461 /* Remember this local directory for the window. */
6462 if (mch_dirname(NameBuff, MAXPATHL) == OK)
Bram Moolenaar00aa0692019-04-27 20:37:57 +02006463 {
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02006464 if (scope == CDSCOPE_TABPAGE)
Bram Moolenaar00aa0692019-04-27 20:37:57 +02006465 curtab->tp_localdir = vim_strsave(NameBuff);
6466 else
6467 curwin->w_localdir = vim_strsave(NameBuff);
6468 }
Bram Moolenaarf4258302013-06-02 18:20:17 +02006469 }
6470 else
6471 {
6472 /* We are now in the global directory, no need to remember its
6473 * name. */
Bram Moolenaard23a8232018-02-10 18:45:26 +01006474 VIM_CLEAR(globaldir);
Bram Moolenaarf4258302013-06-02 18:20:17 +02006475 }
6476
6477 shorten_fnames(TRUE);
6478}
6479
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02006480/*
6481 * Change directory function used by :cd/:tcd/:lcd Ex commands and the
6482 * chdir() function. If 'winlocaldir' is TRUE, then changes the window-local
6483 * directory. If 'tablocaldir' is TRUE, then changes the tab-local directory.
6484 * Otherwise changes the global directory.
6485 * Returns TRUE if the directory is successfully changed.
6486 */
6487 int
6488changedir_func(
6489 char_u *new_dir,
6490 int forceit,
6491 cdscope_T scope)
6492{
6493 char_u *tofree;
6494 int dir_differs;
6495 int retval = FALSE;
6496
6497 if (allbuf_locked())
6498 return FALSE;
6499
6500 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged() && !forceit)
6501 {
6502 emsg(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
6503 return FALSE;
6504 }
6505
6506 // ":cd -": Change to previous directory
6507 if (STRCMP(new_dir, "-") == 0)
6508 {
6509 if (prev_dir == NULL)
6510 {
6511 emsg(_("E186: No previous directory"));
6512 return FALSE;
6513 }
6514 new_dir = prev_dir;
6515 }
6516
6517 // Save current directory for next ":cd -"
6518 tofree = prev_dir;
6519 if (mch_dirname(NameBuff, MAXPATHL) == OK)
6520 prev_dir = vim_strsave(NameBuff);
6521 else
6522 prev_dir = NULL;
6523
6524#if defined(UNIX) || defined(VMS)
6525 // for UNIX ":cd" means: go to home directory
6526 if (*new_dir == NUL)
6527 {
6528 // use NameBuff for home directory name
6529# ifdef VMS
6530 char_u *p;
6531
6532 p = mch_getenv((char_u *)"SYS$LOGIN");
6533 if (p == NULL || *p == NUL) // empty is the same as not set
6534 NameBuff[0] = NUL;
6535 else
6536 vim_strncpy(NameBuff, p, MAXPATHL - 1);
6537# else
6538 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
6539# endif
6540 new_dir = NameBuff;
6541 }
6542#endif
6543 dir_differs = new_dir == NULL || prev_dir == NULL
6544 || pathcmp((char *)prev_dir, (char *)new_dir, -1) != 0;
6545 if (new_dir == NULL || (dir_differs && vim_chdir(new_dir)))
6546 emsg(_(e_failed));
6547 else
6548 {
6549 char_u *acmd_fname;
6550
6551 post_chdir(scope);
6552
6553 if (dir_differs)
6554 {
6555 if (scope == CDSCOPE_WINDOW)
6556 acmd_fname = (char_u *)"window";
6557 else if (scope == CDSCOPE_TABPAGE)
6558 acmd_fname = (char_u *)"tabpage";
6559 else
6560 acmd_fname = (char_u *)"global";
6561 apply_autocmds(EVENT_DIRCHANGED, acmd_fname, new_dir, FALSE,
6562 curbuf);
6563 }
6564 retval = TRUE;
6565 }
6566 vim_free(tofree);
6567
6568 return retval;
6569}
Bram Moolenaarea408852005-06-25 22:49:46 +00006570
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571/*
Bram Moolenaar00aa0692019-04-27 20:37:57 +02006572 * ":cd", ":tcd", ":lcd", ":chdir" ":tchdir" and ":lchdir".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00006574 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006575ex_cd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576{
Bram Moolenaar2caad3f2018-12-16 15:38:02 +01006577 char_u *new_dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578
6579 new_dir = eap->arg;
6580#if !defined(UNIX) && !defined(VMS)
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02006581 // for non-UNIX ":cd" means: print current directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582 if (*new_dir == NUL)
6583 ex_pwd(NULL);
6584 else
6585#endif
6586 {
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02006587 cdscope_T scope = CDSCOPE_GLOBAL;
6588
6589 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
6590 scope = CDSCOPE_WINDOW;
6591 else if (eap->cmdidx == CMD_tcd || eap->cmdidx == CMD_tchdir)
6592 scope = CDSCOPE_TABPAGE;
6593
6594 if (changedir_func(new_dir, eap->forceit, scope))
Bram Moolenaardf177f62005-02-22 08:39:57 +00006595 {
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02006596 // Echo the new current directory if the command was typed.
Bram Moolenaarfcfbc672009-07-09 18:13:49 +00006597 if (KeyTyped || p_verbose >= 5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598 ex_pwd(eap);
6599 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006600 }
6601}
6602
6603/*
6604 * ":pwd".
6605 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006607ex_pwd(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608{
6609 if (mch_dirname(NameBuff, MAXPATHL) == OK)
6610 {
6611#ifdef BACKSLASH_IN_FILENAME
6612 slash_adjust(NameBuff);
6613#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01006614 msg((char *)NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 }
6616 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006617 emsg(_("E187: Unknown"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618}
6619
6620/*
6621 * ":=".
6622 */
6623 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006624ex_equal(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006626 smsg("%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006627 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006628}
6629
6630 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006631ex_sleep(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006633 int n;
6634 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635
6636 if (cursor_valid())
6637 {
6638 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
6639 if (n >= 0)
Bram Moolenaar53f81742017-09-22 14:35:51 +02006640 windgoto((int)n, curwin->w_wincol + curwin->w_wcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006642
6643 len = eap->line2;
6644 switch (*eap->arg)
6645 {
6646 case 'm': break;
6647 case NUL: len *= 1000L; break;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006648 default: semsg(_(e_invarg2), eap->arg); return;
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00006649 }
6650 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651}
6652
6653/*
6654 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
6655 */
6656 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006657do_sleep(long msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658{
Bram Moolenaar52953192019-08-16 10:27:13 +02006659 long done = 0;
Bram Moolenaar975b5272016-03-15 23:10:59 +01006660 long wait_now;
Bram Moolenaar52953192019-08-16 10:27:13 +02006661# ifdef ELAPSED_FUNC
6662 elapsed_T start_tv;
6663
6664 // Remember at what time we started, so that we know how much longer we
6665 // should wait after waiting for a bit.
6666 ELAPSED_INIT(start_tv);
6667# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668
6669 cursor_on();
Bram Moolenaarf45d7472018-09-30 18:22:26 +02006670 out_flush_cursor(FALSE, FALSE);
Bram Moolenaar52953192019-08-16 10:27:13 +02006671 while (!got_int && done < msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 {
Bram Moolenaar975b5272016-03-15 23:10:59 +01006673 wait_now = msec - done > 1000L ? 1000L : msec - done;
6674#ifdef FEAT_TIMERS
6675 {
6676 long due_time = check_due_timer();
6677
6678 if (due_time > 0 && due_time < wait_now)
6679 wait_now = due_time;
6680 }
6681#endif
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006682#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar28e67e02019-08-15 23:05:49 +02006683 if (has_any_channel() && wait_now > 20L)
6684 wait_now = 20L;
6685#endif
6686#ifdef FEAT_SOUND
6687 if (has_any_sound_callback() && wait_now > 20L)
6688 wait_now = 20L;
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006689#endif
Bram Moolenaar975b5272016-03-15 23:10:59 +01006690 ui_delay(wait_now, TRUE);
Bram Moolenaar52953192019-08-16 10:27:13 +02006691
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02006692#ifdef FEAT_JOB_CHANNEL
6693 if (has_any_channel())
6694 ui_breakcheck_force(TRUE);
6695 else
6696#endif
6697 ui_breakcheck();
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006698#ifdef MESSAGE_QUEUE
Bram Moolenaar52953192019-08-16 10:27:13 +02006699 // Process the netbeans and clientserver messages that may have been
6700 // received in the call to ui_breakcheck() when the GUI is in use. This
6701 // may occur when running a test case.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006702 parse_queued_messages();
Bram Moolenaare3cc6d42011-10-20 21:58:34 +02006703#endif
Bram Moolenaar52953192019-08-16 10:27:13 +02006704
6705# ifdef ELAPSED_FUNC
6706 // actual time passed
6707 done = ELAPSED_FUNC(start_tv);
6708# else
6709 // guestimate time passed (will actually be more)
6710 done += wait_now;
6711# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712 }
Bram Moolenaar1ebff3d2018-07-07 16:18:13 +02006713
6714 // If CTRL-C was typed to interrupt the sleep, drop the CTRL-C from the
6715 // input buffer, otherwise a following call to input() fails.
6716 if (got_int)
6717 (void)vpeekc();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718}
6719
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720/*
6721 * ":winsize" command (obsolete).
6722 */
6723 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006724ex_winsize(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006725{
6726 int w, h;
6727 char_u *arg = eap->arg;
6728 char_u *p;
6729
6730 w = getdigits(&arg);
6731 arg = skipwhite(arg);
6732 p = arg;
6733 h = getdigits(&arg);
6734 if (*p != NUL && *arg == NUL)
6735 set_shellsize(w, h, TRUE);
6736 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006737 emsg(_("E465: :winsize requires two number arguments"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738}
6739
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006741ex_wincmd(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006742{
6743 int xchar = NUL;
6744 char_u *p;
6745
6746 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
6747 {
6748 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
6749 if (eap->arg[1] == NUL)
6750 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006751 emsg(_(e_invarg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006752 return;
6753 }
6754 xchar = eap->arg[1];
6755 p = eap->arg + 2;
6756 }
6757 else
6758 p = eap->arg + 1;
6759
6760 eap->nextcmd = check_nextcmd(p);
6761 p = skipwhite(p);
6762 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006763 emsg(_(e_invarg));
Bram Moolenaar12bde492011-06-13 01:19:56 +02006764 else if (!eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006765 {
6766 /* Pass flags on for ":vertical wincmd ]". */
6767 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00006768 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
6770 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00006771 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772 }
6773}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006774
Bram Moolenaar843ee412004-06-30 16:16:41 +00006775#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006776/*
6777 * ":winpos".
6778 */
6779 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006780ex_winpos(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781{
6782 int x, y;
6783 char_u *arg = eap->arg;
6784 char_u *p;
6785
6786 if (*arg == NUL)
6787 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00006788# if defined(FEAT_GUI) || defined(MSWIN)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006789# ifdef VIMDLL
6790 if (gui.in_use ? gui_mch_get_winpos(&x, &y) != FAIL :
6791 mch_get_winpos(&x, &y) != FAIL)
6792# elif defined(FEAT_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00006794# else
6795 if (mch_get_winpos(&x, &y) != FAIL)
6796# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006797 {
6798 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
Bram Moolenaar32526b32019-01-19 17:43:09 +01006799 msg((char *)IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006800 }
6801 else
6802# endif
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006803 emsg(_("E188: Obtaining window position not implemented for this platform"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006804 }
6805 else
6806 {
6807 x = getdigits(&arg);
6808 arg = skipwhite(arg);
6809 p = arg;
6810 y = getdigits(&arg);
6811 if (*p == NUL || *arg != NUL)
6812 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006813 emsg(_("E466: :winpos requires two number arguments"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006814 return;
6815 }
6816# ifdef FEAT_GUI
6817 if (gui.in_use)
6818 gui_mch_set_winpos(x, y);
6819 else if (gui.starting)
6820 {
6821 /* Remember the coordinates for when the window is opened. */
6822 gui_win_x = x;
6823 gui_win_y = y;
6824 }
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006825# if defined(HAVE_TGETENT) || defined(VIMDLL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 else
6827# endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02006828# endif
6829# if defined(MSWIN) && (!defined(FEAT_GUI) || defined(VIMDLL))
Bram Moolenaar843ee412004-06-30 16:16:41 +00006830 mch_set_winpos(x, y);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006831# endif
6832# ifdef HAVE_TGETENT
6833 if (*T_CWP)
6834 term_set_winpos(x, y);
6835# endif
6836 }
6837}
6838#endif
6839
6840/*
6841 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
6842 */
6843 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006844ex_operators(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845{
6846 oparg_T oa;
6847
6848 clear_oparg(&oa);
6849 oa.regname = eap->regname;
6850 oa.start.lnum = eap->line1;
6851 oa.end.lnum = eap->line2;
6852 oa.line_count = eap->line2 - eap->line1 + 1;
6853 oa.motion_type = MLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854 virtual_op = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
6856 {
6857 setpcmark();
6858 curwin->w_cursor.lnum = eap->line1;
6859 beginline(BL_SOL | BL_FIX);
6860 }
6861
Bram Moolenaard07c6e12013-11-21 14:21:40 +01006862 if (VIsual_active)
6863 end_visual_mode();
Bram Moolenaard07c6e12013-11-21 14:21:40 +01006864
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865 switch (eap->cmdidx)
6866 {
6867 case CMD_delete:
6868 oa.op_type = OP_DELETE;
6869 op_delete(&oa);
6870 break;
6871
6872 case CMD_yank:
6873 oa.op_type = OP_YANK;
6874 (void)op_yank(&oa, FALSE, TRUE);
6875 break;
6876
6877 default: /* CMD_rshift or CMD_lshift */
Bram Moolenaar6e707362013-06-14 19:15:58 +02006878 if (
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e707362013-06-14 19:15:58 +02006880 (eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
6881#else
6882 eap->cmdidx == CMD_rshift
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883#endif
Bram Moolenaar6e707362013-06-14 19:15:58 +02006884 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 oa.op_type = OP_RSHIFT;
6886 else
6887 oa.op_type = OP_LSHIFT;
6888 op_shift(&oa, FALSE, eap->amount);
6889 break;
6890 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891 virtual_op = MAYBE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00006892 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893}
6894
6895/*
6896 * ":put".
6897 */
6898 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006899ex_put(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900{
6901 /* ":0put" works like ":1put!". */
6902 if (eap->line2 == 0)
6903 {
6904 eap->line2 = 1;
6905 eap->forceit = TRUE;
6906 }
6907 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00006908 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
6909 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910}
6911
6912/*
6913 * Handle ":copy" and ":move".
6914 */
6915 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006916ex_copymove(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006917{
6918 long n;
6919
Bram Moolenaar50eb16c2018-09-15 15:42:40 +02006920 n = get_address(eap, &eap->arg, eap->addr_type, FALSE, FALSE, FALSE, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 if (eap->arg == NULL) /* error detected */
6922 {
6923 eap->nextcmd = NULL;
6924 return;
6925 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00006926 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927
6928 /*
6929 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
6930 */
6931 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
6932 {
Bram Moolenaar0acae7a2019-08-06 21:29:29 +02006933 emsg(_(e_invrange));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 return;
6935 }
6936
6937 if (eap->cmdidx == CMD_move)
6938 {
6939 if (do_move(eap->line1, eap->line2, n) == FAIL)
6940 return;
6941 }
6942 else
6943 ex_copy(eap->line1, eap->line2, n);
6944 u_clearline();
6945 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006946 ex_may_print(eap);
6947}
6948
6949/*
6950 * Print the current line if flags were given to the Ex command.
6951 */
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02006952 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006953ex_may_print(exarg_T *eap)
Bram Moolenaardf177f62005-02-22 08:39:57 +00006954{
6955 if (eap->flags != 0)
6956 {
6957 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
6958 (eap->flags & EXFLAG_LIST));
6959 ex_no_reprint = TRUE;
6960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961}
6962
6963/*
6964 * ":smagic" and ":snomagic".
6965 */
6966 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006967ex_submagic(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006968{
6969 int magic_save = p_magic;
6970
6971 p_magic = (eap->cmdidx == CMD_smagic);
6972 do_sub(eap);
6973 p_magic = magic_save;
6974}
6975
6976/*
6977 * ":join".
6978 */
6979 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006980ex_join(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006981{
6982 curwin->w_cursor.lnum = eap->line1;
6983 if (eap->line1 == eap->line2)
6984 {
6985 if (eap->addr_count >= 2) /* :2,2join does nothing */
6986 return;
6987 if (eap->line2 == curbuf->b_ml.ml_line_count)
6988 {
6989 beep_flush();
6990 return;
6991 }
6992 ++eap->line2;
6993 }
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02006994 (void)do_join(eap->line2 - eap->line1 + 1, !eap->forceit, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006995 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00006996 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006997}
6998
6999/*
7000 * ":[addr]@r" or ":[addr]*r": execute register
7001 */
7002 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007003ex_at(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004{
7005 int c;
Bram Moolenaar60462872009-11-03 11:40:19 +00007006 int prev_len = typebuf.tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007
7008 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaar4930a762016-09-11 14:39:53 +02007009 check_cursor_col();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007010
7011#ifdef USE_ON_FLY_SCROLL
7012 dont_scroll = TRUE; /* disallow scrolling here */
7013#endif
7014
7015 /* get the register name. No name means to use the previous one */
7016 c = *eap->arg;
7017 if (c == NUL || (c == '*' && *eap->cmd == '*'))
7018 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00007019 /* Put the register in the typeahead buffer with the "silent" flag. */
7020 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
7021 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007022 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00007024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025 else
7026 {
7027 int save_efr = exec_from_reg;
7028
7029 exec_from_reg = TRUE;
7030
7031 /*
7032 * Execute from the typeahead buffer.
Bram Moolenaar60462872009-11-03 11:40:19 +00007033 * Continue until the stuff buffer is empty and all added characters
7034 * have been consumed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035 */
Bram Moolenaar60462872009-11-03 11:40:19 +00007036 while (!stuff_empty() || typebuf.tb_len > prev_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
7038
7039 exec_from_reg = save_efr;
7040 }
7041}
7042
7043/*
7044 * ":!".
7045 */
7046 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007047ex_bang(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048{
7049 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
7050}
7051
7052/*
7053 * ":undo".
7054 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007055 static void
Bram Moolenaarf1d25012016-03-03 12:22:53 +01007056ex_undo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057{
Bram Moolenaard3667a22006-03-16 21:35:52 +00007058 if (eap->addr_count == 1) /* :undo 123 */
Bram Moolenaar730cde92010-06-27 05:18:54 +02007059 undo_time(eap->line2, FALSE, FALSE, TRUE);
Bram Moolenaard3667a22006-03-16 21:35:52 +00007060 else
7061 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062}
7063
Bram Moolenaar55debbe2010-05-23 23:34:36 +02007064#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar6df6f472010-07-18 18:04:50 +02007065 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007066ex_wundo(exarg_T *eap)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02007067{
7068 char_u hash[UNDO_HASH_SIZE];
7069
7070 u_compute_hash(hash);
7071 u_write_undo(eap->arg, eap->forceit, curbuf, hash);
7072}
7073
Bram Moolenaar6df6f472010-07-18 18:04:50 +02007074 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007075ex_rundo(exarg_T *eap)
Bram Moolenaar55debbe2010-05-23 23:34:36 +02007076{
7077 char_u hash[UNDO_HASH_SIZE];
7078
7079 u_compute_hash(hash);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02007080 u_read_undo(eap->arg, hash, NULL);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02007081}
7082#endif
7083
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084/*
7085 * ":redo".
7086 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007088ex_redo(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089{
7090 u_redo(1);
7091}
7092
7093/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007094 * ":earlier" and ":later".
7095 */
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007096 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007097ex_later(exarg_T *eap)
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007098{
7099 long count = 0;
7100 int sec = FALSE;
Bram Moolenaar730cde92010-06-27 05:18:54 +02007101 int file = FALSE;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007102 char_u *p = eap->arg;
7103
7104 if (*p == NUL)
7105 count = 1;
7106 else if (isdigit(*p))
7107 {
7108 count = getdigits(&p);
7109 switch (*p)
7110 {
7111 case 's': ++p; sec = TRUE; break;
7112 case 'm': ++p; sec = TRUE; count *= 60; break;
7113 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
Bram Moolenaar730cde92010-06-27 05:18:54 +02007114 case 'd': ++p; sec = TRUE; count *= 24 * 60 * 60; break;
7115 case 'f': ++p; file = TRUE; break;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007116 }
7117 }
7118
7119 if (*p != NUL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007120 semsg(_(e_invarg2), eap->arg);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007121 else
Bram Moolenaar730cde92010-06-27 05:18:54 +02007122 undo_time(eap->cmdidx == CMD_earlier ? -count : count,
7123 sec, file, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00007124}
7125
7126/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127 * ":redir": start/stop redirection.
7128 */
7129 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007130ex_redir(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131{
7132 char *mode;
7133 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00007134 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135
Bram Moolenaarba768492016-07-08 15:32:54 +02007136#ifdef FEAT_EVAL
Bram Moolenaar79815f12016-07-09 17:07:29 +02007137 if (redir_execute)
Bram Moolenaar245a7cb2016-07-08 10:53:12 +02007138 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007139 emsg(_("E930: Cannot use :redir inside execute()"));
Bram Moolenaar245a7cb2016-07-08 10:53:12 +02007140 return;
7141 }
Bram Moolenaarba768492016-07-08 15:32:54 +02007142#endif
Bram Moolenaar245a7cb2016-07-08 10:53:12 +02007143
Bram Moolenaar071d4272004-06-13 20:20:40 +00007144 if (STRICMP(eap->arg, "END") == 0)
7145 close_redir();
7146 else
7147 {
Bram Moolenaarca472992005-01-21 11:46:23 +00007148 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149 {
Bram Moolenaarca472992005-01-21 11:46:23 +00007150 ++arg;
7151 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152 {
Bram Moolenaarca472992005-01-21 11:46:23 +00007153 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 mode = "a";
7155 }
7156 else
7157 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00007158 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159
7160 close_redir();
7161
7162 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00007163 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164 if (fname == NULL)
7165 return;
7166#ifdef FEAT_BROWSE
7167 if (cmdmod.browse)
7168 {
7169 char_u *browseFile;
7170
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007171 browseFile = do_browse(BROWSE_SAVE,
7172 (char_u *)_("Save Redirection"),
Bram Moolenaarc36651b2018-04-29 12:22:56 +02007173 fname, NULL, NULL,
7174 (char_u *)_(BROWSE_FILTER_ALL_FILES), curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 if (browseFile == NULL)
7176 return; /* operation cancelled */
7177 vim_free(fname);
7178 fname = browseFile;
7179 eap->forceit = TRUE; /* since dialog already asked */
7180 }
7181#endif
7182
7183 redir_fd = open_exfile(fname, eap->forceit, mode);
7184 vim_free(fname);
7185 }
7186#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00007187 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007188 {
7189 /* redirect to a register a-z (resp. A-Z for appending) */
7190 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00007191 ++arg;
7192 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007193# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00007194 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00007195 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00007196# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00007197 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00007198 {
Bram Moolenaarca472992005-01-21 11:46:23 +00007199 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00007200 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00007201 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00007202 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00007204 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00007205 if (*arg == '>')
7206 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00007207 /* Make register empty when not using @A-@Z and the
7208 * command is valid. */
7209 if (*arg == NUL && !isupper(redir_reg))
7210 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00007212 }
7213 if (*arg != NUL)
7214 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007215 redir_reg = 0;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007216 semsg(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007217 }
7218 }
7219 else if (*arg == '=' && arg[1] == '>')
7220 {
7221 int append;
7222
7223 /* redirect to a variable */
7224 close_redir();
7225 arg += 2;
7226
7227 if (*arg == '>')
7228 {
7229 ++arg;
7230 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007231 }
7232 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007233 append = FALSE;
7234
7235 if (var_redir_start(skipwhite(arg), append) == OK)
7236 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237 }
7238#endif
7239
7240 /* TODO: redirect to a buffer */
7241
Bram Moolenaar071d4272004-06-13 20:20:40 +00007242 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007243 semsg(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00007245
7246 /* Make sure redirection is not off. Can happen for cmdline completion
7247 * that indirectly invokes a command to catch its output. */
7248 if (redir_fd != NULL
7249#ifdef FEAT_EVAL
7250 || redir_reg || redir_vname
7251#endif
7252 )
7253 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007254}
7255
7256/*
7257 * ":redraw": force redraw
7258 */
Bram Moolenaarfb1f6262016-01-31 20:24:32 +01007259 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007260ex_redraw(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261{
7262 int r = RedrawingDisabled;
7263 int p = p_lz;
7264
7265 RedrawingDisabled = 0;
7266 p_lz = FALSE;
Bram Moolenaarabc39ab2017-03-01 18:04:05 +01007267 validate_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007268 update_topline();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007269 update_screen(eap->forceit ? CLEAR : VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007270#ifdef FEAT_TITLE
7271 if (need_maketitle)
7272 maketitle();
7273#endif
Bram Moolenaarafde13b2019-04-28 19:46:49 +02007274#if defined(MSWIN) && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL))
7275# ifdef VIMDLL
7276 if (!gui.in_use)
7277# endif
7278 resize_console_buf();
Bram Moolenaar78d21da2019-02-17 15:00:52 +01007279#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007280 RedrawingDisabled = r;
7281 p_lz = p;
7282
7283 /* Reset msg_didout, so that a message that's there is overwritten. */
7284 msg_didout = FALSE;
7285 msg_col = 0;
7286
Bram Moolenaar56667a52013-07-17 11:54:28 +02007287 /* No need to wait after an intentional redraw. */
7288 need_wait_return = FALSE;
7289
Bram Moolenaar071d4272004-06-13 20:20:40 +00007290 out_flush();
7291}
7292
7293/*
7294 * ":redrawstatus": force redraw of status line(s)
7295 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007296 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007297ex_redrawstatus(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007298{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007299 int r = RedrawingDisabled;
7300 int p = p_lz;
7301
7302 RedrawingDisabled = 0;
7303 p_lz = FALSE;
7304 if (eap->forceit)
7305 status_redraw_all();
7306 else
7307 status_redraw_curbuf();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01007308 update_screen(VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007309 RedrawingDisabled = r;
7310 p_lz = p;
7311 out_flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007312}
7313
Bram Moolenaare12bab32019-01-08 22:02:56 +01007314/*
7315 * ":redrawtabline": force redraw of the tabline
7316 */
7317 static void
7318ex_redrawtabline(exarg_T *eap UNUSED)
7319{
7320 int r = RedrawingDisabled;
7321 int p = p_lz;
7322
7323 RedrawingDisabled = 0;
7324 p_lz = FALSE;
7325
7326 draw_tabline();
7327
7328 RedrawingDisabled = r;
7329 p_lz = p;
7330 out_flush();
7331}
7332
Bram Moolenaar071d4272004-06-13 20:20:40 +00007333 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007334close_redir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007335{
7336 if (redir_fd != NULL)
7337 {
7338 fclose(redir_fd);
7339 redir_fd = NULL;
7340 }
7341#ifdef FEAT_EVAL
7342 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007343 if (redir_vname)
7344 {
7345 var_redir_stop();
7346 redir_vname = 0;
7347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348#endif
7349}
7350
Bram Moolenaarf96ae0b2019-07-28 15:21:55 +02007351#if (defined(FEAT_SESSION) || defined(FEAT_EVAL)) || defined(PROTO)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007352 int
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02007353vim_mkdir_emsg(char_u *name, int prot UNUSED)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007354{
7355 if (vim_mkdir(name, prot) != 0)
7356 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007357 semsg(_("E739: Cannot create directory: %s"), name);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007358 return FAIL;
7359 }
7360 return OK;
7361}
7362#endif
7363
Bram Moolenaar071d4272004-06-13 20:20:40 +00007364/*
7365 * Open a file for writing for an Ex command, with some checks.
7366 * Return file descriptor, or NULL on failure.
7367 */
7368 FILE *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007369open_exfile(
7370 char_u *fname,
7371 int forceit,
7372 char *mode) /* "w" for create new file or "a" for append */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007373{
7374 FILE *fd;
7375
7376#ifdef UNIX
7377 /* with Unix it is possible to open a directory */
7378 if (mch_isdir(fname))
7379 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007380 semsg(_(e_isadir2), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007381 return NULL;
7382 }
7383#endif
7384 if (!forceit && *mode != 'a' && vim_fexists(fname))
7385 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007386 semsg(_("E189: \"%s\" exists (add ! to override)"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007387 return NULL;
7388 }
7389
7390 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007391 semsg(_("E190: Cannot open \"%s\" for writing"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007392
7393 return fd;
7394}
7395
7396/*
7397 * ":mark" and ":k".
7398 */
7399 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007400ex_mark(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007401{
7402 pos_T pos;
7403
7404 if (*eap->arg == NUL) /* No argument? */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007405 emsg(_(e_argreq));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406 else if (eap->arg[1] != NUL) /* more than one character? */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007407 emsg(_(e_trailing));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007408 else
7409 {
7410 pos = curwin->w_cursor; /* save curwin->w_cursor */
7411 curwin->w_cursor.lnum = eap->line2;
7412 beginline(BL_WHITE | BL_FIX);
7413 if (setmark(*eap->arg) == FAIL) /* set mark */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007414 emsg(_("E191: Argument must be a letter or forward/backward quote"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007415 curwin->w_cursor = pos; /* restore curwin->w_cursor */
7416 }
7417}
7418
7419/*
7420 * Update w_topline, w_leftcol and the cursor position.
7421 */
7422 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007423update_topline_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007424{
7425 check_cursor(); /* put cursor on valid line */
7426 update_topline();
7427 if (!curwin->w_p_wrap)
7428 validate_cursor();
7429 update_curswant();
7430}
7431
Bram Moolenaar071d4272004-06-13 20:20:40 +00007432/*
Bram Moolenaara21a6a92017-09-23 16:33:50 +02007433 * Save the current State and go to Normal mode.
7434 * Return TRUE if the typeahead could be saved.
7435 */
7436 int
7437save_current_state(save_state_T *sst)
7438{
7439 sst->save_msg_scroll = msg_scroll;
7440 sst->save_restart_edit = restart_edit;
7441 sst->save_msg_didout = msg_didout;
7442 sst->save_State = State;
7443 sst->save_insertmode = p_im;
7444 sst->save_finish_op = finish_op;
7445 sst->save_opcount = opcount;
Bram Moolenaarcce713d2019-03-04 11:40:12 +01007446 sst->save_reg_executing = reg_executing;
Bram Moolenaara21a6a92017-09-23 16:33:50 +02007447
7448 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
7449 restart_edit = 0; /* don't go to Insert mode */
7450 p_im = FALSE; /* don't use 'insertmode' */
7451
7452 /*
7453 * Save the current typeahead. This is required to allow using ":normal"
7454 * from an event handler and makes sure we don't hang when the argument
7455 * ends with half a command.
7456 */
7457 save_typeahead(&sst->tabuf);
7458 return sst->tabuf.typebuf_valid;
7459}
7460
7461 void
7462restore_current_state(save_state_T *sst)
7463{
7464 /* Restore the previous typeahead. */
7465 restore_typeahead(&sst->tabuf);
7466
7467 msg_scroll = sst->save_msg_scroll;
7468 restart_edit = sst->save_restart_edit;
7469 p_im = sst->save_insertmode;
7470 finish_op = sst->save_finish_op;
7471 opcount = sst->save_opcount;
Bram Moolenaarcce713d2019-03-04 11:40:12 +01007472 reg_executing = sst->save_reg_executing;
Bram Moolenaara21a6a92017-09-23 16:33:50 +02007473 msg_didout |= sst->save_msg_didout; /* don't reset msg_didout now */
7474
7475 /* Restore the state (needed when called from a function executed for
7476 * 'indentexpr'). Update the mouse and cursor, they may have changed. */
7477 State = sst->save_State;
7478#ifdef CURSOR_SHAPE
7479 ui_cursor_shape(); /* may show different cursor shape */
7480#endif
7481}
7482
7483/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007484 * ":normal[!] {commands}": Execute normal mode commands.
7485 */
Bram Moolenaar20fb9f32016-01-30 23:20:33 +01007486 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007487ex_normal(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007488{
Bram Moolenaara21a6a92017-09-23 16:33:50 +02007489 save_state_T save_state;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 char_u *arg = NULL;
7491 int l;
7492 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007493
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00007494 if (ex_normal_lock > 0)
7495 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007496 emsg(_(e_secure));
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00007497 return;
7498 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499 if (ex_normal_busy >= p_mmd)
7500 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007501 emsg(_("E192: Recursive use of :normal too deep"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007502 return;
7503 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007504
Bram Moolenaar071d4272004-06-13 20:20:40 +00007505 /*
7506 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
7507 * this for the K_SPECIAL leading byte, otherwise special keys will not
7508 * work.
7509 */
7510 if (has_mbyte)
7511 {
7512 int len = 0;
7513
7514 /* Count the number of characters to be escaped. */
7515 for (p = eap->arg; *p != NUL; ++p)
7516 {
Bram Moolenaar13505972019-01-24 15:04:48 +01007517#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007518 if (*p == CSI) /* leadbyte CSI */
7519 len += 2;
Bram Moolenaar13505972019-01-24 15:04:48 +01007520#endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007521 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007522 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
Bram Moolenaar13505972019-01-24 15:04:48 +01007523#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007524 || *p == CSI
Bram Moolenaar13505972019-01-24 15:04:48 +01007525#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007526 )
7527 len += 2;
7528 }
7529 if (len > 0)
7530 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02007531 arg = alloc(STRLEN(eap->arg) + len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007532 if (arg != NULL)
7533 {
7534 len = 0;
7535 for (p = eap->arg; *p != NUL; ++p)
7536 {
7537 arg[len++] = *p;
Bram Moolenaar13505972019-01-24 15:04:48 +01007538#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007539 if (*p == CSI)
7540 {
7541 arg[len++] = KS_EXTRA;
7542 arg[len++] = (int)KE_CSI;
7543 }
Bram Moolenaar13505972019-01-24 15:04:48 +01007544#endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007545 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007546 {
7547 arg[len++] = *++p;
7548 if (*p == K_SPECIAL)
7549 {
7550 arg[len++] = KS_SPECIAL;
7551 arg[len++] = KE_FILLER;
7552 }
Bram Moolenaar13505972019-01-24 15:04:48 +01007553#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007554 else if (*p == CSI)
7555 {
7556 arg[len++] = KS_EXTRA;
7557 arg[len++] = (int)KE_CSI;
7558 }
Bram Moolenaar13505972019-01-24 15:04:48 +01007559#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 }
7561 arg[len] = NUL;
7562 }
7563 }
7564 }
7565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007566
Bram Moolenaara21a6a92017-09-23 16:33:50 +02007567 ++ex_normal_busy;
7568 if (save_current_state(&save_state))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007569 {
7570 /*
7571 * Repeat the :normal command for each line in the range. When no
7572 * range given, execute it just once, without positioning the cursor
7573 * first.
7574 */
7575 do
7576 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007577 if (eap->addr_count != 0)
7578 {
7579 curwin->w_cursor.lnum = eap->line1++;
7580 curwin->w_cursor.col = 0;
Bram Moolenaard5d37532017-03-27 23:02:07 +02007581 check_cursor_moved(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007582 }
7583
Bram Moolenaar13505972019-01-24 15:04:48 +01007584 exec_normal_cmd(arg != NULL
7585 ? arg
7586 : eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007587 }
7588 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
7589 }
7590
7591 /* Might not return to the main loop when in an event handler. */
7592 update_topline_cursor();
7593
Bram Moolenaara21a6a92017-09-23 16:33:50 +02007594 restore_current_state(&save_state);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007595 --ex_normal_busy;
Bram Moolenaareda73602014-11-05 09:53:23 +01007596 setmouse();
Bram Moolenaareda73602014-11-05 09:53:23 +01007597#ifdef CURSOR_SHAPE
7598 ui_cursor_shape(); /* may show different cursor shape */
7599#endif
7600
Bram Moolenaar071d4272004-06-13 20:20:40 +00007601 vim_free(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007602}
7603
7604/*
Bram Moolenaar64969662005-12-14 21:59:55 +00007605 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007606 */
7607 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007608ex_startinsert(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007609{
Bram Moolenaarfd371682005-01-14 21:42:54 +00007610 if (eap->forceit)
7611 {
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007612 // cursor line can be zero on startup
Bram Moolenaar09ca9322017-09-26 17:40:45 +02007613 if (!curwin->w_cursor.lnum)
7614 curwin->w_cursor.lnum = 1;
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007615 set_cursor_for_append_to_line();
Bram Moolenaarfd371682005-01-14 21:42:54 +00007616 }
7617
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007618 // Ignore the command when already in Insert mode. Inserting an
7619 // expression register that invokes a function can do this.
Bram Moolenaara40c5002005-01-09 21:16:21 +00007620 if (State & INSERT)
7621 return;
7622
Bram Moolenaar64969662005-12-14 21:59:55 +00007623 if (eap->cmdidx == CMD_startinsert)
7624 restart_edit = 'a';
7625 else if (eap->cmdidx == CMD_startreplace)
7626 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00007627 else
Bram Moolenaar64969662005-12-14 21:59:55 +00007628 restart_edit = 'V';
7629
7630 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007631 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00007632 if (eap->cmdidx == CMD_startinsert)
7633 restart_edit = 'i';
Bram Moolenaar8d3b5102019-09-05 21:29:01 +02007634 curwin->w_curswant = 0; // avoid MAXCOL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007635 }
7636}
7637
7638/*
7639 * ":stopinsert"
7640 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007642ex_stopinsert(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007643{
7644 restart_edit = 0;
7645 stop_insert_mode = TRUE;
Bram Moolenaarfd773e92016-04-02 19:39:16 +02007646 clearmode();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007647}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007648
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00007649/*
7650 * Execute normal mode command "cmd".
7651 * "remap" can be REMAP_NONE or REMAP_YES.
7652 */
7653 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007654exec_normal_cmd(char_u *cmd, int remap, int silent)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00007655{
Bram Moolenaar25281632016-01-21 23:32:32 +01007656 /* Stuff the argument into the typeahead buffer. */
7657 ins_typebuf(cmd, remap, 0, TRUE, silent);
Bram Moolenaar586c70c2018-10-02 16:23:58 +02007658 exec_normal(FALSE, FALSE, FALSE);
Bram Moolenaar25281632016-01-21 23:32:32 +01007659}
Bram Moolenaar25281632016-01-21 23:32:32 +01007660
Bram Moolenaar25281632016-01-21 23:32:32 +01007661/*
7662 * Execute normal_cmd() until there is no typeahead left.
Bram Moolenaar586c70c2018-10-02 16:23:58 +02007663 * When "use_vpeekc" is TRUE use vpeekc() to check for available chars.
Bram Moolenaar25281632016-01-21 23:32:32 +01007664 */
7665 void
Bram Moolenaar586c70c2018-10-02 16:23:58 +02007666exec_normal(int was_typed, int use_vpeekc, int may_use_terminal_loop UNUSED)
Bram Moolenaar25281632016-01-21 23:32:32 +01007667{
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00007668 oparg_T oa;
Bram Moolenaar905dd902019-04-07 14:21:47 +02007669 int c;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00007670
Bram Moolenaar905dd902019-04-07 14:21:47 +02007671 // When calling vpeekc() from feedkeys() it will return Ctrl_C when there
7672 // is nothing to get, so also check for Ctrl_C.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00007673 clear_oparg(&oa);
7674 finish_op = FALSE;
Bram Moolenaar586c70c2018-10-02 16:23:58 +02007675 while ((!stuff_empty()
7676 || ((was_typed || !typebuf_typed()) && typebuf.tb_len > 0)
Bram Moolenaar905dd902019-04-07 14:21:47 +02007677 || (use_vpeekc && (c = vpeekc()) != NUL && c != Ctrl_C))
Bram Moolenaar586c70c2018-10-02 16:23:58 +02007678 && !got_int)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00007679 {
7680 update_topline_cursor();
Bram Moolenaarb2ac14c2018-05-01 18:47:59 +02007681#ifdef FEAT_TERMINAL
Bram Moolenaar655a82a2018-05-08 22:01:07 +02007682 if (may_use_terminal_loop && term_use_loop()
Bram Moolenaarb2ac14c2018-05-01 18:47:59 +02007683 && oa.op_type == OP_NOP && oa.regname == NUL
7684 && !VIsual_active)
7685 {
7686 /* If terminal_loop() returns OK we got a key that is handled
7687 * in Normal model. With FAIL we first need to position the
7688 * cursor and the screen needs to be redrawn. */
7689 if (terminal_loop(TRUE) == OK)
7690 normal_cmd(&oa, TRUE);
7691 }
7692 else
7693#endif
7694 /* execute a Normal mode cmd */
7695 normal_cmd(&oa, TRUE);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00007696 }
7697}
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00007698
Bram Moolenaar071d4272004-06-13 20:20:40 +00007699#ifdef FEAT_FIND_ID
7700 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007701ex_checkpath(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007702{
7703 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
7704 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
7705 (linenr_T)1, (linenr_T)MAXLNUM);
7706}
7707
Bram Moolenaar4033c552017-09-16 20:54:51 +02007708#if defined(FEAT_QUICKFIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007709/*
7710 * ":psearch"
7711 */
7712 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007713ex_psearch(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007714{
7715 g_do_tagpreview = p_pvh;
7716 ex_findpat(eap);
7717 g_do_tagpreview = 0;
7718}
7719#endif
7720
7721 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007722ex_findpat(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007723{
7724 int whole = TRUE;
7725 long n;
7726 char_u *p;
7727 int action;
7728
7729 switch (cmdnames[eap->cmdidx].cmd_name[2])
7730 {
7731 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
7732 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
7733 action = ACTION_GOTO;
7734 else
7735 action = ACTION_SHOW;
7736 break;
7737 case 'i': /* ":ilist" and ":dlist" */
7738 action = ACTION_SHOW_ALL;
7739 break;
7740 case 'u': /* ":ijump" and ":djump" */
7741 action = ACTION_GOTO;
7742 break;
7743 default: /* ":isplit" and ":dsplit" */
7744 action = ACTION_SPLIT;
7745 break;
7746 }
7747
7748 n = 1;
7749 if (vim_isdigit(*eap->arg)) /* get count */
7750 {
7751 n = getdigits(&eap->arg);
7752 eap->arg = skipwhite(eap->arg);
7753 }
7754 if (*eap->arg == '/') /* Match regexp, not just whole words */
7755 {
7756 whole = FALSE;
7757 ++eap->arg;
7758 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7759 if (*p)
7760 {
7761 *p++ = NUL;
7762 p = skipwhite(p);
7763
7764 /* Check for trailing illegal characters */
7765 if (!ends_excmd(*p))
7766 eap->errmsg = e_trailing;
7767 else
7768 eap->nextcmd = check_nextcmd(p);
7769 }
7770 }
7771 if (!eap->skip)
7772 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
7773 whole, !eap->forceit,
7774 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
7775 n, action, eap->line1, eap->line2);
7776}
7777#endif
7778
Bram Moolenaar071d4272004-06-13 20:20:40 +00007779
Bram Moolenaar4033c552017-09-16 20:54:51 +02007780#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007781/*
7782 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
7783 */
7784 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007785ex_ptag(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007786{
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01007787 g_do_tagpreview = p_pvh; /* will be reset to 0 in ex_tag_cmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007788 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
7789}
7790
7791/*
7792 * ":pedit"
7793 */
7794 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007795ex_pedit(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007796{
7797 win_T *curwin_save = curwin;
7798
Bram Moolenaar026587b2019-08-17 15:08:00 +02007799 // Open the preview window or popup and make it the current window.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007800 g_do_tagpreview = p_pvh;
Bram Moolenaar576a4a62019-08-18 15:25:17 +02007801 prepare_tagpreview(TRUE, TRUE, FALSE);
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02007802
Bram Moolenaar026587b2019-08-17 15:08:00 +02007803 // Edit the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007804 do_exedit(eap, NULL);
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02007805
Bram Moolenaar071d4272004-06-13 20:20:40 +00007806 if (curwin != curwin_save && win_valid(curwin_save))
7807 {
Bram Moolenaar026587b2019-08-17 15:08:00 +02007808 // Return cursor to where we were
Bram Moolenaar071d4272004-06-13 20:20:40 +00007809 validate_cursor();
7810 redraw_later(VALID);
7811 win_enter(curwin_save, TRUE);
7812 }
Bram Moolenaar1b6d9c42019-08-05 21:52:04 +02007813# ifdef FEAT_TEXT_PROP
7814 else if (WIN_IS_POPUP(curwin))
7815 {
7816 // can't keep focus in popup window
7817 win_enter(firstwin, TRUE);
7818 }
7819# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820 g_do_tagpreview = 0;
7821}
Bram Moolenaar4033c552017-09-16 20:54:51 +02007822#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007823
7824/*
7825 * ":stag", ":stselect" and ":stjump".
7826 */
7827 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007828ex_stag(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007829{
7830 postponed_split = -1;
7831 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00007832 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007833 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
7834 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00007835 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007836}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007837
7838/*
7839 * ":tag", ":tselect", ":tjump", ":tnext", etc.
7840 */
7841 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007842ex_tag(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007843{
7844 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
7845}
7846
7847 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007848ex_tag_cmd(exarg_T *eap, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007849{
7850 int cmd;
7851
7852 switch (name[1])
7853 {
7854 case 'j': cmd = DT_JUMP; /* ":tjump" */
7855 break;
7856 case 's': cmd = DT_SELECT; /* ":tselect" */
7857 break;
7858 case 'p': cmd = DT_PREV; /* ":tprevious" */
7859 break;
7860 case 'N': cmd = DT_PREV; /* ":tNext" */
7861 break;
7862 case 'n': cmd = DT_NEXT; /* ":tnext" */
7863 break;
7864 case 'o': cmd = DT_POP; /* ":pop" */
7865 break;
7866 case 'f': /* ":tfirst" */
7867 case 'r': cmd = DT_FIRST; /* ":trewind" */
7868 break;
7869 case 'l': cmd = DT_LAST; /* ":tlast" */
7870 break;
7871 default: /* ":tag" */
7872#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +00007873 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007874 {
Bram Moolenaard4db7712016-11-12 19:16:46 +01007875 ex_cstag(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007876 return;
7877 }
7878#endif
7879 cmd = DT_TAG;
7880 break;
7881 }
7882
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00007883 if (name[0] == 'l')
7884 {
7885#ifndef FEAT_QUICKFIX
7886 ex_ni(eap);
7887 return;
7888#else
7889 cmd = DT_LTAG;
7890#endif
7891 }
7892
Bram Moolenaar071d4272004-06-13 20:20:40 +00007893 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
7894 eap->forceit, TRUE);
7895}
7896
7897/*
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007898 * Check "str" for starting with a special cmdline variable.
7899 * If found return one of the SPEC_ values and set "*usedlen" to the length of
7900 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
7901 */
7902 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007903find_cmdline_var(char_u *src, int *usedlen)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007904{
7905 int len;
7906 int i;
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +00007907 static char *(spec_str[]) = {
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007908 "%",
7909#define SPEC_PERC 0
7910 "#",
Bram Moolenaar65f08472017-09-10 18:16:20 +02007911#define SPEC_HASH (SPEC_PERC + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007912 "<cword>", /* cursor word */
Bram Moolenaar65f08472017-09-10 18:16:20 +02007913#define SPEC_CWORD (SPEC_HASH + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007914 "<cWORD>", /* cursor WORD */
Bram Moolenaar65f08472017-09-10 18:16:20 +02007915#define SPEC_CCWORD (SPEC_CWORD + 1)
7916 "<cexpr>", /* expr under cursor */
7917#define SPEC_CEXPR (SPEC_CCWORD + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007918 "<cfile>", /* cursor path name */
Bram Moolenaar65f08472017-09-10 18:16:20 +02007919#define SPEC_CFILE (SPEC_CEXPR + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007920 "<sfile>", /* ":so" file name */
Bram Moolenaar65f08472017-09-10 18:16:20 +02007921#define SPEC_SFILE (SPEC_CFILE + 1)
Bram Moolenaar4dbbff52010-11-24 15:50:59 +01007922 "<slnum>", /* ":so" file line number */
Bram Moolenaar65f08472017-09-10 18:16:20 +02007923#define SPEC_SLNUM (SPEC_SFILE + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007924 "<afile>", /* autocommand file name */
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02007925#define SPEC_AFILE (SPEC_SLNUM + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007926 "<abuf>", /* autocommand buffer number */
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02007927#define SPEC_ABUF (SPEC_AFILE + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007928 "<amatch>", /* autocommand match name */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007929#define SPEC_AMATCH (SPEC_ABUF + 1)
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02007930 "<sflnum>", /* script file line number */
7931#define SPEC_SFLNUM (SPEC_AMATCH + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007932#ifdef FEAT_CLIENTSERVER
7933 "<client>"
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02007934# define SPEC_CLIENT (SPEC_SFLNUM + 1)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007935#endif
7936 };
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007937
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00007938 for (i = 0; i < (int)(sizeof(spec_str) / sizeof(char *)); ++i)
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007939 {
7940 len = (int)STRLEN(spec_str[i]);
7941 if (STRNCMP(src, spec_str[i], len) == 0)
7942 {
7943 *usedlen = len;
7944 return i;
7945 }
7946 }
7947 return -1;
7948}
7949
7950/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007951 * Evaluate cmdline variables.
7952 *
7953 * change '%' to curbuf->b_ffname
7954 * '#' to curwin->w_altfile
7955 * '<cword>' to word under the cursor
7956 * '<cWORD>' to WORD under the cursor
Bram Moolenaar8071cb22019-07-12 17:58:01 +02007957 * '<cexpr>' to C-expression under the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00007958 * '<cfile>' to path name under the cursor
7959 * '<sfile>' to sourced file name
Bram Moolenaar4dbbff52010-11-24 15:50:59 +01007960 * '<slnum>' to sourced file line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00007961 * '<afile>' to file name for autocommand
7962 * '<abuf>' to buffer number for autocommand
7963 * '<amatch>' to matching name for autocommand
7964 *
7965 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
7966 * "" for error without a message) and NULL is returned.
7967 * Returns an allocated string if a valid match was found.
7968 * Returns NULL if no match was found. "usedlen" then still contains the
7969 * number of characters to skip.
7970 */
7971 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007972eval_vars(
7973 char_u *src, /* pointer into commandline */
7974 char_u *srcstart, /* beginning of valid memory for src */
7975 int *usedlen, /* characters after src that are used */
7976 linenr_T *lnump, /* line number for :e command, or NULL */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007977 char **errormsg, /* pointer to error message */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007978 int *escaped) /* return value has escaped white space (can
Bram Moolenaar63b92542007-03-27 14:57:09 +00007979 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007980{
7981 int i;
7982 char_u *s;
7983 char_u *result;
7984 char_u *resultbuf = NULL;
7985 int resultlen;
7986 buf_T *buf;
7987 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
7988 int spec_idx;
Bram Moolenaarfd249462018-07-28 16:14:30 +02007989 int tilde_file = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007990 int skip_mod = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007991 char_u strbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007992
7993 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00007994 if (escaped != NULL)
7995 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007996
7997 /*
7998 * Check if there is something to do.
7999 */
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008000 spec_idx = find_cmdline_var(src, usedlen);
8001 if (spec_idx < 0) /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008002 {
8003 *usedlen = 1;
8004 return NULL;
8005 }
8006
8007 /*
8008 * Skip when preceded with a backslash "\%" and "\#".
8009 * Note: In "\\%" the % is also not recognized!
8010 */
8011 if (src > srcstart && src[-1] == '\\')
8012 {
8013 *usedlen = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +00008014 STRMOVE(src - 1, src); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008015 return NULL;
8016 }
8017
8018 /*
8019 * word or WORD under cursor
8020 */
Bram Moolenaar65f08472017-09-10 18:16:20 +02008021 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD
8022 || spec_idx == SPEC_CEXPR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008023 {
Bram Moolenaar65f08472017-09-10 18:16:20 +02008024 resultlen = find_ident_under_cursor(&result,
8025 spec_idx == SPEC_CWORD ? (FIND_IDENT | FIND_STRING)
8026 : spec_idx == SPEC_CEXPR ? (FIND_IDENT | FIND_STRING | FIND_EVAL)
8027 : FIND_STRING);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008028 if (resultlen == 0)
8029 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008030 *errormsg = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00008031 return NULL;
8032 }
8033 }
8034
8035 /*
8036 * '#': Alternate file name
8037 * '%': Current file name
8038 * File name under the cursor
8039 * File name for autocommand
8040 * and following modifiers
8041 */
8042 else
8043 {
8044 switch (spec_idx)
8045 {
8046 case SPEC_PERC: /* '%': current file */
8047 if (curbuf->b_fname == NULL)
8048 {
8049 result = (char_u *)"";
8050 valid = 0; /* Must have ":p:h" to be valid */
8051 }
8052 else
Bram Moolenaar00136dc2018-07-25 21:19:13 +02008053 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054 result = curbuf->b_fname;
Bram Moolenaar00136dc2018-07-25 21:19:13 +02008055 tilde_file = STRCMP(result, "~") == 0;
8056 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008057 break;
8058
8059 case SPEC_HASH: /* '#' or "#99": alternate file */
8060 if (src[1] == '#') /* "##": the argument list */
8061 {
8062 result = arg_all();
8063 resultbuf = result;
8064 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00008065 if (escaped != NULL)
8066 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008067 skip_mod = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008068 break;
8069 }
8070 s = src + 1;
Bram Moolenaard812df62008-11-09 12:46:09 +00008071 if (*s == '<') /* "#<99" uses v:oldfiles */
8072 ++s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008073 i = (int)getdigits(&s);
Bram Moolenaarc312b8b2017-10-28 17:53:04 +02008074 if (s == src + 2 && src[1] == '-')
8075 /* just a minus sign, don't skip over it */
8076 s--;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008077 *usedlen = (int)(s - src); /* length of what we expand */
8078
Bram Moolenaarc312b8b2017-10-28 17:53:04 +02008079 if (src[1] == '<' && i != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008080 {
Bram Moolenaard812df62008-11-09 12:46:09 +00008081 if (*usedlen < 2)
8082 {
8083 /* Should we give an error message for #<text? */
8084 *usedlen = 1;
8085 return NULL;
8086 }
8087#ifdef FEAT_EVAL
8088 result = list_find_str(get_vim_var_list(VV_OLDFILES),
8089 (long)i);
8090 if (result == NULL)
8091 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008092 *errormsg = "";
Bram Moolenaard812df62008-11-09 12:46:09 +00008093 return NULL;
8094 }
8095#else
Bram Moolenaar8e481e82019-01-15 20:07:48 +01008096 *errormsg = _("E809: #< is not available without the +eval feature");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008097 return NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +00008098#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008099 }
8100 else
Bram Moolenaard812df62008-11-09 12:46:09 +00008101 {
Bram Moolenaarc312b8b2017-10-28 17:53:04 +02008102 if (i == 0 && src[1] == '<' && *usedlen > 1)
8103 *usedlen = 1;
Bram Moolenaard812df62008-11-09 12:46:09 +00008104 buf = buflist_findnr(i);
8105 if (buf == NULL)
8106 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008107 *errormsg = _("E194: No alternate file name to substitute for '#'");
Bram Moolenaard812df62008-11-09 12:46:09 +00008108 return NULL;
8109 }
8110 if (lnump != NULL)
8111 *lnump = ECMD_LAST;
8112 if (buf->b_fname == NULL)
8113 {
8114 result = (char_u *)"";
8115 valid = 0; /* Must have ":p:h" to be valid */
8116 }
8117 else
Bram Moolenaar00136dc2018-07-25 21:19:13 +02008118 {
Bram Moolenaard812df62008-11-09 12:46:09 +00008119 result = buf->b_fname;
Bram Moolenaar00136dc2018-07-25 21:19:13 +02008120 tilde_file = STRCMP(result, "~") == 0;
8121 }
Bram Moolenaard812df62008-11-09 12:46:09 +00008122 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008123 break;
8124
8125#ifdef FEAT_SEARCHPATH
8126 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00008127 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008128 if (result == NULL)
8129 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008130 *errormsg = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00008131 return NULL;
8132 }
8133 resultbuf = result; /* remember allocated string */
8134 break;
8135#endif
8136
Bram Moolenaar071d4272004-06-13 20:20:40 +00008137 case SPEC_AFILE: /* file name for autocommand */
8138 result = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008139 if (result != NULL && !autocmd_fname_full)
8140 {
8141 /* Still need to turn the fname into a full path. It is
8142 * postponed to avoid a delay when <afile> is not used. */
8143 autocmd_fname_full = TRUE;
8144 result = FullName_save(autocmd_fname, FALSE);
8145 vim_free(autocmd_fname);
8146 autocmd_fname = result;
8147 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008148 if (result == NULL)
8149 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008150 *errormsg = _("E495: no autocommand file name to substitute for \"<afile>\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008151 return NULL;
8152 }
Bram Moolenaara0174af2008-01-02 20:08:25 +00008153 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008154 break;
8155
8156 case SPEC_ABUF: /* buffer number for autocommand */
8157 if (autocmd_bufnr <= 0)
8158 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008159 *errormsg = _("E496: no autocommand buffer number to substitute for \"<abuf>\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008160 return NULL;
8161 }
8162 sprintf((char *)strbuf, "%d", autocmd_bufnr);
8163 result = strbuf;
8164 break;
8165
8166 case SPEC_AMATCH: /* match name for autocommand */
8167 result = autocmd_match;
8168 if (result == NULL)
8169 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008170 *errormsg = _("E497: no autocommand match name to substitute for \"<amatch>\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008171 return NULL;
8172 }
8173 break;
8174
Bram Moolenaar071d4272004-06-13 20:20:40 +00008175 case SPEC_SFILE: /* file name for ":so" command */
8176 result = sourcing_name;
8177 if (result == NULL)
8178 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008179 *errormsg = _("E498: no :source file name to substitute for \"<sfile>\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008180 return NULL;
8181 }
8182 break;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02008183
Bram Moolenaar4dbbff52010-11-24 15:50:59 +01008184 case SPEC_SLNUM: /* line in file for ":so" command */
8185 if (sourcing_name == NULL || sourcing_lnum == 0)
8186 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008187 *errormsg = _("E842: no line number to use for \"<slnum>\"");
Bram Moolenaar4dbbff52010-11-24 15:50:59 +01008188 return NULL;
8189 }
8190 sprintf((char *)strbuf, "%ld", (long)sourcing_lnum);
8191 result = strbuf;
8192 break;
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02008193
8194#ifdef FEAT_EVAL
8195 case SPEC_SFLNUM: /* line in script file */
8196 if (current_sctx.sc_lnum + sourcing_lnum == 0)
8197 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008198 *errormsg = _("E961: no line number to use for \"<sflnum>\"");
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02008199 return NULL;
8200 }
8201 sprintf((char *)strbuf, "%ld",
8202 (long)(current_sctx.sc_lnum + sourcing_lnum));
8203 result = strbuf;
8204 break;
8205#endif
8206
8207#ifdef FEAT_CLIENTSERVER
Bram Moolenaar071d4272004-06-13 20:20:40 +00008208 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008209 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
8210 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008211 result = strbuf;
8212 break;
8213#endif
Bram Moolenaarf29c1c62018-09-10 21:05:02 +02008214
Bram Moolenaar9e0f6ec2017-05-16 09:36:54 +02008215 default:
8216 result = (char_u *)""; /* avoid gcc warning */
8217 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008218 }
8219
8220 resultlen = (int)STRLEN(result); /* length of new string */
8221 if (src[*usedlen] == '<') /* remove the file name extension */
8222 {
8223 ++*usedlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008224 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008225 resultlen = (int)(s - result);
8226 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008227 else if (!skip_mod)
8228 {
Bram Moolenaar00136dc2018-07-25 21:19:13 +02008229 valid |= modify_fname(src, tilde_file, usedlen, &result, &resultbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008230 &resultlen);
8231 if (result == NULL)
8232 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008233 *errormsg = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00008234 return NULL;
8235 }
8236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008237 }
8238
8239 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
8240 {
8241 if (valid != VALID_HEAD + VALID_PATH)
8242 /* xgettext:no-c-format */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008243 *errormsg = _("E499: Empty file name for '%' or '#', only works with \":p:h\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008244 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008245 *errormsg = _("E500: Evaluates to an empty string");
Bram Moolenaar071d4272004-06-13 20:20:40 +00008246 result = NULL;
8247 }
8248 else
8249 result = vim_strnsave(result, resultlen);
8250 vim_free(resultbuf);
8251 return result;
8252}
8253
8254/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008255 * Expand the <sfile> string in "arg".
8256 *
8257 * Returns an allocated string, or NULL for any error.
8258 */
8259 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008260expand_sfile(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008261{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008262 char *errormsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008263 int len;
8264 char_u *result;
8265 char_u *newres;
8266 char_u *repl;
8267 int srclen;
8268 char_u *p;
8269
8270 result = vim_strsave(arg);
8271 if (result == NULL)
8272 return NULL;
8273
8274 for (p = result; *p; )
8275 {
8276 if (STRNCMP(p, "<sfile>", 7) != 0)
8277 ++p;
8278 else
8279 {
8280 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00008281 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008282 if (errormsg != NULL)
8283 {
8284 if (*errormsg)
8285 emsg(errormsg);
8286 vim_free(result);
8287 return NULL;
8288 }
8289 if (repl == NULL) /* no match (cannot happen) */
8290 {
8291 p += srclen;
8292 continue;
8293 }
8294 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
8295 newres = alloc(len);
8296 if (newres == NULL)
8297 {
8298 vim_free(repl);
8299 vim_free(result);
8300 return NULL;
8301 }
8302 mch_memmove(newres, result, (size_t)(p - result));
8303 STRCPY(newres + (p - result), repl);
8304 len = (int)STRLEN(newres);
8305 STRCAT(newres, p + srclen);
8306 vim_free(repl);
8307 vim_free(result);
8308 result = newres;
8309 p = newres + len; /* continue after the match */
8310 }
8311 }
8312
8313 return result;
8314}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008315
Bram Moolenaar071d4272004-06-13 20:20:40 +00008316#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +00008317/*
Bram Moolenaard9462e32011-04-11 21:35:11 +02008318 * Make a dialog message in "buff[DIALOG_MSG_SIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +00008319 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +00008320 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008321 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008322dialog_msg(char_u *buff, char *format, char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008323{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008324 if (fname == NULL)
8325 fname = (char_u *)_("Untitled");
Bram Moolenaard9462e32011-04-11 21:35:11 +02008326 vim_snprintf((char *)buff, DIALOG_MSG_SIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008327}
8328#endif
8329
8330/*
8331 * ":behave {mswin,xterm}"
8332 */
8333 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008334ex_behave(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008335{
8336 if (STRCMP(eap->arg, "mswin") == 0)
8337 {
8338 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
8339 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
8340 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
8341 set_option_value((char_u *)"keymodel", 0L,
8342 (char_u *)"startsel,stopsel", 0);
8343 }
8344 else if (STRCMP(eap->arg, "xterm") == 0)
8345 {
8346 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
8347 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
8348 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
8349 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
8350 }
8351 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008352 semsg(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008353}
8354
Bram Moolenaar071d4272004-06-13 20:20:40 +00008355static int filetype_detect = FALSE;
8356static int filetype_plugin = FALSE;
8357static int filetype_indent = FALSE;
8358
8359/*
8360 * ":filetype [plugin] [indent] {on,off,detect}"
8361 * on: Load the filetype.vim file to install autocommands for file types.
8362 * off: Load the ftoff.vim file to remove all autocommands for file types.
8363 * plugin on: load filetype.vim and ftplugin.vim
8364 * plugin off: load ftplugof.vim
8365 * indent on: load filetype.vim and indent.vim
8366 * indent off: load indoff.vim
8367 */
8368 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008369ex_filetype(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008370{
8371 char_u *arg = eap->arg;
8372 int plugin = FALSE;
8373 int indent = FALSE;
8374
8375 if (*eap->arg == NUL)
8376 {
8377 /* Print current status. */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008378 smsg("filetype detection:%s plugin:%s indent:%s",
Bram Moolenaar071d4272004-06-13 20:20:40 +00008379 filetype_detect ? "ON" : "OFF",
8380 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
8381 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
8382 return;
8383 }
8384
8385 /* Accept "plugin" and "indent" in any order. */
8386 for (;;)
8387 {
8388 if (STRNCMP(arg, "plugin", 6) == 0)
8389 {
8390 plugin = TRUE;
8391 arg = skipwhite(arg + 6);
8392 continue;
8393 }
8394 if (STRNCMP(arg, "indent", 6) == 0)
8395 {
8396 indent = TRUE;
8397 arg = skipwhite(arg + 6);
8398 continue;
8399 }
8400 break;
8401 }
8402 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
8403 {
8404 if (*arg == 'o' || !filetype_detect)
8405 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01008406 source_runtime((char_u *)FILETYPE_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008407 filetype_detect = TRUE;
8408 if (plugin)
8409 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01008410 source_runtime((char_u *)FTPLUGIN_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008411 filetype_plugin = TRUE;
8412 }
8413 if (indent)
8414 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01008415 source_runtime((char_u *)INDENT_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008416 filetype_indent = TRUE;
8417 }
8418 }
8419 if (*arg == 'd')
8420 {
Bram Moolenaar1610d052016-06-09 22:53:01 +02008421 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00008422 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008423 }
8424 }
8425 else if (STRCMP(arg, "off") == 0)
8426 {
8427 if (plugin || indent)
8428 {
8429 if (plugin)
8430 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01008431 source_runtime((char_u *)FTPLUGOF_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008432 filetype_plugin = FALSE;
8433 }
8434 if (indent)
8435 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01008436 source_runtime((char_u *)INDOFF_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008437 filetype_indent = FALSE;
8438 }
8439 }
8440 else
8441 {
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01008442 source_runtime((char_u *)FTOFF_FILE, DIP_ALL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008443 filetype_detect = FALSE;
8444 }
8445 }
8446 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008447 semsg(_(e_invarg2), arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008448}
8449
8450/*
Bram Moolenaar3e545692017-06-04 19:00:32 +02008451 * ":setfiletype [FALLBACK] {name}"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008452 */
8453 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008454ex_setfiletype(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008455{
8456 if (!did_filetype)
Bram Moolenaar3e545692017-06-04 19:00:32 +02008457 {
8458 char_u *arg = eap->arg;
8459
8460 if (STRNCMP(arg, "FALLBACK ", 9) == 0)
8461 arg += 9;
8462
8463 set_option_value((char_u *)"filetype", 0L, arg, OPT_LOCAL);
8464 if (arg != eap->arg)
8465 did_filetype = FALSE;
8466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008467}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008468
Bram Moolenaar071d4272004-06-13 20:20:40 +00008469 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008470ex_digraphs(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008471{
8472#ifdef FEAT_DIGRAPHS
8473 if (*eap->arg != NUL)
8474 putdigraph(eap->arg);
8475 else
Bram Moolenaareae8ae12018-12-14 18:53:02 +01008476 listdigraphs(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008477#else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01008478 emsg(_("E196: No digraphs in this version"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008479#endif
8480}
8481
8482 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008483ex_set(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008484{
8485 int flags = 0;
8486
8487 if (eap->cmdidx == CMD_setlocal)
8488 flags = OPT_LOCAL;
8489 else if (eap->cmdidx == CMD_setglobal)
8490 flags = OPT_GLOBAL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01008491#if defined(FEAT_EVAL) && defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008492 if (cmdmod.browse && flags == 0)
8493 ex_options(eap);
8494 else
8495#endif
8496 (void)do_set(eap->arg, flags);
8497}
8498
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02008499#if defined(FEAT_SEARCH_EXTRA) || defined(PROTO)
8500 void
8501set_no_hlsearch(int flag)
8502{
8503 no_hlsearch = flag;
8504# ifdef FEAT_EVAL
8505 set_vim_var_nr(VV_HLSEARCH, !no_hlsearch && p_hls);
8506# endif
8507}
8508
Bram Moolenaar071d4272004-06-13 20:20:40 +00008509/*
8510 * ":nohlsearch"
8511 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008512 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008513ex_nohlsearch(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008514{
Bram Moolenaar451fc7b2018-04-27 22:53:07 +02008515 set_no_hlsearch(TRUE);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00008516 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008517}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008518#endif
8519
8520#ifdef FEAT_CRYPT
8521/*
8522 * ":X": Get crypt key
8523 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008524 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008525ex_X(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008526{
Bram Moolenaar3a0c9082014-11-12 15:15:42 +01008527 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02008528 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008529}
8530#endif
8531
8532#ifdef FEAT_FOLDING
8533 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008534ex_fold(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008535{
8536 if (foldManualAllowed(TRUE))
8537 foldCreate(eap->line1, eap->line2);
8538}
8539
8540 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008541ex_foldopen(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008542{
8543 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
8544 eap->forceit, FALSE);
8545}
8546
8547 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008548ex_folddo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008549{
8550 linenr_T lnum;
8551
Bram Moolenaar4facea32019-10-12 20:17:40 +02008552# ifdef FEAT_CLIPBOARD
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02008553 start_global_changes();
Bram Moolenaar4facea32019-10-12 20:17:40 +02008554# endif
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02008555
Bram Moolenaar071d4272004-06-13 20:20:40 +00008556 /* First set the marks for all lines closed/open. */
8557 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
8558 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
8559 ml_setmarked(lnum);
8560
8561 /* Execute the command on the marked lines. */
8562 global_exe(eap->arg);
8563 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar4facea32019-10-12 20:17:40 +02008564# ifdef FEAT_CLIPBOARD
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02008565 end_global_changes();
Bram Moolenaar4facea32019-10-12 20:17:40 +02008566# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008567}
8568#endif
Bram Moolenaarf5291f32017-09-14 22:55:37 +02008569
Bram Moolenaar39665952018-08-15 20:59:48 +02008570#ifdef FEAT_QUICKFIX
8571/*
8572 * Returns TRUE if the supplied Ex cmdidx is for a location list command
8573 * instead of a quickfix command.
8574 */
8575 int
8576is_loclist_cmd(int cmdidx)
8577{
Bram Moolenaar74c8be22018-08-23 22:51:40 +02008578 if (cmdidx < 0 || cmdidx >= CMD_SIZE)
Bram Moolenaar39665952018-08-15 20:59:48 +02008579 return FALSE;
8580 return cmdnames[cmdidx].cmd_name[0] == 'l';
8581}
8582#endif
8583
Bram Moolenaar4facea32019-10-12 20:17:40 +02008584#if defined(FEAT_TIMERS) || defined(PROTO)
Bram Moolenaarf5291f32017-09-14 22:55:37 +02008585 int
8586get_pressedreturn(void)
8587{
8588 return ex_pressedreturn;
8589}
8590
8591 void
8592set_pressedreturn(int val)
8593{
8594 ex_pressedreturn = val;
8595}
8596#endif