blob: 648cc0d77091b078b94bdc16a5a90334929fb14a [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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
22#ifdef FEAT_USR_CMDS
23typedef struct ucmd
24{
25 char_u *uc_name; /* The command name */
26 long_u uc_argt; /* The argument type */
27 char_u *uc_rep; /* The command's replacement string */
28 long uc_def; /* The default value for a range/count */
Bram Moolenaar071d4272004-06-13 20:20:40 +000029 int uc_compl; /* completion type */
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +010030 int uc_addr_type; /* The command's address type */
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010031# ifdef FEAT_EVAL
32 scid_T uc_scriptID; /* SID where the command was defined */
33# ifdef FEAT_CMDL_COMPL
Bram Moolenaar071d4272004-06-13 20:20:40 +000034 char_u *uc_compl_arg; /* completion argument if any */
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010035# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000036# endif
37} ucmd_T;
38
39#define UC_BUFFER 1 /* -buffer: local to current buffer */
40
Bram Moolenaar2c29bee2005-06-01 21:46:07 +000041static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43#define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
44#define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
45
46static void do_ucmd __ARGS((exarg_T *eap));
47static void ex_command __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000048static void ex_delcommand __ARGS((exarg_T *eap));
49# ifdef FEAT_CMDL_COMPL
50static char_u *get_user_command_name __ARGS((int idx));
51# endif
52
Bram Moolenaar958636c2014-10-21 20:01:58 +020053/* Wether a command index indicates a user command. */
54# define IS_USER_CMDIDX(idx) ((int)(idx) < 0)
55
Bram Moolenaar071d4272004-06-13 20:20:40 +000056#else
57# define ex_command ex_ni
58# define ex_comclear ex_ni
59# define ex_delcommand ex_ni
Bram Moolenaar958636c2014-10-21 20:01:58 +020060/* Wether a command index indicates a user command. */
61# define IS_USER_CMDIDX(idx) (FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +000062#endif
63
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010064static int compute_buffer_local_count __ARGS((int addr_type, int lnum, int local));
Bram Moolenaar071d4272004-06-13 20:20:40 +000065#ifdef FEAT_EVAL
Bram Moolenaar89d40322006-08-29 15:30:07 +000066static char_u *do_one_cmd __ARGS((char_u **, int, struct condstack *, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#else
Bram Moolenaar89d40322006-08-29 15:30:07 +000068static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000069static int if_level = 0; /* depth in :if */
70#endif
Bram Moolenaara6f4d612011-09-21 19:10:46 +020071static void append_command __ARGS((char_u *cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +000072static char_u *find_command __ARGS((exarg_T *eap, int *full));
73
74static void ex_abbreviate __ARGS((exarg_T *eap));
75static void ex_map __ARGS((exarg_T *eap));
76static void ex_unmap __ARGS((exarg_T *eap));
77static void ex_mapclear __ARGS((exarg_T *eap));
78static void ex_abclear __ARGS((exarg_T *eap));
79#ifndef FEAT_MENU
80# define ex_emenu ex_ni
81# define ex_menu ex_ni
82# define ex_menutranslate ex_ni
83#endif
84#ifdef FEAT_AUTOCMD
85static void ex_autocmd __ARGS((exarg_T *eap));
86static void ex_doautocmd __ARGS((exarg_T *eap));
87#else
88# define ex_autocmd ex_ni
89# define ex_doautocmd ex_ni
90# define ex_doautoall ex_ni
91#endif
92#ifdef FEAT_LISTCMDS
93static void ex_bunload __ARGS((exarg_T *eap));
94static void ex_buffer __ARGS((exarg_T *eap));
95static void ex_bmodified __ARGS((exarg_T *eap));
96static void ex_bnext __ARGS((exarg_T *eap));
97static void ex_bprevious __ARGS((exarg_T *eap));
98static void ex_brewind __ARGS((exarg_T *eap));
99static void ex_blast __ARGS((exarg_T *eap));
100#else
101# define ex_bunload ex_ni
102# define ex_buffer ex_ni
103# define ex_bmodified ex_ni
104# define ex_bnext ex_ni
105# define ex_bprevious ex_ni
106# define ex_brewind ex_ni
107# define ex_blast ex_ni
108# define buflist_list ex_ni
109# define ex_checktime ex_ni
110#endif
111#if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
112# define ex_buffer_all ex_ni
113#endif
114static char_u *getargcmd __ARGS((char_u **));
115static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
116static int getargopt __ARGS((exarg_T *eap));
117#ifndef FEAT_QUICKFIX
118# define ex_make ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000119# define ex_cbuffer ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120# define ex_cc ex_ni
121# define ex_cnext ex_ni
122# define ex_cfile ex_ni
123# define qf_list ex_ni
124# define qf_age ex_ni
125# define ex_helpgrep ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000126# define ex_vimgrep ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127#endif
128#if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
129# define ex_cclose ex_ni
130# define ex_copen ex_ni
131# define ex_cwindow ex_ni
132#endif
Bram Moolenaar1e015462005-09-25 22:16:38 +0000133#if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
134# define ex_cexpr ex_ni
135#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
137static int check_more __ARGS((int, int));
Bram Moolenaaraa23b372015-09-08 18:46:31 +0200138static linenr_T get_address __ARGS((exarg_T *, char_u **, int addr_type, int skip, int to_other_file));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000139static void get_flags __ARGS((exarg_T *eap));
Bram Moolenaar85363ab2010-07-18 13:58:26 +0200140#if !defined(FEAT_PERL) \
141 || !defined(FEAT_PYTHON) || !defined(FEAT_PYTHON3) \
142 || !defined(FEAT_TCL) \
143 || !defined(FEAT_RUBY) \
144 || !defined(FEAT_LUA) \
145 || !defined(FEAT_MZSCHEME)
Bram Moolenaar7bb75552007-07-16 18:39:49 +0000146# define HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147static void ex_script_ni __ARGS((exarg_T *eap));
148#endif
149static char_u *invalid_range __ARGS((exarg_T *eap));
150static void correct_range __ARGS((exarg_T *eap));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000151#ifdef FEAT_QUICKFIX
152static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
155static void ex_highlight __ARGS((exarg_T *eap));
156static void ex_colorscheme __ARGS((exarg_T *eap));
157static void ex_quit __ARGS((exarg_T *eap));
158static void ex_cquit __ARGS((exarg_T *eap));
159static void ex_quit_all __ARGS((exarg_T *eap));
160#ifdef FEAT_WINDOWS
161static void ex_close __ARGS((exarg_T *eap));
Bram Moolenaarf740b292006-02-16 22:11:02 +0000162static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163static void ex_only __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164static void ex_resize __ARGS((exarg_T *eap));
165static void ex_stag __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000166static void ex_tabclose __ARGS((exarg_T *eap));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000167static void ex_tabonly __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000168static void ex_tabnext __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000169static void ex_tabmove __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000170static void ex_tabs __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171#else
172# define ex_close ex_ni
173# define ex_only ex_ni
174# define ex_all ex_ni
175# define ex_resize ex_ni
176# define ex_splitview ex_ni
177# define ex_stag ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000178# define ex_tabnext ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000179# define ex_tabmove ex_ni
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000180# define ex_tabs ex_ni
181# define ex_tabclose ex_ni
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000182# define ex_tabonly ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183#endif
184#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
185static void ex_pclose __ARGS((exarg_T *eap));
186static void ex_ptag __ARGS((exarg_T *eap));
187static void ex_pedit __ARGS((exarg_T *eap));
188#else
189# define ex_pclose ex_ni
190# define ex_ptag ex_ni
191# define ex_pedit ex_ni
192#endif
193static void ex_hide __ARGS((exarg_T *eap));
194static void ex_stop __ARGS((exarg_T *eap));
195static void ex_exit __ARGS((exarg_T *eap));
196static void ex_print __ARGS((exarg_T *eap));
197#ifdef FEAT_BYTEOFF
198static void ex_goto __ARGS((exarg_T *eap));
199#else
200# define ex_goto ex_ni
201#endif
202static void ex_shell __ARGS((exarg_T *eap));
203static void ex_preserve __ARGS((exarg_T *eap));
204static void ex_recover __ARGS((exarg_T *eap));
205#ifndef FEAT_LISTCMDS
206# define ex_argedit ex_ni
207# define ex_argadd ex_ni
208# define ex_argdelete ex_ni
209# define ex_listdo ex_ni
210#endif
211static void ex_mode __ARGS((exarg_T *eap));
212static void ex_wrongmodifier __ARGS((exarg_T *eap));
213static void ex_find __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000214static void ex_open __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215static void ex_edit __ARGS((exarg_T *eap));
216#if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
217# define ex_drop ex_ni
218#endif
219#ifndef FEAT_GUI
220# define ex_gui ex_nogui
221static void ex_nogui __ARGS((exarg_T *eap));
222#endif
223#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
224static void ex_tearoff __ARGS((exarg_T *eap));
225#else
226# define ex_tearoff ex_ni
227#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000228#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229static void ex_popup __ARGS((exarg_T *eap));
230#else
231# define ex_popup ex_ni
232#endif
233#ifndef FEAT_GUI_MSWIN
234# define ex_simalt ex_ni
235#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000236#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237# define gui_mch_find_dialog ex_ni
238# define gui_mch_replace_dialog ex_ni
239#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000240#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241# define ex_helpfind ex_ni
242#endif
243#ifndef FEAT_CSCOPE
244# define do_cscope ex_ni
245# define do_scscope ex_ni
246# define do_cstag ex_ni
247#endif
248#ifndef FEAT_SYN_HL
249# define ex_syntax ex_ni
Bram Moolenaar860cae12010-06-05 23:22:07 +0200250# define ex_ownsyntax ex_ni
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000251#endif
Bram Moolenaarf7512552013-06-06 14:55:19 +0200252#if !defined(FEAT_SYN_HL) || !defined(FEAT_PROFILE)
Bram Moolenaar8a7f5a22013-06-06 14:01:46 +0200253# define ex_syntime ex_ni
254#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000255#ifndef FEAT_SPELL
Bram Moolenaarb765d632005-06-07 21:00:02 +0000256# define ex_spell ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000257# define ex_mkspell ex_ni
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000258# define ex_spelldump ex_ni
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000259# define ex_spellinfo ex_ni
Bram Moolenaara1ba8112005-06-28 23:23:32 +0000260# define ex_spellrepall ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000261#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200262#ifndef FEAT_PERSISTENT_UNDO
263# define ex_rundo ex_ni
264# define ex_wundo ex_ni
265#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200266#ifndef FEAT_LUA
267# define ex_lua ex_script_ni
268# define ex_luado ex_ni
269# define ex_luafile ex_ni
270#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000271#ifndef FEAT_MZSCHEME
272# define ex_mzscheme ex_script_ni
273# define ex_mzfile ex_ni
274#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275#ifndef FEAT_PERL
276# define ex_perl ex_script_ni
277# define ex_perldo ex_ni
278#endif
279#ifndef FEAT_PYTHON
280# define ex_python ex_script_ni
Bram Moolenaard620aa92013-05-17 16:40:06 +0200281# define ex_pydo ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282# define ex_pyfile ex_ni
283#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200284#ifndef FEAT_PYTHON3
Bram Moolenaar368373e2010-07-19 20:46:22 +0200285# define ex_py3 ex_script_ni
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200286# define ex_py3do ex_ni
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200287# define ex_py3file ex_ni
288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289#ifndef FEAT_TCL
290# define ex_tcl ex_script_ni
291# define ex_tcldo ex_ni
292# define ex_tclfile ex_ni
293#endif
294#ifndef FEAT_RUBY
295# define ex_ruby ex_script_ni
296# define ex_rubydo ex_ni
297# define ex_rubyfile ex_ni
298#endif
299#ifndef FEAT_SNIFF
300# define ex_sniff ex_ni
301#endif
302#ifndef FEAT_KEYMAP
303# define ex_loadkeymap ex_ni
304#endif
305static void ex_swapname __ARGS((exarg_T *eap));
306static void ex_syncbind __ARGS((exarg_T *eap));
307static void ex_read __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308static void ex_pwd __ARGS((exarg_T *eap));
309static void ex_equal __ARGS((exarg_T *eap));
310static void ex_sleep __ARGS((exarg_T *eap));
311static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
312static void ex_winsize __ARGS((exarg_T *eap));
313#ifdef FEAT_WINDOWS
314static void ex_wincmd __ARGS((exarg_T *eap));
315#else
316# define ex_wincmd ex_ni
317#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000318#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319static void ex_winpos __ARGS((exarg_T *eap));
320#else
321# define ex_winpos ex_ni
322#endif
323static void ex_operators __ARGS((exarg_T *eap));
324static void ex_put __ARGS((exarg_T *eap));
325static void ex_copymove __ARGS((exarg_T *eap));
326static void ex_submagic __ARGS((exarg_T *eap));
327static void ex_join __ARGS((exarg_T *eap));
328static void ex_at __ARGS((exarg_T *eap));
329static void ex_bang __ARGS((exarg_T *eap));
330static void ex_undo __ARGS((exarg_T *eap));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200331#ifdef FEAT_PERSISTENT_UNDO
332static void ex_wundo __ARGS((exarg_T *eap));
333static void ex_rundo __ARGS((exarg_T *eap));
334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335static void ex_redo __ARGS((exarg_T *eap));
Bram Moolenaarc7d89352006-03-14 22:53:34 +0000336static void ex_later __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337static void ex_redir __ARGS((exarg_T *eap));
338static void ex_redraw __ARGS((exarg_T *eap));
339static void ex_redrawstatus __ARGS((exarg_T *eap));
340static void close_redir __ARGS((void));
341static void ex_mkrc __ARGS((exarg_T *eap));
342static void ex_mark __ARGS((exarg_T *eap));
343#ifdef FEAT_USR_CMDS
344static char_u *uc_fun_cmd __ARGS((void));
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000345static char_u *find_ucmd __ARGS((exarg_T *eap, char_u *p, int *full, expand_T *xp, int *compl));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346#endif
347#ifdef FEAT_EX_EXTRA
348static void ex_normal __ARGS((exarg_T *eap));
349static void ex_startinsert __ARGS((exarg_T *eap));
350static void ex_stopinsert __ARGS((exarg_T *eap));
351#else
352# define ex_normal ex_ni
353# define ex_align ex_ni
354# define ex_retab ex_ni
355# define ex_startinsert ex_ni
356# define ex_stopinsert ex_ni
357# define ex_helptags ex_ni
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000358# define ex_sort ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359#endif
360#ifdef FEAT_FIND_ID
361static void ex_checkpath __ARGS((exarg_T *eap));
362static void ex_findpat __ARGS((exarg_T *eap));
363#else
364# define ex_findpat ex_ni
365# define ex_checkpath ex_ni
366#endif
367#if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
368static void ex_psearch __ARGS((exarg_T *eap));
369#else
370# define ex_psearch ex_ni
371#endif
372static void ex_tag __ARGS((exarg_T *eap));
373static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
374#ifndef FEAT_EVAL
375# define ex_scriptnames ex_ni
376# define ex_finish ex_ni
377# define ex_echo ex_ni
378# define ex_echohl ex_ni
379# define ex_execute ex_ni
380# define ex_call ex_ni
381# define ex_if ex_ni
382# define ex_endif ex_ni
383# define ex_else ex_ni
384# define ex_while ex_ni
385# define ex_continue ex_ni
386# define ex_break ex_ni
387# define ex_endwhile ex_ni
388# define ex_throw ex_ni
389# define ex_try ex_ni
390# define ex_catch ex_ni
391# define ex_finally ex_ni
392# define ex_endtry ex_ni
393# define ex_endfunction ex_ni
394# define ex_let ex_ni
395# define ex_unlet ex_ni
Bram Moolenaar65c1b012005-01-31 19:02:28 +0000396# define ex_lockvar ex_ni
397# define ex_unlockvar ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398# define ex_function ex_ni
399# define ex_delfunction ex_ni
400# define ex_return ex_ni
Bram Moolenaard812df62008-11-09 12:46:09 +0000401# define ex_oldfiles ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402#endif
403static char_u *arg_all __ARGS((void));
404#ifdef FEAT_SESSION
405static int makeopens __ARGS((FILE *fd, char_u *dirnow));
Bram Moolenaarf13be0d2008-01-02 14:13:10 +0000406static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp, int current_arg_idx));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407static void ex_loadview __ARGS((exarg_T *eap));
408static char_u *get_view_file __ARGS((int c));
Bram Moolenaareeefcc72007-05-01 21:21:21 +0000409static int did_lcd; /* whether ":lcd" was produced for a session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410#else
411# define ex_loadview ex_ni
412#endif
413#ifndef FEAT_EVAL
414# define ex_compiler ex_ni
415#endif
416#ifdef FEAT_VIMINFO
417static void ex_viminfo __ARGS((exarg_T *eap));
418#else
419# define ex_viminfo ex_ni
420#endif
421static void ex_behave __ARGS((exarg_T *eap));
422#ifdef FEAT_AUTOCMD
423static void ex_filetype __ARGS((exarg_T *eap));
424static void ex_setfiletype __ARGS((exarg_T *eap));
425#else
426# define ex_filetype ex_ni
427# define ex_setfiletype ex_ni
428#endif
429#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000430# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431# define ex_diffpatch ex_ni
432# define ex_diffgetput ex_ni
433# define ex_diffsplit ex_ni
434# define ex_diffthis ex_ni
435# define ex_diffupdate ex_ni
436#endif
437static void ex_digraphs __ARGS((exarg_T *eap));
438static void ex_set __ARGS((exarg_T *eap));
439#if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
440# define ex_options ex_ni
441#endif
442#ifdef FEAT_SEARCH_EXTRA
443static void ex_nohlsearch __ARGS((exarg_T *eap));
444static void ex_match __ARGS((exarg_T *eap));
445#else
446# define ex_nohlsearch ex_ni
447# define ex_match ex_ni
448#endif
449#ifdef FEAT_CRYPT
450static void ex_X __ARGS((exarg_T *eap));
451#else
452# define ex_X ex_ni
453#endif
454#ifdef FEAT_FOLDING
455static void ex_fold __ARGS((exarg_T *eap));
456static void ex_foldopen __ARGS((exarg_T *eap));
457static void ex_folddo __ARGS((exarg_T *eap));
458#else
459# define ex_fold ex_ni
460# define ex_foldopen ex_ni
461# define ex_folddo ex_ni
462#endif
463#if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
464 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
465# define ex_language ex_ni
466#endif
467#ifndef FEAT_SIGNS
468# define ex_sign ex_ni
469#endif
470#ifndef FEAT_SUN_WORKSHOP
471# define ex_wsverb ex_ni
472#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000473#ifndef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200474# define ex_nbclose ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000475# define ex_nbkey ex_ni
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200476# define ex_nbstart ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000477#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478
479#ifndef FEAT_EVAL
480# define ex_debug ex_ni
481# define ex_breakadd ex_ni
482# define ex_debuggreedy ex_ni
483# define ex_breakdel ex_ni
484# define ex_breaklist ex_ni
485#endif
486
487#ifndef FEAT_CMDHIST
488# define ex_history ex_ni
489#endif
490#ifndef FEAT_JUMPLIST
491# define ex_jumps ex_ni
492# define ex_changes ex_ni
493#endif
494
Bram Moolenaar05159a02005-02-26 23:04:13 +0000495#ifndef FEAT_PROFILE
496# define ex_profile ex_ni
497#endif
498
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499/*
500 * Declare cmdnames[].
501 */
502#define DO_DECLARE_EXCMD
503#include "ex_cmds.h"
504
505/*
506 * Table used to quickly search for a command, based on its first character.
507 */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +0000508static cmdidx_T cmdidxs[27] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509{
510 CMD_append,
511 CMD_buffer,
512 CMD_change,
513 CMD_delete,
514 CMD_edit,
515 CMD_file,
516 CMD_global,
517 CMD_help,
518 CMD_insert,
519 CMD_join,
520 CMD_k,
521 CMD_list,
522 CMD_move,
523 CMD_next,
524 CMD_open,
525 CMD_print,
526 CMD_quit,
527 CMD_read,
528 CMD_substitute,
529 CMD_t,
530 CMD_undo,
531 CMD_vglobal,
532 CMD_write,
533 CMD_xit,
534 CMD_yank,
535 CMD_z,
536 CMD_bang
537};
538
539static char_u dollar_command[2] = {'$', 0};
540
541
542#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000543/* Struct for storing a line inside a while/for loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544typedef struct
545{
546 char_u *line; /* command line */
547 linenr_T lnum; /* sourcing_lnum of the line */
548} wcmd_T;
549
550/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000551 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000553 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000555struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556{
557 garray_T *lines_gap; /* growarray with line info */
558 int current_line; /* last read line from growarray */
559 int repeating; /* TRUE when looping a second time */
560 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
561 char_u *(*getline) __ARGS((int, void *, int));
562 void *cookie;
563};
564
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000565static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
566static int store_loop_line __ARGS((garray_T *gap, char_u *line));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567static void free_cmdlines __ARGS((garray_T *gap));
Bram Moolenaared203462004-06-16 11:19:22 +0000568
569/* Struct to save a few things while debugging. Used in do_cmdline() only. */
570struct dbg_stuff
571{
572 int trylevel;
573 int force_abort;
574 except_T *caught_stack;
575 char_u *vv_exception;
576 char_u *vv_throwpoint;
577 int did_emsg;
578 int got_int;
579 int did_throw;
580 int need_rethrow;
581 int check_cstack;
582 except_T *current_exception;
583};
584
585static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
586static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
587
588 static void
589save_dbg_stuff(dsp)
590 struct dbg_stuff *dsp;
591{
592 dsp->trylevel = trylevel; trylevel = 0;
593 dsp->force_abort = force_abort; force_abort = FALSE;
594 dsp->caught_stack = caught_stack; caught_stack = NULL;
595 dsp->vv_exception = v_exception(NULL);
596 dsp->vv_throwpoint = v_throwpoint(NULL);
597
598 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
599 dsp->did_emsg = did_emsg; did_emsg = FALSE;
600 dsp->got_int = got_int; got_int = FALSE;
601 dsp->did_throw = did_throw; did_throw = FALSE;
602 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
603 dsp->check_cstack = check_cstack; check_cstack = FALSE;
604 dsp->current_exception = current_exception; current_exception = NULL;
605}
606
607 static void
608restore_dbg_stuff(dsp)
609 struct dbg_stuff *dsp;
610{
611 suppress_errthrow = FALSE;
612 trylevel = dsp->trylevel;
613 force_abort = dsp->force_abort;
614 caught_stack = dsp->caught_stack;
615 (void)v_exception(dsp->vv_exception);
616 (void)v_throwpoint(dsp->vv_throwpoint);
617 did_emsg = dsp->did_emsg;
618 got_int = dsp->got_int;
619 did_throw = dsp->did_throw;
620 need_rethrow = dsp->need_rethrow;
621 check_cstack = dsp->check_cstack;
622 current_exception = dsp->current_exception;
623}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624#endif
625
626
627/*
628 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
629 * command is given.
630 */
631 void
632do_exmode(improved)
633 int improved; /* TRUE for "improved Ex" mode */
634{
635 int save_msg_scroll;
636 int prev_msg_row;
637 linenr_T prev_line;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000638 int changedtick;
639
640 if (improved)
641 exmode_active = EXMODE_VIM;
642 else
643 exmode_active = EXMODE_NORMAL;
644 State = NORMAL;
645
646 /* When using ":global /pat/ visual" and then "Q" we return to continue
647 * the :global command. */
648 if (global_busy)
649 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650
651 save_msg_scroll = msg_scroll;
652 ++RedrawingDisabled; /* don't redisplay the window */
653 ++no_wait_return; /* don't wait for return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654#ifdef FEAT_GUI
655 /* Ignore scrollbar and mouse events in Ex mode */
656 ++hold_gui_events;
657#endif
658#ifdef FEAT_SNIFF
659 want_sniff_request = 0; /* No K_SNIFF wanted */
660#endif
661
662 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
663 while (exmode_active)
664 {
Bram Moolenaar7c626922005-02-07 22:01:03 +0000665#ifdef FEAT_EX_EXTRA
666 /* Check for a ":normal" command and no more characters left. */
667 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
668 {
669 exmode_active = FALSE;
670 break;
671 }
672#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 msg_scroll = TRUE;
674 need_wait_return = FALSE;
675 ex_pressedreturn = FALSE;
676 ex_no_reprint = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000677 changedtick = curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 prev_msg_row = msg_row;
679 prev_line = curwin->w_cursor.lnum;
680#ifdef FEAT_SNIFF
681 ProcessSniffRequests();
682#endif
683 if (improved)
684 {
685 cmdline_row = msg_row;
686 do_cmdline(NULL, getexline, NULL, 0);
687 }
688 else
689 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
690 lines_left = Rows - 1;
691
Bram Moolenaardf177f62005-02-22 08:39:57 +0000692 if ((prev_line != curwin->w_cursor.lnum
693 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000695 if (curbuf->b_ml.ml_flags & ML_EMPTY)
696 EMSG(_(e_emptybuf));
697 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000699 if (ex_pressedreturn)
700 {
701 /* go up one line, to overwrite the ":<CR>" line, so the
Bram Moolenaar81870892007-11-11 18:17:28 +0000702 * output doesn't contain empty lines. */
Bram Moolenaardf177f62005-02-22 08:39:57 +0000703 msg_row = prev_msg_row;
704 if (prev_msg_row == Rows - 1)
705 msg_row--;
706 }
707 msg_col = 0;
708 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
709 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 }
Bram Moolenaardf177f62005-02-22 08:39:57 +0000712 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
713 {
714 if (curbuf->b_ml.ml_flags & ML_EMPTY)
715 EMSG(_(e_emptybuf));
716 else
717 EMSG(_("E501: At end-of-file"));
718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 }
720
721#ifdef FEAT_GUI
722 --hold_gui_events;
723#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 --RedrawingDisabled;
725 --no_wait_return;
726 update_screen(CLEAR);
727 need_wait_return = FALSE;
728 msg_scroll = save_msg_scroll;
729}
730
731/*
732 * Execute a simple command line. Used for translated commands like "*".
733 */
734 int
735do_cmdline_cmd(cmd)
736 char_u *cmd;
737{
738 return do_cmdline(cmd, NULL, NULL,
739 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
740}
741
742/*
743 * do_cmdline(): execute one Ex command line
744 *
745 * 1. Execute "cmdline" when it is not NULL.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100746 * If "cmdline" is NULL, or more lines are needed, fgetline() is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 * 2. Split up in parts separated with '|'.
748 *
749 * This function can be called recursively!
750 *
751 * flags:
752 * DOCMD_VERBOSE - The command will be included in the error message.
753 * DOCMD_NOWAIT - Don't call wait_return() and friends.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100754 * DOCMD_REPEAT - Repeat execution until fgetline() returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 * DOCMD_KEYTYPED - Don't reset KeyTyped.
756 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
757 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
758 *
759 * return FAIL if cmdline could not be executed, OK otherwise
760 */
761 int
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100762do_cmdline(cmdline, fgetline, cookie, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 char_u *cmdline;
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100764 char_u *(*fgetline) __ARGS((int, void *, int));
765 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 int flags;
767{
768 char_u *next_cmdline; /* next cmd to execute */
769 char_u *cmdline_copy = NULL; /* copy of cmd line */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100770 int used_getline = FALSE; /* used "fgetline" to obtain command */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 static int recursive = 0; /* recursive depth */
772 int msg_didout_before_start = 0;
773 int count = 0; /* line number count */
774 int did_inc = FALSE; /* incremented RedrawingDisabled */
775 int retval = OK;
776#ifdef FEAT_EVAL
777 struct condstack cstack; /* conditional stack */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000778 garray_T lines_ga; /* keep lines for ":while"/":for" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 int current_line = 0; /* active line in lines_ga */
780 char_u *fname = NULL; /* function or script name */
781 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
782 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
Bram Moolenaared203462004-06-16 11:19:22 +0000783 struct dbg_stuff debug_saved; /* saved things for debug mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 int initial_trylevel;
785 struct msglist **saved_msg_list = NULL;
786 struct msglist *private_msg_list;
787
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100788 /* "fgetline" and "cookie" passed to do_one_cmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 char_u *(*cmd_getline) __ARGS((int, void *, int));
790 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000791 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000793 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794#else
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100795# define cmd_getline fgetline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796# define cmd_cookie cookie
797#endif
798 static int call_depth = 0; /* recursiveness */
799
800#ifdef FEAT_EVAL
801 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
802 * location for storing error messages to be converted to an exception.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000803 * This ensures that the do_errthrow() call in do_one_cmd() does not
804 * combine the messages stored by an earlier invocation of do_one_cmd()
805 * with the command name of the later one. This would happen when
806 * BufWritePost autocommands are executed after a write error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 saved_msg_list = msg_list;
808 msg_list = &private_msg_list;
809 private_msg_list = NULL;
810#endif
811
812 /* It's possible to create an endless loop with ":execute", catch that
813 * here. The value of 200 allows nested function calls, ":source", etc. */
814 if (call_depth == 200)
815 {
816 EMSG(_("E169: Command too recursive"));
817#ifdef FEAT_EVAL
818 /* When converting to an exception, we do not include the command name
819 * since this is not an error of the specific command. */
820 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
821 msg_list = saved_msg_list;
822#endif
823 return FAIL;
824 }
825 ++call_depth;
826
827#ifdef FEAT_EVAL
828 cstack.cs_idx = -1;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000829 cstack.cs_looplevel = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 cstack.cs_trylevel = 0;
831 cstack.cs_emsg_silent_list = NULL;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000832 cstack.cs_lflags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
834
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100835 real_cookie = getline_cookie(fgetline, cookie);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836
837 /* Inside a function use a higher nesting level. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100838 getline_is_func = getline_equal(fgetline, cookie, get_func_line);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000839 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 ++ex_nesting_level;
841
842 /* Get the function or script name and the address where the next breakpoint
843 * line and the debug tick for a function or script are stored. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000844 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 {
846 fname = func_name(real_cookie);
847 breakpoint = func_breakpoint(real_cookie);
848 dbg_tick = func_dbg_tick(real_cookie);
849 }
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100850 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 {
852 fname = sourcing_name;
853 breakpoint = source_breakpoint(real_cookie);
854 dbg_tick = source_dbg_tick(real_cookie);
855 }
856
857 /*
858 * Initialize "force_abort" and "suppress_errthrow" at the top level.
859 */
860 if (!recursive)
861 {
862 force_abort = FALSE;
863 suppress_errthrow = FALSE;
864 }
865
866 /*
867 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000868 * exception handling (used when debugging). Otherwise clear it to avoid
869 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000871 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000872 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000873 else
Bram Moolenaar69b67f72015-09-25 16:59:47 +0200874 vim_memset(&debug_saved, 0, sizeof(debug_saved));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875
876 initial_trylevel = trylevel;
877
878 /*
879 * "did_throw" will be set to TRUE when an exception is being thrown.
880 */
881 did_throw = FALSE;
882#endif
883 /*
884 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000885 * cancel the whole command line, and any if/endif or loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 * If force_abort is set, we cancel everything.
887 */
888 did_emsg = FALSE;
889
890 /*
891 * KeyTyped is only set when calling vgetc(). Reset it here when not
892 * calling vgetc() (sourced command lines).
893 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100894 if (!(flags & DOCMD_KEYTYPED)
895 && !getline_equal(fgetline, cookie, getexline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 KeyTyped = FALSE;
897
898 /*
899 * Continue executing command lines:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000900 * - when inside an ":if", ":while" or ":for"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 * - for multiple commands on one line, separated with '|'
902 * - when repeating until there are no more lines (for ":source")
903 */
904 next_cmdline = cmdline;
905 do
906 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000907#ifdef FEAT_EVAL
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100908 getline_is_func = getline_equal(fgetline, cookie, get_func_line);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000909#endif
910
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000911 /* stop skipping cmds for an error msg after all endif/while/for */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 if (next_cmdline == NULL
913#ifdef FEAT_EVAL
914 && !force_abort
915 && cstack.cs_idx < 0
Bram Moolenaar05159a02005-02-26 23:04:13 +0000916 && !(getline_is_func && func_has_abort(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917#endif
918 )
919 did_emsg = FALSE;
920
921 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000922 * 1. If repeating a line in a loop, get a line from lines_ga.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100923 * 2. If no line given: Get an allocated line with fgetline().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 * 3. If a line is given: Make a copy, so we can mess with it.
925 */
926
927#ifdef FEAT_EVAL
928 /* 1. If repeating, get a previous line from lines_ga. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000929 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 {
931 /* Each '|' separated command is stored separately in lines_ga, to
932 * be able to jump to it. Don't use next_cmdline now. */
933 vim_free(cmdline_copy);
934 cmdline_copy = NULL;
935
936 /* Check if a function has returned or, unless it has an unclosed
937 * try conditional, aborted. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000938 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000940# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000941 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000942 func_line_end(real_cookie);
943# endif
944 if (func_has_ended(real_cookie))
945 {
946 retval = FAIL;
947 break;
948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000950#ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000951 else if (do_profiling == PROF_YES
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100952 && getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000953 script_line_end();
954#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955
956 /* Check if a sourced file hit a ":finish" command. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100957 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 {
959 retval = FAIL;
960 break;
961 }
962
963 /* If breakpoints have been added/deleted need to check for it. */
964 if (breakpoint != NULL && dbg_tick != NULL
965 && *dbg_tick != debug_tick)
966 {
967 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100968 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 fname, sourcing_lnum);
970 *dbg_tick = debug_tick;
971 }
972
973 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
974 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
975
976 /* Did we encounter a breakpoint? */
977 if (breakpoint != NULL && *breakpoint != 0
978 && *breakpoint <= sourcing_lnum)
979 {
980 dbg_breakpoint(fname, sourcing_lnum);
981 /* Find next breakpoint. */
982 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100983 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 fname, sourcing_lnum);
985 *dbg_tick = debug_tick;
986 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000987# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000988 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000989 {
990 if (getline_is_func)
991 func_line_start(real_cookie);
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100992 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000993 script_line_start();
994 }
995# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 }
997
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000998 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001000 /* Inside a while/for loop we need to store the lines and use them
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001001 * again. Pass a different "fgetline" function to do_one_cmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 * below, so that it stores lines in or reads them from
1003 * "lines_ga". Makes it possible to define a function inside a
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001004 * while/for loop. */
1005 cmd_getline = get_loop_line;
1006 cmd_cookie = (void *)&cmd_loop_cookie;
1007 cmd_loop_cookie.lines_gap = &lines_ga;
1008 cmd_loop_cookie.current_line = current_line;
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001009 cmd_loop_cookie.getline = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001010 cmd_loop_cookie.cookie = cookie;
1011 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 }
1013 else
1014 {
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001015 cmd_getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 cmd_cookie = cookie;
1017 }
1018#endif
1019
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001020 /* 2. If no line given, get an allocated line with fgetline(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 if (next_cmdline == NULL)
1022 {
1023 /*
1024 * Need to set msg_didout for the first line after an ":if",
1025 * otherwise the ":if" will be overwritten.
1026 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001027 if (count == 1 && getline_equal(fgetline, cookie, getexline))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 msg_didout = TRUE;
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001029 if (fgetline == NULL || (next_cmdline = fgetline(':', cookie,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030#ifdef FEAT_EVAL
1031 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
1032#else
1033 0
1034#endif
1035 )) == NULL)
1036 {
1037 /* Don't call wait_return for aborted command line. The NULL
1038 * returned for the end of a sourced file or executed function
1039 * doesn't do this. */
1040 if (KeyTyped && !(flags & DOCMD_REPEAT))
1041 need_wait_return = FALSE;
1042 retval = FAIL;
1043 break;
1044 }
1045 used_getline = TRUE;
1046
1047 /*
1048 * Keep the first typed line. Clear it when more lines are typed.
1049 */
1050 if (flags & DOCMD_KEEPLINE)
1051 {
1052 vim_free(repeat_cmdline);
1053 if (count == 0)
1054 repeat_cmdline = vim_strsave(next_cmdline);
1055 else
1056 repeat_cmdline = NULL;
1057 }
1058 }
1059
1060 /* 3. Make a copy of the command so we can mess with it. */
1061 else if (cmdline_copy == NULL)
1062 {
1063 next_cmdline = vim_strsave(next_cmdline);
1064 if (next_cmdline == NULL)
1065 {
1066 EMSG(_(e_outofmem));
1067 retval = FAIL;
1068 break;
1069 }
1070 }
1071 cmdline_copy = next_cmdline;
1072
1073#ifdef FEAT_EVAL
1074 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001075 * Save the current line when inside a ":while" or ":for", and when
1076 * the command looks like a ":while" or ":for", because we may need it
1077 * later. When there is a '|' and another command, it is stored
1078 * separately, because we need to be able to jump back to it from an
1079 * :endwhile/:endfor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001081 if (current_line == lines_ga.ga_len
1082 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001084 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 {
1086 retval = FAIL;
1087 break;
1088 }
1089 }
1090 did_endif = FALSE;
1091#endif
1092
1093 if (count++ == 0)
1094 {
1095 /*
1096 * All output from the commands is put below each other, without
1097 * waiting for a return. Don't do this when executing commands
1098 * from a script or when being called recursive (e.g. for ":e
1099 * +command file").
1100 */
1101 if (!(flags & DOCMD_NOWAIT) && !recursive)
1102 {
1103 msg_didout_before_start = msg_didout;
1104 msg_didany = FALSE; /* no output yet */
1105 msg_start();
1106 msg_scroll = TRUE; /* put messages below each other */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001107 ++no_wait_return; /* don't wait for return until finished */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 ++RedrawingDisabled;
1109 did_inc = TRUE;
1110 }
1111 }
1112
1113 if (p_verbose >= 15 && sourcing_name != NULL)
1114 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 ++no_wait_return;
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001116 verbose_enter_scroll();
1117
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 smsg((char_u *)_("line %ld: %s"),
1119 (long)sourcing_lnum, cmdline_copy);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001120 if (msg_silent == 0)
1121 msg_puts((char_u *)"\n"); /* don't overwrite this */
1122
1123 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 --no_wait_return;
1125 }
1126
1127 /*
1128 * 2. Execute one '|' separated command.
1129 * do_one_cmd() will return NULL if there is no trailing '|'.
1130 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1131 */
1132 ++recursive;
1133 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1134#ifdef FEAT_EVAL
1135 &cstack,
1136#endif
1137 cmd_getline, cmd_cookie);
1138 --recursive;
1139
1140#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001141 if (cmd_cookie == (void *)&cmd_loop_cookie)
1142 /* Use "current_line" from "cmd_loop_cookie", it may have been
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 * incremented when defining a function. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001144 current_line = cmd_loop_cookie.current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145#endif
1146
1147 if (next_cmdline == NULL)
1148 {
1149 vim_free(cmdline_copy);
1150 cmdline_copy = NULL;
1151#ifdef FEAT_CMDHIST
1152 /*
1153 * If the command was typed, remember it for the ':' register.
1154 * Do this AFTER executing the command to make :@: work.
1155 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001156 if (getline_equal(fgetline, cookie, getexline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 && new_last_cmdline != NULL)
1158 {
1159 vim_free(last_cmdline);
1160 last_cmdline = new_last_cmdline;
1161 new_last_cmdline = NULL;
1162 }
1163#endif
1164 }
1165 else
1166 {
1167 /* need to copy the command after the '|' to cmdline_copy, for the
1168 * next do_one_cmd() */
Bram Moolenaara7241f52008-06-24 20:39:31 +00001169 STRMOVE(cmdline_copy, next_cmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 next_cmdline = cmdline_copy;
1171 }
1172
1173
1174#ifdef FEAT_EVAL
1175 /* reset did_emsg for a function that is not aborted by an error */
1176 if (did_emsg && !force_abort
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001177 && getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 && !func_has_abort(real_cookie))
1179 did_emsg = FALSE;
1180
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001181 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 {
1183 ++current_line;
1184
1185 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001186 * An ":endwhile", ":endfor" and ":continue" is handled here.
1187 * If we were executing commands, jump back to the ":while" or
1188 * ":for".
1189 * If we were not executing commands, decrement cs_looplevel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001191 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001193 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001195 /* Jump back to the matching ":while" or ":for". Be careful
1196 * not to use a cs_line[] from an entry that isn't a ":while"
1197 * or ":for": It would make "current_line" invalid and can
1198 * cause a crash. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 if (!did_emsg && !got_int && !did_throw
1200 && cstack.cs_idx >= 0
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001201 && (cstack.cs_flags[cstack.cs_idx]
1202 & (CSF_WHILE | CSF_FOR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 && cstack.cs_line[cstack.cs_idx] >= 0
1204 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1205 {
1206 current_line = cstack.cs_line[cstack.cs_idx];
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001207 /* remember we jumped there */
1208 cstack.cs_lflags |= CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 line_breakcheck(); /* check if CTRL-C typed */
1210
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001211 /* Check for the next breakpoint at or after the ":while"
1212 * or ":for". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 if (breakpoint != NULL)
1214 {
1215 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001216 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 fname,
1218 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1219 *dbg_tick = debug_tick;
1220 }
1221 }
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001222 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001224 /* can only get here with ":endwhile" or ":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 if (cstack.cs_idx >= 0)
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001226 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1227 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 }
1229 }
1230
1231 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001232 * For a ":while" or ":for" we need to remember the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001234 else if (cstack.cs_lflags & CSL_HAD_LOOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001236 cstack.cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1238 }
1239 }
1240
1241 /*
1242 * When not inside any ":while" loop, clear remembered lines.
1243 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001244 if (cstack.cs_looplevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 {
1246 if (lines_ga.ga_len > 0)
1247 {
1248 sourcing_lnum =
1249 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1250 free_cmdlines(&lines_ga);
1251 }
1252 current_line = 0;
1253 }
1254
1255 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001256 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1257 * being restored at the ":endtry". Reset them here and set the
1258 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1259 * This includes the case where a missing ":endif", ":endwhile" or
1260 * ":endfor" was detected by the ":finally" itself.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001262 if (cstack.cs_lflags & CSL_HAD_FINA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001264 cstack.cs_lflags &= ~CSL_HAD_FINA;
1265 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1266 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 did_throw ? (void *)current_exception : NULL);
1268 did_emsg = got_int = did_throw = FALSE;
1269 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1270 }
1271
1272 /* Update global "trylevel" for recursive calls to do_cmdline() from
1273 * within this loop. */
1274 trylevel = initial_trylevel + cstack.cs_trylevel;
1275
1276 /*
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001277 * If the outermost try conditional (across function calls and sourced
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 * files) is aborted because of an error, an interrupt, or an uncaught
1279 * exception, cancel everything. If it is left normally, reset
1280 * force_abort to get the non-EH compatible abortion behavior for
1281 * the rest of the script.
1282 */
1283 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1284 force_abort = FALSE;
1285
1286 /* Convert an interrupt to an exception if appropriate. */
1287 (void)do_intthrow(&cstack);
1288#endif /* FEAT_EVAL */
1289
1290 }
1291 /*
1292 * Continue executing command lines when:
1293 * - no CTRL-C typed, no aborting error, no exception thrown or try
1294 * conditionals need to be checked for executing finally clauses or
1295 * catching an interrupt exception
1296 * - didn't get an error message or lines are not typed
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001297 * - there is a command after '|', inside a :if, :while, :for or :try, or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 * looping for ":source" command or function call.
1299 */
1300 while (!((got_int
1301#ifdef FEAT_EVAL
1302 || (did_emsg && force_abort) || did_throw
1303#endif
1304 )
1305#ifdef FEAT_EVAL
1306 && cstack.cs_trylevel == 0
1307#endif
1308 )
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001309 && !(did_emsg
1310#ifdef FEAT_EVAL
1311 /* Keep going when inside try/catch, so that the error can be
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001312 * deal with, except when it is a syntax error, it may cause
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001313 * the :endtry to be missed. */
1314 && (cstack.cs_trylevel == 0 || did_emsg_syntax)
1315#endif
1316 && used_getline
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001317 && (getline_equal(fgetline, cookie, getexmodeline)
1318 || getline_equal(fgetline, cookie, getexline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 && (next_cmdline != NULL
1320#ifdef FEAT_EVAL
1321 || cstack.cs_idx >= 0
1322#endif
1323 || (flags & DOCMD_REPEAT)));
1324
1325 vim_free(cmdline_copy);
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001326 did_emsg_syntax = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327#ifdef FEAT_EVAL
1328 free_cmdlines(&lines_ga);
1329 ga_clear(&lines_ga);
1330
1331 if (cstack.cs_idx >= 0)
1332 {
1333 /*
1334 * If a sourced file or executed function ran to its end, report the
1335 * unclosed conditional.
1336 */
1337 if (!got_int && !did_throw
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001338 && ((getline_equal(fgetline, cookie, getsourceline)
1339 && !source_finished(fgetline, cookie))
1340 || (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 && !func_has_ended(real_cookie))))
1342 {
1343 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1344 EMSG(_(e_endtry));
1345 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1346 EMSG(_(e_endwhile));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001347 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1348 EMSG(_(e_endfor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 else
1350 EMSG(_(e_endif));
1351 }
1352
1353 /*
1354 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1355 * ":endtry" in a sourced file or executed function. If the try
1356 * conditional is in its finally clause, ignore anything pending.
1357 * If it is in a catch clause, finish the caught exception.
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001358 * Also cleanup any "cs_forinfo" structures.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 */
1360 do
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001361 {
1362 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1363
Bram Moolenaar89e5d682005-01-17 22:06:23 +00001364 if (idx >= 0)
1365 --idx; /* remove try block not in its finally clause */
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001366 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1367 &cstack.cs_looplevel);
1368 }
1369 while (cstack.cs_idx >= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 trylevel = initial_trylevel;
1371 }
1372
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001373 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1374 * lack was reported above and the error message is to be converted to an
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 * exception, do this now after rewinding the cstack. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001376 do_errthrow(&cstack, getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 ? (char_u *)"endfunction" : (char_u *)NULL);
1378
1379 if (trylevel == 0)
1380 {
1381 /*
1382 * When an exception is being thrown out of the outermost try
1383 * conditional, discard the uncaught exception, disable the conversion
1384 * of interrupts or errors to exceptions, and ensure that no more
1385 * commands are executed.
1386 */
1387 if (did_throw)
1388 {
1389 void *p = NULL;
1390 char_u *saved_sourcing_name;
1391 int saved_sourcing_lnum;
1392 struct msglist *messages = NULL, *next;
1393
1394 /*
1395 * If the uncaught exception is a user exception, report it as an
1396 * error. If it is an error exception, display the saved error
1397 * message now. For an interrupt exception, do nothing; the
1398 * interrupt message is given elsewhere.
1399 */
1400 switch (current_exception->type)
1401 {
1402 case ET_USER:
Bram Moolenaar9c13b352005-05-19 20:53:52 +00001403 vim_snprintf((char *)IObuff, IOSIZE,
1404 _("E605: Exception not caught: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 current_exception->value);
1406 p = vim_strsave(IObuff);
1407 break;
1408 case ET_ERROR:
1409 messages = current_exception->messages;
1410 current_exception->messages = NULL;
1411 break;
1412 case ET_INTERRUPT:
1413 break;
1414 default:
1415 p = vim_strsave((char_u *)_(e_internal));
1416 }
1417
1418 saved_sourcing_name = sourcing_name;
1419 saved_sourcing_lnum = sourcing_lnum;
1420 sourcing_name = current_exception->throw_name;
1421 sourcing_lnum = current_exception->throw_lnum;
1422 current_exception->throw_name = NULL;
1423
1424 discard_current_exception(); /* uses IObuff if 'verbose' */
1425 suppress_errthrow = TRUE;
1426 force_abort = TRUE;
1427
1428 if (messages != NULL)
1429 {
1430 do
1431 {
1432 next = messages->next;
1433 emsg(messages->msg);
1434 vim_free(messages->msg);
1435 vim_free(messages);
1436 messages = next;
1437 }
1438 while (messages != NULL);
1439 }
1440 else if (p != NULL)
1441 {
1442 emsg(p);
1443 vim_free(p);
1444 }
1445 vim_free(sourcing_name);
1446 sourcing_name = saved_sourcing_name;
1447 sourcing_lnum = saved_sourcing_lnum;
1448 }
1449
1450 /*
1451 * On an interrupt or an aborting error not converted to an exception,
1452 * disable the conversion of errors to exceptions. (Interrupts are not
1453 * converted any more, here.) This enables also the interrupt message
1454 * when force_abort is set and did_emsg unset in case of an interrupt
1455 * from a finally clause after an error.
1456 */
1457 else if (got_int || (did_emsg && force_abort))
1458 suppress_errthrow = TRUE;
1459 }
1460
1461 /*
1462 * The current cstack will be freed when do_cmdline() returns. An uncaught
1463 * exception will have to be rethrown in the previous cstack. If a function
1464 * has just returned or a script file was just finished and the previous
1465 * cstack belongs to the same function or, respectively, script file, it
1466 * will have to be checked for finally clauses to be executed due to the
1467 * ":return" or ":finish". This is done in do_one_cmd().
1468 */
1469 if (did_throw)
1470 need_rethrow = TRUE;
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001471 if ((getline_equal(fgetline, cookie, getsourceline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 && ex_nesting_level > source_level(real_cookie))
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001473 || (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 && ex_nesting_level > func_level(real_cookie) + 1))
1475 {
1476 if (!did_throw)
1477 check_cstack = TRUE;
1478 }
1479 else
1480 {
1481 /* When leaving a function, reduce nesting level. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001482 if (getline_equal(fgetline, cookie, get_func_line))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 --ex_nesting_level;
1484 /*
1485 * Go to debug mode when returning from a function in which we are
1486 * single-stepping.
1487 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001488 if ((getline_equal(fgetline, cookie, getsourceline)
1489 || getline_equal(fgetline, cookie, get_func_line))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 && ex_nesting_level + 1 <= debug_break_level)
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001491 do_debug(getline_equal(fgetline, cookie, getsourceline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 ? (char_u *)_("End of sourced file")
1493 : (char_u *)_("End of function"));
1494 }
1495
1496 /*
1497 * Restore the exception environment (done after returning from the
1498 * debugger).
1499 */
1500 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +00001501 restore_dbg_stuff(&debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502
1503 msg_list = saved_msg_list;
1504#endif /* FEAT_EVAL */
1505
1506 /*
1507 * If there was too much output to fit on the command line, ask the user to
1508 * hit return before redrawing the screen. With the ":global" command we do
1509 * this only once after the command is finished.
1510 */
1511 if (did_inc)
1512 {
1513 --RedrawingDisabled;
1514 --no_wait_return;
1515 msg_scroll = FALSE;
1516
1517 /*
1518 * When just finished an ":if"-":else" which was typed, no need to
1519 * wait for hit-return. Also for an error situation.
1520 */
1521 if (retval == FAIL
1522#ifdef FEAT_EVAL
1523 || (did_endif && KeyTyped && !did_emsg)
1524#endif
1525 )
1526 {
1527 need_wait_return = FALSE;
1528 msg_didany = FALSE; /* don't wait when restarting edit */
1529 }
1530 else if (need_wait_return)
1531 {
1532 /*
1533 * The msg_start() above clears msg_didout. The wait_return we do
1534 * here should not overwrite the command that may be shown before
1535 * doing that.
1536 */
1537 msg_didout |= msg_didout_before_start;
1538 wait_return(FALSE);
1539 }
1540 }
1541
Bram Moolenaar2a942252012-11-28 23:03:07 +01001542#ifdef FEAT_EVAL
1543 did_endif = FALSE; /* in case do_cmdline used recursively */
1544#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 /*
1546 * Reset if_level, in case a sourced script file contains more ":if" than
1547 * ":endif" (could be ":if x | foo | endif").
1548 */
1549 if_level = 0;
Bram Moolenaar2e18a122012-11-28 19:10:54 +01001550#endif
Bram Moolenaard4ad0d42012-11-28 17:34:48 +01001551
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 --call_depth;
1553 return retval;
1554}
1555
1556#ifdef FEAT_EVAL
1557/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001558 * Obtain a line when inside a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 */
1560 static char_u *
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001561get_loop_line(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 int c;
1563 void *cookie;
1564 int indent;
1565{
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001566 struct loop_cookie *cp = (struct loop_cookie *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 wcmd_T *wp;
1568 char_u *line;
1569
1570 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1571 {
1572 if (cp->repeating)
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001573 return NULL; /* trying to read past ":endwhile"/":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001575 /* First time inside the ":while"/":for": get line normally. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 if (cp->getline == NULL)
1577 line = getcmdline(c, 0L, indent);
1578 else
1579 line = cp->getline(c, cp->cookie, indent);
Bram Moolenaard68071d2006-05-02 22:08:30 +00001580 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 ++cp->current_line;
1582
1583 return line;
1584 }
1585
1586 KeyTyped = FALSE;
1587 ++cp->current_line;
1588 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1589 sourcing_lnum = wp->lnum;
1590 return vim_strsave(wp->line);
1591}
1592
1593/*
1594 * Store a line in "gap" so that a ":while" loop can execute it again.
1595 */
1596 static int
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001597store_loop_line(gap, line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 garray_T *gap;
1599 char_u *line;
1600{
1601 if (ga_grow(gap, 1) == FAIL)
1602 return FAIL;
1603 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1604 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1605 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 return OK;
1607}
1608
1609/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001610 * Free the lines stored for a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 */
1612 static void
1613free_cmdlines(gap)
1614 garray_T *gap;
1615{
1616 while (gap->ga_len > 0)
1617 {
1618 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1619 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 }
1621}
1622#endif
1623
1624/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001625 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1626 * "func". * Otherwise return TRUE when "fgetline" equals "func".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 int
Bram Moolenaar89d40322006-08-29 15:30:07 +00001629getline_equal(fgetline, cookie, func)
1630 char_u *(*fgetline) __ARGS((int, void *, int));
Bram Moolenaar78a15312009-05-15 19:33:18 +00001631 void *cookie UNUSED; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 char_u *(*func) __ARGS((int, void *, int));
1633{
1634#ifdef FEAT_EVAL
1635 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001636 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
Bram Moolenaar89d40322006-08-29 15:30:07 +00001638 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001639 * function that's originally used to obtain the lines. This may be
1640 * nested several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001641 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001642 cp = (struct loop_cookie *)cookie;
1643 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 {
1645 gp = cp->getline;
1646 cp = cp->cookie;
1647 }
1648 return gp == func;
1649#else
Bram Moolenaar89d40322006-08-29 15:30:07 +00001650 return fgetline == func;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651#endif
1652}
1653
1654#if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1655/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001656 * If "fgetline" is get_loop_line(), return the cookie used by the original
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 * getline function. Otherwise return "cookie".
1658 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 void *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001660getline_cookie(fgetline, cookie)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001661 char_u *(*fgetline) __ARGS((int, void *, int)) UNUSED;
Bram Moolenaar89d40322006-08-29 15:30:07 +00001662 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663{
1664# ifdef FEAT_EVAL
1665 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001666 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
Bram Moolenaar89d40322006-08-29 15:30:07 +00001668 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001669 * cookie that's originally used to obtain the lines. This may be nested
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 * several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001671 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001672 cp = (struct loop_cookie *)cookie;
1673 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 {
1675 gp = cp->getline;
1676 cp = cp->cookie;
1677 }
1678 return cp;
1679# else
1680 return cookie;
1681# endif
1682}
1683#endif
1684
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001685
1686/*
1687 * Helper function to apply an offset for buffer commands, i.e. ":bdelete",
1688 * ":bwipeout", etc.
1689 * Returns the buffer number.
1690 */
1691 static int
1692compute_buffer_local_count(addr_type, lnum, offset)
1693 int addr_type;
1694 int lnum;
1695 int offset;
1696{
1697 buf_T *buf;
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001698 buf_T *nextbuf;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001699 int count = offset;
1700
1701 buf = firstbuf;
1702 while (buf->b_next != NULL && buf->b_fnum < lnum)
1703 buf = buf->b_next;
1704 while (count != 0)
1705 {
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001706 count += (offset < 0) ? 1 : -1;
1707 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next;
1708 if (nextbuf == NULL)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001709 break;
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001710 buf = nextbuf;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001711 if (addr_type == ADDR_LOADED_BUFFERS)
1712 /* skip over unloaded buffers */
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001713 while (buf->b_ml.ml_mfp == NULL)
1714 {
1715 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next;
1716 if (nextbuf == NULL)
1717 break;
1718 buf = nextbuf;
1719 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001720 }
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001721 /* we might have gone too far, last buffer is not loadedd */
1722 if (addr_type == ADDR_LOADED_BUFFERS)
1723 while (buf->b_ml.ml_mfp == NULL)
1724 {
1725 nextbuf = (offset >= 0) ? buf->b_prev : buf->b_next;
1726 if (nextbuf == NULL)
1727 break;
1728 buf = nextbuf;
1729 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001730 return buf->b_fnum;
1731}
1732
Bram Moolenaarf240e182014-11-27 18:33:02 +01001733#ifdef FEAT_WINDOWS
1734static int current_win_nr __ARGS((win_T *win));
1735static int current_tab_nr __ARGS((tabpage_T *tab));
1736
1737 static int
1738current_win_nr(win)
1739 win_T *win;
1740{
1741 win_T *wp;
1742 int nr = 0;
1743
1744 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1745 {
1746 ++nr;
1747 if (wp == win)
1748 break;
1749 }
1750 return nr;
1751}
1752
1753 static int
1754current_tab_nr(tab)
1755 tabpage_T *tab;
1756{
1757 tabpage_T *tp;
1758 int nr = 0;
1759
1760 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
1761 {
1762 ++nr;
1763 if (tp == tab)
1764 break;
1765 }
1766 return nr;
1767}
1768
1769# define CURRENT_WIN_NR current_win_nr(curwin)
1770# define LAST_WIN_NR current_win_nr(NULL)
1771# define CURRENT_TAB_NR current_tab_nr(curtab)
1772# define LAST_TAB_NR current_tab_nr(NULL)
1773#else
1774# define CURRENT_WIN_NR 1
1775# define LAST_WIN_NR 1
1776# define CURRENT_TAB_NR 1
1777# define LAST_TAB_NR 1
1778#endif
1779
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001780
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781/*
1782 * Execute one Ex command.
1783 *
1784 * If 'sourcing' is TRUE, the command will be included in the error message.
1785 *
1786 * 1. skip comment lines and leading space
1787 * 2. handle command modifiers
Bram Moolenaar1c40a662014-11-27 16:38:11 +01001788 * 3. find the command
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001789 * 4. parse range
Bram Moolenaar1c40a662014-11-27 16:38:11 +01001790 * 5. Parse the command.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001791 * 6. parse arguments
1792 * 7. switch on command name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001794 * Note: "fgetline" can be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 *
1796 * This function may be called recursively!
1797 */
1798#if (_MSC_VER == 1200)
1799/*
Bram Moolenaared203462004-06-16 11:19:22 +00001800 * Avoid optimisation bug in VC++ version 6.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 */
Bram Moolenaar281bdce2005-01-25 21:53:18 +00001802 #pragma optimize( "g", off )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803#endif
1804 static char_u *
1805do_one_cmd(cmdlinep, sourcing,
1806#ifdef FEAT_EVAL
1807 cstack,
1808#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001809 fgetline, cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 char_u **cmdlinep;
1811 int sourcing;
1812#ifdef FEAT_EVAL
1813 struct condstack *cstack;
1814#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001815 char_u *(*fgetline) __ARGS((int, void *, int));
1816 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817{
1818 char_u *p;
1819 linenr_T lnum;
1820 long n;
1821 char_u *errormsg = NULL; /* error message */
1822 exarg_T ea; /* Ex command arguments */
1823 long verbose_save = -1;
Bram Moolenaar8e258a42009-07-09 13:55:43 +00001824 int save_msg_scroll = msg_scroll;
1825 int save_msg_silent = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 int did_esilent = 0;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001827#ifdef HAVE_SANDBOX
1828 int did_sandbox = FALSE;
1829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 cmdmod_T save_cmdmod;
1831 int ni; /* set when Not Implemented */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001832 char_u *cmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833
1834 vim_memset(&ea, 0, sizeof(ea));
1835 ea.line1 = 1;
1836 ea.line2 = 1;
1837#ifdef FEAT_EVAL
1838 ++ex_nesting_level;
1839#endif
1840
Bram Moolenaar21691f82012-12-05 19:13:18 +01001841 /* When the last file has not been edited :q has to be typed twice. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 if (quitmore
1843#ifdef FEAT_EVAL
1844 /* avoid that a function call in 'statusline' does this */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001845 && !getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01001846#endif
1847#ifdef FEAT_AUTOCMD
Bram Moolenaar21691f82012-12-05 19:13:18 +01001848 /* avoid that an autocommand, e.g. QuitPre, does this */
1849 && !getline_equal(fgetline, cookie, getnextac)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850#endif
1851 )
1852 --quitmore;
1853
1854 /*
1855 * Reset browse, confirm, etc.. They are restored when returning, for
1856 * recursive calls.
1857 */
1858 save_cmdmod = cmdmod;
1859 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1860
Bram Moolenaarcbb37ad2006-08-16 15:04:21 +00001861 /* "#!anything" is handled like a comment. */
1862 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1863 goto doend;
1864
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 /*
1866 * Repeat until no more command modifiers are found.
1867 */
1868 ea.cmd = *cmdlinep;
1869 for (;;)
1870 {
1871/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001872 * 1. Skip comment lines and leading white space and colons.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 */
1874 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1875 ++ea.cmd;
1876
1877 /* in ex mode, an empty line works like :+ */
1878 if (*ea.cmd == NUL && exmode_active
Bram Moolenaar89d40322006-08-29 15:30:07 +00001879 && (getline_equal(fgetline, cookie, getexmodeline)
1880 || getline_equal(fgetline, cookie, getexline))
Bram Moolenaardf177f62005-02-22 08:39:57 +00001881 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 {
1883 ea.cmd = (char_u *)"+";
1884 ex_pressedreturn = TRUE;
1885 }
1886
1887 /* ignore comment and empty lines */
Bram Moolenaarf998c042007-11-20 11:31:26 +00001888 if (*ea.cmd == '"')
1889 goto doend;
1890 if (*ea.cmd == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001891 {
1892 ex_pressedreturn = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895
1896/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001897 * 2. Handle command modifiers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 */
1899 p = ea.cmd;
1900 if (VIM_ISDIGIT(*ea.cmd))
1901 p = skipwhite(skipdigits(ea.cmd));
1902 switch (*p)
1903 {
1904 /* When adding an entry, also modify cmd_exists(). */
1905 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1906 break;
1907#ifdef FEAT_WINDOWS
1908 cmdmod.split |= WSP_ABOVE;
1909#endif
1910 continue;
1911
1912 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1913 {
1914#ifdef FEAT_WINDOWS
1915 cmdmod.split |= WSP_BELOW;
1916#endif
1917 continue;
1918 }
1919 if (checkforcmd(&ea.cmd, "browse", 3))
1920 {
Bram Moolenaard812df62008-11-09 12:46:09 +00001921#ifdef FEAT_BROWSE_CMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 cmdmod.browse = TRUE;
1923#endif
1924 continue;
1925 }
1926 if (!checkforcmd(&ea.cmd, "botright", 2))
1927 break;
1928#ifdef FEAT_WINDOWS
1929 cmdmod.split |= WSP_BOT;
1930#endif
1931 continue;
1932
1933 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1934 break;
1935#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1936 cmdmod.confirm = TRUE;
1937#endif
1938 continue;
1939
1940 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1941 {
1942 cmdmod.keepmarks = TRUE;
1943 continue;
1944 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001945 if (checkforcmd(&ea.cmd, "keepalt", 5))
1946 {
1947 cmdmod.keepalt = TRUE;
1948 continue;
1949 }
Bram Moolenaara939e432013-11-09 05:30:26 +01001950 if (checkforcmd(&ea.cmd, "keeppatterns", 5))
1951 {
1952 cmdmod.keeppatterns = TRUE;
1953 continue;
1954 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1956 break;
1957 cmdmod.keepjumps = TRUE;
1958 continue;
1959
1960 /* ":hide" and ":hide | cmd" are not modifiers */
1961 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1962 || *p == NUL || ends_excmd(*p))
1963 break;
1964 ea.cmd = p;
1965 cmdmod.hide = TRUE;
1966 continue;
1967
1968 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1969 {
1970 cmdmod.lockmarks = TRUE;
1971 continue;
1972 }
1973
1974 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1975 break;
1976#ifdef FEAT_WINDOWS
1977 cmdmod.split |= WSP_ABOVE;
1978#endif
1979 continue;
1980
Bram Moolenaar5803ae62014-03-23 16:04:02 +01001981 case 'n': if (checkforcmd(&ea.cmd, "noautocmd", 3))
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001982 {
Bram Moolenaar5803ae62014-03-23 16:04:02 +01001983#ifdef FEAT_AUTOCMD
1984 if (cmdmod.save_ei == NULL)
1985 {
1986 /* Set 'eventignore' to "all". Restore the
1987 * existing option value later. */
1988 cmdmod.save_ei = vim_strsave(p_ei);
1989 set_string_option_direct((char_u *)"ei", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001990 (char_u *)"all", OPT_FREE, SID_NONE);
Bram Moolenaar5803ae62014-03-23 16:04:02 +01001991 }
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001992#endif
Bram Moolenaar5803ae62014-03-23 16:04:02 +01001993 continue;
1994 }
1995 if (!checkforcmd(&ea.cmd, "noswapfile", 6))
1996 break;
1997 cmdmod.noswapfile = TRUE;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001998 continue;
1999
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
2001 break;
2002#ifdef FEAT_WINDOWS
2003 cmdmod.split |= WSP_BELOW;
2004#endif
2005 continue;
2006
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002007 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
2008 {
2009#ifdef HAVE_SANDBOX
2010 if (!did_sandbox)
2011 ++sandbox;
2012 did_sandbox = TRUE;
2013#endif
2014 continue;
2015 }
2016 if (!checkforcmd(&ea.cmd, "silent", 3))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 break;
Bram Moolenaar8e258a42009-07-09 13:55:43 +00002018 if (save_msg_silent == -1)
2019 save_msg_silent = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 ++msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
2022 {
2023 /* ":silent!", but not "silent !cmd" */
2024 ea.cmd = skipwhite(ea.cmd + 1);
2025 ++emsg_silent;
2026 ++did_esilent;
2027 }
2028 continue;
2029
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002030 case 't': if (checkforcmd(&p, "tab", 3))
2031 {
2032#ifdef FEAT_WINDOWS
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002033 if (vim_isdigit(*ea.cmd))
2034 cmdmod.tab = atoi((char *)ea.cmd) + 1;
2035 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002036 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002037 ea.cmd = p;
2038#endif
2039 continue;
2040 }
2041 if (!checkforcmd(&ea.cmd, "topleft", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 break;
2043#ifdef FEAT_WINDOWS
2044 cmdmod.split |= WSP_TOP;
2045#endif
2046 continue;
2047
Bram Moolenaar8e258a42009-07-09 13:55:43 +00002048 case 'u': if (!checkforcmd(&ea.cmd, "unsilent", 3))
2049 break;
2050 if (save_msg_silent == -1)
2051 save_msg_silent = msg_silent;
2052 msg_silent = 0;
2053 continue;
2054
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
2056 {
2057#ifdef FEAT_VERTSPLIT
2058 cmdmod.split |= WSP_VERT;
2059#endif
2060 continue;
2061 }
2062 if (!checkforcmd(&p, "verbose", 4))
2063 break;
2064 if (verbose_save < 0)
2065 verbose_save = p_verbose;
Bram Moolenaared203462004-06-16 11:19:22 +00002066 if (vim_isdigit(*ea.cmd))
2067 p_verbose = atoi((char *)ea.cmd);
2068 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 p_verbose = 1;
2070 ea.cmd = p;
2071 continue;
2072 }
2073 break;
2074 }
2075
2076#ifdef FEAT_EVAL
2077 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
2078 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
2079#else
2080 ea.skip = (if_level > 0);
2081#endif
2082
2083#ifdef FEAT_EVAL
Bram Moolenaar05159a02005-02-26 23:04:13 +00002084# ifdef FEAT_PROFILE
2085 /* Count this line for profiling if ea.skip is FALSE. */
Bram Moolenaar371d5402006-03-20 21:47:49 +00002086 if (do_profiling == PROF_YES && !ea.skip)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002087 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002088 if (getline_equal(fgetline, cookie, get_func_line))
2089 func_line_exec(getline_cookie(fgetline, cookie));
2090 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +00002091 script_line_exec();
2092 }
2093#endif
2094
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 /* May go to debug mode. If this happens and the ">quit" debug command is
2096 * used, throw an interrupt exception and skip the next command. */
2097 dbg_check_breakpoint(&ea);
2098 if (!ea.skip && got_int)
2099 {
2100 ea.skip = TRUE;
2101 (void)do_intthrow(cstack);
2102 }
2103#endif
2104
2105/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002106 * 3. Skip over the range to find the command. Let "p" point to after it.
2107 *
2108 * We need the command to know what kind of range it uses.
2109 */
2110 cmd = ea.cmd;
2111 ea.cmd = skip_range(ea.cmd, NULL);
2112 if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
2113 ea.cmd = skipwhite(ea.cmd + 1);
2114 p = find_command(&ea, NULL);
2115
2116/*
2117 * 4. parse a range specifier of the form: addr [,addr] [;addr] ..
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 *
2119 * where 'addr' is:
2120 *
2121 * % (entire file)
2122 * $ [+-NUM]
2123 * 'x [+-NUM] (where x denotes a currently defined mark)
2124 * . [+-NUM]
2125 * [+-NUM]..
2126 * NUM
2127 *
2128 * The ea.cmd pointer is updated to point to the first character following the
2129 * range spec. If an initial address is found, but no second, the upper bound
2130 * is equal to the lower.
2131 */
2132
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002133 /* ea.addr_type for user commands is set by find_ucmd */
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01002134 if (!IS_USER_CMDIDX(ea.cmdidx))
2135 {
2136 if (ea.cmdidx != CMD_SIZE)
2137 ea.addr_type = cmdnames[(int)ea.cmdidx].cmd_addr_type;
2138 else
2139 ea.addr_type = ADDR_LINES;
2140
2141#ifdef FEAT_WINDOWS
2142 /* :wincmd range depends on the argument. */
Bram Moolenaar164f3262015-01-14 21:22:01 +01002143 if (ea.cmdidx == CMD_wincmd && p != NULL)
2144 get_wincmd_addr_type(skipwhite(p), &ea);
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01002145#endif
2146 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002147
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 /* repeat for all ',' or ';' separated addresses */
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01002149 ea.cmd = cmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 for (;;)
2151 {
2152 ea.line1 = ea.line2;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002153 switch (ea.addr_type)
2154 {
2155 case ADDR_LINES:
2156 /* default is current line number */
2157 ea.line2 = curwin->w_cursor.lnum;
2158 break;
2159 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01002160 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002161 ea.line2 = lnum;
2162 break;
2163 case ADDR_ARGUMENTS:
2164 ea.line2 = curwin->w_arg_idx + 1;
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01002165 if (ea.line2 > ARGCOUNT)
2166 ea.line2 = ARGCOUNT;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002167 break;
2168 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002169 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002170 ea.line2 = curbuf->b_fnum;
2171 break;
2172 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01002173 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002174 ea.line2 = lnum;
2175 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002176#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02002177 case ADDR_QUICKFIX:
2178 ea.line2 = qf_get_cur_valid_idx(&ea);
2179 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002180#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 ea.cmd = skipwhite(ea.cmd);
Bram Moolenaaraa23b372015-09-08 18:46:31 +02002183 lnum = get_address(&ea, &ea.cmd, ea.addr_type, ea.skip, ea.addr_count == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 if (ea.cmd == NULL) /* error detected */
2185 goto doend;
2186 if (lnum == MAXLNUM)
2187 {
2188 if (*ea.cmd == '%') /* '%' - all lines */
2189 {
2190 ++ea.cmd;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002191 switch (ea.addr_type)
2192 {
2193 case ADDR_LINES:
2194 ea.line1 = 1;
2195 ea.line2 = curbuf->b_ml.ml_line_count;
2196 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002197 case ADDR_LOADED_BUFFERS:
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01002198 {
2199 buf_T *buf = firstbuf;
2200
2201 while (buf->b_next != NULL
2202 && buf->b_ml.ml_mfp == NULL)
2203 buf = buf->b_next;
2204 ea.line1 = buf->b_fnum;
2205 buf = lastbuf;
2206 while (buf->b_prev != NULL
2207 && buf->b_ml.ml_mfp == NULL)
2208 buf = buf->b_prev;
2209 ea.line2 = buf->b_fnum;
2210 break;
2211 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002212 case ADDR_BUFFERS:
Bram Moolenaar4d84d932014-11-30 14:50:16 +01002213 ea.line1 = firstbuf->b_fnum;
2214 ea.line2 = lastbuf->b_fnum;
2215 break;
2216 case ADDR_WINDOWS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002217 case ADDR_TABS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002218 if (IS_USER_CMDIDX(ea.cmdidx))
2219 {
2220 ea.line1 = 1;
2221 ea.line2 = ea.addr_type == ADDR_WINDOWS
2222 ? LAST_WIN_NR : LAST_TAB_NR;
2223 }
2224 else
2225 {
2226 /* there is no Vim command which uses '%' and
2227 * ADDR_WINDOWS or ADDR_TABS */
2228 errormsg = (char_u *)_(e_invrange);
2229 goto doend;
2230 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002231 break;
2232 case ADDR_ARGUMENTS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002233 if (ARGCOUNT == 0)
2234 ea.line1 = ea.line2 = 0;
2235 else
2236 {
2237 ea.line1 = 1;
2238 ea.line2 = ARGCOUNT;
2239 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002240 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002241#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02002242 case ADDR_QUICKFIX:
2243 ea.line1 = 1;
2244 ea.line2 = qf_get_size(&ea);
2245 if (ea.line2 == 0)
2246 ea.line2 = 1;
2247 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002248#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002249 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 ++ea.addr_count;
2251 }
2252 /* '*' - visual area */
2253 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
2254 {
2255 pos_T *fp;
2256
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002257 if (ea.addr_type != ADDR_LINES)
2258 {
2259 errormsg = (char_u *)_(e_invrange);
2260 goto doend;
2261 }
2262
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 ++ea.cmd;
2264 if (!ea.skip)
2265 {
2266 fp = getmark('<', FALSE);
2267 if (check_mark(fp) == FAIL)
2268 goto doend;
2269 ea.line1 = fp->lnum;
2270 fp = getmark('>', FALSE);
2271 if (check_mark(fp) == FAIL)
2272 goto doend;
2273 ea.line2 = fp->lnum;
2274 ++ea.addr_count;
2275 }
2276 }
2277 }
2278 else
2279 ea.line2 = lnum;
2280 ea.addr_count++;
2281
2282 if (*ea.cmd == ';')
2283 {
2284 if (!ea.skip)
2285 curwin->w_cursor.lnum = ea.line2;
2286 }
2287 else if (*ea.cmd != ',')
2288 break;
2289 ++ea.cmd;
2290 }
2291
2292 /* One address given: set start and end lines */
2293 if (ea.addr_count == 1)
2294 {
2295 ea.line1 = ea.line2;
2296 /* ... but only implicit: really no address given */
2297 if (lnum == MAXLNUM)
2298 ea.addr_count = 0;
2299 }
2300
2301 /* Don't leave the cursor on an illegal line (caused by ';') */
2302 check_cursor_lnum();
2303
2304/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002305 * 5. Parse the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 */
2307
2308 /*
2309 * Skip ':' and any white space
2310 */
2311 ea.cmd = skipwhite(ea.cmd);
2312 while (*ea.cmd == ':')
2313 ea.cmd = skipwhite(ea.cmd + 1);
2314
2315 /*
2316 * If we got a line, but no command, then go to the line.
2317 * If we find a '|' or '\n' we set ea.nextcmd.
2318 */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002319 if (*ea.cmd == NUL || *ea.cmd == '"'
2320 || (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 {
2322 /*
2323 * strange vi behaviour:
2324 * ":3" jumps to line 3
2325 * ":3|..." prints line 3
2326 * ":|" prints current line
2327 */
2328 if (ea.skip) /* skip this if inside :if */
2329 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002330 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 {
2332 ea.cmdidx = CMD_print;
2333 ea.argt = RANGE+COUNT+TRLBAR;
2334 if ((errormsg = invalid_range(&ea)) == NULL)
2335 {
2336 correct_range(&ea);
2337 ex_print(&ea);
2338 }
2339 }
2340 else if (ea.addr_count != 0)
2341 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002342 if (ea.line2 > curbuf->b_ml.ml_line_count)
2343 {
2344 /* With '-' in 'cpoptions' a line number past the file is an
2345 * error, otherwise put it at the end of the file. */
2346 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2347 ea.line2 = -1;
2348 else
2349 ea.line2 = curbuf->b_ml.ml_line_count;
2350 }
2351
2352 if (ea.line2 < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002353 errormsg = (char_u *)_(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 else
2355 {
2356 if (ea.line2 == 0)
2357 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 else
2359 curwin->w_cursor.lnum = ea.line2;
2360 beginline(BL_SOL | BL_FIX);
2361 }
2362 }
2363 goto doend;
2364 }
2365
Bram Moolenaard5005162014-08-22 23:05:54 +02002366#ifdef FEAT_AUTOCMD
2367 /* If this looks like an undefined user command and there are CmdUndefined
2368 * autocommands defined, trigger the matching autocommands. */
2369 if (p != NULL && ea.cmdidx == CMD_SIZE && !ea.skip
2370 && ASCII_ISUPPER(*ea.cmd)
2371 && has_cmdundefined())
2372 {
Bram Moolenaard5005162014-08-22 23:05:54 +02002373 int ret;
2374
Bram Moolenaar5a31b462014-08-23 14:16:20 +02002375 p = ea.cmd;
Bram Moolenaard5005162014-08-22 23:05:54 +02002376 while (ASCII_ISALNUM(*p))
2377 ++p;
Bram Moolenaar120f4a82014-09-09 12:22:06 +02002378 p = vim_strnsave(ea.cmd, (int)(p - ea.cmd));
Bram Moolenaard5005162014-08-22 23:05:54 +02002379 ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL);
2380 vim_free(p);
Bram Moolenaar829aef12015-07-28 14:25:48 +02002381 /* If the autocommands did something and didn't cause an error, try
2382 * finding the command again. */
2383 p = (ret && !aborting()) ? find_command(&ea, NULL) : NULL;
Bram Moolenaard5005162014-08-22 23:05:54 +02002384 }
2385#endif
2386
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387#ifdef FEAT_USR_CMDS
2388 if (p == NULL)
2389 {
2390 if (!ea.skip)
2391 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2392 goto doend;
2393 }
2394 /* Check for wrong commands. */
2395 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2396 {
2397 errormsg = uc_fun_cmd();
2398 goto doend;
2399 }
2400#endif
2401 if (ea.cmdidx == CMD_SIZE)
2402 {
2403 if (!ea.skip)
2404 {
2405 STRCPY(IObuff, _("E492: Not an editor command"));
2406 if (!sourcing)
Bram Moolenaara6f4d612011-09-21 19:10:46 +02002407 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 errormsg = IObuff;
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02002409 did_emsg_syntax = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 }
2411 goto doend;
2412 }
2413
Bram Moolenaar958636c2014-10-21 20:01:58 +02002414 ni = (!IS_USER_CMDIDX(ea.cmdidx)
2415 && (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00002416#ifdef HAVE_EX_SCRIPT_NI
2417 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2418#endif
2419 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420
2421#ifndef FEAT_EVAL
2422 /*
2423 * When the expression evaluation is disabled, recognize the ":if" and
2424 * ":endif" commands and ignore everything in between it.
2425 */
2426 if (ea.cmdidx == CMD_if)
2427 ++if_level;
2428 if (if_level)
2429 {
2430 if (ea.cmdidx == CMD_endif)
2431 --if_level;
2432 goto doend;
2433 }
2434
2435#endif
2436
Bram Moolenaar196b3b02008-06-20 16:51:41 +00002437 /* forced commands */
2438 if (*p == '!' && ea.cmdidx != CMD_substitute
2439 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 {
2441 ++p;
2442 ea.forceit = TRUE;
2443 }
2444 else
2445 ea.forceit = FALSE;
2446
2447/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01002448 * 6. Parse arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02002450 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002451 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452
2453 if (!ea.skip)
2454 {
2455#ifdef HAVE_SANDBOX
2456 if (sandbox != 0 && !(ea.argt & SBOXOK))
2457 {
2458 /* Command not allowed in sandbox. */
2459 errormsg = (char_u *)_(e_sandbox);
2460 goto doend;
2461 }
2462#endif
2463 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2464 {
2465 /* Command not allowed in non-'modifiable' buffer */
2466 errormsg = (char_u *)_(e_modifiable);
2467 goto doend;
2468 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002469
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002470 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar958636c2014-10-21 20:01:58 +02002471 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002473 /* Command not allowed when editing the command line. */
2474#ifdef FEAT_CMDWIN
2475 if (cmdwin_type != 0)
2476 errormsg = (char_u *)_(e_cmdwin);
2477 else
2478#endif
2479 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 goto doend;
2481 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002482#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002483 /* Disallow editing another buffer when "curbuf_lock" is set.
2484 * Do allow ":edit" (check for argument later).
2485 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002486 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002487 && ea.cmdidx != CMD_edit
2488 && ea.cmdidx != CMD_checktime
Bram Moolenaar958636c2014-10-21 20:01:58 +02002489 && !IS_USER_CMDIDX(ea.cmdidx)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002490 && curbuf_locked())
2491 goto doend;
2492#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493
2494 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2495 {
2496 /* no range allowed */
2497 errormsg = (char_u *)_(e_norange);
2498 goto doend;
2499 }
2500 }
2501
2502 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2503 {
2504 errormsg = (char_u *)_(e_nobang);
2505 goto doend;
2506 }
2507
2508 /*
2509 * Don't complain about the range if it is not used
2510 * (could happen if line_count is accidentally set to 0).
2511 */
2512 if (!ea.skip && !ni)
2513 {
2514 /*
2515 * If the range is backwards, ask for confirmation and, if given, swap
2516 * ea.line1 & ea.line2 so it's forwards again.
2517 * When global command is busy, don't ask, will fail below.
2518 */
2519 if (!global_busy && ea.line1 > ea.line2)
2520 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002521 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002523 if (sourcing || exmode_active)
2524 {
2525 errormsg = (char_u *)_("E493: Backwards range given");
2526 goto doend;
2527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 if (ask_yesno((char_u *)
2529 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002530 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 }
2532 lnum = ea.line1;
2533 ea.line1 = ea.line2;
2534 ea.line2 = lnum;
2535 }
2536 if ((errormsg = invalid_range(&ea)) != NULL)
2537 goto doend;
2538 }
2539
2540 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2541 ea.line2 = 1;
2542
2543 correct_range(&ea);
2544
2545#ifdef FEAT_FOLDING
Bram Moolenaara3306952016-01-02 21:41:06 +01002546 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy
2547 && ea.addr_type == ADDR_LINES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 {
2549 /* Put the first line at the start of a closed fold, put the last line
2550 * at the end of a closed fold. */
2551 (void)hasFolding(ea.line1, &ea.line1, NULL);
2552 (void)hasFolding(ea.line2, NULL, &ea.line2);
2553 }
2554#endif
2555
2556#ifdef FEAT_QUICKFIX
2557 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002558 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 * option here, so things like % get expanded.
2560 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002561 p = replace_makeprg(&ea, p, cmdlinep);
2562 if (p == NULL)
2563 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564#endif
2565
2566 /*
2567 * Skip to start of argument.
2568 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2569 */
2570 if (ea.cmdidx == CMD_bang)
2571 ea.arg = p;
2572 else
2573 ea.arg = skipwhite(p);
2574
2575 /*
2576 * Check for "++opt=val" argument.
2577 * Must be first, allow ":w ++enc=utf8 !cmd"
2578 */
2579 if (ea.argt & ARGOPT)
2580 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2581 if (getargopt(&ea) == FAIL && !ni)
2582 {
2583 errormsg = (char_u *)_(e_invarg);
2584 goto doend;
2585 }
2586
2587 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2588 {
2589 if (*ea.arg == '>') /* append */
2590 {
2591 if (*++ea.arg != '>') /* typed wrong */
2592 {
2593 errormsg = (char_u *)_("E494: Use w or w>>");
2594 goto doend;
2595 }
2596 ea.arg = skipwhite(ea.arg + 1);
2597 ea.append = TRUE;
2598 }
2599 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2600 {
2601 ++ea.arg;
2602 ea.usefilter = TRUE;
2603 }
2604 }
2605
2606 if (ea.cmdidx == CMD_read)
2607 {
2608 if (ea.forceit)
2609 {
2610 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2611 ea.forceit = FALSE;
2612 }
2613 else if (*ea.arg == '!') /* :r !filter */
2614 {
2615 ++ea.arg;
2616 ea.usefilter = TRUE;
2617 }
2618 }
2619
2620 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2621 {
2622 ea.amount = 1;
2623 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2624 {
2625 ++ea.arg;
2626 ++ea.amount;
2627 }
2628 ea.arg = skipwhite(ea.arg);
2629 }
2630
2631 /*
2632 * Check for "+command" argument, before checking for next command.
2633 * Don't do this for ":read !cmd" and ":write !cmd".
2634 */
2635 if ((ea.argt & EDITCMD) && !ea.usefilter)
2636 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2637
2638 /*
2639 * Check for '|' to separate commands and '"' to start comments.
2640 * Don't do this for ":read !cmd" and ":write !cmd".
2641 */
2642 if ((ea.argt & TRLBAR) && !ea.usefilter)
2643 separate_nextcmd(&ea);
2644
2645 /*
2646 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002647 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2648 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002650 else if (ea.cmdidx == CMD_bang
2651 || ea.cmdidx == CMD_global
2652 || ea.cmdidx == CMD_vglobal
2653 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002654 {
2655 for (p = ea.arg; *p; ++p)
2656 {
2657 /* Remove one backslash before a newline, so that it's possible to
2658 * pass a newline to the shell and also a newline that is preceded
2659 * with a backslash. This makes it impossible to end a shell
2660 * command in a backslash, but that doesn't appear useful.
2661 * Halving the number of backslashes is incompatible with previous
2662 * versions. */
2663 if (*p == '\\' && p[1] == '\n')
Bram Moolenaara7241f52008-06-24 20:39:31 +00002664 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002665 else if (*p == '\n')
2666 {
2667 ea.nextcmd = p + 1;
2668 *p = NUL;
2669 break;
2670 }
2671 }
2672 }
2673
2674 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2675 {
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002676 buf_T *buf;
2677
Bram Moolenaar071d4272004-06-13 20:20:40 +00002678 ea.line1 = 1;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002679 switch (ea.addr_type)
2680 {
2681 case ADDR_LINES:
2682 ea.line2 = curbuf->b_ml.ml_line_count;
2683 break;
2684 case ADDR_LOADED_BUFFERS:
2685 buf = firstbuf;
2686 while (buf->b_next != NULL && buf->b_ml.ml_mfp == NULL)
2687 buf = buf->b_next;
2688 ea.line1 = buf->b_fnum;
2689 buf = lastbuf;
2690 while (buf->b_prev != NULL && buf->b_ml.ml_mfp == NULL)
2691 buf = buf->b_prev;
2692 ea.line2 = buf->b_fnum;
2693 break;
2694 case ADDR_BUFFERS:
2695 ea.line1 = firstbuf->b_fnum;
2696 ea.line2 = lastbuf->b_fnum;
2697 break;
2698 case ADDR_WINDOWS:
2699 ea.line2 = LAST_WIN_NR;
2700 break;
2701 case ADDR_TABS:
2702 ea.line2 = LAST_TAB_NR;
2703 break;
2704 case ADDR_ARGUMENTS:
2705 if (ARGCOUNT == 0)
2706 ea.line1 = ea.line2 = 0;
2707 else
2708 ea.line2 = ARGCOUNT;
2709 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002710#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02002711 case ADDR_QUICKFIX:
2712 ea.line2 = qf_get_size(&ea);
2713 if (ea.line2 == 0)
2714 ea.line2 = 1;
2715 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002716#endif
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002717 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 }
2719
2720 /* accept numbered register only when no count allowed (:put) */
2721 if ( (ea.argt & REGSTR)
2722 && *ea.arg != NUL
Bram Moolenaar958636c2014-10-21 20:01:58 +02002723 /* Do not allow register = for user commands */
2724 && (!IS_USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2726 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002727#ifndef FEAT_CLIPBOARD
2728 /* check these explicitly for a more specific error message */
2729 if (*ea.arg == '*' || *ea.arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002731 errormsg = (char_u *)_(e_invalidreg);
2732 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 }
2734#endif
Bram Moolenaar958636c2014-10-21 20:01:58 +02002735 if (valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2736 && !IS_USER_CMDIDX(ea.cmdidx))))
Bram Moolenaar85de2062011-05-05 14:26:41 +02002737 {
2738 ea.regname = *ea.arg++;
2739#ifdef FEAT_EVAL
2740 /* for '=' register: accept the rest of the line as an expression */
2741 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2742 {
2743 set_expr_line(vim_strsave(ea.arg));
2744 ea.arg += STRLEN(ea.arg);
2745 }
2746#endif
2747 ea.arg = skipwhite(ea.arg);
2748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 }
2750
2751 /*
2752 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2753 * count, it's a buffer name.
2754 */
2755 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2756 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2757 || vim_iswhite(*p)))
2758 {
2759 n = getdigits(&ea.arg);
2760 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002761 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 {
2763 errormsg = (char_u *)_(e_zerocount);
2764 goto doend;
2765 }
2766 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2767 {
2768 ea.line2 = n;
2769 if (ea.addr_count == 0)
2770 ea.addr_count = 1;
2771 }
2772 else
2773 {
2774 ea.line1 = ea.line2;
2775 ea.line2 += n - 1;
2776 ++ea.addr_count;
2777 /*
2778 * Be vi compatible: no error message for out of range.
2779 */
2780 if (ea.line2 > curbuf->b_ml.ml_line_count)
2781 ea.line2 = curbuf->b_ml.ml_line_count;
2782 }
2783 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002784
2785 /*
2786 * Check for flags: 'l', 'p' and '#'.
2787 */
2788 if (ea.argt & EXFLAGS)
2789 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002791 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002792 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 {
2794 errormsg = (char_u *)_(e_trailing);
2795 goto doend;
2796 }
2797
2798 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2799 {
2800 errormsg = (char_u *)_(e_argreq);
2801 goto doend;
2802 }
2803
2804#ifdef FEAT_EVAL
2805 /*
2806 * Skip the command when it's not going to be executed.
2807 * The commands like :if, :endif, etc. always need to be executed.
2808 * Also make an exception for commands that handle a trailing command
2809 * themselves.
2810 */
2811 if (ea.skip)
2812 {
2813 switch (ea.cmdidx)
2814 {
2815 /* commands that need evaluation */
2816 case CMD_while:
2817 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002818 case CMD_for:
2819 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 case CMD_if:
2821 case CMD_elseif:
2822 case CMD_else:
2823 case CMD_endif:
2824 case CMD_try:
2825 case CMD_catch:
2826 case CMD_finally:
2827 case CMD_endtry:
2828 case CMD_function:
2829 break;
2830
2831 /* Commands that handle '|' themselves. Check: A command should
2832 * either have the TRLBAR flag, appear in this list or appear in
2833 * the list at ":help :bar". */
2834 case CMD_aboveleft:
2835 case CMD_and:
2836 case CMD_belowright:
2837 case CMD_botright:
2838 case CMD_browse:
2839 case CMD_call:
2840 case CMD_confirm:
2841 case CMD_delfunction:
2842 case CMD_djump:
2843 case CMD_dlist:
2844 case CMD_dsearch:
2845 case CMD_dsplit:
2846 case CMD_echo:
2847 case CMD_echoerr:
2848 case CMD_echomsg:
2849 case CMD_echon:
2850 case CMD_execute:
2851 case CMD_help:
2852 case CMD_hide:
2853 case CMD_ijump:
2854 case CMD_ilist:
2855 case CMD_isearch:
2856 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002857 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 case CMD_keepjumps:
2859 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01002860 case CMD_keeppatterns:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 case CMD_leftabove:
2862 case CMD_let:
2863 case CMD_lockmarks:
Bram Moolenaar0ba04292010-07-14 23:23:17 +02002864 case CMD_lua:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002866 case CMD_mzscheme:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01002867 case CMD_noautocmd:
2868 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 case CMD_perl:
2870 case CMD_psearch:
2871 case CMD_python:
Bram Moolenaar368373e2010-07-19 20:46:22 +02002872 case CMD_py3:
Bram Moolenaarb6590522010-07-21 16:00:43 +02002873 case CMD_python3:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874 case CMD_return:
2875 case CMD_rightbelow:
2876 case CMD_ruby:
2877 case CMD_silent:
2878 case CMD_smagic:
2879 case CMD_snomagic:
2880 case CMD_substitute:
2881 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002882 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883 case CMD_tcl:
2884 case CMD_throw:
2885 case CMD_tilde:
2886 case CMD_topleft:
2887 case CMD_unlet:
2888 case CMD_verbose:
2889 case CMD_vertical:
Bram Moolenaar12bde492011-06-13 01:19:56 +02002890 case CMD_wincmd:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 break;
2892
2893 default: goto doend;
2894 }
2895 }
2896#endif
2897
2898 if (ea.argt & XFILE)
2899 {
2900 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2901 goto doend;
2902 }
2903
2904#ifdef FEAT_LISTCMDS
2905 /*
2906 * Accept buffer name. Cannot be used at the same time with a buffer
2907 * number. Don't do this for a user command.
2908 */
2909 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
Bram Moolenaar958636c2014-10-21 20:01:58 +02002910 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 {
2912 /*
2913 * :bdelete, :bwipeout and :bunload take several arguments, separated
2914 * by spaces: find next space (skipping over escaped characters).
2915 * The others take one argument: ignore trailing spaces.
2916 */
2917 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2918 || ea.cmdidx == CMD_bunload)
2919 p = skiptowhite_esc(ea.arg);
2920 else
2921 {
2922 p = ea.arg + STRLEN(ea.arg);
2923 while (p > ea.arg && vim_iswhite(p[-1]))
2924 --p;
2925 }
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002926 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0,
2927 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928 if (ea.line2 < 0) /* failed */
2929 goto doend;
2930 ea.addr_count = 1;
2931 ea.arg = skipwhite(p);
2932 }
2933#endif
2934
2935/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01002936 * 7. Switch on command name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 *
2938 * The "ea" structure holds the arguments that can be used.
2939 */
2940 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002941 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 ea.cookie = cookie;
2943#ifdef FEAT_EVAL
2944 ea.cstack = cstack;
2945#endif
2946
2947#ifdef FEAT_USR_CMDS
Bram Moolenaar958636c2014-10-21 20:01:58 +02002948 if (IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 {
2950 /*
2951 * Execute a user-defined command.
2952 */
2953 do_ucmd(&ea);
2954 }
2955 else
2956#endif
2957 {
2958 /*
2959 * Call the function to execute the command.
2960 */
2961 ea.errmsg = NULL;
2962 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2963 if (ea.errmsg != NULL)
2964 errormsg = (char_u *)_(ea.errmsg);
2965 }
2966
2967#ifdef FEAT_EVAL
2968 /*
2969 * If the command just executed called do_cmdline(), any throw or ":return"
2970 * or ":finish" encountered there must also check the cstack of the still
2971 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2972 * exception, or reanimate a returned function or finished script file and
2973 * return or finish it again.
2974 */
2975 if (need_rethrow)
2976 do_throw(cstack);
2977 else if (check_cstack)
2978 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002979 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002981 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 && current_func_returned())
2983 do_return(&ea, TRUE, FALSE, NULL);
2984 }
2985 need_rethrow = check_cstack = FALSE;
2986#endif
2987
2988doend:
2989 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2990 curwin->w_cursor.lnum = 1;
2991
2992 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2993 {
2994 if (sourcing)
2995 {
2996 if (errormsg != IObuff)
2997 {
2998 STRCPY(IObuff, errormsg);
2999 errormsg = IObuff;
3000 }
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003001 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 }
3003 emsg(errormsg);
3004 }
3005#ifdef FEAT_EVAL
3006 do_errthrow(cstack,
Bram Moolenaar958636c2014-10-21 20:01:58 +02003007 (ea.cmdidx != CMD_SIZE && !IS_USER_CMDIDX(ea.cmdidx))
3008 ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009#endif
3010
3011 if (verbose_save >= 0)
3012 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00003013#ifdef FEAT_AUTOCMD
3014 if (cmdmod.save_ei != NULL)
3015 {
3016 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003017 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
3018 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00003019 free_string_option(cmdmod.save_ei);
3020 }
3021#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022
3023 cmdmod = save_cmdmod;
3024
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003025 if (save_msg_silent != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 {
3027 /* messages could be enabled for a serious error, need to check if the
3028 * counters don't become negative */
Bram Moolenaarbecf4282009-09-30 11:24:36 +00003029 if (!did_emsg || msg_silent > save_msg_silent)
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003030 msg_silent = save_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031 emsg_silent -= did_esilent;
3032 if (emsg_silent < 0)
3033 emsg_silent = 0;
3034 /* Restore msg_scroll, it's set by file I/O commands, even when no
3035 * message is actually displayed. */
3036 msg_scroll = save_msg_scroll;
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003037
3038 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
3039 * somewhere in the line. Put it back in the first column. */
3040 if (redirecting())
3041 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042 }
3043
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003044#ifdef HAVE_SANDBOX
3045 if (did_sandbox)
3046 --sandbox;
3047#endif
3048
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
3050 ea.nextcmd = NULL;
3051
3052#ifdef FEAT_EVAL
3053 --ex_nesting_level;
3054#endif
3055
3056 return ea.nextcmd;
3057}
3058#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00003059 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060#endif
3061
3062/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003063 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 * If there is a match advance "pp" to the argument and return TRUE.
3065 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003066 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003068 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069 char *cmd; /* name of command */
3070 int len; /* required length */
3071{
3072 int i;
3073
3074 for (i = 0; cmd[i] != NUL; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003075 if (((char_u *)cmd)[i] != (*pp)[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 break;
3077 if (i >= len && !isalpha((*pp)[i]))
3078 {
3079 *pp = skipwhite(*pp + i);
3080 return TRUE;
3081 }
3082 return FALSE;
3083}
3084
3085/*
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003086 * Append "cmd" to the error message in IObuff.
3087 * Takes care of limiting the length and handling 0xa0, which would be
3088 * invisible otherwise.
3089 */
3090 static void
3091append_command(cmd)
3092 char_u *cmd;
3093{
3094 char_u *s = cmd;
3095 char_u *d;
3096
3097 STRCAT(IObuff, ": ");
3098 d = IObuff + STRLEN(IObuff);
3099 while (*s != NUL && d - IObuff < IOSIZE - 7)
3100 {
3101 if (
3102#ifdef FEAT_MBYTE
3103 enc_utf8 ? (s[0] == 0xc2 && s[1] == 0xa0) :
3104#endif
3105 *s == 0xa0)
3106 {
3107 s +=
3108#ifdef FEAT_MBYTE
3109 enc_utf8 ? 2 :
3110#endif
3111 1;
3112 STRCPY(d, "<a0>");
3113 d += 4;
3114 }
3115 else
3116 MB_COPY_CHAR(s, d);
3117 }
3118 *d = NUL;
3119}
3120
3121/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003123 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003125 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 * Returns NULL for an ambiguous user command.
3127 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 static char_u *
3129find_command(eap, full)
3130 exarg_T *eap;
Bram Moolenaar78a15312009-05-15 19:33:18 +00003131 int *full UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132{
3133 int len;
3134 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003135 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136
3137 /*
3138 * Isolate the command and search for it in the command table.
Bram Moolenaar81870892007-11-11 18:17:28 +00003139 * Exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 * - the 'k' command can directly be followed by any character.
3141 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003142 * but :sre[wind] is another command, as are :scr[iptnames],
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00003144 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 */
3146 p = eap->cmd;
3147 if (*p == 'k')
3148 {
3149 eap->cmdidx = CMD_k;
3150 ++p;
3151 }
3152 else if (p[0] == 's'
Bram Moolenaar204b93f2015-08-04 22:02:51 +02003153 && ((p[1] == 'c' && (p[2] == NUL || (p[2] != 's' && p[2] != 'r'
3154 && (p[3] == NUL || (p[3] != 'i' && p[4] != 'p')))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 || p[1] == 'g'
3156 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
3157 || p[1] == 'I'
3158 || (p[1] == 'r' && p[2] != 'e')))
3159 {
3160 eap->cmdidx = CMD_substitute;
3161 ++p;
3162 }
3163 else
3164 {
3165 while (ASCII_ISALPHA(*p))
3166 ++p;
Bram Moolenaarb6590522010-07-21 16:00:43 +02003167 /* for python 3.x support ":py3", ":python3", ":py3file", etc. */
Bram Moolenaar55d5c032010-07-17 23:52:29 +02003168 if (eap->cmd[0] == 'p' && eap->cmd[1] == 'y')
Bram Moolenaarb6590522010-07-21 16:00:43 +02003169 while (ASCII_ISALNUM(*p))
3170 ++p;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02003171
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 /* check for non-alpha command */
3173 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3174 ++p;
3175 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003176 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
3177 {
3178 /* Check for ":dl", ":dell", etc. to ":deletel": that's
3179 * :delete with the 'l' flag. Same for 'p'. */
3180 for (i = 0; i < len; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003181 if (eap->cmd[i] != ((char_u *)"delete")[i])
Bram Moolenaardf177f62005-02-22 08:39:57 +00003182 break;
3183 if (i == len - 1)
3184 {
3185 --len;
3186 if (p[-1] == 'l')
3187 eap->flags |= EXFLAG_LIST;
3188 else
3189 eap->flags |= EXFLAG_PRINT;
3190 }
3191 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192
3193 if (ASCII_ISLOWER(*eap->cmd))
3194 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
3195 else
3196 eap->cmdidx = cmdidxs[26];
3197
3198 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
3199 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
3200 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
3201 (size_t)len) == 0)
3202 {
3203#ifdef FEAT_EVAL
3204 if (full != NULL
3205 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
3206 *full = TRUE;
3207#endif
3208 break;
3209 }
3210
3211#ifdef FEAT_USR_CMDS
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01003212 /* Look for a user defined command as a last resort. Let ":Print" be
3213 * overruled by a user defined command. */
3214 if ((eap->cmdidx == CMD_SIZE || eap->cmdidx == CMD_Print)
3215 && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003217 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 while (ASCII_ISALNUM(*p))
3219 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003220 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003221 }
3222#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003223 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 eap->cmdidx = CMD_SIZE;
3225 }
3226
3227 return p;
3228}
3229
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003230#ifdef FEAT_USR_CMDS
3231/*
3232 * Search for a user command that matches "eap->cmd".
3233 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
3234 * Return a pointer to just after the command.
3235 * Return NULL if there is no matching command.
3236 */
3237 static char_u *
3238find_ucmd(eap, p, full, xp, compl)
3239 exarg_T *eap;
3240 char_u *p; /* end of the command (possibly including count) */
3241 int *full; /* set to TRUE for a full match */
3242 expand_T *xp; /* used for completion, NULL otherwise */
3243 int *compl; /* completion flags or NULL */
3244{
3245 int len = (int)(p - eap->cmd);
3246 int j, k, matchlen = 0;
3247 ucmd_T *uc;
3248 int found = FALSE;
3249 int possible = FALSE;
3250 char_u *cp, *np; /* Point into typed cmd and test name */
3251 garray_T *gap;
3252 int amb_local = FALSE; /* Found ambiguous buffer-local command,
3253 only full match global is accepted. */
3254
3255 /*
3256 * Look for buffer-local user commands first, then global ones.
3257 */
3258 gap = &curbuf->b_ucmds;
3259 for (;;)
3260 {
3261 for (j = 0; j < gap->ga_len; ++j)
3262 {
3263 uc = USER_CMD_GA(gap, j);
3264 cp = eap->cmd;
3265 np = uc->uc_name;
3266 k = 0;
3267 while (k < len && *np != NUL && *cp++ == *np++)
3268 k++;
3269 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
3270 {
3271 /* If finding a second match, the command is ambiguous. But
3272 * not if a buffer-local command wasn't a full match and a
3273 * global command is a full match. */
3274 if (k == len && found && *np != NUL)
3275 {
3276 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003277 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003278 amb_local = TRUE;
3279 }
3280
3281 if (!found || (k == len && *np == NUL))
3282 {
3283 /* If we matched up to a digit, then there could
3284 * be another command including the digit that we
3285 * should use instead.
3286 */
3287 if (k == len)
3288 found = TRUE;
3289 else
3290 possible = TRUE;
3291
3292 if (gap == &ucmds)
3293 eap->cmdidx = CMD_USER;
3294 else
3295 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003296 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003297 eap->useridx = j;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003298 eap->addr_type = uc->uc_addr_type;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003299
3300# ifdef FEAT_CMDL_COMPL
3301 if (compl != NULL)
3302 *compl = uc->uc_compl;
3303# ifdef FEAT_EVAL
3304 if (xp != NULL)
3305 {
3306 xp->xp_arg = uc->uc_compl_arg;
3307 xp->xp_scriptID = uc->uc_scriptID;
3308 }
3309# endif
3310# endif
3311 /* Do not search for further abbreviations
3312 * if this is an exact match. */
3313 matchlen = k;
3314 if (k == len && *np == NUL)
3315 {
3316 if (full != NULL)
3317 *full = TRUE;
3318 amb_local = FALSE;
3319 break;
3320 }
3321 }
3322 }
3323 }
3324
3325 /* Stop if we found a full match or searched all. */
3326 if (j < gap->ga_len || gap == &ucmds)
3327 break;
3328 gap = &ucmds;
3329 }
3330
3331 /* Only found ambiguous matches. */
3332 if (amb_local)
3333 {
3334 if (xp != NULL)
3335 xp->xp_context = EXPAND_UNSUCCESSFUL;
3336 return NULL;
3337 }
3338
3339 /* The match we found may be followed immediately by a number. Move "p"
3340 * back to point to it. */
3341 if (found || possible)
3342 return p + (matchlen - len);
3343 return p;
3344}
3345#endif
3346
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003348static struct cmdmod
3349{
3350 char *name;
3351 int minlen;
3352 int has_count; /* :123verbose :3tab */
3353} cmdmods[] = {
3354 {"aboveleft", 3, FALSE},
3355 {"belowright", 3, FALSE},
3356 {"botright", 2, FALSE},
3357 {"browse", 3, FALSE},
3358 {"confirm", 4, FALSE},
3359 {"hide", 3, FALSE},
3360 {"keepalt", 5, FALSE},
3361 {"keepjumps", 5, FALSE},
3362 {"keepmarks", 3, FALSE},
Bram Moolenaara939e432013-11-09 05:30:26 +01003363 {"keeppatterns", 5, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003364 {"leftabove", 5, FALSE},
3365 {"lockmarks", 3, FALSE},
Bram Moolenaarca9f9582008-09-18 10:44:28 +00003366 {"noautocmd", 3, FALSE},
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003367 {"noswapfile", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003368 {"rightbelow", 6, FALSE},
3369 {"sandbox", 3, FALSE},
3370 {"silent", 3, FALSE},
3371 {"tab", 3, TRUE},
3372 {"topleft", 2, FALSE},
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003373 {"unsilent", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003374 {"verbose", 4, TRUE},
3375 {"vertical", 4, FALSE},
3376};
3377
3378/*
3379 * Return length of a command modifier (including optional count).
3380 * Return zero when it's not a modifier.
3381 */
3382 int
3383modifier_len(cmd)
3384 char_u *cmd;
3385{
3386 int i, j;
3387 char_u *p = cmd;
3388
3389 if (VIM_ISDIGIT(*cmd))
3390 p = skipwhite(skipdigits(cmd));
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003391 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003392 {
3393 for (j = 0; p[j] != NUL; ++j)
3394 if (p[j] != cmdmods[i].name[j])
3395 break;
Bram Moolenaar2d473ab2013-06-12 17:12:24 +02003396 if (!ASCII_ISALPHA(p[j]) && j >= cmdmods[i].minlen
Bram Moolenaared53fb92007-11-24 20:50:24 +00003397 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003398 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003399 }
3400 return 0;
3401}
3402
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403/*
3404 * Return > 0 if an Ex command "name" exists.
3405 * Return 2 if there is an exact match.
3406 * Return 3 if there is an ambiguous match.
3407 */
3408 int
3409cmd_exists(name)
3410 char_u *name;
3411{
3412 exarg_T ea;
3413 int full = FALSE;
3414 int i;
3415 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003416 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417
3418 /* Check command modifiers. */
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003419 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 {
3421 for (j = 0; name[j] != NUL; ++j)
3422 if (name[j] != cmdmods[i].name[j])
3423 break;
3424 if (name[j] == NUL && j >= cmdmods[i].minlen)
3425 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3426 }
3427
Bram Moolenaara9587612006-05-04 21:47:50 +00003428 /* Check built-in commands and user defined commands.
3429 * For ":2match" and ":3match" we need to skip the number. */
3430 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003431 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003432 p = find_command(&ea, &full);
3433 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003435 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3436 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003437 if (*skipwhite(p) != NUL)
3438 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3440}
3441#endif
3442
3443/*
3444 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3445 * we don't need/want deleted. Maybe this could be done better if we didn't
3446 * repeat all this stuff. The only problem is that they may not stay
3447 * perfectly compatible with each other, but then the command line syntax
3448 * probably won't change that much -- webb.
3449 */
3450 char_u *
3451set_one_cmd_context(xp, buff)
3452 expand_T *xp;
3453 char_u *buff; /* buffer for command string */
3454{
3455 char_u *p;
3456 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003457 int len = 0;
3458 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3460 int compl = EXPAND_NOTHING;
3461#endif
3462#ifdef FEAT_CMDL_COMPL
3463 int delim;
3464#endif
3465 int forceit = FALSE;
3466 int usefilter = FALSE; /* filter instead of file name */
3467
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003468 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 xp->xp_pattern = buff;
3470 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003471 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472
3473/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003474 * 1. skip comment lines and leading space, colons or bars
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 */
3476 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3477 ;
3478 xp->xp_pattern = cmd;
3479
3480 if (*cmd == NUL)
3481 return NULL;
3482 if (*cmd == '"') /* ignore comment lines */
3483 {
3484 xp->xp_context = EXPAND_NOTHING;
3485 return NULL;
3486 }
3487
3488/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003489 * 3. Skip over the range to find the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 */
3491 cmd = skip_range(cmd, &xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 xp->xp_pattern = cmd;
3493 if (*cmd == NUL)
3494 return NULL;
3495 if (*cmd == '"')
3496 {
3497 xp->xp_context = EXPAND_NOTHING;
3498 return NULL;
3499 }
3500
3501 if (*cmd == '|' || *cmd == '\n')
3502 return cmd + 1; /* There's another command */
3503
3504 /*
3505 * Isolate the command and search for it in the command table.
3506 * Exceptions:
3507 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003508 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3510 */
3511 if (*cmd == 'k' && cmd[1] != 'e')
3512 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003513 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 p = cmd + 1;
3515 }
3516 else
3517 {
3518 p = cmd;
3519 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3520 ++p;
Bram Moolenaar23d1b622015-10-13 19:18:04 +02003521 /* a user command may contain digits */
3522 if (ASCII_ISUPPER(cmd[0]))
3523 while (ASCII_ISALNUM(*p) || *p == '*')
3524 ++p;
Bram Moolenaar9f5d6002013-06-02 19:22:13 +02003525 /* for python 3.x: ":py3*" commands completion */
3526 if (cmd[0] == 'p' && cmd[1] == 'y' && p == cmd + 2 && *p == '3')
Bram Moolenaar893b2d72013-12-11 17:44:38 +01003527 {
Bram Moolenaar9f5d6002013-06-02 19:22:13 +02003528 ++p;
Bram Moolenaar893b2d72013-12-11 17:44:38 +01003529 while (ASCII_ISALPHA(*p) || *p == '*')
3530 ++p;
3531 }
Bram Moolenaar23d1b622015-10-13 19:18:04 +02003532 /* check for non-alpha command */
3533 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3534 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003535 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003537 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 {
3539 xp->xp_context = EXPAND_UNSUCCESSFUL;
3540 return NULL;
3541 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003542 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01003543 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3544 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd,
3545 (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 break;
3547
3548#ifdef FEAT_USR_CMDS
3549 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3551 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552#endif
3553 }
3554
3555 /*
3556 * If the cursor is touching the command, and it ends in an alpha-numeric
3557 * character, complete the command name.
3558 */
3559 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3560 return NULL;
3561
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003562 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003563 {
3564 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3565 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003566 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 p = cmd + 1;
3568 }
3569#ifdef FEAT_USR_CMDS
3570 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3571 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003572 ea.cmd = cmd;
3573 p = find_ucmd(&ea, p, NULL, xp,
3574# if defined(FEAT_CMDL_COMPL)
3575 &compl
3576# else
3577 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003579 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003580 if (p == NULL)
3581 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 }
3583#endif
3584 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003585 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 {
3587 /* Not still touching the command and it was an illegal one */
3588 xp->xp_context = EXPAND_UNSUCCESSFUL;
3589 return NULL;
3590 }
3591
3592 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3593
3594 if (*p == '!') /* forced commands */
3595 {
3596 forceit = TRUE;
3597 ++p;
3598 }
3599
3600/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003601 * 6. parse arguments
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02003603 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003604 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605
3606 arg = skipwhite(p);
3607
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003608 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 {
3610 if (*arg == '>') /* append */
3611 {
3612 if (*++arg == '>')
3613 ++arg;
3614 arg = skipwhite(arg);
3615 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003616 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 {
3618 ++arg;
3619 usefilter = TRUE;
3620 }
3621 }
3622
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003623 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 {
3625 usefilter = forceit; /* :r! filter if forced */
3626 if (*arg == '!') /* :r !filter */
3627 {
3628 ++arg;
3629 usefilter = TRUE;
3630 }
3631 }
3632
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003633 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 {
3635 while (*arg == *cmd) /* allow any number of '>' or '<' */
3636 ++arg;
3637 arg = skipwhite(arg);
3638 }
3639
3640 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003641 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 {
3643 /* Check if we're in the +command */
3644 p = arg + 1;
3645 arg = skip_cmd_arg(arg, FALSE);
3646
3647 /* Still touching the command after '+'? */
3648 if (*arg == NUL)
3649 return p;
3650
3651 /* Skip space(s) after +command to get to the real argument */
3652 arg = skipwhite(arg);
3653 }
3654
3655 /*
3656 * Check for '|' to separate commands and '"' to start comments.
3657 * Don't do this for ":read !cmd" and ":write !cmd".
3658 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003659 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 {
3661 p = arg;
3662 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003663 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 p += 2;
3665 while (*p)
3666 {
3667 if (*p == Ctrl_V)
3668 {
3669 if (p[1] != NUL)
3670 ++p;
3671 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003672 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 || *p == '|' || *p == '\n')
3674 {
3675 if (*(p - 1) != '\\')
3676 {
3677 if (*p == '|' || *p == '\n')
3678 return p + 1;
3679 return NULL; /* It's a comment */
3680 }
3681 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003682 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 }
3684 }
3685
3686 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003687 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 vim_strchr((char_u *)"|\"", *arg) == NULL)
3689 return NULL;
3690
3691 /* Find start of last argument (argument just before cursor): */
Bram Moolenaar848f8762012-07-25 17:22:23 +02003692 p = buff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 xp->xp_pattern = p;
Bram Moolenaar09168a72012-08-02 21:24:42 +02003694 len = (int)STRLEN(buff);
Bram Moolenaar848f8762012-07-25 17:22:23 +02003695 while (*p && p < buff + len)
3696 {
3697 if (*p == ' ' || *p == TAB)
3698 {
3699 /* argument starts after a space */
3700 xp->xp_pattern = ++p;
3701 }
3702 else
3703 {
3704 if (*p == '\\' && *(p + 1) != NUL)
3705 ++p; /* skip over escaped character */
3706 mb_ptr_adv(p);
3707 }
3708 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003710 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003712 int c;
3713 int in_quote = FALSE;
3714 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715
3716 /*
3717 * Allow spaces within back-quotes to count as part of the argument
3718 * being expanded.
3719 */
3720 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003721 p = xp->xp_pattern;
3722 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003724#ifdef FEAT_MBYTE
3725 if (has_mbyte)
3726 c = mb_ptr2char(p);
3727 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003729 c = *p;
3730 if (c == '\\' && p[1] != NUL)
3731 ++p;
3732 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 {
3734 if (!in_quote)
3735 {
3736 xp->xp_pattern = p;
3737 bow = p + 1;
3738 }
3739 in_quote = !in_quote;
3740 }
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003741 /* An argument can contain just about everything, except
3742 * characters that end the command and white space. */
3743 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003744#ifdef SPACE_IN_FILENAME
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003745 && (!(ea.argt & NOSPC) || usefilter)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003746#endif
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003747 ))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003748 {
Bram Moolenaarcf5a5b82008-02-26 20:30:12 +00003749 len = 0; /* avoid getting stuck when space is in 'isfname' */
Bram Moolenaar6529c102007-08-18 15:47:34 +00003750 while (*p != NUL)
3751 {
3752#ifdef FEAT_MBYTE
3753 if (has_mbyte)
3754 c = mb_ptr2char(p);
3755 else
3756#endif
3757 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003758 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003759 break;
3760#ifdef FEAT_MBYTE
3761 if (has_mbyte)
3762 len = (*mb_ptr2len)(p);
3763 else
3764#endif
3765 len = 1;
3766 mb_ptr_adv(p);
3767 }
3768 if (in_quote)
3769 bow = p;
3770 else
3771 xp->xp_pattern = p;
3772 p -= len;
3773 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003774 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 }
3776
3777 /*
3778 * If we are still inside the quotes, and we passed a space, just
3779 * expand from there.
3780 */
3781 if (bow != NULL && in_quote)
3782 xp->xp_pattern = bow;
3783 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003784
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003785 /* For a shell command more chars need to be escaped. */
3786 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003787 {
Bram Moolenaarc0cba4d2010-08-07 17:07:21 +02003788#ifndef BACKSLASH_IN_FILENAME
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003789 xp->xp_shell = TRUE;
Bram Moolenaarc0cba4d2010-08-07 17:07:21 +02003790#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003791 /* When still after the command name expand executables. */
3792 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003793 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003794 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795
3796 /* Check for environment variable */
3797 if (*xp->xp_pattern == '$'
Bram Moolenaare7fedb62015-12-31 19:07:19 +01003798#if defined(MSDOS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 || *xp->xp_pattern == '%'
3800#endif
3801 )
3802 {
3803 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3804 if (!vim_isIDc(*p))
3805 break;
3806 if (*p == NUL)
3807 {
3808 xp->xp_context = EXPAND_ENV_VARS;
3809 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003810#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3811 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003812 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003813 compl = EXPAND_ENV_VARS;
3814#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 }
3816 }
Bram Moolenaar24305862012-08-15 14:05:05 +02003817#if defined(FEAT_CMDL_COMPL)
3818 /* Check for user names */
3819 if (*xp->xp_pattern == '~')
3820 {
3821 for (p = xp->xp_pattern + 1; *p != NUL && *p != '/'; ++p)
3822 ;
3823 /* Complete ~user only if it partially matches a user name.
3824 * A full match ~user<Tab> will be replaced by user's home
3825 * directory i.e. something like ~user<Tab> -> /home/user/ */
3826 if (*p == NUL && p > xp->xp_pattern + 1
3827 && match_user(xp->xp_pattern + 1) == 1)
3828 {
3829 xp->xp_context = EXPAND_USER;
3830 ++xp->xp_pattern;
3831 }
3832 }
3833#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 }
3835
3836/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003837 * 6. Switch on command name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003839 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003841 case CMD_find:
3842 case CMD_sfind:
3843 case CMD_tabfind:
Bram Moolenaarc24b6972010-08-16 22:34:29 +02003844 if (xp->xp_context == EXPAND_FILES)
3845 xp->xp_context = EXPAND_FILES_IN_PATH;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003846 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 case CMD_cd:
3848 case CMD_chdir:
3849 case CMD_lcd:
3850 case CMD_lchdir:
3851 if (xp->xp_context == EXPAND_FILES)
3852 xp->xp_context = EXPAND_DIRECTORIES;
3853 break;
3854 case CMD_help:
3855 xp->xp_context = EXPAND_HELP;
3856 xp->xp_pattern = arg;
3857 break;
3858
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003859 /* Command modifiers: return the argument.
3860 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003861 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003862 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863 case CMD_belowright:
3864 case CMD_botright:
3865 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003866 case CMD_bufdo:
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003867 case CMD_cdo:
3868 case CMD_cfdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003870 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 case CMD_folddoclosed:
3872 case CMD_folddoopen:
3873 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003874 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875 case CMD_keepjumps:
3876 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01003877 case CMD_keeppatterns:
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003878 case CMD_ldo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 case CMD_leftabove:
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003880 case CMD_lfdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 case CMD_lockmarks:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003882 case CMD_noautocmd:
3883 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003885 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003887 case CMD_tab:
Bram Moolenaar70baa402013-06-16 16:14:03 +02003888 case CMD_tabdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889 case CMD_topleft:
3890 case CMD_verbose:
3891 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003892 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 return arg;
3894
Bram Moolenaar4f688582007-07-24 12:34:30 +00003895#ifdef FEAT_CMDL_COMPL
3896# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 case CMD_match:
3898 if (*arg == NUL || !ends_excmd(*arg))
3899 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003900 /* also complete "None" */
3901 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 arg = skipwhite(skiptowhite(arg));
3903 if (*arg != NUL)
3904 {
3905 xp->xp_context = EXPAND_NOTHING;
3906 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3907 }
3908 }
3909 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003910# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912/*
3913 * All completion for the +cmdline_compl feature goes here.
3914 */
3915
3916# ifdef FEAT_USR_CMDS
3917 case CMD_command:
3918 /* Check for attributes */
3919 while (*arg == '-')
3920 {
3921 arg++; /* Skip "-" */
3922 p = skiptowhite(arg);
3923 if (*p == NUL)
3924 {
3925 /* Cursor is still in the attribute */
3926 p = vim_strchr(arg, '=');
3927 if (p == NULL)
3928 {
3929 /* No "=", so complete attribute names */
3930 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3931 xp->xp_pattern = arg;
3932 return NULL;
3933 }
3934
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003935 /* For the -complete, -nargs and -addr attributes, we complete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 * their arguments as well.
3937 */
3938 if (STRNICMP(arg, "complete", p - arg) == 0)
3939 {
3940 xp->xp_context = EXPAND_USER_COMPLETE;
3941 xp->xp_pattern = p + 1;
3942 return NULL;
3943 }
3944 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3945 {
3946 xp->xp_context = EXPAND_USER_NARGS;
3947 xp->xp_pattern = p + 1;
3948 return NULL;
3949 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003950 else if (STRNICMP(arg, "addr", p - arg) == 0)
3951 {
3952 xp->xp_context = EXPAND_USER_ADDR_TYPE;
3953 xp->xp_pattern = p + 1;
3954 return NULL;
3955 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 return NULL;
3957 }
3958 arg = skipwhite(p);
3959 }
3960
3961 /* After the attributes comes the new command name */
3962 p = skiptowhite(arg);
3963 if (*p == NUL)
3964 {
3965 xp->xp_context = EXPAND_USER_COMMANDS;
3966 xp->xp_pattern = arg;
3967 break;
3968 }
3969
3970 /* And finally comes a normal command */
3971 return skipwhite(p);
3972
3973 case CMD_delcommand:
3974 xp->xp_context = EXPAND_USER_COMMANDS;
3975 xp->xp_pattern = arg;
3976 break;
3977# endif
3978
3979 case CMD_global:
3980 case CMD_vglobal:
3981 delim = *arg; /* get the delimiter */
3982 if (delim)
3983 ++arg; /* skip delimiter if there is one */
3984
3985 while (arg[0] != NUL && arg[0] != delim)
3986 {
3987 if (arg[0] == '\\' && arg[1] != NUL)
3988 ++arg;
3989 ++arg;
3990 }
3991 if (arg[0] != NUL)
3992 return arg + 1;
3993 break;
3994 case CMD_and:
3995 case CMD_substitute:
3996 delim = *arg;
3997 if (delim)
3998 {
3999 /* skip "from" part */
4000 ++arg;
4001 arg = skip_regexp(arg, delim, p_magic, NULL);
4002 }
4003 /* skip "to" part */
4004 while (arg[0] != NUL && arg[0] != delim)
4005 {
4006 if (arg[0] == '\\' && arg[1] != NUL)
4007 ++arg;
4008 ++arg;
4009 }
4010 if (arg[0] != NUL) /* skip delimiter */
4011 ++arg;
4012 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
4013 ++arg;
4014 if (arg[0] != NUL)
4015 return arg;
4016 break;
4017 case CMD_isearch:
4018 case CMD_dsearch:
4019 case CMD_ilist:
4020 case CMD_dlist:
4021 case CMD_ijump:
4022 case CMD_psearch:
4023 case CMD_djump:
4024 case CMD_isplit:
4025 case CMD_dsplit:
4026 arg = skipwhite(skipdigits(arg)); /* skip count */
4027 if (*arg == '/') /* Match regexp, not just whole words */
4028 {
4029 for (++arg; *arg && *arg != '/'; arg++)
4030 if (*arg == '\\' && arg[1] != NUL)
4031 arg++;
4032 if (*arg)
4033 {
4034 arg = skipwhite(arg + 1);
4035
4036 /* Check for trailing illegal characters */
4037 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
4038 xp->xp_context = EXPAND_NOTHING;
4039 else
4040 return arg;
4041 }
4042 }
4043 break;
4044#ifdef FEAT_AUTOCMD
4045 case CMD_autocmd:
4046 return set_context_in_autocmd(xp, arg, FALSE);
4047
4048 case CMD_doautocmd:
Bram Moolenaar73a9d7b2008-11-06 16:16:44 +00004049 case CMD_doautoall:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050 return set_context_in_autocmd(xp, arg, TRUE);
4051#endif
4052 case CMD_set:
4053 set_context_in_set_cmd(xp, arg, 0);
4054 break;
4055 case CMD_setglobal:
4056 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
4057 break;
4058 case CMD_setlocal:
4059 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
4060 break;
4061 case CMD_tag:
4062 case CMD_stag:
4063 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00004064 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004065 case CMD_tselect:
4066 case CMD_stselect:
4067 case CMD_ptselect:
4068 case CMD_tjump:
4069 case CMD_stjump:
4070 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004071 if (*p_wop != NUL)
4072 xp->xp_context = EXPAND_TAGS_LISTFILES;
4073 else
4074 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 xp->xp_pattern = arg;
4076 break;
4077 case CMD_augroup:
4078 xp->xp_context = EXPAND_AUGROUP;
4079 xp->xp_pattern = arg;
4080 break;
4081#ifdef FEAT_SYN_HL
4082 case CMD_syntax:
4083 set_context_in_syntax_cmd(xp, arg);
4084 break;
4085#endif
4086#ifdef FEAT_EVAL
4087 case CMD_let:
4088 case CMD_if:
4089 case CMD_elseif:
4090 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00004091 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 case CMD_echo:
4093 case CMD_echon:
4094 case CMD_execute:
4095 case CMD_echomsg:
4096 case CMD_echoerr:
4097 case CMD_call:
4098 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004099 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004100 break;
4101
4102 case CMD_unlet:
4103 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
4104 arg = xp->xp_pattern + 1;
4105 xp->xp_context = EXPAND_USER_VARS;
4106 xp->xp_pattern = arg;
4107 break;
4108
4109 case CMD_function:
4110 case CMD_delfunction:
4111 xp->xp_context = EXPAND_USER_FUNC;
4112 xp->xp_pattern = arg;
4113 break;
4114
4115 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00004116 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 break;
4118#endif
4119 case CMD_highlight:
4120 set_context_in_highlight_cmd(xp, arg);
4121 break;
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004122#ifdef FEAT_CSCOPE
4123 case CMD_cscope:
Bram Moolenaar7bfef802009-04-22 14:25:01 +00004124 case CMD_lcscope:
4125 case CMD_scscope:
4126 set_context_in_cscope_cmd(xp, arg, ea.cmdidx);
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004127 break;
4128#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004129#ifdef FEAT_SIGNS
4130 case CMD_sign:
4131 set_context_in_sign_cmd(xp, arg);
4132 break;
4133#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134#ifdef FEAT_LISTCMDS
4135 case CMD_bdelete:
4136 case CMD_bwipeout:
4137 case CMD_bunload:
4138 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
4139 arg = xp->xp_pattern + 1;
4140 /*FALLTHROUGH*/
4141 case CMD_buffer:
4142 case CMD_sbuffer:
4143 case CMD_checktime:
4144 xp->xp_context = EXPAND_BUFFERS;
4145 xp->xp_pattern = arg;
4146 break;
4147#endif
4148#ifdef FEAT_USR_CMDS
4149 case CMD_USER:
4150 case CMD_USER_BUF:
4151 if (compl != EXPAND_NOTHING)
4152 {
4153 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004154 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004155 {
4156# ifdef FEAT_MENU
4157 if (compl == EXPAND_MENUS)
4158 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
4159# endif
4160 if (compl == EXPAND_COMMANDS)
4161 return arg;
4162 if (compl == EXPAND_MAPPINGS)
4163 return set_context_in_map_cmd(xp, (char_u *)"map",
4164 arg, forceit, FALSE, FALSE, CMD_map);
Bram Moolenaar848f8762012-07-25 17:22:23 +02004165 /* Find start of last argument. */
4166 p = arg;
4167 while (*p)
4168 {
4169 if (*p == ' ')
Bram Moolenaar848f8762012-07-25 17:22:23 +02004170 /* argument starts after a space */
4171 arg = p + 1;
Bram Moolenaara07c8312012-07-27 21:12:07 +02004172 else if (*p == '\\' && *(p + 1) != NUL)
4173 ++p; /* skip over escaped character */
4174 mb_ptr_adv(p);
Bram Moolenaar848f8762012-07-25 17:22:23 +02004175 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176 xp->xp_pattern = arg;
4177 }
4178 xp->xp_context = compl;
4179 }
4180 break;
4181#endif
4182 case CMD_map: case CMD_noremap:
4183 case CMD_nmap: case CMD_nnoremap:
4184 case CMD_vmap: case CMD_vnoremap:
4185 case CMD_omap: case CMD_onoremap:
4186 case CMD_imap: case CMD_inoremap:
4187 case CMD_cmap: case CMD_cnoremap:
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004188 case CMD_lmap: case CMD_lnoremap:
Bram Moolenaar09bb33d2013-05-07 05:18:20 +02004189 case CMD_smap: case CMD_snoremap:
4190 case CMD_xmap: case CMD_xnoremap:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004192 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 case CMD_unmap:
4194 case CMD_nunmap:
4195 case CMD_vunmap:
4196 case CMD_ounmap:
4197 case CMD_iunmap:
4198 case CMD_cunmap:
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004199 case CMD_lunmap:
Bram Moolenaar09bb33d2013-05-07 05:18:20 +02004200 case CMD_sunmap:
4201 case CMD_xunmap:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004203 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 case CMD_abbreviate: case CMD_noreabbrev:
4205 case CMD_cabbrev: case CMD_cnoreabbrev:
4206 case CMD_iabbrev: case CMD_inoreabbrev:
4207 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004208 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 case CMD_unabbreviate:
4210 case CMD_cunabbrev:
4211 case CMD_iunabbrev:
4212 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004213 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214#ifdef FEAT_MENU
4215 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
4216 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
4217 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
4218 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
4219 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
4220 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
4221 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
4222 case CMD_tmenu: case CMD_tunmenu:
4223 case CMD_popup: case CMD_tearoff: case CMD_emenu:
4224 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
4225#endif
4226
4227 case CMD_colorscheme:
4228 xp->xp_context = EXPAND_COLORS;
4229 xp->xp_pattern = arg;
4230 break;
4231
4232 case CMD_compiler:
4233 xp->xp_context = EXPAND_COMPILER;
4234 xp->xp_pattern = arg;
4235 break;
4236
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004237 case CMD_ownsyntax:
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004238 xp->xp_context = EXPAND_OWNSYNTAX;
4239 xp->xp_pattern = arg;
4240 break;
4241
4242 case CMD_setfiletype:
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004243 xp->xp_context = EXPAND_FILETYPE;
4244 xp->xp_pattern = arg;
4245 break;
4246
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4248 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4249 case CMD_language:
Bram Moolenaara660dc82011-05-25 12:51:22 +02004250 p = skiptowhite(arg);
4251 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 {
4253 xp->xp_context = EXPAND_LANGUAGE;
4254 xp->xp_pattern = arg;
4255 }
4256 else
Bram Moolenaara660dc82011-05-25 12:51:22 +02004257 {
4258 if ( STRNCMP(arg, "messages", p - arg) == 0
4259 || STRNCMP(arg, "ctype", p - arg) == 0
4260 || STRNCMP(arg, "time", p - arg) == 0)
4261 {
4262 xp->xp_context = EXPAND_LOCALES;
4263 xp->xp_pattern = skipwhite(p);
4264 }
4265 else
4266 xp->xp_context = EXPAND_NOTHING;
4267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268 break;
4269#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004270#if defined(FEAT_PROFILE)
4271 case CMD_profile:
4272 set_context_in_profile_cmd(xp, arg);
4273 break;
4274#endif
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004275 case CMD_behave:
4276 xp->xp_context = EXPAND_BEHAVE;
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004277 xp->xp_pattern = arg;
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004278 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004280#if defined(FEAT_CMDHIST)
4281 case CMD_history:
4282 xp->xp_context = EXPAND_HISTORY;
4283 xp->xp_pattern = arg;
4284 break;
4285#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004286#if defined(FEAT_PROFILE)
4287 case CMD_syntime:
4288 xp->xp_context = EXPAND_SYNTIME;
4289 xp->xp_pattern = arg;
4290 break;
4291#endif
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004292
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293#endif /* FEAT_CMDL_COMPL */
4294
4295 default:
4296 break;
4297 }
4298 return NULL;
4299}
4300
4301/*
4302 * skip a range specifier of the form: addr [,addr] [;addr] ..
4303 *
4304 * Backslashed delimiters after / or ? will be skipped, and commands will
4305 * not be expanded between /'s and ?'s or after "'".
4306 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00004307 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308 * Returns the "cmd" pointer advanced to beyond the range.
4309 */
4310 char_u *
4311skip_range(cmd, ctx)
4312 char_u *cmd;
4313 int *ctx; /* pointer to xp_context or NULL */
4314{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004315 unsigned delim;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316
Bram Moolenaardf177f62005-02-22 08:39:57 +00004317 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 {
4319 if (*cmd == '\'')
4320 {
4321 if (*++cmd == NUL && ctx != NULL)
4322 *ctx = EXPAND_NOTHING;
4323 }
4324 else if (*cmd == '/' || *cmd == '?')
4325 {
4326 delim = *cmd++;
4327 while (*cmd != NUL && *cmd != delim)
4328 if (*cmd++ == '\\' && *cmd != NUL)
4329 ++cmd;
4330 if (*cmd == NUL && ctx != NULL)
4331 *ctx = EXPAND_NOTHING;
4332 }
4333 if (*cmd != NUL)
4334 ++cmd;
4335 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004336
4337 /* Skip ":" and white space. */
4338 while (*cmd == ':')
4339 cmd = skipwhite(cmd + 1);
4340
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 return cmd;
4342}
4343
4344/*
4345 * get a single EX address
4346 *
4347 * Set ptr to the next character after the part that was interpreted.
4348 * Set ptr to NULL when an error is encountered.
4349 *
4350 * Return MAXLNUM when no Ex address was found.
4351 */
4352 static linenr_T
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004353get_address(eap, ptr, addr_type, skip, to_other_file)
Bram Moolenaare906c502015-09-09 21:10:39 +02004354 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004355 char_u **ptr;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004356 int addr_type; /* flag: one of ADDR_LINES, ... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357 int skip; /* only skip the address, don't use it */
4358 int to_other_file; /* flag: may jump to other file */
4359{
4360 int c;
4361 int i;
4362 long n;
4363 char_u *cmd;
4364 pos_T pos;
4365 pos_T *fp;
4366 linenr_T lnum;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004367 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368
4369 cmd = skipwhite(*ptr);
4370 lnum = MAXLNUM;
4371 do
4372 {
4373 switch (*cmd)
4374 {
4375 case '.': /* '.' - Cursor position */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004376 ++cmd;
4377 switch (addr_type)
4378 {
4379 case ADDR_LINES:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 lnum = curwin->w_cursor.lnum;
4381 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004382 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004383 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004384 break;
4385 case ADDR_ARGUMENTS:
4386 lnum = curwin->w_arg_idx + 1;
4387 break;
4388 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004389 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004390 lnum = curbuf->b_fnum;
4391 break;
4392 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004393 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004394 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004395#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004396 case ADDR_QUICKFIX:
4397 lnum = qf_get_cur_valid_idx(eap);
4398 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004399#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004400 }
4401 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402
4403 case '$': /* '$' - last line */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004404 ++cmd;
4405 switch (addr_type)
4406 {
4407 case ADDR_LINES:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 lnum = curbuf->b_ml.ml_line_count;
4409 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004410 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004411 lnum = LAST_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004412 break;
4413 case ADDR_ARGUMENTS:
4414 lnum = ARGCOUNT;
4415 break;
4416 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004417 buf = lastbuf;
4418 while (buf->b_ml.ml_mfp == NULL)
4419 {
4420 if (buf->b_prev == NULL)
4421 break;
4422 buf = buf->b_prev;
4423 }
4424 lnum = buf->b_fnum;
4425 break;
4426 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004427 lnum = lastbuf->b_fnum;
4428 break;
4429 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004430 lnum = LAST_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004431 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004432#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004433 case ADDR_QUICKFIX:
4434 lnum = qf_get_size(eap);
4435 if (lnum == 0)
4436 lnum = 1;
4437 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004438#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004439 }
4440 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441
4442 case '\'': /* ''' - mark */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004443 if (*++cmd == NUL)
4444 {
4445 cmd = NULL;
4446 goto error;
4447 }
4448 if (addr_type != ADDR_LINES)
4449 {
4450 EMSG(_(e_invaddr));
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004451 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004452 goto error;
4453 }
4454 if (skip)
4455 ++cmd;
4456 else
4457 {
4458 /* Only accept a mark in another file when it is
4459 * used by itself: ":'M". */
4460 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
4461 ++cmd;
4462 if (fp == (pos_T *)-1)
4463 /* Jumped to another file. */
4464 lnum = curwin->w_cursor.lnum;
4465 else
4466 {
4467 if (check_mark(fp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 {
4469 cmd = NULL;
4470 goto error;
4471 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004472 lnum = fp->lnum;
4473 }
4474 }
4475 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476
4477 case '/':
4478 case '?': /* '/' or '?' - search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004479 c = *cmd++;
4480 if (addr_type != ADDR_LINES)
4481 {
4482 EMSG(_(e_invaddr));
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004483 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004484 goto error;
4485 }
4486 if (skip) /* skip "/pat/" */
4487 {
4488 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
4489 if (*cmd == c)
4490 ++cmd;
4491 }
4492 else
4493 {
4494 pos = curwin->w_cursor; /* save curwin->w_cursor */
4495 /*
4496 * When '/' or '?' follows another address, start
4497 * from there.
4498 */
4499 if (lnum != MAXLNUM)
4500 curwin->w_cursor.lnum = lnum;
4501 /*
4502 * Start a forward search at the end of the line.
4503 * Start a backward search at the start of the line.
4504 * This makes sure we never match in the current
4505 * line, and can match anywhere in the
4506 * next/previous line.
4507 */
4508 if (c == '/')
4509 curwin->w_cursor.col = MAXCOL;
4510 else
4511 curwin->w_cursor.col = 0;
4512 searchcmdlen = 0;
4513 if (!do_search(NULL, c, cmd, 1L,
4514 SEARCH_HIS | SEARCH_MSG, NULL))
4515 {
4516 curwin->w_cursor = pos;
4517 cmd = NULL;
4518 goto error;
4519 }
4520 lnum = curwin->w_cursor.lnum;
4521 curwin->w_cursor = pos;
4522 /* adjust command string pointer */
4523 cmd += searchcmdlen;
4524 }
4525 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526
4527 case '\\': /* "\?", "\/" or "\&", repeat search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004528 ++cmd;
4529 if (addr_type != ADDR_LINES)
4530 {
4531 EMSG(_(e_invaddr));
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004532 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004533 goto error;
4534 }
4535 if (*cmd == '&')
4536 i = RE_SUBST;
4537 else if (*cmd == '?' || *cmd == '/')
4538 i = RE_SEARCH;
4539 else
4540 {
4541 EMSG(_(e_backslash));
4542 cmd = NULL;
4543 goto error;
4544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004546 if (!skip)
4547 {
4548 /*
4549 * When search follows another address, start from
4550 * there.
4551 */
4552 if (lnum != MAXLNUM)
4553 pos.lnum = lnum;
4554 else
4555 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004557 /*
4558 * Start the search just like for the above
4559 * do_search().
4560 */
4561 if (*cmd != '?')
4562 pos.col = MAXCOL;
4563 else
4564 pos.col = 0;
Bram Moolenaarbd8539a2015-08-11 18:53:03 +02004565#ifdef FEAT_VIRTUALEDIT
4566 pos.coladd = 0;
4567#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004568 if (searchit(curwin, curbuf, &pos,
4569 *cmd == '?' ? BACKWARD : FORWARD,
4570 (char_u *)"", 1L, SEARCH_MSG,
4571 i, (linenr_T)0, NULL) != FAIL)
4572 lnum = pos.lnum;
4573 else
4574 {
4575 cmd = NULL;
4576 goto error;
4577 }
4578 }
4579 ++cmd;
4580 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581
4582 default:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004583 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
4584 lnum = getdigits(&cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 }
4586
4587 for (;;)
4588 {
4589 cmd = skipwhite(cmd);
4590 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4591 break;
4592
4593 if (lnum == MAXLNUM)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004594 {
4595 switch (addr_type)
4596 {
4597 case ADDR_LINES:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004598 /* "+1" is same as ".+1" */
4599 lnum = curwin->w_cursor.lnum;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004600 break;
4601 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004602 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004603 break;
4604 case ADDR_ARGUMENTS:
4605 lnum = curwin->w_arg_idx + 1;
4606 break;
4607 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004608 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004609 lnum = curbuf->b_fnum;
4610 break;
4611 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004612 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004613 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004614#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004615 case ADDR_QUICKFIX:
4616 lnum = qf_get_cur_valid_idx(eap);
4617 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004618#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004619 }
4620 }
4621
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 if (VIM_ISDIGIT(*cmd))
4623 i = '+'; /* "number" is same as "+number" */
4624 else
4625 i = *cmd++;
4626 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4627 n = 1;
4628 else
4629 n = getdigits(&cmd);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004630 if (addr_type == ADDR_LOADED_BUFFERS
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004631 || addr_type == ADDR_BUFFERS)
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004632 lnum = compute_buffer_local_count(
4633 addr_type, lnum, (i == '-') ? -1 * n : n);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004634 else if (i == '-')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 lnum -= n;
4636 else
4637 lnum += n;
4638 }
4639 } while (*cmd == '/' || *cmd == '?');
4640
4641error:
4642 *ptr = cmd;
4643 return lnum;
4644}
4645
4646/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004647 * Get flags from an Ex command argument.
4648 */
4649 static void
4650get_flags(eap)
4651 exarg_T *eap;
4652{
4653 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4654 {
4655 if (*eap->arg == 'l')
4656 eap->flags |= EXFLAG_LIST;
4657 else if (*eap->arg == 'p')
4658 eap->flags |= EXFLAG_PRINT;
4659 else
4660 eap->flags |= EXFLAG_NR;
4661 eap->arg = skipwhite(eap->arg + 1);
4662 }
4663}
4664
4665/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 * Function called for command which is Not Implemented. NI!
4667 */
4668 void
4669ex_ni(eap)
4670 exarg_T *eap;
4671{
4672 if (!eap->skip)
4673 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4674}
4675
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004676#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677/*
4678 * Function called for script command which is Not Implemented. NI!
4679 * Skips over ":perl <<EOF" constructs.
4680 */
4681 static void
4682ex_script_ni(eap)
4683 exarg_T *eap;
4684{
4685 if (!eap->skip)
4686 ex_ni(eap);
4687 else
4688 vim_free(script_get(eap, eap->arg));
4689}
4690#endif
4691
4692/*
4693 * Check range in Ex command for validity.
4694 * Return NULL when valid, error message when invalid.
4695 */
4696 static char_u *
4697invalid_range(eap)
4698 exarg_T *eap;
4699{
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004700 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 if ( eap->line1 < 0
4702 || eap->line2 < 0
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004703 || eap->line1 > eap->line2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004704 return (char_u *)_(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004705
4706 if (eap->argt & RANGE)
4707 {
4708 switch(eap->addr_type)
4709 {
4710 case ADDR_LINES:
4711 if (!(eap->argt & NOTADR)
4712 && eap->line2 > curbuf->b_ml.ml_line_count
4713#ifdef FEAT_DIFF
4714 + (eap->cmdidx == CMD_diffget)
4715#endif
4716 )
4717 return (char_u *)_(e_invrange);
4718 break;
4719 case ADDR_ARGUMENTS:
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004720 /* add 1 if ARGCOUNT is 0 */
4721 if (eap->line2 > ARGCOUNT + (!ARGCOUNT))
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004722 return (char_u *)_(e_invrange);
4723 break;
4724 case ADDR_BUFFERS:
4725 if (eap->line1 < firstbuf->b_fnum
4726 || eap->line2 > lastbuf->b_fnum)
4727 return (char_u *)_(e_invrange);
4728 break;
4729 case ADDR_LOADED_BUFFERS:
4730 buf = firstbuf;
4731 while (buf->b_ml.ml_mfp == NULL)
4732 {
4733 if (buf->b_next == NULL)
4734 return (char_u *)_(e_invrange);
4735 buf = buf->b_next;
4736 }
4737 if (eap->line1 < buf->b_fnum)
4738 return (char_u *)_(e_invrange);
4739 buf = lastbuf;
4740 while (buf->b_ml.ml_mfp == NULL)
4741 {
4742 if (buf->b_prev == NULL)
4743 return (char_u *)_(e_invrange);
4744 buf = buf->b_prev;
4745 }
4746 if (eap->line2 > buf->b_fnum)
4747 return (char_u *)_(e_invrange);
4748 break;
4749 case ADDR_WINDOWS:
Bram Moolenaar8be63882015-01-14 11:25:05 +01004750 if (eap->line2 > LAST_WIN_NR)
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004751 return (char_u *)_(e_invrange);
4752 break;
4753 case ADDR_TABS:
4754 if (eap->line2 > LAST_TAB_NR)
4755 return (char_u *)_(e_invrange);
4756 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004757#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004758 case ADDR_QUICKFIX:
4759 if (eap->line2 != 1 && eap->line2 > qf_get_size(eap))
4760 return (char_u *)_(e_invrange);
4761 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004762#endif
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004763 }
4764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765 return NULL;
4766}
4767
4768/*
4769 * Correct the range for zero line number, if required.
4770 */
4771 static void
4772correct_range(eap)
4773 exarg_T *eap;
4774{
4775 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4776 {
4777 if (eap->line1 == 0)
4778 eap->line1 = 1;
4779 if (eap->line2 == 0)
4780 eap->line2 = 1;
4781 }
4782}
4783
Bram Moolenaar748bf032005-02-02 23:04:36 +00004784#ifdef FEAT_QUICKFIX
4785static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4786
4787/*
4788 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4789 * pattern. Otherwise return eap->arg.
4790 */
4791 static char_u *
4792skip_grep_pat(eap)
4793 exarg_T *eap;
4794{
4795 char_u *p = eap->arg;
4796
Bram Moolenaara37420f2006-02-04 22:37:47 +00004797 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4798 || eap->cmdidx == CMD_vimgrepadd
4799 || eap->cmdidx == CMD_lvimgrepadd
4800 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004801 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004802 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004803 if (p == NULL)
4804 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004805 }
4806 return p;
4807}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004808
4809/*
4810 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4811 * in the command line, so that things like % get expanded.
4812 */
4813 static char_u *
4814replace_makeprg(eap, p, cmdlinep)
4815 exarg_T *eap;
4816 char_u *p;
4817 char_u **cmdlinep;
4818{
4819 char_u *new_cmdline;
4820 char_u *program;
4821 char_u *pos;
4822 char_u *ptr;
4823 int len;
4824 int i;
4825
4826 /*
4827 * Don't do it when ":vimgrep" is used for ":grep".
4828 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004829 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4830 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4831 || eap->cmdidx == CMD_grepadd
4832 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004833 && !grep_internal(eap->cmdidx))
4834 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004835 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4836 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004837 {
4838 if (*curbuf->b_p_gp == NUL)
4839 program = p_gp;
4840 else
4841 program = curbuf->b_p_gp;
4842 }
4843 else
4844 {
4845 if (*curbuf->b_p_mp == NUL)
4846 program = p_mp;
4847 else
4848 program = curbuf->b_p_mp;
4849 }
4850
4851 p = skipwhite(p);
4852
4853 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4854 {
4855 /* replace $* by given arguments */
4856 i = 1;
4857 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4858 ++i;
4859 len = (int)STRLEN(p);
4860 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4861 if (new_cmdline == NULL)
4862 return NULL; /* out of memory */
4863 ptr = new_cmdline;
4864 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4865 {
4866 i = (int)(pos - program);
4867 STRNCPY(ptr, program, i);
4868 STRCPY(ptr += i, p);
4869 ptr += len;
4870 program = pos + 2;
4871 }
4872 STRCPY(ptr, program);
4873 }
4874 else
4875 {
4876 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4877 if (new_cmdline == NULL)
4878 return NULL; /* out of memory */
4879 STRCPY(new_cmdline, program);
4880 STRCAT(new_cmdline, " ");
4881 STRCAT(new_cmdline, p);
4882 }
4883 msg_make(p);
4884
4885 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4886 vim_free(*cmdlinep);
4887 *cmdlinep = new_cmdline;
4888 p = new_cmdline;
4889 }
4890 return p;
4891}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004892#endif
4893
Bram Moolenaar071d4272004-06-13 20:20:40 +00004894/*
4895 * Expand file name in Ex command argument.
4896 * Return FAIL for failure, OK otherwise.
4897 */
4898 int
4899expand_filename(eap, cmdlinep, errormsgp)
4900 exarg_T *eap;
4901 char_u **cmdlinep;
4902 char_u **errormsgp;
4903{
4904 int has_wildcards; /* need to expand wildcards */
4905 char_u *repl;
4906 int srclen;
4907 char_u *p;
4908 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004909 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910
Bram Moolenaar748bf032005-02-02 23:04:36 +00004911#ifdef FEAT_QUICKFIX
4912 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4913 p = skip_grep_pat(eap);
4914#else
4915 p = eap->arg;
4916#endif
4917
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 /*
4919 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4920 * the file name contains a wildcard it should not cause expanding.
4921 * (it will be expanded anyway if there is a wildcard before replacing).
4922 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004923 has_wildcards = mch_has_wildcard(p);
4924 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004926#ifdef FEAT_EVAL
4927 /* Skip over `=expr`, wildcards in it are not expanded. */
4928 if (p[0] == '`' && p[1] == '=')
4929 {
4930 p += 2;
4931 (void)skip_expr(&p);
4932 if (*p == '`')
4933 ++p;
4934 continue;
4935 }
4936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 /*
4938 * Quick check if this cannot be the start of a special string.
4939 * Also removes backslash before '%', '#' and '<'.
4940 */
4941 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4942 {
4943 ++p;
4944 continue;
4945 }
4946
4947 /*
4948 * Try to find a match at this position.
4949 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004950 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4951 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 if (*errormsgp != NULL) /* error detected */
4953 return FAIL;
4954 if (repl == NULL) /* no match found */
4955 {
4956 p += srclen;
4957 continue;
4958 }
4959
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004960 /* Wildcards won't be expanded below, the replacement is taken
4961 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4962 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4963 {
4964 char_u *l = repl;
4965
4966 repl = expand_env_save(repl);
4967 vim_free(l);
4968 }
4969
Bram Moolenaar63b92542007-03-27 14:57:09 +00004970 /* Need to escape white space et al. with a backslash.
4971 * Don't do this for:
4972 * - replacement that already has been escaped: "##"
4973 * - shell commands (may have to use quotes instead).
4974 * - non-unix systems when there is a single argument (spaces don't
4975 * separate arguments then).
4976 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004978 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 && eap->cmdidx != CMD_bang
4980 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004981 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004983 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004985 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986#ifndef UNIX
4987 && !(eap->argt & NOSPC)
4988#endif
4989 )
4990 {
4991 char_u *l;
4992#ifdef BACKSLASH_IN_FILENAME
4993 /* Don't escape a backslash here, because rem_backslash() doesn't
4994 * remove it later. */
4995 static char_u *nobslash = (char_u *)" \t\"|";
4996# define ESCAPE_CHARS nobslash
4997#else
4998# define ESCAPE_CHARS escape_chars
4999#endif
5000
5001 for (l = repl; *l; ++l)
5002 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
5003 {
5004 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
5005 if (l != NULL)
5006 {
5007 vim_free(repl);
5008 repl = l;
5009 }
5010 break;
5011 }
5012 }
5013
5014 /* For a shell command a '!' must be escaped. */
5015 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar31b7d382014-04-01 18:54:48 +02005016 && vim_strpbrk(repl, (char_u *)"!") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 {
5018 char_u *l;
5019
Bram Moolenaar31b7d382014-04-01 18:54:48 +02005020 l = vim_strsave_escaped(repl, (char_u *)"!");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 if (l != NULL)
5022 {
5023 vim_free(repl);
5024 repl = l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 }
5026 }
5027
5028 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
5029 vim_free(repl);
5030 if (p == NULL)
5031 return FAIL;
5032 }
5033
5034 /*
5035 * One file argument: Expand wildcards.
5036 * Don't do this with ":r !command" or ":w !command".
5037 */
5038 if ((eap->argt & NOSPC) && !eap->usefilter)
5039 {
5040 /*
5041 * May do this twice:
5042 * 1. Replace environment variables.
5043 * 2. Replace any other wildcards, remove backslashes.
5044 */
5045 for (n = 1; n <= 2; ++n)
5046 {
5047 if (n == 2)
5048 {
5049#ifdef UNIX
5050 /*
5051 * Only for Unix we check for more than one file name.
5052 * For other systems spaces are considered to be part
5053 * of the file name.
5054 * Only check here if there is no wildcard, otherwise
5055 * ExpandOne() will check for errors. This allows
5056 * ":e `ls ve*.c`" on Unix.
5057 */
5058 if (!has_wildcards)
5059 for (p = eap->arg; *p; ++p)
5060 {
5061 /* skip escaped characters */
5062 if (p[1] && (*p == '\\' || *p == Ctrl_V))
5063 ++p;
5064 else if (vim_iswhite(*p))
5065 {
5066 *errormsgp = (char_u *)_("E172: Only one file name allowed");
5067 return FAIL;
5068 }
5069 }
5070#endif
5071
5072 /*
5073 * Halve the number of backslashes (this is Vi compatible).
5074 * For Unix and OS/2, when wildcards are expanded, this is
5075 * done by ExpandOne() below.
5076 */
Bram Moolenaare7fedb62015-12-31 19:07:19 +01005077#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 if (!has_wildcards)
5079#endif
5080 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 }
5082
5083 if (has_wildcards)
5084 {
5085 if (n == 1)
5086 {
5087 /*
5088 * First loop: May expand environment variables. This
5089 * can be done much faster with expand_env() than with
5090 * something else (e.g., calling a shell).
5091 * After expanding environment variables, check again
5092 * if there are still wildcards present.
5093 */
5094 if (vim_strchr(eap->arg, '$') != NULL
5095 || vim_strchr(eap->arg, '~') != NULL)
5096 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00005097 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00005098 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 has_wildcards = mch_has_wildcard(NameBuff);
5100 p = NameBuff;
5101 }
5102 else
5103 p = NULL;
5104 }
5105 else /* n == 2 */
5106 {
5107 expand_T xpc;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005108 int options = WILD_LIST_NOTFOUND|WILD_ADD_SLASH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109
5110 ExpandInit(&xpc);
5111 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005112 if (p_wic)
5113 options += WILD_ICASE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 p = ExpandOne(&xpc, eap->arg, NULL,
Bram Moolenaar94950a92010-12-02 16:01:29 +01005115 options, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116 if (p == NULL)
5117 return FAIL;
5118 }
5119 if (p != NULL)
5120 {
5121 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
5122 p, cmdlinep);
5123 if (n == 2) /* p came from ExpandOne() */
5124 vim_free(p);
5125 }
5126 }
5127 }
5128 }
5129 return OK;
5130}
5131
5132/*
5133 * Replace part of the command line, keeping eap->cmd, eap->arg and
5134 * eap->nextcmd correct.
5135 * "src" points to the part that is to be replaced, of length "srclen".
5136 * "repl" is the replacement string.
5137 * Returns a pointer to the character after the replaced string.
5138 * Returns NULL for failure.
5139 */
5140 static char_u *
5141repl_cmdline(eap, src, srclen, repl, cmdlinep)
5142 exarg_T *eap;
5143 char_u *src;
5144 int srclen;
5145 char_u *repl;
5146 char_u **cmdlinep;
5147{
5148 int len;
5149 int i;
5150 char_u *new_cmdline;
5151
5152 /*
5153 * The new command line is build in new_cmdline[].
5154 * First allocate it.
5155 * Careful: a "+cmd" argument may have been NUL terminated.
5156 */
5157 len = (int)STRLEN(repl);
5158 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005159 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
5161 if ((new_cmdline = alloc((unsigned)i)) == NULL)
5162 return NULL; /* out of memory! */
5163
5164 /*
5165 * Copy the stuff before the expanded part.
5166 * Copy the expanded stuff.
5167 * Copy what came after the expanded part.
5168 * Copy the next commands, if there are any.
5169 */
5170 i = (int)(src - *cmdlinep); /* length of part before match */
5171 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00005172
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 mch_memmove(new_cmdline + i, repl, (size_t)len);
5174 i += len; /* remember the end of the string */
5175 STRCPY(new_cmdline + i, src + srclen);
5176 src = new_cmdline + i; /* remember where to continue */
5177
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005178 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 {
5180 i = (int)STRLEN(new_cmdline) + 1;
5181 STRCPY(new_cmdline + i, eap->nextcmd);
5182 eap->nextcmd = new_cmdline + i;
5183 }
5184 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
5185 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
5186 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
5187 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
5188 vim_free(*cmdlinep);
5189 *cmdlinep = new_cmdline;
5190
5191 return src;
5192}
5193
5194/*
5195 * Check for '|' to separate commands and '"' to start comments.
5196 */
5197 void
5198separate_nextcmd(eap)
5199 exarg_T *eap;
5200{
5201 char_u *p;
5202
Bram Moolenaar86b68352004-12-27 21:59:20 +00005203#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00005204 p = skip_grep_pat(eap);
5205#else
5206 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005207#endif
5208
5209 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 {
5211 if (*p == Ctrl_V)
5212 {
5213 if (eap->argt & (USECTRLV | XFILE))
5214 ++p; /* skip CTRL-V and next char */
5215 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00005216 /* remove CTRL-V and skip next char */
Bram Moolenaara7241f52008-06-24 20:39:31 +00005217 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 if (*p == NUL) /* stop at NUL after CTRL-V */
5219 break;
5220 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005221
5222#ifdef FEAT_EVAL
5223 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005224 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005225 {
5226 p += 2;
5227 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005228 }
5229#endif
5230
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 /* Check for '"': start of comment or '|': next command */
5232 /* :@" and :*" do not start a comment!
5233 * :redir @" doesn't either. */
5234 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
5235 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
5236 || p != eap->arg)
5237 && (eap->cmdidx != CMD_redir
5238 || p != eap->arg + 1 || p[-1] != '@'))
5239 || *p == '|' || *p == '\n')
5240 {
5241 /*
5242 * We remove the '\' before the '|', unless USECTRLV is used
5243 * AND 'b' is present in 'cpoptions'.
5244 */
5245 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
5246 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
5247 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00005248 STRMOVE(p - 1, p); /* remove the '\' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005249 --p;
5250 }
5251 else
5252 {
5253 eap->nextcmd = check_nextcmd(p);
5254 *p = NUL;
5255 break;
5256 }
5257 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005259
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
5261 del_trailing_spaces(eap->arg);
5262}
5263
5264/*
5265 * get + command from ex argument
5266 */
5267 static char_u *
5268getargcmd(argp)
5269 char_u **argp;
5270{
5271 char_u *arg = *argp;
5272 char_u *command = NULL;
5273
5274 if (*arg == '+') /* +[command] */
5275 {
5276 ++arg;
Bram Moolenaar3e451592014-04-02 14:22:05 +02005277 if (vim_isspace(*arg) || *arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 command = dollar_command;
5279 else
5280 {
5281 command = arg;
5282 arg = skip_cmd_arg(command, TRUE);
5283 if (*arg != NUL)
5284 *arg++ = NUL; /* terminate command with NUL */
5285 }
5286
5287 arg = skipwhite(arg); /* skip over spaces */
5288 *argp = arg;
5289 }
5290 return command;
5291}
5292
5293/*
5294 * Find end of "+command" argument. Skip over "\ " and "\\".
5295 */
5296 static char_u *
5297skip_cmd_arg(p, rembs)
5298 char_u *p;
5299 int rembs; /* TRUE to halve the number of backslashes */
5300{
5301 while (*p && !vim_isspace(*p))
5302 {
5303 if (*p == '\\' && p[1] != NUL)
5304 {
5305 if (rembs)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005306 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 else
5308 ++p;
5309 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005310 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 }
5312 return p;
5313}
5314
5315/*
5316 * Get "++opt=arg" argument.
5317 * Return FAIL or OK.
5318 */
5319 static int
5320getargopt(eap)
5321 exarg_T *eap;
5322{
5323 char_u *arg = eap->arg + 2;
5324 int *pp = NULL;
5325#ifdef FEAT_MBYTE
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005326 int bad_char_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 char_u *p;
5328#endif
5329
5330 /* ":edit ++[no]bin[ary] file" */
5331 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
5332 {
5333 if (*arg == 'n')
5334 {
5335 arg += 2;
5336 eap->force_bin = FORCE_NOBIN;
5337 }
5338 else
5339 eap->force_bin = FORCE_BIN;
5340 if (!checkforcmd(&arg, "binary", 3))
5341 return FAIL;
5342 eap->arg = skipwhite(arg);
5343 return OK;
5344 }
5345
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005346 /* ":read ++edit file" */
5347 if (STRNCMP(arg, "edit", 4) == 0)
5348 {
5349 eap->read_edit = TRUE;
5350 eap->arg = skipwhite(arg + 4);
5351 return OK;
5352 }
5353
Bram Moolenaar071d4272004-06-13 20:20:40 +00005354 if (STRNCMP(arg, "ff", 2) == 0)
5355 {
5356 arg += 2;
5357 pp = &eap->force_ff;
5358 }
5359 else if (STRNCMP(arg, "fileformat", 10) == 0)
5360 {
5361 arg += 10;
5362 pp = &eap->force_ff;
5363 }
5364#ifdef FEAT_MBYTE
5365 else if (STRNCMP(arg, "enc", 3) == 0)
5366 {
Bram Moolenaarb38e9ab2011-12-14 14:49:45 +01005367 if (STRNCMP(arg, "encoding", 8) == 0)
5368 arg += 8;
5369 else
5370 arg += 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 pp = &eap->force_enc;
5372 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005373 else if (STRNCMP(arg, "bad", 3) == 0)
5374 {
5375 arg += 3;
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005376 pp = &bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005377 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378#endif
5379
5380 if (pp == NULL || *arg != '=')
5381 return FAIL;
5382
5383 ++arg;
5384 *pp = (int)(arg - eap->cmd);
5385 arg = skip_cmd_arg(arg, FALSE);
5386 eap->arg = skipwhite(arg);
5387 *arg = NUL;
5388
5389#ifdef FEAT_MBYTE
5390 if (pp == &eap->force_ff)
5391 {
5392#endif
5393 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
5394 return FAIL;
5395#ifdef FEAT_MBYTE
5396 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005397 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 {
5399 /* Make 'fileencoding' lower case. */
5400 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
5401 *p = TOLOWER_ASC(*p);
5402 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005403 else
5404 {
5405 /* Check ++bad= argument. Must be a single-byte character, "keep" or
5406 * "drop". */
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005407 p = eap->cmd + bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005408 if (STRICMP(p, "keep") == 0)
5409 eap->bad_char = BAD_KEEP;
5410 else if (STRICMP(p, "drop") == 0)
5411 eap->bad_char = BAD_DROP;
5412 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
5413 eap->bad_char = *p;
5414 else
5415 return FAIL;
5416 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417#endif
5418
5419 return OK;
5420}
5421
5422/*
5423 * ":abbreviate" and friends.
5424 */
5425 static void
5426ex_abbreviate(eap)
5427 exarg_T *eap;
5428{
5429 do_exmap(eap, TRUE); /* almost the same as mapping */
5430}
5431
5432/*
5433 * ":map" and friends.
5434 */
5435 static void
5436ex_map(eap)
5437 exarg_T *eap;
5438{
5439 /*
5440 * If we are sourcing .exrc or .vimrc in current directory we
5441 * print the mappings for security reasons.
5442 */
5443 if (secure)
5444 {
5445 secure = 2;
5446 msg_outtrans(eap->cmd);
5447 msg_putchar('\n');
5448 }
5449 do_exmap(eap, FALSE);
5450}
5451
5452/*
5453 * ":unmap" and friends.
5454 */
5455 static void
5456ex_unmap(eap)
5457 exarg_T *eap;
5458{
5459 do_exmap(eap, FALSE);
5460}
5461
5462/*
5463 * ":mapclear" and friends.
5464 */
5465 static void
5466ex_mapclear(eap)
5467 exarg_T *eap;
5468{
5469 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
5470}
5471
5472/*
5473 * ":abclear" and friends.
5474 */
5475 static void
5476ex_abclear(eap)
5477 exarg_T *eap;
5478{
5479 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
5480}
5481
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005482#if defined(FEAT_AUTOCMD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 static void
5484ex_autocmd(eap)
5485 exarg_T *eap;
5486{
5487 /*
5488 * Disallow auto commands from .exrc and .vimrc in current
5489 * directory for security reasons.
5490 */
5491 if (secure)
5492 {
5493 secure = 2;
5494 eap->errmsg = e_curdir;
5495 }
5496 else if (eap->cmdidx == CMD_autocmd)
5497 do_autocmd(eap->arg, eap->forceit);
5498 else
5499 do_augroup(eap->arg, eap->forceit);
5500}
5501
5502/*
5503 * ":doautocmd": Apply the automatic commands to the current buffer.
5504 */
5505 static void
5506ex_doautocmd(eap)
5507 exarg_T *eap;
5508{
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005509 char_u *arg = eap->arg;
5510 int call_do_modelines = check_nomodeline(&arg);
5511
5512 (void)do_doautocmd(arg, TRUE);
5513 if (call_do_modelines) /* Only when there is no <nomodeline>. */
5514 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515}
5516#endif
5517
5518#ifdef FEAT_LISTCMDS
5519/*
5520 * :[N]bunload[!] [N] [bufname] unload buffer
5521 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
5522 * :[N]bwipeout[!] [N] [bufname] delete buffer really
5523 */
5524 static void
5525ex_bunload(eap)
5526 exarg_T *eap;
5527{
5528 eap->errmsg = do_bufdel(
5529 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
5530 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
5531 : DOBUF_UNLOAD, eap->arg,
5532 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
5533}
5534
5535/*
5536 * :[N]buffer [N] to buffer N
5537 * :[N]sbuffer [N] to buffer N
5538 */
5539 static void
5540ex_buffer(eap)
5541 exarg_T *eap;
5542{
5543 if (*eap->arg)
5544 eap->errmsg = e_trailing;
5545 else
5546 {
5547 if (eap->addr_count == 0) /* default is current buffer */
5548 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
5549 else
5550 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005551 if (eap->do_ecmd_cmd != NULL)
5552 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 }
5554}
5555
5556/*
5557 * :[N]bmodified [N] to next mod. buffer
5558 * :[N]sbmodified [N] to next mod. buffer
5559 */
5560 static void
5561ex_bmodified(eap)
5562 exarg_T *eap;
5563{
5564 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005565 if (eap->do_ecmd_cmd != NULL)
5566 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567}
5568
5569/*
5570 * :[N]bnext [N] to next buffer
5571 * :[N]sbnext [N] split and to next buffer
5572 */
5573 static void
5574ex_bnext(eap)
5575 exarg_T *eap;
5576{
5577 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005578 if (eap->do_ecmd_cmd != NULL)
5579 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580}
5581
5582/*
5583 * :[N]bNext [N] to previous buffer
5584 * :[N]bprevious [N] to previous buffer
5585 * :[N]sbNext [N] split and to previous buffer
5586 * :[N]sbprevious [N] split and to previous buffer
5587 */
5588 static void
5589ex_bprevious(eap)
5590 exarg_T *eap;
5591{
5592 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005593 if (eap->do_ecmd_cmd != NULL)
5594 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595}
5596
5597/*
5598 * :brewind to first buffer
5599 * :bfirst to first buffer
5600 * :sbrewind split and to first buffer
5601 * :sbfirst split and to first buffer
5602 */
5603 static void
5604ex_brewind(eap)
5605 exarg_T *eap;
5606{
5607 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005608 if (eap->do_ecmd_cmd != NULL)
5609 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610}
5611
5612/*
5613 * :blast to last buffer
5614 * :sblast split and to last buffer
5615 */
5616 static void
5617ex_blast(eap)
5618 exarg_T *eap;
5619{
5620 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005621 if (eap->do_ecmd_cmd != NULL)
5622 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623}
5624#endif
5625
5626 int
5627ends_excmd(c)
5628 int c;
5629{
5630 return (c == NUL || c == '|' || c == '"' || c == '\n');
5631}
5632
5633#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
5634 || defined(PROTO)
5635/*
5636 * Return the next command, after the first '|' or '\n'.
5637 * Return NULL if not found.
5638 */
5639 char_u *
5640find_nextcmd(p)
5641 char_u *p;
5642{
5643 while (*p != '|' && *p != '\n')
5644 {
5645 if (*p == NUL)
5646 return NULL;
5647 ++p;
5648 }
5649 return (p + 1);
5650}
5651#endif
5652
5653/*
5654 * Check if *p is a separator between Ex commands.
5655 * Return NULL if it isn't, (p + 1) if it is.
5656 */
5657 char_u *
5658check_nextcmd(p)
5659 char_u *p;
5660{
5661 p = skipwhite(p);
5662 if (*p == '|' || *p == '\n')
5663 return (p + 1);
5664 else
5665 return NULL;
5666}
5667
5668/*
5669 * - if there are more files to edit
5670 * - and this is the last window
5671 * - and forceit not used
5672 * - and not repeated twice on a row
5673 * return FAIL and give error message if 'message' TRUE
5674 * return OK otherwise
5675 */
5676 static int
5677check_more(message, forceit)
5678 int message; /* when FALSE check only, no messages */
5679 int forceit;
5680{
5681 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5682
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005683 if (!forceit && only_one_window()
5684 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 {
5686 if (message)
5687 {
5688#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5689 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5690 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02005691 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692
5693 if (n == 1)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02005694 vim_strncpy(buff,
5695 (char_u *)_("1 more file to edit. Quit anyway?"),
Bram Moolenaard9462e32011-04-11 21:35:11 +02005696 DIALOG_MSG_SIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 else
Bram Moolenaard9462e32011-04-11 21:35:11 +02005698 vim_snprintf((char *)buff, DIALOG_MSG_SIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 _("%d more files to edit. Quit anyway?"), n);
5700 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5701 return OK;
5702 return FAIL;
5703 }
5704#endif
5705 if (n == 1)
5706 EMSG(_("E173: 1 more file to edit"));
5707 else
5708 EMSGN(_("E173: %ld more files to edit"), n);
5709 quitmore = 2; /* next try to quit is allowed */
5710 }
5711 return FAIL;
5712 }
5713 return OK;
5714}
5715
5716#ifdef FEAT_CMDL_COMPL
5717/*
5718 * Function given to ExpandGeneric() to obtain the list of command names.
5719 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 char_u *
5721get_command_name(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00005722 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 int idx;
5724{
5725 if (idx >= (int)CMD_SIZE)
5726# ifdef FEAT_USR_CMDS
5727 return get_user_command_name(idx);
5728# else
5729 return NULL;
5730# endif
5731 return cmdnames[idx].cmd_name;
5732}
5733#endif
5734
5735#if defined(FEAT_USR_CMDS) || defined(PROTO)
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005736static int uc_add_command __ARGS((char_u *name, size_t name_len, char_u *rep, long argt, long def, int flags, int compl, char_u *compl_arg, int addr_type, int force));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737static void uc_list __ARGS((char_u *name, size_t name_len));
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005738static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg, int* attr_type_arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5740static size_t uc_check_code __ARGS((char_u *code, size_t len, char_u *buf, ucmd_T *cmd, exarg_T *eap, char_u **split_buf, size_t *split_len));
5741
5742 static int
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005743uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, addr_type, force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 char_u *name;
5745 size_t name_len;
5746 char_u *rep;
5747 long argt;
5748 long def;
5749 int flags;
5750 int compl;
5751 char_u *compl_arg;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005752 int addr_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 int force;
5754{
5755 ucmd_T *cmd = NULL;
5756 char_u *p;
5757 int i;
5758 int cmp = 1;
5759 char_u *rep_buf = NULL;
5760 garray_T *gap;
5761
Bram Moolenaar9c102382006-05-03 21:26:49 +00005762 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 if (rep_buf == NULL)
5764 {
5765 /* Can't replace termcodes - try using the string as is */
5766 rep_buf = vim_strsave(rep);
5767
5768 /* Give up if out of memory */
5769 if (rep_buf == NULL)
5770 return FAIL;
5771 }
5772
5773 /* get address of growarray: global or in curbuf */
5774 if (flags & UC_BUFFER)
5775 {
5776 gap = &curbuf->b_ucmds;
5777 if (gap->ga_itemsize == 0)
5778 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5779 }
5780 else
5781 gap = &ucmds;
5782
5783 /* Search for the command in the already defined commands. */
5784 for (i = 0; i < gap->ga_len; ++i)
5785 {
5786 size_t len;
5787
5788 cmd = USER_CMD_GA(gap, i);
5789 len = STRLEN(cmd->uc_name);
5790 cmp = STRNCMP(name, cmd->uc_name, name_len);
5791 if (cmp == 0)
5792 {
5793 if (name_len < len)
5794 cmp = -1;
5795 else if (name_len > len)
5796 cmp = 1;
5797 }
5798
5799 if (cmp == 0)
5800 {
5801 if (!force)
5802 {
5803 EMSG(_("E174: Command already exists: add ! to replace it"));
5804 goto fail;
5805 }
5806
5807 vim_free(cmd->uc_rep);
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00005808 cmd->uc_rep = NULL;
5809#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5810 vim_free(cmd->uc_compl_arg);
5811 cmd->uc_compl_arg = NULL;
5812#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 break;
5814 }
5815
5816 /* Stop as soon as we pass the name to add */
5817 if (cmp < 0)
5818 break;
5819 }
5820
5821 /* Extend the array unless we're replacing an existing command */
5822 if (cmp != 0)
5823 {
5824 if (ga_grow(gap, 1) != OK)
5825 goto fail;
5826 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5827 goto fail;
5828
5829 cmd = USER_CMD_GA(gap, i);
5830 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5831
5832 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005833
5834 cmd->uc_name = p;
5835 }
5836
5837 cmd->uc_rep = rep_buf;
5838 cmd->uc_argt = argt;
5839 cmd->uc_def = def;
5840 cmd->uc_compl = compl;
5841#ifdef FEAT_EVAL
5842 cmd->uc_scriptID = current_SID;
5843# ifdef FEAT_CMDL_COMPL
5844 cmd->uc_compl_arg = compl_arg;
5845# endif
5846#endif
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005847 cmd->uc_addr_type = addr_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848
5849 return OK;
5850
5851fail:
5852 vim_free(rep_buf);
5853#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5854 vim_free(compl_arg);
5855#endif
5856 return FAIL;
5857}
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005858#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005860#if defined(FEAT_USR_CMDS)
5861static struct
5862{
5863 int expand;
5864 char *name;
5865} addr_type_complete[] =
5866{
5867 {ADDR_ARGUMENTS, "arguments"},
5868 {ADDR_LINES, "lines"},
5869 {ADDR_LOADED_BUFFERS, "loaded_buffers"},
5870 {ADDR_TABS, "tabs"},
5871 {ADDR_BUFFERS, "buffers"},
5872 {ADDR_WINDOWS, "windows"},
Bram Moolenaaraa23b372015-09-08 18:46:31 +02005873 {ADDR_QUICKFIX, "quickfix"},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005874 {-1, NULL}
5875};
5876#endif
5877
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005878#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879/*
5880 * List of names for completion for ":command" with the EXPAND_ flag.
5881 * Must be alphabetical for completion.
5882 */
5883static struct
5884{
5885 int expand;
5886 char *name;
5887} command_complete[] =
5888{
5889 {EXPAND_AUGROUP, "augroup"},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005890 {EXPAND_BEHAVE, "behave"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 {EXPAND_BUFFERS, "buffer"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005892 {EXPAND_COLORS, "color"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 {EXPAND_COMMANDS, "command"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005894 {EXPAND_COMPILER, "compiler"},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005895#if defined(FEAT_CSCOPE)
5896 {EXPAND_CSCOPE, "cscope"},
5897#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5899 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005900 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901#endif
5902 {EXPAND_DIRECTORIES, "dir"},
5903 {EXPAND_ENV_VARS, "environment"},
5904 {EXPAND_EVENTS, "event"},
5905 {EXPAND_EXPRESSION, "expression"},
5906 {EXPAND_FILES, "file"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005907 {EXPAND_FILES_IN_PATH, "file_in_path"},
Bram Moolenaara26559b2010-07-31 14:59:19 +02005908 {EXPAND_FILETYPE, "filetype"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 {EXPAND_FUNCTIONS, "function"},
5910 {EXPAND_HELP, "help"},
5911 {EXPAND_HIGHLIGHT, "highlight"},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005912#if defined(FEAT_CMDHIST)
5913 {EXPAND_HISTORY, "history"},
5914#endif
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005915#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005916 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005917 {EXPAND_LOCALES, "locale"},
5918#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919 {EXPAND_MAPPINGS, "mapping"},
5920 {EXPAND_MENUS, "menu"},
Bram Moolenaara26559b2010-07-31 14:59:19 +02005921 {EXPAND_OWNSYNTAX, "syntax"},
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02005922#if defined(FEAT_PROFILE)
5923 {EXPAND_SYNTIME, "syntime"},
5924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005926 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005927#if defined(FEAT_SIGNS)
5928 {EXPAND_SIGN, "sign"},
5929#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 {EXPAND_TAGS, "tag"},
5931 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
Bram Moolenaar24305862012-08-15 14:05:05 +02005932 {EXPAND_USER, "user"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 {EXPAND_USER_VARS, "var"},
5934 {0, NULL}
5935};
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005937
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005938#if defined(FEAT_USR_CMDS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939 static void
5940uc_list(name, name_len)
5941 char_u *name;
5942 size_t name_len;
5943{
5944 int i, j;
5945 int found = FALSE;
5946 ucmd_T *cmd;
5947 int len;
5948 long a;
5949 garray_T *gap;
5950
5951 gap = &curbuf->b_ucmds;
5952 for (;;)
5953 {
5954 for (i = 0; i < gap->ga_len; ++i)
5955 {
5956 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005957 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958
5959 /* Skip commands which don't match the requested prefix */
5960 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5961 continue;
5962
5963 /* Put out the title first time */
5964 if (!found)
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005965 MSG_PUTS_TITLE(_("\n Name Args Address Complete Definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 found = TRUE;
5967 msg_putchar('\n');
5968 if (got_int)
5969 break;
5970
5971 /* Special cases */
5972 msg_putchar(a & BANG ? '!' : ' ');
5973 msg_putchar(a & REGSTR ? '"' : ' ');
5974 msg_putchar(gap != &ucmds ? 'b' : ' ');
5975 msg_putchar(' ');
5976
5977 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5978 len = (int)STRLEN(cmd->uc_name) + 4;
5979
5980 do {
5981 msg_putchar(' ');
5982 ++len;
5983 } while (len < 16);
5984
5985 len = 0;
5986
5987 /* Arguments */
5988 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5989 {
5990 case 0: IObuff[len++] = '0'; break;
5991 case (EXTRA): IObuff[len++] = '*'; break;
5992 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5993 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5994 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5995 }
5996
5997 do {
5998 IObuff[len++] = ' ';
5999 } while (len < 5);
6000
6001 /* Range */
6002 if (a & (RANGE|COUNT))
6003 {
6004 if (a & COUNT)
6005 {
6006 /* -count=N */
6007 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
6008 len += (int)STRLEN(IObuff + len);
6009 }
6010 else if (a & DFLALL)
6011 IObuff[len++] = '%';
6012 else if (cmd->uc_def >= 0)
6013 {
6014 /* -range=N */
6015 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
6016 len += (int)STRLEN(IObuff + len);
6017 }
6018 else
6019 IObuff[len++] = '.';
6020 }
6021
6022 do {
6023 IObuff[len++] = ' ';
6024 } while (len < 11);
6025
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006026 /* Address Type */
6027 for (j = 0; addr_type_complete[j].expand != -1; ++j)
6028 if (addr_type_complete[j].expand != ADDR_LINES
6029 && addr_type_complete[j].expand == cmd->uc_addr_type)
6030 {
6031 STRCPY(IObuff + len, addr_type_complete[j].name);
6032 len += (int)STRLEN(IObuff + len);
6033 break;
6034 }
6035
6036 do {
6037 IObuff[len++] = ' ';
6038 } while (len < 21);
6039
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040 /* Completion */
6041 for (j = 0; command_complete[j].expand != 0; ++j)
6042 if (command_complete[j].expand == cmd->uc_compl)
6043 {
6044 STRCPY(IObuff + len, command_complete[j].name);
6045 len += (int)STRLEN(IObuff + len);
6046 break;
6047 }
6048
6049 do {
6050 IObuff[len++] = ' ';
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006051 } while (len < 35);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052
6053 IObuff[len] = '\0';
6054 msg_outtrans(IObuff);
6055
6056 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00006057#ifdef FEAT_EVAL
6058 if (p_verbose > 0)
6059 last_set_msg(cmd->uc_scriptID);
6060#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 out_flush();
6062 ui_breakcheck();
6063 if (got_int)
6064 break;
6065 }
6066 if (gap == &ucmds || i < gap->ga_len)
6067 break;
6068 gap = &ucmds;
6069 }
6070
6071 if (!found)
6072 MSG(_("No user-defined commands found"));
6073}
6074
6075 static char_u *
6076uc_fun_cmd()
6077{
6078 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
6079 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
6080 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
6081 0xb9, 0x7f, 0};
6082 int i;
6083
6084 for (i = 0; fcmd[i]; ++i)
6085 IObuff[i] = fcmd[i] - 0x40;
6086 IObuff[i] = 0;
6087 return IObuff;
6088}
6089
6090 static int
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006091uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg, addr_type_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092 char_u *attr;
6093 size_t len;
6094 long *argt;
6095 long *def;
6096 int *flags;
6097 int *compl;
6098 char_u **compl_arg;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006099 int *addr_type_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006100{
6101 char_u *p;
6102
6103 if (len == 0)
6104 {
6105 EMSG(_("E175: No attribute specified"));
6106 return FAIL;
6107 }
6108
6109 /* First, try the simple attributes (no arguments) */
6110 if (STRNICMP(attr, "bang", len) == 0)
6111 *argt |= BANG;
6112 else if (STRNICMP(attr, "buffer", len) == 0)
6113 *flags |= UC_BUFFER;
6114 else if (STRNICMP(attr, "register", len) == 0)
6115 *argt |= REGSTR;
6116 else if (STRNICMP(attr, "bar", len) == 0)
6117 *argt |= TRLBAR;
6118 else
6119 {
6120 int i;
6121 char_u *val = NULL;
6122 size_t vallen = 0;
6123 size_t attrlen = len;
6124
6125 /* Look for the attribute name - which is the part before any '=' */
6126 for (i = 0; i < (int)len; ++i)
6127 {
6128 if (attr[i] == '=')
6129 {
6130 val = &attr[i + 1];
6131 vallen = len - i - 1;
6132 attrlen = i;
6133 break;
6134 }
6135 }
6136
6137 if (STRNICMP(attr, "nargs", attrlen) == 0)
6138 {
6139 if (vallen == 1)
6140 {
6141 if (*val == '0')
6142 /* Do nothing - this is the default */;
6143 else if (*val == '1')
6144 *argt |= (EXTRA | NOSPC | NEEDARG);
6145 else if (*val == '*')
6146 *argt |= EXTRA;
6147 else if (*val == '?')
6148 *argt |= (EXTRA | NOSPC);
6149 else if (*val == '+')
6150 *argt |= (EXTRA | NEEDARG);
6151 else
6152 goto wrong_nargs;
6153 }
6154 else
6155 {
6156wrong_nargs:
6157 EMSG(_("E176: Invalid number of arguments"));
6158 return FAIL;
6159 }
6160 }
6161 else if (STRNICMP(attr, "range", attrlen) == 0)
6162 {
6163 *argt |= RANGE;
6164 if (vallen == 1 && *val == '%')
6165 *argt |= DFLALL;
6166 else if (val != NULL)
6167 {
6168 p = val;
6169 if (*def >= 0)
6170 {
6171two_count:
6172 EMSG(_("E177: Count cannot be specified twice"));
6173 return FAIL;
6174 }
6175
6176 *def = getdigits(&p);
6177 *argt |= (ZEROR | NOTADR);
6178
6179 if (p != val + vallen || vallen == 0)
6180 {
6181invalid_count:
6182 EMSG(_("E178: Invalid default value for count"));
6183 return FAIL;
6184 }
6185 }
6186 }
6187 else if (STRNICMP(attr, "count", attrlen) == 0)
6188 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00006189 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190
6191 if (val != NULL)
6192 {
6193 p = val;
6194 if (*def >= 0)
6195 goto two_count;
6196
6197 *def = getdigits(&p);
6198
6199 if (p != val + vallen)
6200 goto invalid_count;
6201 }
6202
6203 if (*def < 0)
6204 *def = 0;
6205 }
6206 else if (STRNICMP(attr, "complete", attrlen) == 0)
6207 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 if (val == NULL)
6209 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006210 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006211 return FAIL;
6212 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006214 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
6215 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006218 else if (STRNICMP(attr, "addr", attrlen) == 0)
6219 {
6220 *argt |= RANGE;
6221 if (val == NULL)
6222 {
6223 EMSG(_("E179: argument required for -addr"));
6224 return FAIL;
6225 }
6226 if (parse_addr_type_arg(val, (int)vallen, argt, addr_type_arg)
6227 == FAIL)
6228 return FAIL;
6229 if (addr_type_arg != ADDR_LINES)
6230 *argt |= (ZEROR | NOTADR) ;
6231 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232 else
6233 {
6234 char_u ch = attr[len];
6235 attr[len] = '\0';
6236 EMSG2(_("E181: Invalid attribute: %s"), attr);
6237 attr[len] = ch;
6238 return FAIL;
6239 }
6240 }
6241
6242 return OK;
6243}
6244
Bram Moolenaara850a712009-01-28 14:42:59 +00006245/*
6246 * ":command ..."
6247 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248 static void
6249ex_command(eap)
6250 exarg_T *eap;
6251{
6252 char_u *name;
6253 char_u *end;
6254 char_u *p;
6255 long argt = 0;
6256 long def = -1;
6257 int flags = 0;
6258 int compl = EXPAND_NOTHING;
6259 char_u *compl_arg = NULL;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006260 int addr_type_arg = ADDR_LINES;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261 int has_attr = (eap->arg[0] == '-');
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006262 int name_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263
6264 p = eap->arg;
6265
6266 /* Check for attributes */
6267 while (*p == '-')
6268 {
6269 ++p;
6270 end = skiptowhite(p);
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006271 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg, &addr_type_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 == FAIL)
6273 return;
6274 p = skipwhite(end);
6275 }
6276
6277 /* Get the name (if any) and skip to the following argument */
6278 name = p;
6279 if (ASCII_ISALPHA(*p))
6280 while (ASCII_ISALNUM(*p))
6281 ++p;
6282 if (!ends_excmd(*p) && !vim_iswhite(*p))
6283 {
6284 EMSG(_("E182: Invalid command name"));
6285 return;
6286 }
6287 end = p;
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006288 name_len = (int)(end - name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289
6290 /* If there is nothing after the name, and no attributes were specified,
6291 * we are listing commands
6292 */
6293 p = skipwhite(end);
6294 if (!has_attr && ends_excmd(*p))
6295 {
6296 uc_list(name, end - name);
6297 }
6298 else if (!ASCII_ISUPPER(*name))
6299 {
6300 EMSG(_("E183: User defined commands must start with an uppercase letter"));
6301 return;
6302 }
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006303 else if ((name_len == 1 && *name == 'X')
6304 || (name_len <= 4
6305 && STRNCMP(name, "Next", name_len > 4 ? 4 : name_len) == 0))
6306 {
6307 EMSG(_("E841: Reserved name, cannot be used for user defined command"));
6308 return;
6309 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 else
6311 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006312 addr_type_arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313}
6314
6315/*
6316 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 * Clear all user commands, global and for current buffer.
6318 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00006319 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320ex_comclear(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006321 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006322{
6323 uc_clear(&ucmds);
6324 uc_clear(&curbuf->b_ucmds);
6325}
6326
6327/*
6328 * Clear all user commands for "gap".
6329 */
6330 void
6331uc_clear(gap)
6332 garray_T *gap;
6333{
6334 int i;
6335 ucmd_T *cmd;
6336
6337 for (i = 0; i < gap->ga_len; ++i)
6338 {
6339 cmd = USER_CMD_GA(gap, i);
6340 vim_free(cmd->uc_name);
6341 vim_free(cmd->uc_rep);
6342# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6343 vim_free(cmd->uc_compl_arg);
6344# endif
6345 }
6346 ga_clear(gap);
6347}
6348
6349 static void
6350ex_delcommand(eap)
6351 exarg_T *eap;
6352{
6353 int i = 0;
6354 ucmd_T *cmd = NULL;
6355 int cmp = -1;
6356 garray_T *gap;
6357
6358 gap = &curbuf->b_ucmds;
6359 for (;;)
6360 {
6361 for (i = 0; i < gap->ga_len; ++i)
6362 {
6363 cmd = USER_CMD_GA(gap, i);
6364 cmp = STRCMP(eap->arg, cmd->uc_name);
6365 if (cmp <= 0)
6366 break;
6367 }
6368 if (gap == &ucmds || cmp == 0)
6369 break;
6370 gap = &ucmds;
6371 }
6372
6373 if (cmp != 0)
6374 {
6375 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
6376 return;
6377 }
6378
6379 vim_free(cmd->uc_name);
6380 vim_free(cmd->uc_rep);
6381# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6382 vim_free(cmd->uc_compl_arg);
6383# endif
6384
6385 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386
6387 if (i < gap->ga_len)
6388 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
6389}
6390
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006391/*
6392 * split and quote args for <f-args>
6393 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394 static char_u *
6395uc_split_args(arg, lenp)
6396 char_u *arg;
6397 size_t *lenp;
6398{
6399 char_u *buf;
6400 char_u *p;
6401 char_u *q;
6402 int len;
6403
6404 /* Precalculate length */
6405 p = arg;
6406 len = 2; /* Initial and final quotes */
6407
6408 while (*p)
6409 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006410 if (p[0] == '\\' && p[1] == '\\')
6411 {
6412 len += 2;
6413 p += 2;
6414 }
6415 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416 {
6417 len += 1;
6418 p += 2;
6419 }
6420 else if (*p == '\\' || *p == '"')
6421 {
6422 len += 2;
6423 p += 1;
6424 }
6425 else if (vim_iswhite(*p))
6426 {
6427 p = skipwhite(p);
6428 if (*p == NUL)
6429 break;
6430 len += 3; /* "," */
6431 }
6432 else
6433 {
Bram Moolenaardfef1542012-07-10 19:25:10 +02006434#ifdef FEAT_MBYTE
6435 int charlen = (*mb_ptr2len)(p);
6436 len += charlen;
6437 p += charlen;
6438#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006439 ++len;
6440 ++p;
Bram Moolenaardfef1542012-07-10 19:25:10 +02006441#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442 }
6443 }
6444
6445 buf = alloc(len + 1);
6446 if (buf == NULL)
6447 {
6448 *lenp = 0;
6449 return buf;
6450 }
6451
6452 p = arg;
6453 q = buf;
6454 *q++ = '"';
6455 while (*p)
6456 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006457 if (p[0] == '\\' && p[1] == '\\')
6458 {
6459 *q++ = '\\';
6460 *q++ = '\\';
6461 p += 2;
6462 }
6463 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006464 {
6465 *q++ = p[1];
6466 p += 2;
6467 }
6468 else if (*p == '\\' || *p == '"')
6469 {
6470 *q++ = '\\';
6471 *q++ = *p++;
6472 }
6473 else if (vim_iswhite(*p))
6474 {
6475 p = skipwhite(p);
6476 if (*p == NUL)
6477 break;
6478 *q++ = '"';
6479 *q++ = ',';
6480 *q++ = '"';
6481 }
6482 else
6483 {
Bram Moolenaardfef1542012-07-10 19:25:10 +02006484 MB_COPY_CHAR(p, q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006485 }
6486 }
6487 *q++ = '"';
6488 *q = 0;
6489
6490 *lenp = len;
6491 return buf;
6492}
6493
6494/*
6495 * Check for a <> code in a user command.
6496 * "code" points to the '<'. "len" the length of the <> (inclusive).
6497 * "buf" is where the result is to be added.
6498 * "split_buf" points to a buffer used for splitting, caller should free it.
6499 * "split_len" is the length of what "split_buf" contains.
6500 * Returns the length of the replacement, which has been added to "buf".
6501 * Returns -1 if there was no match, and only the "<" has been copied.
6502 */
6503 static size_t
6504uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
6505 char_u *code;
6506 size_t len;
6507 char_u *buf;
6508 ucmd_T *cmd; /* the user command we're expanding */
6509 exarg_T *eap; /* ex arguments */
6510 char_u **split_buf;
6511 size_t *split_len;
6512{
6513 size_t result = 0;
6514 char_u *p = code + 1;
6515 size_t l = len - 2;
6516 int quote = 0;
6517 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
6518 ct_LT, ct_NONE } type = ct_NONE;
6519
6520 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
6521 {
6522 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
6523 p += 2;
6524 l -= 2;
6525 }
6526
Bram Moolenaar371d5402006-03-20 21:47:49 +00006527 ++l;
6528 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006530 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006531 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006532 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006534 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006536 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006538 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006540 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006542 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543 type = ct_REGISTER;
6544
6545 switch (type)
6546 {
6547 case ct_ARGS:
6548 /* Simple case first */
6549 if (*eap->arg == NUL)
6550 {
6551 if (quote == 1)
6552 {
6553 result = 2;
6554 if (buf != NULL)
6555 STRCPY(buf, "''");
6556 }
6557 else
6558 result = 0;
6559 break;
6560 }
6561
6562 /* When specified there is a single argument don't split it.
6563 * Works for ":Cmd %" when % is "a b c". */
6564 if ((eap->argt & NOSPC) && quote == 2)
6565 quote = 1;
6566
6567 switch (quote)
6568 {
6569 case 0: /* No quoting, no splitting */
6570 result = STRLEN(eap->arg);
6571 if (buf != NULL)
6572 STRCPY(buf, eap->arg);
6573 break;
6574 case 1: /* Quote, but don't split */
6575 result = STRLEN(eap->arg) + 2;
6576 for (p = eap->arg; *p; ++p)
6577 {
Bram Moolenaar7d550fb2012-01-26 20:41:26 +01006578#ifdef FEAT_MBYTE
6579 if (enc_dbcs != 0 && (*mb_ptr2len)(p) == 2)
6580 /* DBCS can contain \ in a trail byte, skip the
6581 * double-byte character. */
6582 ++p;
6583 else
6584#endif
6585 if (*p == '\\' || *p == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586 ++result;
6587 }
6588
6589 if (buf != NULL)
6590 {
6591 *buf++ = '"';
6592 for (p = eap->arg; *p; ++p)
6593 {
Bram Moolenaar7d550fb2012-01-26 20:41:26 +01006594#ifdef FEAT_MBYTE
6595 if (enc_dbcs != 0 && (*mb_ptr2len)(p) == 2)
6596 /* DBCS can contain \ in a trail byte, copy the
6597 * double-byte character to avoid escaping. */
6598 *buf++ = *p++;
6599 else
6600#endif
6601 if (*p == '\\' || *p == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 *buf++ = '\\';
6603 *buf++ = *p;
6604 }
6605 *buf = '"';
6606 }
6607
6608 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006609 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006610 /* This is hard, so only do it once, and cache the result */
6611 if (*split_buf == NULL)
6612 *split_buf = uc_split_args(eap->arg, split_len);
6613
6614 result = *split_len;
6615 if (buf != NULL && result != 0)
6616 STRCPY(buf, *split_buf);
6617
6618 break;
6619 }
6620 break;
6621
6622 case ct_BANG:
6623 result = eap->forceit ? 1 : 0;
6624 if (quote)
6625 result += 2;
6626 if (buf != NULL)
6627 {
6628 if (quote)
6629 *buf++ = '"';
6630 if (eap->forceit)
6631 *buf++ = '!';
6632 if (quote)
6633 *buf = '"';
6634 }
6635 break;
6636
6637 case ct_LINE1:
6638 case ct_LINE2:
6639 case ct_COUNT:
6640 {
6641 char num_buf[20];
6642 long num = (type == ct_LINE1) ? eap->line1 :
6643 (type == ct_LINE2) ? eap->line2 :
6644 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
6645 size_t num_len;
6646
6647 sprintf(num_buf, "%ld", num);
6648 num_len = STRLEN(num_buf);
6649 result = num_len;
6650
6651 if (quote)
6652 result += 2;
6653
6654 if (buf != NULL)
6655 {
6656 if (quote)
6657 *buf++ = '"';
6658 STRCPY(buf, num_buf);
6659 buf += num_len;
6660 if (quote)
6661 *buf = '"';
6662 }
6663
6664 break;
6665 }
6666
6667 case ct_REGISTER:
6668 result = eap->regname ? 1 : 0;
6669 if (quote)
6670 result += 2;
6671 if (buf != NULL)
6672 {
6673 if (quote)
6674 *buf++ = '\'';
6675 if (eap->regname)
6676 *buf++ = eap->regname;
6677 if (quote)
6678 *buf = '\'';
6679 }
6680 break;
6681
6682 case ct_LT:
6683 result = 1;
6684 if (buf != NULL)
6685 *buf = '<';
6686 break;
6687
6688 default:
6689 /* Not recognized: just copy the '<' and return -1. */
6690 result = (size_t)-1;
6691 if (buf != NULL)
6692 *buf = '<';
6693 break;
6694 }
6695
6696 return result;
6697}
6698
6699 static void
6700do_ucmd(eap)
6701 exarg_T *eap;
6702{
6703 char_u *buf;
6704 char_u *p;
6705 char_u *q;
6706
6707 char_u *start;
Bram Moolenaar25648a52009-02-21 19:37:46 +00006708 char_u *end = NULL;
Bram Moolenaara850a712009-01-28 14:42:59 +00006709 char_u *ksp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710 size_t len, totlen;
6711
6712 size_t split_len = 0;
6713 char_u *split_buf = NULL;
6714 ucmd_T *cmd;
6715#ifdef FEAT_EVAL
6716 scid_T save_current_SID = current_SID;
6717#endif
6718
6719 if (eap->cmdidx == CMD_USER)
6720 cmd = USER_CMD(eap->useridx);
6721 else
6722 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
6723
6724 /*
6725 * Replace <> in the command by the arguments.
Bram Moolenaara850a712009-01-28 14:42:59 +00006726 * First round: "buf" is NULL, compute length, allocate "buf".
6727 * Second round: copy result into "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728 */
6729 buf = NULL;
6730 for (;;)
6731 {
Bram Moolenaara850a712009-01-28 14:42:59 +00006732 p = cmd->uc_rep; /* source */
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00006733 q = buf; /* destination */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734 totlen = 0;
Bram Moolenaara850a712009-01-28 14:42:59 +00006735
6736 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006737 {
Bram Moolenaara850a712009-01-28 14:42:59 +00006738 start = vim_strchr(p, '<');
6739 if (start != NULL)
6740 end = vim_strchr(start + 1, '>');
6741 if (buf != NULL)
6742 {
Bram Moolenaarf63c49d2011-03-03 15:54:50 +01006743 for (ksp = p; *ksp != NUL && *ksp != K_SPECIAL; ++ksp)
6744 ;
6745 if (*ksp == K_SPECIAL
6746 && (start == NULL || ksp < start || end == NULL)
Bram Moolenaara850a712009-01-28 14:42:59 +00006747 && ((ksp[1] == KS_SPECIAL && ksp[2] == KE_FILLER)
6748# ifdef FEAT_GUI
6749 || (ksp[1] == KS_EXTRA && ksp[2] == (int)KE_CSI)
6750# endif
6751 ))
6752 {
Bram Moolenaarf63c49d2011-03-03 15:54:50 +01006753 /* K_SPECIAL has been put in the buffer as K_SPECIAL
Bram Moolenaara850a712009-01-28 14:42:59 +00006754 * KS_SPECIAL KE_FILLER, like for mappings, but
6755 * do_cmdline() doesn't handle that, so convert it back.
6756 * Also change K_SPECIAL KS_EXTRA KE_CSI into CSI. */
6757 len = ksp - p;
6758 if (len > 0)
6759 {
6760 mch_memmove(q, p, len);
6761 q += len;
6762 }
6763 *q++ = ksp[1] == KS_SPECIAL ? K_SPECIAL : CSI;
6764 p = ksp + 3;
6765 continue;
6766 }
6767 }
6768
6769 /* break if there no <item> is found */
6770 if (start == NULL || end == NULL)
6771 break;
6772
Bram Moolenaar071d4272004-06-13 20:20:40 +00006773 /* Include the '>' */
6774 ++end;
6775
6776 /* Take everything up to the '<' */
6777 len = start - p;
6778 if (buf == NULL)
6779 totlen += len;
6780 else
6781 {
6782 mch_memmove(q, p, len);
6783 q += len;
6784 }
6785
6786 len = uc_check_code(start, end - start, q, cmd, eap,
6787 &split_buf, &split_len);
6788 if (len == (size_t)-1)
6789 {
6790 /* no match, continue after '<' */
6791 p = start + 1;
6792 len = 1;
6793 }
6794 else
6795 p = end;
6796 if (buf == NULL)
6797 totlen += len;
6798 else
6799 q += len;
6800 }
6801 if (buf != NULL) /* second time here, finished */
6802 {
6803 STRCPY(q, p);
6804 break;
6805 }
6806
6807 totlen += STRLEN(p); /* Add on the trailing characters */
6808 buf = alloc((unsigned)(totlen + 1));
6809 if (buf == NULL)
6810 {
6811 vim_free(split_buf);
6812 return;
6813 }
6814 }
6815
6816#ifdef FEAT_EVAL
6817 current_SID = cmd->uc_scriptID;
6818#endif
6819 (void)do_cmdline(buf, eap->getline, eap->cookie,
6820 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
6821#ifdef FEAT_EVAL
6822 current_SID = save_current_SID;
6823#endif
6824 vim_free(buf);
6825 vim_free(split_buf);
6826}
6827
6828# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6829 static char_u *
6830get_user_command_name(idx)
6831 int idx;
6832{
6833 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6834}
6835
6836/*
6837 * Function given to ExpandGeneric() to obtain the list of user command names.
6838 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839 char_u *
6840get_user_commands(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006841 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 int idx;
6843{
6844 if (idx < curbuf->b_ucmds.ga_len)
6845 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6846 idx -= curbuf->b_ucmds.ga_len;
6847 if (idx < ucmds.ga_len)
6848 return USER_CMD(idx)->uc_name;
6849 return NULL;
6850}
6851
6852/*
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006853 * Function given to ExpandGeneric() to obtain the list of user address type names.
6854 */
6855 char_u *
6856get_user_cmd_addr_type(xp, idx)
6857 expand_T *xp UNUSED;
6858 int idx;
6859{
6860 return (char_u *)addr_type_complete[idx].name;
6861}
6862
6863/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864 * Function given to ExpandGeneric() to obtain the list of user command
6865 * attributes.
6866 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867 char_u *
6868get_user_cmd_flags(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006869 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870 int idx;
6871{
6872 static char *user_cmd_flags[] =
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006873 {"addr", "bang", "bar", "buffer", "complete",
6874 "count", "nargs", "range", "register"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00006876 if (idx >= (int)(sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006877 return NULL;
6878 return (char_u *)user_cmd_flags[idx];
6879}
6880
6881/*
6882 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6883 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884 char_u *
6885get_user_cmd_nargs(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006886 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887 int idx;
6888{
6889 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6890
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00006891 if (idx >= (int)(sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006892 return NULL;
6893 return (char_u *)user_cmd_nargs[idx];
6894}
6895
6896/*
6897 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6898 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 char_u *
6900get_user_cmd_complete(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006901 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006902 int idx;
6903{
6904 return (char_u *)command_complete[idx].name;
6905}
6906# endif /* FEAT_CMDL_COMPL */
6907
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006908/*
6909 * Parse address type argument
6910 */
6911 int
6912parse_addr_type_arg(value, vallen, argt, addr_type_arg)
6913 char_u *value;
6914 int vallen;
6915 long *argt;
6916 int *addr_type_arg;
6917{
6918 int i, a, b;
6919 for (i = 0; addr_type_complete[i].expand != -1; ++i)
6920 {
6921 a = (int)STRLEN(addr_type_complete[i].name) == vallen;
6922 b = STRNCMP(value, addr_type_complete[i].name, vallen) == 0;
6923 if (a && b)
6924 {
6925 *addr_type_arg = addr_type_complete[i].expand;
6926 break;
6927 }
6928 }
6929
6930 if (addr_type_complete[i].expand == -1)
6931 {
6932 char_u *err = value;
6933 for (i=0; err[i] == NUL || !vim_iswhite(err[i]); i++);
6934 err[i] = NUL;
6935 EMSG2(_("E180: Invalid address type value: %s"), err);
6936 return FAIL;
6937 }
6938
6939 if (*addr_type_arg != ADDR_LINES)
6940 *argt |= NOTADR;
6941
6942 return OK;
6943}
6944
Bram Moolenaar071d4272004-06-13 20:20:40 +00006945#endif /* FEAT_USR_CMDS */
6946
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006947#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6948/*
6949 * Parse a completion argument "value[vallen]".
6950 * The detected completion goes in "*complp", argument type in "*argt".
6951 * When there is an argument, for function and user defined completion, it's
6952 * copied to allocated memory and stored in "*compl_arg".
6953 * Returns FAIL if something is wrong.
6954 */
6955 int
6956parse_compl_arg(value, vallen, complp, argt, compl_arg)
6957 char_u *value;
6958 int vallen;
6959 int *complp;
6960 long *argt;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006961 char_u **compl_arg UNUSED;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006962{
6963 char_u *arg = NULL;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006964# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006965 size_t arglen = 0;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006966# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006967 int i;
6968 int valend = vallen;
6969
6970 /* Look for any argument part - which is the part after any ',' */
6971 for (i = 0; i < vallen; ++i)
6972 {
6973 if (value[i] == ',')
6974 {
6975 arg = &value[i + 1];
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006976# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006977 arglen = vallen - i - 1;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006978# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006979 valend = i;
6980 break;
6981 }
6982 }
6983
6984 for (i = 0; command_complete[i].expand != 0; ++i)
6985 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006986 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006987 && STRNCMP(value, command_complete[i].name, valend) == 0)
6988 {
6989 *complp = command_complete[i].expand;
6990 if (command_complete[i].expand == EXPAND_BUFFERS)
6991 *argt |= BUFNAME;
6992 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6993 || command_complete[i].expand == EXPAND_FILES)
6994 *argt |= XFILE;
6995 break;
6996 }
6997 }
6998
6999 if (command_complete[i].expand == 0)
7000 {
7001 EMSG2(_("E180: Invalid complete value: %s"), value);
7002 return FAIL;
7003 }
7004
7005# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
7006 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
7007 && arg != NULL)
7008# else
7009 if (arg != NULL)
7010# endif
7011 {
7012 EMSG(_("E468: Completion argument only allowed for custom completion"));
7013 return FAIL;
7014 }
7015
7016# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
7017 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
7018 && arg == NULL)
7019 {
7020 EMSG(_("E467: Custom completion requires a function argument"));
7021 return FAIL;
7022 }
7023
7024 if (arg != NULL)
7025 *compl_arg = vim_strnsave(arg, (int)arglen);
7026# endif
7027 return OK;
7028}
7029#endif
7030
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 static void
7032ex_colorscheme(eap)
7033 exarg_T *eap;
7034{
Bram Moolenaare6850792010-05-14 15:28:44 +02007035 if (*eap->arg == NUL)
7036 {
7037#ifdef FEAT_EVAL
7038 char_u *expr = vim_strsave((char_u *)"g:colors_name");
7039 char_u *p = NULL;
7040
7041 if (expr != NULL)
7042 {
7043 ++emsg_off;
7044 p = eval_to_string(expr, NULL, FALSE);
7045 --emsg_off;
7046 vim_free(expr);
7047 }
7048 if (p != NULL)
7049 {
7050 MSG(p);
7051 vim_free(p);
7052 }
7053 else
7054 MSG("default");
7055#else
7056 MSG(_("unknown"));
7057#endif
7058 }
7059 else if (load_colors(eap->arg) == FAIL)
Bram Moolenaarbe1e9e92012-09-18 16:47:07 +02007060 EMSG2(_("E185: Cannot find color scheme '%s'"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061}
7062
7063 static void
7064ex_highlight(eap)
7065 exarg_T *eap;
7066{
7067 if (*eap->arg == NUL && eap->cmd[2] == '!')
7068 MSG(_("Greetings, Vim user!"));
7069 do_highlight(eap->arg, eap->forceit, FALSE);
7070}
7071
7072
7073/*
7074 * Call this function if we thought we were going to exit, but we won't
7075 * (because of an error). May need to restore the terminal mode.
7076 */
7077 void
7078not_exiting()
7079{
7080 exiting = FALSE;
7081 settmode(TMODE_RAW);
7082}
7083
7084/*
Bram Moolenaarf240e182014-11-27 18:33:02 +01007085 * ":quit": quit current window, quit Vim if the last window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086 */
7087 static void
7088ex_quit(eap)
7089 exarg_T *eap;
7090{
Bram Moolenaarf240e182014-11-27 18:33:02 +01007091#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007092 win_T *wp;
Bram Moolenaarf240e182014-11-27 18:33:02 +01007093#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007094
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095#ifdef FEAT_CMDWIN
7096 if (cmdwin_type != 0)
7097 {
7098 cmdwin_result = Ctrl_C;
7099 return;
7100 }
7101#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007102 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007103 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007104 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007105 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007106 return;
7107 }
Bram Moolenaarf240e182014-11-27 18:33:02 +01007108#ifdef FEAT_WINDOWS
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007109 if (eap->addr_count > 0)
7110 {
Bram Moolenaarf240e182014-11-27 18:33:02 +01007111 int wnr = eap->line2;
7112
7113 for (wp = firstwin; wp->w_next != NULL; wp = wp->w_next)
7114 if (--wnr <= 0)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007115 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007116 }
7117 else
Bram Moolenaarf240e182014-11-27 18:33:02 +01007118#endif
7119#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007120 wp = curwin;
Bram Moolenaarf240e182014-11-27 18:33:02 +01007121#endif
7122
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007123#ifdef FEAT_AUTOCMD
Bram Moolenaar3b53dfb2012-06-06 18:03:07 +02007124 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007125 /* Refuse to quit when locked or when the buffer in the last window is
Bram Moolenaar362ce482012-06-06 19:02:45 +02007126 * being closed (can only happen in autocommands). */
Bram Moolenaarf240e182014-11-27 18:33:02 +01007127 if (curbuf_locked() || (wp->w_buffer->b_nwindows == 1
7128 && wp->w_buffer->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007129 return;
7130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131
7132#ifdef FEAT_NETBEANS_INTG
7133 netbeansForcedQuit = eap->forceit;
7134#endif
7135
7136 /*
7137 * If there are more files or windows we won't exit.
7138 */
7139 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
7140 exiting = TRUE;
7141 if ((!P_HID(curbuf)
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007142 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
7143 | (eap->forceit ? CCGD_FORCEIT : 0)
7144 | CCGD_EXCMD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145 || check_more(TRUE, eap->forceit) == FAIL
7146 || (only_one_window() && check_changed_any(eap->forceit)))
7147 {
7148 not_exiting();
7149 }
7150 else
7151 {
7152#ifdef FEAT_WINDOWS
Bram Moolenaarc7a0d322015-06-19 12:43:07 +02007153 /* quit last window
7154 * Note: only_one_window() returns true, even so a help window is
7155 * still open. In that case only quit, if no address has been
7156 * specified. Example:
7157 * :h|wincmd w|1q - don't quit
7158 * :h|wincmd w|q - quit
7159 */
7160 if (only_one_window() && (firstwin == lastwin || eap->addr_count == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161#endif
7162 getout(0);
7163#ifdef FEAT_WINDOWS
7164# ifdef FEAT_GUI
7165 need_mouse_correct = TRUE;
7166# endif
7167 /* close window; may free buffer */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007168 win_close(wp, !P_HID(wp->w_buffer) || eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169#endif
7170 }
7171}
7172
7173/*
7174 * ":cquit".
7175 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007176 static void
7177ex_cquit(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007178 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179{
7180 getout(1); /* this does not always pass on the exit code to the Manx
7181 compiler. why? */
7182}
7183
7184/*
7185 * ":qall": try to quit all windows
7186 */
7187 static void
7188ex_quit_all(eap)
7189 exarg_T *eap;
7190{
7191# ifdef FEAT_CMDWIN
7192 if (cmdwin_type != 0)
7193 {
7194 if (eap->forceit)
7195 cmdwin_result = K_XF1; /* ex_window() takes care of this */
7196 else
7197 cmdwin_result = K_XF2;
7198 return;
7199 }
7200# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007201
7202 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007203 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007204 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007205 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007206 return;
7207 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007208#ifdef FEAT_AUTOCMD
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007209 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
7210 /* Refuse to quit when locked or when the buffer in the last window is
7211 * being closed (can only happen in autocommands). */
7212 if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007213 return;
7214#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007215
Bram Moolenaar071d4272004-06-13 20:20:40 +00007216 exiting = TRUE;
7217 if (eap->forceit || !check_changed_any(FALSE))
7218 getout(0);
7219 not_exiting();
7220}
7221
Bram Moolenaard9967712006-03-11 21:18:15 +00007222#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007223/*
7224 * ":close": close current window, unless it is the last one
7225 */
7226 static void
7227ex_close(eap)
7228 exarg_T *eap;
7229{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007230 win_T *win;
7231 int winnr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007232# ifdef FEAT_CMDWIN
7233 if (cmdwin_type != 0)
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02007234 cmdwin_result = Ctrl_C;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007235 else
7236# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007237 if (!text_locked()
7238#ifdef FEAT_AUTOCMD
7239 && !curbuf_locked()
7240#endif
7241 )
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007242 {
7243 if (eap->addr_count == 0)
7244 ex_win_close(eap->forceit, curwin, NULL);
7245 else {
7246 for (win = firstwin; win != NULL; win = win->w_next)
7247 {
7248 winnr++;
7249 if (winnr == eap->line2)
7250 break;
7251 }
7252 if (win == NULL)
7253 win = lastwin;
7254 ex_win_close(eap->forceit, win, NULL);
7255 }
7256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007257}
7258
Bram Moolenaard9967712006-03-11 21:18:15 +00007259# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007260/*
7261 * ":pclose": Close any preview window.
7262 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007263 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007264ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007266{
7267 win_T *win;
7268
7269 for (win = firstwin; win != NULL; win = win->w_next)
7270 if (win->w_p_pvw)
7271 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007272 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007273 break;
7274 }
7275}
Bram Moolenaard9967712006-03-11 21:18:15 +00007276# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007277
Bram Moolenaarf740b292006-02-16 22:11:02 +00007278/*
7279 * Close window "win" and take care of handling closing the last window for a
7280 * modified buffer.
7281 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007282 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00007283ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007284 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007286 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007287{
7288 int need_hide;
7289 buf_T *buf = win->w_buffer;
7290
7291 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007292 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007293 {
Bram Moolenaard9967712006-03-11 21:18:15 +00007294# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295 if ((p_confirm || cmdmod.confirm) && p_write)
7296 {
7297 dialog_changed(buf, FALSE);
7298 if (buf_valid(buf) && bufIsChanged(buf))
7299 return;
7300 need_hide = FALSE;
7301 }
7302 else
Bram Moolenaard9967712006-03-11 21:18:15 +00007303# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007304 {
7305 EMSG(_(e_nowrtmsg));
7306 return;
7307 }
7308 }
7309
Bram Moolenaard9967712006-03-11 21:18:15 +00007310# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00007312# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00007313
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00007315 if (tp == NULL)
7316 win_close(win, !need_hide && !P_HID(buf));
7317 else
7318 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007319}
7320
Bram Moolenaar071d4272004-06-13 20:20:40 +00007321/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00007322 * ":tabclose": close current tab page, unless it is the last one.
7323 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007324 */
7325 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007326ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007327 exarg_T *eap;
7328{
Bram Moolenaarf740b292006-02-16 22:11:02 +00007329 tabpage_T *tp;
7330
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007331# ifdef FEAT_CMDWIN
7332 if (cmdwin_type != 0)
7333 cmdwin_result = K_IGNORE;
7334 else
7335# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00007336 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007337 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00007338 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007340 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007341 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007342 tp = find_tabpage((int)eap->line2);
7343 if (tp == NULL)
7344 {
7345 beep_flush();
7346 return;
7347 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007348 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00007349 {
7350 tabpage_close_other(tp, eap->forceit);
7351 return;
7352 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007353 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007354 if (!text_locked()
7355#ifdef FEAT_AUTOCMD
7356 && !curbuf_locked()
7357#endif
7358 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00007359 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007360 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007361}
7362
7363/*
7364 * ":tabonly": close all tab pages except the current one
7365 */
7366 static void
7367ex_tabonly(eap)
7368 exarg_T *eap;
7369{
7370 tabpage_T *tp;
7371 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007372
7373# ifdef FEAT_CMDWIN
7374 if (cmdwin_type != 0)
7375 cmdwin_result = K_IGNORE;
7376 else
7377# endif
7378 if (first_tabpage->tp_next == NULL)
7379 MSG(_("Already only one tab page"));
7380 else
7381 {
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007382 if (eap->addr_count > 0)
7383 goto_tabpage(eap->line2);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007384 /* Repeat this up to a 1000 times, because autocommands may mess
7385 * up the lists. */
7386 for (done = 0; done < 1000; ++done)
7387 {
7388 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7389 if (tp->tp_topframe != topframe)
7390 {
7391 tabpage_close_other(tp, eap->forceit);
7392 /* if we failed to close it quit */
7393 if (valid_tabpage(tp))
7394 done = 1000;
7395 /* start over, "tp" is now invalid */
7396 break;
7397 }
7398 if (first_tabpage->tp_next == NULL)
7399 break;
7400 }
7401 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403
7404/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00007405 * Close the current tab page.
7406 */
7407 void
7408tabpage_close(forceit)
7409 int forceit;
7410{
7411 /* First close all the windows but the current one. If that worked then
7412 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007413 if (lastwin != firstwin)
7414 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007415 if (lastwin == firstwin)
7416 ex_win_close(forceit, curwin, NULL);
7417# ifdef FEAT_GUI
7418 need_mouse_correct = TRUE;
7419# endif
7420}
7421
7422/*
7423 * Close tab page "tp", which is not the current tab page.
7424 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007425 * Also takes care of the tab pages line disappearing when closing the
7426 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00007427 */
7428 void
7429tabpage_close_other(tp, forceit)
7430 tabpage_T *tp;
7431 int forceit;
7432{
7433 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007434 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007435 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00007436
7437 /* Limit to 1000 windows, autocommands may add a window while we close
7438 * one. OK, so I'm paranoid... */
7439 while (++done < 1000)
7440 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007441 wp = tp->tp_firstwin;
7442 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007443
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007444 /* Autocommands may delete the tab page under our fingers and we may
7445 * fail to close a window with a modified buffer. */
7446 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00007447 break;
7448 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007449
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007450 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007451 if (h != tabline_height())
7452 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00007453}
7454
7455/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007456 * ":only".
7457 */
7458 static void
7459ex_only(eap)
7460 exarg_T *eap;
7461{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007462 win_T *wp;
7463 int wnr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007464# ifdef FEAT_GUI
7465 need_mouse_correct = TRUE;
7466# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007467 if (eap->addr_count > 0)
7468 {
7469 wnr = eap->line2;
7470 for (wp = firstwin; --wnr > 0; )
7471 {
7472 if (wp->w_next == NULL)
7473 break;
7474 else
7475 wp = wp->w_next;
7476 }
7477 win_goto(wp);
7478 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479 close_others(TRUE, eap->forceit);
7480}
7481
7482/*
7483 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00007484 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485 */
Bram Moolenaard9967712006-03-11 21:18:15 +00007486 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007487ex_all(eap)
7488 exarg_T *eap;
7489{
7490 if (eap->addr_count == 0)
7491 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00007492 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007493}
7494#endif /* FEAT_WINDOWS */
7495
7496 static void
7497ex_hide(eap)
7498 exarg_T *eap;
7499{
7500 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
7501 eap->errmsg = e_invarg;
7502 else
7503 {
7504 /* ":hide" or ":hide | cmd": hide current window */
7505 eap->nextcmd = check_nextcmd(eap->arg);
7506#ifdef FEAT_WINDOWS
7507 if (!eap->skip)
7508 {
7509# ifdef FEAT_GUI
7510 need_mouse_correct = TRUE;
7511# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007512 if (eap->addr_count == 0)
7513 win_close(curwin, FALSE); /* don't free buffer */
Bram Moolenaarf240e182014-11-27 18:33:02 +01007514 else
7515 {
7516 int winnr = 0;
7517 win_T *win;
7518
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007519 for (win = firstwin; win != NULL; win = win->w_next)
7520 {
7521 winnr++;
7522 if (winnr == eap->line2)
7523 break;
7524 }
7525 if (win == NULL)
7526 win = lastwin;
7527 win_close(win, FALSE);
7528 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007529 }
7530#endif
7531 }
7532}
7533
7534/*
7535 * ":stop" and ":suspend": Suspend Vim.
7536 */
7537 static void
7538ex_stop(eap)
7539 exarg_T *eap;
7540{
7541 /*
7542 * Disallow suspending for "rvim".
7543 */
7544 if (!check_restricted()
7545#ifdef WIN3264
7546 /*
7547 * Check if external commands are allowed now.
7548 */
7549 && can_end_termcap_mode(TRUE)
7550#endif
7551 )
7552 {
7553 if (!eap->forceit)
7554 autowrite_all();
7555 windgoto((int)Rows - 1, 0);
7556 out_char('\n');
7557 out_flush();
7558 stoptermcap();
7559 out_flush(); /* needed for SUN to restore xterm buffer */
7560#ifdef FEAT_TITLE
7561 mch_restore_title(3); /* restore window titles */
7562#endif
7563 ui_suspend(); /* call machine specific function */
7564#ifdef FEAT_TITLE
7565 maketitle();
7566 resettitle(); /* force updating the title */
7567#endif
7568 starttermcap();
7569 scroll_start(); /* scroll screen before redrawing */
7570 redraw_later_clear();
7571 shell_resized(); /* may have resized window */
7572 }
7573}
7574
7575/*
7576 * ":exit", ":xit" and ":wq": Write file and exit Vim.
7577 */
7578 static void
7579ex_exit(eap)
7580 exarg_T *eap;
7581{
7582#ifdef FEAT_CMDWIN
7583 if (cmdwin_type != 0)
7584 {
7585 cmdwin_result = Ctrl_C;
7586 return;
7587 }
7588#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007589 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007590 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007591 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007592 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007593 return;
7594 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007595#ifdef FEAT_AUTOCMD
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007596 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
7597 /* Refuse to quit when locked or when the buffer in the last window is
7598 * being closed (can only happen in autocommands). */
7599 if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007600 return;
7601#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007602
7603 /*
7604 * if more files or windows we won't exit
7605 */
7606 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
7607 exiting = TRUE;
7608 if ( ((eap->cmdidx == CMD_wq
7609 || curbufIsChanged())
7610 && do_write(eap) == FAIL)
7611 || check_more(TRUE, eap->forceit) == FAIL
7612 || (only_one_window() && check_changed_any(eap->forceit)))
7613 {
7614 not_exiting();
7615 }
7616 else
7617 {
7618#ifdef FEAT_WINDOWS
7619 if (only_one_window()) /* quit last window, exit Vim */
7620#endif
7621 getout(0);
7622#ifdef FEAT_WINDOWS
7623# ifdef FEAT_GUI
7624 need_mouse_correct = TRUE;
7625# endif
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02007626 /* Quit current window, may free the buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007627 win_close(curwin, !P_HID(curwin->w_buffer));
7628#endif
7629 }
7630}
7631
7632/*
7633 * ":print", ":list", ":number".
7634 */
7635 static void
7636ex_print(eap)
7637 exarg_T *eap;
7638{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007639 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7640 EMSG(_(e_emptybuf));
7641 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007642 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007643 for ( ;!got_int; ui_breakcheck())
7644 {
7645 print_line(eap->line1,
7646 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
7647 || (eap->flags & EXFLAG_NR)),
7648 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
7649 if (++eap->line1 > eap->line2)
7650 break;
7651 out_flush(); /* show one line at a time */
7652 }
7653 setpcmark();
7654 /* put cursor at last line */
7655 curwin->w_cursor.lnum = eap->line2;
7656 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007657 }
7658
Bram Moolenaar071d4272004-06-13 20:20:40 +00007659 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007660}
7661
7662#ifdef FEAT_BYTEOFF
7663 static void
7664ex_goto(eap)
7665 exarg_T *eap;
7666{
7667 goto_byte(eap->line2);
7668}
7669#endif
7670
7671/*
7672 * ":shell".
7673 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007674 static void
7675ex_shell(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007676 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007677{
7678 do_shell(NULL, 0);
7679}
7680
7681#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
7682 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00007683 || defined(FEAT_GUI_MSWIN) \
7684 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00007685 || defined(PROTO)
7686
7687/*
7688 * Handle a file drop. The code is here because a drop is *nearly* like an
7689 * :args command, but not quite (we have a list of exact filenames, so we
7690 * don't want to (a) parse a command line, or (b) expand wildcards. So the
7691 * code is very similar to :args and hence needs access to a lot of the static
7692 * functions in this file.
7693 *
7694 * The list should be allocated using alloc(), as should each item in the
7695 * list. This function takes over responsibility for freeing the list.
7696 *
Bram Moolenaar81870892007-11-11 18:17:28 +00007697 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00007698 * FreeWild(), which does a series of vim_free() calls, unless the two defines
7699 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
7700 * routine _fnexplodefree() is used. This may cause problems, but as the drop
7701 * file functionality is (currently) not in EMX this is not presently a
7702 * problem.
7703 */
7704 void
7705handle_drop(filec, filev, split)
7706 int filec; /* the number of files dropped */
7707 char_u **filev; /* the list of files dropped */
7708 int split; /* force splitting the window */
7709{
7710 exarg_T ea;
7711 int save_msg_scroll = msg_scroll;
7712
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007713 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007714 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007715 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007716#ifdef FEAT_AUTOCMD
7717 if (curbuf_locked())
7718 return;
7719#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00007720 /* When the screen is being updated we should not change buffers and
7721 * windows structures, it may cause freed memory to be used. */
7722 if (updating_screen)
7723 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007724
7725 /* Check whether the current buffer is changed. If so, we will need
7726 * to split the current window or data could be lost.
7727 * We don't need to check if the 'hidden' option is set, as in this
7728 * case the buffer won't be lost.
7729 */
7730 if (!P_HID(curbuf) && !split)
7731 {
7732 ++emsg_off;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007733 split = check_changed(curbuf, CCGD_AW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007734 --emsg_off;
7735 }
7736 if (split)
7737 {
7738# ifdef FEAT_WINDOWS
7739 if (win_split(0, 0) == FAIL)
7740 return;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02007741 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007742
7743 /* When splitting the window, create a new alist. Otherwise the
7744 * existing one is overwritten. */
7745 alist_unlink(curwin->w_alist);
7746 alist_new();
7747# else
7748 return; /* can't split, always fail */
7749# endif
7750 }
7751
7752 /*
7753 * Set up the new argument list.
7754 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00007755 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007756
7757 /*
7758 * Move to the first file.
7759 */
7760 /* Fake up a minimal "next" command for do_argfile() */
7761 vim_memset(&ea, 0, sizeof(ea));
7762 ea.cmd = (char_u *)"next";
7763 do_argfile(&ea, 0);
7764
7765 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
7766 * mode that is not needed here. */
7767 need_start_insertmode = FALSE;
7768
7769 /* Restore msg_scroll, otherwise a following command may cause scrolling
7770 * unexpectedly. The screen will be redrawn by the caller, thus
7771 * msg_scroll being set by displaying a message is irrelevant. */
7772 msg_scroll = save_msg_scroll;
7773}
7774#endif
7775
Bram Moolenaar071d4272004-06-13 20:20:40 +00007776/*
7777 * Clear an argument list: free all file names and reset it to zero entries.
7778 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007779 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007780alist_clear(al)
7781 alist_T *al;
7782{
7783 while (--al->al_ga.ga_len >= 0)
7784 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
7785 ga_clear(&al->al_ga);
7786}
7787
7788/*
7789 * Init an argument list.
7790 */
7791 void
7792alist_init(al)
7793 alist_T *al;
7794{
7795 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
7796}
7797
7798#if defined(FEAT_WINDOWS) || defined(PROTO)
7799
7800/*
7801 * Remove a reference from an argument list.
7802 * Ignored when the argument list is the global one.
7803 * If the argument list is no longer used by any window, free it.
7804 */
7805 void
7806alist_unlink(al)
7807 alist_T *al;
7808{
7809 if (al != &global_alist && --al->al_refcount <= 0)
7810 {
7811 alist_clear(al);
7812 vim_free(al);
7813 }
7814}
7815
7816# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
7817/*
7818 * Create a new argument list and use it for the current window.
7819 */
7820 void
7821alist_new()
7822{
7823 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
7824 if (curwin->w_alist == NULL)
7825 {
7826 curwin->w_alist = &global_alist;
7827 ++global_alist.al_refcount;
7828 }
7829 else
7830 {
7831 curwin->w_alist->al_refcount = 1;
Bram Moolenaar2d1fe052014-05-28 18:22:57 +02007832 curwin->w_alist->id = ++max_alist_id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007833 alist_init(curwin->w_alist);
7834 }
7835}
7836# endif
7837#endif
7838
Bram Moolenaar53076832015-12-31 19:53:21 +01007839#if (!defined(UNIX) && !defined(__EMX__)) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007840/*
7841 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007842 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
7843 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007844 */
7845 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00007846alist_expand(fnum_list, fnum_len)
7847 int *fnum_list;
7848 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007849{
7850 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007851 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007852 char_u **new_arg_files;
7853 int new_arg_file_count;
7854 char_u *save_p_su = p_su;
7855 int i;
7856
7857 /* Don't use 'suffixes' here. This should work like the shell did the
7858 * expansion. Also, the vimrc file isn't read yet, thus the user
7859 * can't set the options. */
7860 p_su = empty_option;
7861 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
7862 if (old_arg_files != NULL)
7863 {
7864 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007865 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
7866 old_arg_count = GARGCOUNT;
7867 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007868 &new_arg_file_count, &new_arg_files,
Bram Moolenaarb5609832011-07-20 15:04:58 +02007869 EW_FILE|EW_NOTFOUND|EW_ADDSLASH|EW_NOERROR) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00007870 && new_arg_file_count > 0)
7871 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00007872 alist_set(&global_alist, new_arg_file_count, new_arg_files,
7873 TRUE, fnum_list, fnum_len);
7874 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007875 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007876 }
7877 p_su = save_p_su;
7878}
7879#endif
7880
7881/*
7882 * Set the argument list for the current window.
7883 * Takes over the allocated files[] and the allocated fnames in it.
7884 */
7885 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00007886alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007887 alist_T *al;
7888 int count;
7889 char_u **files;
7890 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007891 int *fnum_list;
7892 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007893{
7894 int i;
7895
7896 alist_clear(al);
7897 if (ga_grow(&al->al_ga, count) == OK)
7898 {
7899 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007900 {
7901 if (got_int)
7902 {
7903 /* When adding many buffers this can take a long time. Allow
7904 * interrupting here. */
7905 while (i < count)
7906 vim_free(files[i++]);
7907 break;
7908 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007909
7910 /* May set buffer name of a buffer previously used for the
7911 * argument list, so that it's re-used by alist_add. */
7912 if (fnum_list != NULL && i < fnum_len)
7913 buf_set_name(fnum_list[i], files[i]);
7914
Bram Moolenaar071d4272004-06-13 20:20:40 +00007915 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007916 ui_breakcheck();
7917 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007918 vim_free(files);
7919 }
7920 else
7921 FreeWild(count, files);
7922#ifdef FEAT_WINDOWS
7923 if (al == &global_alist)
7924#endif
7925 arg_had_last = FALSE;
7926}
7927
7928/*
7929 * Add file "fname" to argument list "al".
7930 * "fname" must have been allocated and "al" must have been checked for room.
7931 */
7932 void
7933alist_add(al, fname, set_fnum)
7934 alist_T *al;
7935 char_u *fname;
7936 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
7937{
7938 if (fname == NULL) /* don't add NULL file names */
7939 return;
7940#ifdef BACKSLASH_IN_FILENAME
7941 slash_adjust(fname);
7942#endif
7943 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
7944 if (set_fnum > 0)
7945 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
7946 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
7947 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007948}
7949
7950#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7951/*
7952 * Adjust slashes in file names. Called after 'shellslash' was set.
7953 */
7954 void
7955alist_slash_adjust()
7956{
7957 int i;
7958# ifdef FEAT_WINDOWS
7959 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007960 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007961# endif
7962
7963 for (i = 0; i < GARGCOUNT; ++i)
7964 if (GARGLIST[i].ae_fname != NULL)
7965 slash_adjust(GARGLIST[i].ae_fname);
7966# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00007967 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007968 if (wp->w_alist != &global_alist)
7969 for (i = 0; i < WARGCOUNT(wp); ++i)
7970 if (WARGLIST(wp)[i].ae_fname != NULL)
7971 slash_adjust(WARGLIST(wp)[i].ae_fname);
7972# endif
7973}
7974#endif
7975
7976/*
7977 * ":preserve".
7978 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007979 static void
7980ex_preserve(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007981 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007982{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007983 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007984 ml_preserve(curbuf, TRUE);
7985}
7986
7987/*
7988 * ":recover".
7989 */
7990 static void
7991ex_recover(eap)
7992 exarg_T *eap;
7993{
7994 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7995 recoverymode = TRUE;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007996 if (!check_changed(curbuf, (p_awa ? CCGD_AW : 0)
7997 | CCGD_MULTWIN
7998 | (eap->forceit ? CCGD_FORCEIT : 0)
7999 | CCGD_EXCMD)
8000
Bram Moolenaar071d4272004-06-13 20:20:40 +00008001 && (*eap->arg == NUL
8002 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
8003 ml_recover();
8004 recoverymode = FALSE;
8005}
8006
8007/*
8008 * Command modifier used in a wrong way.
8009 */
8010 static void
8011ex_wrongmodifier(eap)
8012 exarg_T *eap;
8013{
8014 eap->errmsg = e_invcmd;
8015}
8016
8017#ifdef FEAT_WINDOWS
8018/*
8019 * :sview [+command] file split window with new file, read-only
8020 * :split [[+command] file] split window with current or new file
8021 * :vsplit [[+command] file] split window vertically with current or new file
8022 * :new [[+command] file] split window with no or new file
8023 * :vnew [[+command] file] split vertically window with no or new file
8024 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008025 *
8026 * :tabedit open new Tab page with empty window
8027 * :tabedit [+command] file open new Tab page and edit "file"
8028 * :tabnew [[+command] file] just like :tabedit
8029 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008030 */
8031 void
8032ex_splitview(eap)
8033 exarg_T *eap;
8034{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008035 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008036# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008037 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008038# endif
8039# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008040 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008041# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008042
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008043# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00008044 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
8045 {
8046 ex_ni(eap);
8047 return;
8048 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008050
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008051# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008052 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008053# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008055# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00008056 /* A ":split" in the quickfix window works like ":new". Don't want two
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008057 * quickfix windows. But it's OK when doing ":tab split". */
8058 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008059 {
8060 if (eap->cmdidx == CMD_split)
8061 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008062# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00008063 if (eap->cmdidx == CMD_vsplit)
8064 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008065# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008066 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008067# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008068
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008069# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008070 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008071 {
8072 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
8073 FNAME_MESS, TRUE, curbuf->b_ffname);
8074 if (fname == NULL)
8075 goto theend;
8076 eap->arg = fname;
8077 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008078# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008079 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008080# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008081# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008082# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008083 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008084# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00008085 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008086# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008087 && eap->cmdidx != CMD_new)
8088 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008089# ifdef FEAT_AUTOCMD
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008090 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008091# ifdef FEAT_GUI
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008092 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008093# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008094 au_has_group((char_u *)"FileExplorer"))
8095 {
8096 /* No browsing supported but we do have the file explorer:
8097 * Edit the directory. */
8098 if (*eap->arg == NUL || !mch_isdir(eap->arg))
8099 eap->arg = (char_u *)".";
8100 }
8101 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008102# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008103 {
8104 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00008105 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008106 if (fname == NULL)
8107 goto theend;
8108 eap->arg = fname;
8109 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008110 }
8111 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008112# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008114 /*
8115 * Either open new tab page or split the window.
8116 */
8117 if (eap->cmdidx == CMD_tabedit
8118 || eap->cmdidx == CMD_tabfind
8119 || eap->cmdidx == CMD_tabnew)
8120 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00008121 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
8122 : eap->addr_count == 0 ? 0
8123 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008124 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00008125 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008126
8127 /* set the alternate buffer for the window we came from */
8128 if (curwin != old_curwin
8129 && win_valid(old_curwin)
8130 && old_curwin->w_buffer != curbuf
8131 && !cmdmod.keepalt)
8132 old_curwin->w_alt_fnum = curbuf->b_fnum;
8133 }
8134 }
8135 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008136 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
8137 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008138# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00008139 /* Reset 'scrollbind' when editing another file, but keep it when
8140 * doing ":split" without arguments. */
8141 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008142# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008143 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008144# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008145 )
Bram Moolenaar3368ea22010-09-21 16:56:35 +02008146 {
8147 RESET_BINDING(curwin);
8148 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008149 else
8150 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008151# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008152 do_exedit(eap, old_curwin);
8153 }
8154
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008155# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008156 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008157# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008158
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008159# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008160theend:
8161 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008162# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008163}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008164
8165/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008166 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008167 */
8168 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008169tabpage_new()
8170{
8171 exarg_T ea;
8172
8173 vim_memset(&ea, 0, sizeof(ea));
8174 ea.cmdidx = CMD_tabnew;
8175 ea.cmd = (char_u *)"tabn";
8176 ea.arg = (char_u *)"";
8177 ex_splitview(&ea);
8178}
8179
8180/*
8181 * :tabnext command
8182 */
8183 static void
8184ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008185 exarg_T *eap;
8186{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00008187 switch (eap->cmdidx)
8188 {
8189 case CMD_tabfirst:
8190 case CMD_tabrewind:
8191 goto_tabpage(1);
8192 break;
8193 case CMD_tablast:
8194 goto_tabpage(9999);
8195 break;
8196 case CMD_tabprevious:
8197 case CMD_tabNext:
8198 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
8199 break;
8200 default: /* CMD_tabnext */
8201 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
8202 break;
8203 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008204}
8205
8206/*
8207 * :tabmove command
8208 */
8209 static void
8210ex_tabmove(eap)
8211 exarg_T *eap;
8212{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008213 int tab_number;
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008214
8215 if (eap->arg && *eap->arg != NUL)
8216 {
8217 char_u *p = eap->arg;
8218 int relative = 0; /* argument +N/-N means: move N places to the
8219 * right/left relative to the current position. */
8220
8221 if (*eap->arg == '-')
8222 {
8223 relative = -1;
8224 p = eap->arg + 1;
8225 }
8226 else if (*eap->arg == '+')
8227 {
8228 relative = 1;
8229 p = eap->arg + 1;
8230 }
8231 else
8232 p = eap->arg;
8233
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008234 if (relative == 0)
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008235 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008236 if (STRCMP(p, "$") == 0)
8237 tab_number = LAST_TAB_NR;
8238 else if (p == skipdigits(p))
8239 {
8240 /* No numbers as argument. */
8241 eap->errmsg = e_invarg;
8242 return;
8243 }
8244 else
8245 tab_number = getdigits(&p);
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008246 }
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008247 else
8248 {
8249 if (*p != NUL)
8250 tab_number = getdigits(&p);
8251 else
8252 tab_number = 1;
8253 tab_number = tab_number * relative + tabpage_index(curtab);
8254 if (relative == -1)
8255 --tab_number;
8256 }
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008257 }
8258 else if (eap->addr_count != 0)
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008259 {
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008260 tab_number = eap->line2;
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008261 if (**eap->cmdlinep == '-')
8262 --tab_number;
8263 }
8264 else
8265 tab_number = LAST_TAB_NR;
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008266
8267 tabpage_move(tab_number);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008268}
8269
8270/*
8271 * :tabs command: List tabs and their contents.
8272 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008273 static void
8274ex_tabs(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008275 exarg_T *eap UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008276{
8277 tabpage_T *tp;
8278 win_T *wp;
8279 int tabcount = 1;
8280
8281 msg_start();
8282 msg_scroll = TRUE;
8283 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
8284 {
8285 msg_putchar('\n');
8286 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
8287 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
8288 out_flush(); /* output one line at a time */
8289 ui_breakcheck();
8290
Bram Moolenaar030f0df2006-02-21 22:02:53 +00008291 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008292 wp = firstwin;
8293 else
8294 wp = tp->tp_firstwin;
8295 for ( ; wp != NULL && !got_int; wp = wp->w_next)
8296 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008297 msg_putchar('\n');
8298 msg_putchar(wp == curwin ? '>' : ' ');
8299 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00008300 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
8301 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008302 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02008303 vim_strncpy(IObuff, buf_spname(wp->w_buffer), IOSIZE - 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008304 else
8305 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
8306 IObuff, IOSIZE, TRUE);
8307 msg_outtrans(IObuff);
8308 out_flush(); /* output one line at a time */
8309 ui_breakcheck();
8310 }
8311 }
8312}
8313
8314#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008315
8316/*
8317 * ":mode": Set screen mode.
8318 * If no argument given, just get the screen size and redraw.
8319 */
8320 static void
8321ex_mode(eap)
8322 exarg_T *eap;
8323{
8324 if (*eap->arg == NUL)
8325 shell_resized();
8326 else
8327 mch_screenmode(eap->arg);
8328}
8329
8330#ifdef FEAT_WINDOWS
8331/*
8332 * ":resize".
8333 * set, increment or decrement current window height
8334 */
8335 static void
8336ex_resize(eap)
8337 exarg_T *eap;
8338{
8339 int n;
8340 win_T *wp = curwin;
8341
8342 if (eap->addr_count > 0)
8343 {
8344 n = eap->line2;
8345 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
8346 ;
8347 }
8348
8349#ifdef FEAT_GUI
8350 need_mouse_correct = TRUE;
8351#endif
8352 n = atol((char *)eap->arg);
8353#ifdef FEAT_VERTSPLIT
8354 if (cmdmod.split & WSP_VERT)
8355 {
8356 if (*eap->arg == '-' || *eap->arg == '+')
8357 n += W_WIDTH(curwin);
8358 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
8359 n = 9999;
8360 win_setwidth_win((int)n, wp);
8361 }
8362 else
8363#endif
8364 {
8365 if (*eap->arg == '-' || *eap->arg == '+')
8366 n += curwin->w_height;
8367 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
8368 n = 9999;
8369 win_setheight_win((int)n, wp);
8370 }
8371}
8372#endif
8373
8374/*
8375 * ":find [+command] <file>" command.
8376 */
8377 static void
8378ex_find(eap)
8379 exarg_T *eap;
8380{
8381#ifdef FEAT_SEARCHPATH
8382 char_u *fname;
8383 int count;
8384
8385 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
8386 TRUE, curbuf->b_ffname);
8387 if (eap->addr_count > 0)
8388 {
8389 /* Repeat finding the file "count" times. This matters when it
8390 * appears several times in the path. */
8391 count = eap->line2;
8392 while (fname != NULL && --count > 0)
8393 {
8394 vim_free(fname);
8395 fname = find_file_in_path(NULL, 0, FNAME_MESS,
8396 FALSE, curbuf->b_ffname);
8397 }
8398 }
8399
8400 if (fname != NULL)
8401 {
8402 eap->arg = fname;
8403#endif
8404 do_exedit(eap, NULL);
8405#ifdef FEAT_SEARCHPATH
8406 vim_free(fname);
8407 }
8408#endif
8409}
8410
8411/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00008412 * ":open" simulation: for now just work like ":visual".
8413 */
8414 static void
8415ex_open(eap)
8416 exarg_T *eap;
8417{
8418 regmatch_T regmatch;
8419 char_u *p;
8420
8421 curwin->w_cursor.lnum = eap->line2;
8422 beginline(BL_SOL | BL_FIX);
8423 if (*eap->arg == '/')
8424 {
8425 /* ":open /pattern/": put cursor in column found with pattern */
8426 ++eap->arg;
8427 p = skip_regexp(eap->arg, '/', p_magic, NULL);
8428 *p = NUL;
8429 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
8430 if (regmatch.regprog != NULL)
8431 {
8432 regmatch.rm_ic = p_ic;
8433 p = ml_get_curline();
8434 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008435 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008436 else
8437 EMSG(_(e_nomatch));
Bram Moolenaar473de612013-06-08 18:19:48 +02008438 vim_regfree(regmatch.regprog);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008439 }
8440 /* Move to the NUL, ignore any other arguments. */
8441 eap->arg += STRLEN(eap->arg);
8442 }
8443 check_cursor();
8444
8445 eap->cmdidx = CMD_visual;
8446 do_exedit(eap, NULL);
8447}
8448
8449/*
8450 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008451 */
8452 static void
8453ex_edit(eap)
8454 exarg_T *eap;
8455{
8456 do_exedit(eap, NULL);
8457}
8458
8459/*
8460 * ":edit <file>" command and alikes.
8461 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008462 void
8463do_exedit(eap, old_curwin)
8464 exarg_T *eap;
8465 win_T *old_curwin; /* curwin before doing a split or NULL */
8466{
8467 int n;
8468#ifdef FEAT_WINDOWS
8469 int need_hide;
8470#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008471 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008472
8473 /*
8474 * ":vi" command ends Ex mode.
8475 */
8476 if (exmode_active && (eap->cmdidx == CMD_visual
8477 || eap->cmdidx == CMD_view))
8478 {
8479 exmode_active = FALSE;
8480 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008481 {
8482 /* Special case: ":global/pat/visual\NLvi-commands" */
8483 if (global_busy)
8484 {
8485 int rd = RedrawingDisabled;
8486 int nwr = no_wait_return;
8487 int ms = msg_scroll;
8488#ifdef FEAT_GUI
8489 int he = hold_gui_events;
8490#endif
8491
8492 if (eap->nextcmd != NULL)
8493 {
8494 stuffReadbuff(eap->nextcmd);
8495 eap->nextcmd = NULL;
8496 }
8497
8498 if (exmode_was != EXMODE_VIM)
8499 settmode(TMODE_RAW);
8500 RedrawingDisabled = 0;
8501 no_wait_return = 0;
8502 need_wait_return = FALSE;
8503 msg_scroll = 0;
8504#ifdef FEAT_GUI
8505 hold_gui_events = 0;
8506#endif
8507 must_redraw = CLEAR;
8508
8509 main_loop(FALSE, TRUE);
8510
8511 RedrawingDisabled = rd;
8512 no_wait_return = nwr;
8513 msg_scroll = ms;
8514#ifdef FEAT_GUI
8515 hold_gui_events = he;
8516#endif
8517 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008518 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008519 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008520 }
8521
8522 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008523 || eap->cmdidx == CMD_tabnew
8524 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00008525#ifdef FEAT_VERTSPLIT
8526 || eap->cmdidx == CMD_vnew
8527#endif
8528 ) && *eap->arg == NUL)
8529 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008530 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008531 setpcmark();
8532 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00008533 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
8534 old_curwin == NULL ? curwin : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008535 }
8536 else if ((eap->cmdidx != CMD_split
8537#ifdef FEAT_VERTSPLIT
8538 && eap->cmdidx != CMD_vsplit
8539#endif
8540 )
8541 || *eap->arg != NUL
8542#ifdef FEAT_BROWSE
8543 || cmdmod.browse
8544#endif
8545 )
8546 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00008547#ifdef FEAT_AUTOCMD
8548 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
8549 * can bring us here, others are stopped earlier. */
8550 if (*eap->arg != NUL && curbuf_locked())
8551 return;
8552#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008553 n = readonlymode;
8554 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
8555 readonlymode = TRUE;
8556 else if (eap->cmdidx == CMD_enew)
8557 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
8558 empty buffer */
8559 setpcmark();
8560 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
8561 NULL, eap,
8562 /* ":edit" goes to first line if Vi compatible */
8563 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
8564 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
8565 ? ECMD_ONE : eap->do_ecmd_lnum,
8566 (P_HID(curbuf) ? ECMD_HIDE : 0)
8567 + (eap->forceit ? ECMD_FORCEIT : 0)
Bram Moolenaar7b449342014-03-25 13:03:48 +01008568 /* after a split we can use an existing buffer */
8569 + (old_curwin != NULL ? ECMD_OLDBUF : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008570#ifdef FEAT_LISTCMDS
8571 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
8572#endif
Bram Moolenaar701f7af2008-11-15 13:12:07 +00008573 , old_curwin == NULL ? curwin : NULL) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008574 {
8575 /* Editing the file failed. If the window was split, close it. */
8576#ifdef FEAT_WINDOWS
8577 if (old_curwin != NULL)
8578 {
8579 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
8580 if (!need_hide || P_HID(curbuf))
8581 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00008582# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8583 cleanup_T cs;
8584
8585 /* Reset the error/interrupt/exception state here so that
8586 * aborting() returns FALSE when closing a window. */
8587 enter_cleanup(&cs);
8588# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008589# ifdef FEAT_GUI
8590 need_mouse_correct = TRUE;
8591# endif
8592 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00008593
8594# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8595 /* Restore the error/interrupt/exception state if not
8596 * discarded by a new aborting error, interrupt, or
8597 * uncaught exception. */
8598 leave_cleanup(&cs);
8599# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008600 }
8601 }
8602#endif
8603 }
8604 else if (readonlymode && curbuf->b_nwindows == 1)
8605 {
8606 /* When editing an already visited buffer, 'readonly' won't be set
8607 * but the previous value is kept. With ":view" and ":sview" we
8608 * want the file to be readonly, except when another window is
8609 * editing the same buffer. */
8610 curbuf->b_p_ro = TRUE;
8611 }
8612 readonlymode = n;
8613 }
8614 else
8615 {
8616 if (eap->do_ecmd_cmd != NULL)
8617 do_cmdline_cmd(eap->do_ecmd_cmd);
8618#ifdef FEAT_TITLE
8619 n = curwin->w_arg_idx_invalid;
8620#endif
8621 check_arg_idx(curwin);
8622#ifdef FEAT_TITLE
8623 if (n != curwin->w_arg_idx_invalid)
8624 maketitle();
8625#endif
8626 }
8627
8628#ifdef FEAT_WINDOWS
8629 /*
8630 * if ":split file" worked, set alternate file name in old window to new
8631 * file
8632 */
8633 if (old_curwin != NULL
8634 && *eap->arg != NUL
8635 && curwin != old_curwin
8636 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00008637 && old_curwin->w_buffer != curbuf
8638 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008639 old_curwin->w_alt_fnum = curbuf->b_fnum;
8640#endif
8641
8642 ex_no_reprint = TRUE;
8643}
8644
8645#ifndef FEAT_GUI
8646/*
8647 * ":gui" and ":gvim" when there is no GUI.
8648 */
8649 static void
8650ex_nogui(eap)
8651 exarg_T *eap;
8652{
8653 eap->errmsg = e_nogvim;
8654}
8655#endif
8656
8657#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
8658 static void
8659ex_tearoff(eap)
8660 exarg_T *eap;
8661{
8662 gui_make_tearoff(eap->arg);
8663}
8664#endif
8665
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008666#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008667 static void
8668ex_popup(eap)
8669 exarg_T *eap;
8670{
Bram Moolenaar97409f12005-07-08 22:17:29 +00008671 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008672}
8673#endif
8674
Bram Moolenaar071d4272004-06-13 20:20:40 +00008675 static void
8676ex_swapname(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008677 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008678{
8679 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
8680 MSG(_("No swap file"));
8681 else
8682 msg(curbuf->b_ml.ml_mfp->mf_fname);
8683}
8684
8685/*
8686 * ":syncbind" forces all 'scrollbind' windows to have the same relative
8687 * offset.
8688 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
8689 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008690 static void
8691ex_syncbind(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008692 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008693{
8694#ifdef FEAT_SCROLLBIND
8695 win_T *wp;
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008696 win_T *save_curwin = curwin;
8697 buf_T *save_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008698 long topline;
8699 long y;
8700 linenr_T old_linenr = curwin->w_cursor.lnum;
8701
8702 setpcmark();
8703
8704 /*
8705 * determine max topline
8706 */
8707 if (curwin->w_p_scb)
8708 {
8709 topline = curwin->w_topline;
8710 for (wp = firstwin; wp; wp = wp->w_next)
8711 {
8712 if (wp->w_p_scb && wp->w_buffer)
8713 {
8714 y = wp->w_buffer->b_ml.ml_line_count - p_so;
8715 if (topline > y)
8716 topline = y;
8717 }
8718 }
8719 if (topline < 1)
8720 topline = 1;
8721 }
8722 else
8723 {
8724 topline = 1;
8725 }
8726
8727
8728 /*
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008729 * Set all scrollbind windows to the same topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008730 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008731 for (curwin = firstwin; curwin; curwin = curwin->w_next)
8732 {
8733 if (curwin->w_p_scb)
8734 {
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008735 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008736 y = topline - curwin->w_topline;
8737 if (y > 0)
8738 scrollup(y, TRUE);
8739 else
8740 scrolldown(-y, TRUE);
8741 curwin->w_scbind_pos = topline;
8742 redraw_later(VALID);
8743 cursor_correct();
8744#ifdef FEAT_WINDOWS
8745 curwin->w_redr_status = TRUE;
8746#endif
8747 }
8748 }
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008749 curwin = save_curwin;
8750 curbuf = save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008751 if (curwin->w_p_scb)
8752 {
8753 did_syncbind = TRUE;
8754 checkpcmark();
8755 if (old_linenr != curwin->w_cursor.lnum)
8756 {
8757 char_u ctrl_o[2];
8758
8759 ctrl_o[0] = Ctrl_O;
8760 ctrl_o[1] = 0;
8761 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
8762 }
8763 }
8764#endif
8765}
8766
8767
8768 static void
8769ex_read(eap)
8770 exarg_T *eap;
8771{
Bram Moolenaardf177f62005-02-22 08:39:57 +00008772 int i;
8773 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
8774 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008775
8776 if (eap->usefilter) /* :r!cmd */
8777 do_bang(1, eap, FALSE, FALSE, TRUE);
8778 else
8779 {
8780 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
8781 return;
8782
8783#ifdef FEAT_BROWSE
8784 if (cmdmod.browse)
8785 {
8786 char_u *browseFile;
8787
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008788 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008789 NULL, NULL, NULL, curbuf);
8790 if (browseFile != NULL)
8791 {
8792 i = readfile(browseFile, NULL,
8793 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8794 vim_free(browseFile);
8795 }
8796 else
8797 i = OK;
8798 }
8799 else
8800#endif
8801 if (*eap->arg == NUL)
8802 {
8803 if (check_fname() == FAIL) /* check for no file name */
8804 return;
8805 i = readfile(curbuf->b_ffname, curbuf->b_fname,
8806 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8807 }
8808 else
8809 {
8810 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
8811 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
8812 i = readfile(eap->arg, NULL,
8813 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8814
8815 }
8816 if (i == FAIL)
8817 {
8818#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8819 if (!aborting())
8820#endif
8821 EMSG2(_(e_notopen), eap->arg);
8822 }
8823 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008824 {
8825 if (empty && exmode_active)
8826 {
8827 /* Delete the empty line that remains. Historically ex does
8828 * this but vi doesn't. */
8829 if (eap->line2 == 0)
8830 lnum = curbuf->b_ml.ml_line_count;
8831 else
8832 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008833 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008834 {
8835 ml_delete(lnum, FALSE);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008836 if (curwin->w_cursor.lnum > 1
8837 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008838 --curwin->w_cursor.lnum;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00008839 deleted_lines_mark(lnum, 1L);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008840 }
8841 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008842 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008844 }
8845}
8846
Bram Moolenaarea408852005-06-25 22:49:46 +00008847static char_u *prev_dir = NULL;
8848
8849#if defined(EXITFREE) || defined(PROTO)
8850 void
8851free_cd_dir()
8852{
8853 vim_free(prev_dir);
Bram Moolenaara0174af2008-01-02 20:08:25 +00008854 prev_dir = NULL;
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00008855
8856 vim_free(globaldir);
8857 globaldir = NULL;
Bram Moolenaarea408852005-06-25 22:49:46 +00008858}
8859#endif
8860
Bram Moolenaarf4258302013-06-02 18:20:17 +02008861/*
8862 * Deal with the side effects of changing the current directory.
8863 * When "local" is TRUE then this was after an ":lcd" command.
8864 */
8865 void
8866post_chdir(local)
8867 int local;
8868{
8869 vim_free(curwin->w_localdir);
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01008870 curwin->w_localdir = NULL;
Bram Moolenaarf4258302013-06-02 18:20:17 +02008871 if (local)
8872 {
8873 /* If still in global directory, need to remember current
8874 * directory as global directory. */
8875 if (globaldir == NULL && prev_dir != NULL)
8876 globaldir = vim_strsave(prev_dir);
8877 /* Remember this local directory for the window. */
8878 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8879 curwin->w_localdir = vim_strsave(NameBuff);
8880 }
8881 else
8882 {
8883 /* We are now in the global directory, no need to remember its
8884 * name. */
8885 vim_free(globaldir);
8886 globaldir = NULL;
Bram Moolenaarf4258302013-06-02 18:20:17 +02008887 }
8888
8889 shorten_fnames(TRUE);
8890}
8891
Bram Moolenaarea408852005-06-25 22:49:46 +00008892
Bram Moolenaar071d4272004-06-13 20:20:40 +00008893/*
8894 * ":cd", ":lcd", ":chdir" and ":lchdir".
8895 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00008896 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00008897ex_cd(eap)
8898 exarg_T *eap;
8899{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008900 char_u *new_dir;
8901 char_u *tofree;
8902
8903 new_dir = eap->arg;
8904#if !defined(UNIX) && !defined(VMS)
8905 /* for non-UNIX ":cd" means: print current directory */
8906 if (*new_dir == NUL)
8907 ex_pwd(NULL);
8908 else
8909#endif
8910 {
Bram Moolenaar8e8fe9b2009-03-11 14:37:32 +00008911#ifdef FEAT_AUTOCMD
8912 if (allbuf_locked())
8913 return;
8914#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008915 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
8916 && !eap->forceit)
8917 {
Bram Moolenaar81870892007-11-11 18:17:28 +00008918 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00008919 return;
8920 }
8921
Bram Moolenaar071d4272004-06-13 20:20:40 +00008922 /* ":cd -": Change to previous directory */
8923 if (STRCMP(new_dir, "-") == 0)
8924 {
8925 if (prev_dir == NULL)
8926 {
8927 EMSG(_("E186: No previous directory"));
8928 return;
8929 }
8930 new_dir = prev_dir;
8931 }
8932
8933 /* Save current directory for next ":cd -" */
8934 tofree = prev_dir;
8935 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8936 prev_dir = vim_strsave(NameBuff);
8937 else
8938 prev_dir = NULL;
8939
8940#if defined(UNIX) || defined(VMS)
8941 /* for UNIX ":cd" means: go to home directory */
8942 if (*new_dir == NUL)
8943 {
8944 /* use NameBuff for home directory name */
8945# ifdef VMS
8946 char_u *p;
8947
8948 p = mch_getenv((char_u *)"SYS$LOGIN");
8949 if (p == NULL || *p == NUL) /* empty is the same as not set */
8950 NameBuff[0] = NUL;
8951 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00008952 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008953# else
8954 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
8955# endif
8956 new_dir = NameBuff;
8957 }
8958#endif
8959 if (new_dir == NULL || vim_chdir(new_dir))
8960 EMSG(_(e_failed));
8961 else
8962 {
Bram Moolenaarf4258302013-06-02 18:20:17 +02008963 post_chdir(eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008964
8965 /* Echo the new current directory if the command was typed. */
Bram Moolenaarfcfbc672009-07-09 18:13:49 +00008966 if (KeyTyped || p_verbose >= 5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008967 ex_pwd(eap);
8968 }
8969 vim_free(tofree);
8970 }
8971}
8972
8973/*
8974 * ":pwd".
8975 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008976 static void
8977ex_pwd(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008978 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008979{
8980 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8981 {
8982#ifdef BACKSLASH_IN_FILENAME
8983 slash_adjust(NameBuff);
8984#endif
8985 msg(NameBuff);
8986 }
8987 else
8988 EMSG(_("E187: Unknown"));
8989}
8990
8991/*
8992 * ":=".
8993 */
8994 static void
8995ex_equal(eap)
8996 exarg_T *eap;
8997{
8998 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008999 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009000}
9001
9002 static void
9003ex_sleep(eap)
9004 exarg_T *eap;
9005{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009006 int n;
9007 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009008
9009 if (cursor_valid())
9010 {
9011 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
9012 if (n >= 0)
Bram Moolenaar10395d82014-02-05 22:46:52 +01009013 windgoto((int)n, W_WINCOL(curwin) + curwin->w_wcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009014 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009015
9016 len = eap->line2;
9017 switch (*eap->arg)
9018 {
9019 case 'm': break;
9020 case NUL: len *= 1000L; break;
9021 default: EMSG2(_(e_invarg2), eap->arg); return;
9022 }
9023 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009024}
9025
9026/*
9027 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
9028 */
9029 void
9030do_sleep(msec)
9031 long msec;
9032{
9033 long done;
9034
9035 cursor_on();
9036 out_flush();
9037 for (done = 0; !got_int && done < msec; done += 1000L)
9038 {
9039 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
9040 ui_breakcheck();
Bram Moolenaar93c88e02015-09-15 14:12:05 +02009041#ifdef MESSAGE_QUEUE
9042 /* Process the netbeans and clientserver messages that may have been
9043 * received in the call to ui_breakcheck() when the GUI is in use. This
9044 * may occur when running a test case. */
9045 parse_queued_messages();
Bram Moolenaare3cc6d42011-10-20 21:58:34 +02009046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009047 }
9048}
9049
9050 static void
9051do_exmap(eap, isabbrev)
9052 exarg_T *eap;
9053 int isabbrev;
9054{
9055 int mode;
9056 char_u *cmdp;
9057
9058 cmdp = eap->cmd;
9059 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
9060
9061 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
9062 eap->arg, mode, isabbrev))
9063 {
9064 case 1: EMSG(_(e_invarg));
9065 break;
9066 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
9067 break;
9068 }
9069}
9070
9071/*
9072 * ":winsize" command (obsolete).
9073 */
9074 static void
9075ex_winsize(eap)
9076 exarg_T *eap;
9077{
9078 int w, h;
9079 char_u *arg = eap->arg;
9080 char_u *p;
9081
9082 w = getdigits(&arg);
9083 arg = skipwhite(arg);
9084 p = arg;
9085 h = getdigits(&arg);
9086 if (*p != NUL && *arg == NUL)
9087 set_shellsize(w, h, TRUE);
9088 else
9089 EMSG(_("E465: :winsize requires two number arguments"));
9090}
9091
9092#ifdef FEAT_WINDOWS
9093 static void
9094ex_wincmd(eap)
9095 exarg_T *eap;
9096{
9097 int xchar = NUL;
9098 char_u *p;
9099
9100 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
9101 {
9102 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
9103 if (eap->arg[1] == NUL)
9104 {
9105 EMSG(_(e_invarg));
9106 return;
9107 }
9108 xchar = eap->arg[1];
9109 p = eap->arg + 2;
9110 }
9111 else
9112 p = eap->arg + 1;
9113
9114 eap->nextcmd = check_nextcmd(p);
9115 p = skipwhite(p);
9116 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
9117 EMSG(_(e_invarg));
Bram Moolenaar12bde492011-06-13 01:19:56 +02009118 else if (!eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009119 {
9120 /* Pass flags on for ":vertical wincmd ]". */
9121 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009122 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009123 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
9124 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009125 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009126 }
9127}
9128#endif
9129
Bram Moolenaar843ee412004-06-30 16:16:41 +00009130#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009131/*
9132 * ":winpos".
9133 */
9134 static void
9135ex_winpos(eap)
9136 exarg_T *eap;
9137{
9138 int x, y;
9139 char_u *arg = eap->arg;
9140 char_u *p;
9141
9142 if (*arg == NUL)
9143 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00009144# if defined(FEAT_GUI) || defined(MSWIN)
9145# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00009146 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00009147# else
9148 if (mch_get_winpos(&x, &y) != FAIL)
9149# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009150 {
9151 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
9152 msg(IObuff);
9153 }
9154 else
9155# endif
9156 EMSG(_("E188: Obtaining window position not implemented for this platform"));
9157 }
9158 else
9159 {
9160 x = getdigits(&arg);
9161 arg = skipwhite(arg);
9162 p = arg;
9163 y = getdigits(&arg);
9164 if (*p == NUL || *arg != NUL)
9165 {
9166 EMSG(_("E466: :winpos requires two number arguments"));
9167 return;
9168 }
9169# ifdef FEAT_GUI
9170 if (gui.in_use)
9171 gui_mch_set_winpos(x, y);
9172 else if (gui.starting)
9173 {
9174 /* Remember the coordinates for when the window is opened. */
9175 gui_win_x = x;
9176 gui_win_y = y;
9177 }
9178# ifdef HAVE_TGETENT
9179 else
9180# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00009181# else
9182# ifdef MSWIN
9183 mch_set_winpos(x, y);
9184# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009185# endif
9186# ifdef HAVE_TGETENT
9187 if (*T_CWP)
9188 term_set_winpos(x, y);
9189# endif
9190 }
9191}
9192#endif
9193
9194/*
9195 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
9196 */
9197 static void
9198ex_operators(eap)
9199 exarg_T *eap;
9200{
9201 oparg_T oa;
9202
9203 clear_oparg(&oa);
9204 oa.regname = eap->regname;
9205 oa.start.lnum = eap->line1;
9206 oa.end.lnum = eap->line2;
9207 oa.line_count = eap->line2 - eap->line1 + 1;
9208 oa.motion_type = MLINE;
9209#ifdef FEAT_VIRTUALEDIT
9210 virtual_op = FALSE;
9211#endif
9212 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
9213 {
9214 setpcmark();
9215 curwin->w_cursor.lnum = eap->line1;
9216 beginline(BL_SOL | BL_FIX);
9217 }
9218
Bram Moolenaard07c6e12013-11-21 14:21:40 +01009219 if (VIsual_active)
9220 end_visual_mode();
Bram Moolenaard07c6e12013-11-21 14:21:40 +01009221
Bram Moolenaar071d4272004-06-13 20:20:40 +00009222 switch (eap->cmdidx)
9223 {
9224 case CMD_delete:
9225 oa.op_type = OP_DELETE;
9226 op_delete(&oa);
9227 break;
9228
9229 case CMD_yank:
9230 oa.op_type = OP_YANK;
9231 (void)op_yank(&oa, FALSE, TRUE);
9232 break;
9233
9234 default: /* CMD_rshift or CMD_lshift */
Bram Moolenaar6e707362013-06-14 19:15:58 +02009235 if (
Bram Moolenaar071d4272004-06-13 20:20:40 +00009236#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e707362013-06-14 19:15:58 +02009237 (eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
9238#else
9239 eap->cmdidx == CMD_rshift
Bram Moolenaar071d4272004-06-13 20:20:40 +00009240#endif
Bram Moolenaar6e707362013-06-14 19:15:58 +02009241 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00009242 oa.op_type = OP_RSHIFT;
9243 else
9244 oa.op_type = OP_LSHIFT;
9245 op_shift(&oa, FALSE, eap->amount);
9246 break;
9247 }
9248#ifdef FEAT_VIRTUALEDIT
9249 virtual_op = MAYBE;
9250#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00009251 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009252}
9253
9254/*
9255 * ":put".
9256 */
9257 static void
9258ex_put(eap)
9259 exarg_T *eap;
9260{
9261 /* ":0put" works like ":1put!". */
9262 if (eap->line2 == 0)
9263 {
9264 eap->line2 = 1;
9265 eap->forceit = TRUE;
9266 }
9267 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009268 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
9269 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009270}
9271
9272/*
9273 * Handle ":copy" and ":move".
9274 */
9275 static void
9276ex_copymove(eap)
9277 exarg_T *eap;
9278{
9279 long n;
9280
Bram Moolenaaraa23b372015-09-08 18:46:31 +02009281 n = get_address(eap, &eap->arg, eap->addr_type, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009282 if (eap->arg == NULL) /* error detected */
9283 {
9284 eap->nextcmd = NULL;
9285 return;
9286 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00009287 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009288
9289 /*
9290 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
9291 */
9292 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
9293 {
9294 EMSG(_(e_invaddr));
9295 return;
9296 }
9297
9298 if (eap->cmdidx == CMD_move)
9299 {
9300 if (do_move(eap->line1, eap->line2, n) == FAIL)
9301 return;
9302 }
9303 else
9304 ex_copy(eap->line1, eap->line2, n);
9305 u_clearline();
9306 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009307 ex_may_print(eap);
9308}
9309
9310/*
9311 * Print the current line if flags were given to the Ex command.
9312 */
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02009313 void
Bram Moolenaardf177f62005-02-22 08:39:57 +00009314ex_may_print(eap)
9315 exarg_T *eap;
9316{
9317 if (eap->flags != 0)
9318 {
9319 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
9320 (eap->flags & EXFLAG_LIST));
9321 ex_no_reprint = TRUE;
9322 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009323}
9324
9325/*
9326 * ":smagic" and ":snomagic".
9327 */
9328 static void
9329ex_submagic(eap)
9330 exarg_T *eap;
9331{
9332 int magic_save = p_magic;
9333
9334 p_magic = (eap->cmdidx == CMD_smagic);
9335 do_sub(eap);
9336 p_magic = magic_save;
9337}
9338
9339/*
9340 * ":join".
9341 */
9342 static void
9343ex_join(eap)
9344 exarg_T *eap;
9345{
9346 curwin->w_cursor.lnum = eap->line1;
9347 if (eap->line1 == eap->line2)
9348 {
9349 if (eap->addr_count >= 2) /* :2,2join does nothing */
9350 return;
9351 if (eap->line2 == curbuf->b_ml.ml_line_count)
9352 {
9353 beep_flush();
9354 return;
9355 }
9356 ++eap->line2;
9357 }
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02009358 (void)do_join(eap->line2 - eap->line1 + 1, !eap->forceit, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009359 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009360 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009361}
9362
9363/*
9364 * ":[addr]@r" or ":[addr]*r": execute register
9365 */
9366 static void
9367ex_at(eap)
9368 exarg_T *eap;
9369{
9370 int c;
Bram Moolenaar60462872009-11-03 11:40:19 +00009371 int prev_len = typebuf.tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009372
9373 curwin->w_cursor.lnum = eap->line2;
9374
9375#ifdef USE_ON_FLY_SCROLL
9376 dont_scroll = TRUE; /* disallow scrolling here */
9377#endif
9378
9379 /* get the register name. No name means to use the previous one */
9380 c = *eap->arg;
9381 if (c == NUL || (c == '*' && *eap->cmd == '*'))
9382 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00009383 /* Put the register in the typeahead buffer with the "silent" flag. */
9384 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
9385 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00009386 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009387 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00009388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009389 else
9390 {
9391 int save_efr = exec_from_reg;
9392
9393 exec_from_reg = TRUE;
9394
9395 /*
9396 * Execute from the typeahead buffer.
Bram Moolenaar60462872009-11-03 11:40:19 +00009397 * Continue until the stuff buffer is empty and all added characters
9398 * have been consumed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009399 */
Bram Moolenaar60462872009-11-03 11:40:19 +00009400 while (!stuff_empty() || typebuf.tb_len > prev_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009401 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
9402
9403 exec_from_reg = save_efr;
9404 }
9405}
9406
9407/*
9408 * ":!".
9409 */
9410 static void
9411ex_bang(eap)
9412 exarg_T *eap;
9413{
9414 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
9415}
9416
9417/*
9418 * ":undo".
9419 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009420 static void
9421ex_undo(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009422 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009423{
Bram Moolenaard3667a22006-03-16 21:35:52 +00009424 if (eap->addr_count == 1) /* :undo 123 */
Bram Moolenaar730cde92010-06-27 05:18:54 +02009425 undo_time(eap->line2, FALSE, FALSE, TRUE);
Bram Moolenaard3667a22006-03-16 21:35:52 +00009426 else
9427 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009428}
9429
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009430#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar6df6f472010-07-18 18:04:50 +02009431 static void
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009432ex_wundo(eap)
9433 exarg_T *eap;
9434{
9435 char_u hash[UNDO_HASH_SIZE];
9436
9437 u_compute_hash(hash);
9438 u_write_undo(eap->arg, eap->forceit, curbuf, hash);
9439}
9440
Bram Moolenaar6df6f472010-07-18 18:04:50 +02009441 static void
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009442ex_rundo(eap)
9443 exarg_T *eap;
9444{
9445 char_u hash[UNDO_HASH_SIZE];
9446
9447 u_compute_hash(hash);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02009448 u_read_undo(eap->arg, hash, NULL);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009449}
9450#endif
9451
Bram Moolenaar071d4272004-06-13 20:20:40 +00009452/*
9453 * ":redo".
9454 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009455 static void
9456ex_redo(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009457 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009458{
9459 u_redo(1);
9460}
9461
9462/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009463 * ":earlier" and ":later".
9464 */
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009465 static void
9466ex_later(eap)
9467 exarg_T *eap;
9468{
9469 long count = 0;
9470 int sec = FALSE;
Bram Moolenaar730cde92010-06-27 05:18:54 +02009471 int file = FALSE;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009472 char_u *p = eap->arg;
9473
9474 if (*p == NUL)
9475 count = 1;
9476 else if (isdigit(*p))
9477 {
9478 count = getdigits(&p);
9479 switch (*p)
9480 {
9481 case 's': ++p; sec = TRUE; break;
9482 case 'm': ++p; sec = TRUE; count *= 60; break;
9483 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
Bram Moolenaar730cde92010-06-27 05:18:54 +02009484 case 'd': ++p; sec = TRUE; count *= 24 * 60 * 60; break;
9485 case 'f': ++p; file = TRUE; break;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009486 }
9487 }
9488
9489 if (*p != NUL)
9490 EMSG2(_(e_invarg2), eap->arg);
9491 else
Bram Moolenaar730cde92010-06-27 05:18:54 +02009492 undo_time(eap->cmdidx == CMD_earlier ? -count : count,
9493 sec, file, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009494}
9495
9496/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009497 * ":redir": start/stop redirection.
9498 */
9499 static void
9500ex_redir(eap)
9501 exarg_T *eap;
9502{
9503 char *mode;
9504 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00009505 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009506
9507 if (STRICMP(eap->arg, "END") == 0)
9508 close_redir();
9509 else
9510 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009511 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009512 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009513 ++arg;
9514 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009515 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009516 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009517 mode = "a";
9518 }
9519 else
9520 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00009521 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009522
9523 close_redir();
9524
9525 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00009526 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009527 if (fname == NULL)
9528 return;
9529#ifdef FEAT_BROWSE
9530 if (cmdmod.browse)
9531 {
9532 char_u *browseFile;
9533
Bram Moolenaar7171abe2004-10-11 10:06:20 +00009534 browseFile = do_browse(BROWSE_SAVE,
9535 (char_u *)_("Save Redirection"),
9536 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009537 if (browseFile == NULL)
9538 return; /* operation cancelled */
9539 vim_free(fname);
9540 fname = browseFile;
9541 eap->forceit = TRUE; /* since dialog already asked */
9542 }
9543#endif
9544
9545 redir_fd = open_exfile(fname, eap->forceit, mode);
9546 vim_free(fname);
9547 }
9548#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00009549 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009550 {
9551 /* redirect to a register a-z (resp. A-Z for appending) */
9552 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00009553 ++arg;
9554 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009555# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00009556 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00009557 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00009558# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00009559 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009560 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009561 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009562 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00009563 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009564 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009565 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00009566 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00009567 if (*arg == '>')
9568 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009569 /* Make register empty when not using @A-@Z and the
9570 * command is valid. */
9571 if (*arg == NUL && !isupper(redir_reg))
9572 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009573 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00009574 }
9575 if (*arg != NUL)
9576 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00009577 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00009578 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009579 }
9580 }
9581 else if (*arg == '=' && arg[1] == '>')
9582 {
9583 int append;
9584
9585 /* redirect to a variable */
9586 close_redir();
9587 arg += 2;
9588
9589 if (*arg == '>')
9590 {
9591 ++arg;
9592 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009593 }
9594 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00009595 append = FALSE;
9596
9597 if (var_redir_start(skipwhite(arg), append) == OK)
9598 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009599 }
9600#endif
9601
9602 /* TODO: redirect to a buffer */
9603
Bram Moolenaar071d4272004-06-13 20:20:40 +00009604 else
Bram Moolenaarca472992005-01-21 11:46:23 +00009605 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009606 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00009607
9608 /* Make sure redirection is not off. Can happen for cmdline completion
9609 * that indirectly invokes a command to catch its output. */
9610 if (redir_fd != NULL
9611#ifdef FEAT_EVAL
9612 || redir_reg || redir_vname
9613#endif
9614 )
9615 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009616}
9617
9618/*
9619 * ":redraw": force redraw
9620 */
9621 static void
9622ex_redraw(eap)
9623 exarg_T *eap;
9624{
9625 int r = RedrawingDisabled;
9626 int p = p_lz;
9627
9628 RedrawingDisabled = 0;
9629 p_lz = FALSE;
9630 update_topline();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009631 update_screen(eap->forceit ? CLEAR : VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009632#ifdef FEAT_TITLE
9633 if (need_maketitle)
9634 maketitle();
9635#endif
9636 RedrawingDisabled = r;
9637 p_lz = p;
9638
9639 /* Reset msg_didout, so that a message that's there is overwritten. */
9640 msg_didout = FALSE;
9641 msg_col = 0;
9642
Bram Moolenaar56667a52013-07-17 11:54:28 +02009643 /* No need to wait after an intentional redraw. */
9644 need_wait_return = FALSE;
9645
Bram Moolenaar071d4272004-06-13 20:20:40 +00009646 out_flush();
9647}
9648
9649/*
9650 * ":redrawstatus": force redraw of status line(s)
9651 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009652 static void
9653ex_redrawstatus(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009654 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009655{
9656#if defined(FEAT_WINDOWS)
9657 int r = RedrawingDisabled;
9658 int p = p_lz;
9659
9660 RedrawingDisabled = 0;
9661 p_lz = FALSE;
9662 if (eap->forceit)
9663 status_redraw_all();
9664 else
9665 status_redraw_curbuf();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009666 update_screen(VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009667 RedrawingDisabled = r;
9668 p_lz = p;
9669 out_flush();
9670#endif
9671}
9672
9673 static void
9674close_redir()
9675{
9676 if (redir_fd != NULL)
9677 {
9678 fclose(redir_fd);
9679 redir_fd = NULL;
9680 }
9681#ifdef FEAT_EVAL
9682 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009683 if (redir_vname)
9684 {
9685 var_redir_stop();
9686 redir_vname = 0;
9687 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009688#endif
9689}
9690
9691#if defined(FEAT_SESSION) && defined(USE_CRNL)
9692# define MKSESSION_NL
9693static int mksession_nl = FALSE; /* use NL only in put_eol() */
9694#endif
9695
9696/*
9697 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
9698 */
9699 static void
9700ex_mkrc(eap)
9701 exarg_T *eap;
9702{
9703 FILE *fd;
9704 int failed = FALSE;
9705 char_u *fname;
9706#ifdef FEAT_BROWSE
9707 char_u *browseFile = NULL;
9708#endif
9709#ifdef FEAT_SESSION
9710 int view_session = FALSE;
9711 int using_vdir = FALSE; /* using 'viewdir'? */
9712 char_u *viewFile = NULL;
9713 unsigned *flagp;
9714#endif
9715
9716 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
9717 {
9718#ifdef FEAT_SESSION
9719 view_session = TRUE;
9720#else
9721 ex_ni(eap);
9722 return;
9723#endif
9724 }
9725
9726#ifdef FEAT_SESSION
Bram Moolenaar8d594672009-07-01 18:18:57 +00009727 /* Use the short file name until ":lcd" is used. We also don't use the
9728 * short file name when 'acd' is set, that is checked later. */
Bram Moolenaareeefcc72007-05-01 21:21:21 +00009729 did_lcd = FALSE;
9730
Bram Moolenaar071d4272004-06-13 20:20:40 +00009731 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
9732 if (eap->cmdidx == CMD_mkview
9733 && (*eap->arg == NUL
9734 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
9735 {
9736 eap->forceit = TRUE;
9737 fname = get_view_file(*eap->arg);
9738 if (fname == NULL)
9739 return;
9740 viewFile = fname;
9741 using_vdir = TRUE;
9742 }
9743 else
9744#endif
9745 if (*eap->arg != NUL)
9746 fname = eap->arg;
9747 else if (eap->cmdidx == CMD_mkvimrc)
9748 fname = (char_u *)VIMRC_FILE;
9749#ifdef FEAT_SESSION
9750 else if (eap->cmdidx == CMD_mksession)
9751 fname = (char_u *)SESSION_FILE;
9752#endif
9753 else
9754 fname = (char_u *)EXRC_FILE;
9755
9756#ifdef FEAT_BROWSE
9757 if (cmdmod.browse)
9758 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00009759 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009760# ifdef FEAT_SESSION
9761 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
9762 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
9763# endif
9764 (char_u *)_("Save Setup"),
9765 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
9766 if (browseFile == NULL)
9767 goto theend;
9768 fname = browseFile;
9769 eap->forceit = TRUE; /* since dialog already asked */
9770 }
9771#endif
9772
9773#if defined(FEAT_SESSION) && defined(vim_mkdir)
9774 /* When using 'viewdir' may have to create the directory. */
9775 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00009776 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009777#endif
9778
9779 fd = open_exfile(fname, eap->forceit, WRITEBIN);
9780 if (fd != NULL)
9781 {
9782#ifdef FEAT_SESSION
9783 if (eap->cmdidx == CMD_mkview)
9784 flagp = &vop_flags;
9785 else
9786 flagp = &ssop_flags;
9787#endif
9788
9789#ifdef MKSESSION_NL
9790 /* "unix" in 'sessionoptions': use NL line separator */
9791 if (view_session && (*flagp & SSOP_UNIX))
9792 mksession_nl = TRUE;
9793#endif
9794
9795 /* Write the version command for :mkvimrc */
9796 if (eap->cmdidx == CMD_mkvimrc)
9797 (void)put_line(fd, "version 6.0");
9798
9799#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009800 if (eap->cmdidx == CMD_mksession)
9801 {
9802 if (put_line(fd, "let SessionLoad = 1") == FAIL)
9803 failed = TRUE;
9804 }
9805
Bram Moolenaar071d4272004-06-13 20:20:40 +00009806 if (eap->cmdidx != CMD_mkview)
9807#endif
9808 {
9809 /* Write setting 'compatible' first, because it has side effects.
9810 * For that same reason only do it when needed. */
9811 if (p_cp)
9812 (void)put_line(fd, "if !&cp | set cp | endif");
9813 else
9814 (void)put_line(fd, "if &cp | set nocp | endif");
9815 }
9816
9817#ifdef FEAT_SESSION
9818 if (!view_session
9819 || (eap->cmdidx == CMD_mksession
9820 && (*flagp & SSOP_OPTIONS)))
9821#endif
9822 failed |= (makemap(fd, NULL) == FAIL
9823 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
9824
9825#ifdef FEAT_SESSION
9826 if (!failed && view_session)
9827 {
9828 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
9829 failed = TRUE;
9830 if (eap->cmdidx == CMD_mksession)
9831 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02009832 char_u *dirnow; /* current directory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009833
Bram Moolenaard9462e32011-04-11 21:35:11 +02009834 dirnow = alloc(MAXPATHL);
9835 if (dirnow == NULL)
9836 failed = TRUE;
9837 else
9838 {
9839 /*
9840 * Change to session file's dir.
9841 */
9842 if (mch_dirname(dirnow, MAXPATHL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00009843 || mch_chdir((char *)dirnow) != 0)
Bram Moolenaard9462e32011-04-11 21:35:11 +02009844 *dirnow = NUL;
9845 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
9846 {
9847 if (vim_chdirfile(fname) == OK)
9848 shorten_fnames(TRUE);
9849 }
9850 else if (*dirnow != NUL
9851 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
9852 {
9853 if (mch_chdir((char *)globaldir) == 0)
9854 shorten_fnames(TRUE);
9855 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009856
Bram Moolenaard9462e32011-04-11 21:35:11 +02009857 failed |= (makeopens(fd, dirnow) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009858
Bram Moolenaard9462e32011-04-11 21:35:11 +02009859 /* restore original dir */
9860 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009861 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
Bram Moolenaard9462e32011-04-11 21:35:11 +02009862 {
9863 if (mch_chdir((char *)dirnow) != 0)
9864 EMSG(_(e_prev_dir));
9865 shorten_fnames(TRUE);
9866 }
9867 vim_free(dirnow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009868 }
9869 }
9870 else
9871 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009872 failed |= (put_view(fd, curwin, !using_vdir, flagp,
9873 -1) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009874 }
9875 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
9876 == FAIL)
9877 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009878 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
9879 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00009880 if (eap->cmdidx == CMD_mksession)
9881 {
9882 if (put_line(fd, "unlet SessionLoad") == FAIL)
9883 failed = TRUE;
9884 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009885 }
9886#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009887 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
9888 failed = TRUE;
9889
Bram Moolenaar071d4272004-06-13 20:20:40 +00009890 failed |= fclose(fd);
9891
9892 if (failed)
9893 EMSG(_(e_write));
9894#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
9895 else if (eap->cmdidx == CMD_mksession)
9896 {
9897 /* successful session write - set this_session var */
Bram Moolenaard9462e32011-04-11 21:35:11 +02009898 char_u *tbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009899
Bram Moolenaard9462e32011-04-11 21:35:11 +02009900 tbuf = alloc(MAXPATHL);
9901 if (tbuf != NULL)
9902 {
9903 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
9904 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
9905 vim_free(tbuf);
9906 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009907 }
9908#endif
9909#ifdef MKSESSION_NL
9910 mksession_nl = FALSE;
9911#endif
9912 }
9913
9914#ifdef FEAT_BROWSE
9915theend:
9916 vim_free(browseFile);
9917#endif
9918#ifdef FEAT_SESSION
9919 vim_free(viewFile);
9920#endif
9921}
9922
Bram Moolenaardf177f62005-02-22 08:39:57 +00009923#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
9924 || defined(PROTO)
9925 int
9926vim_mkdir_emsg(name, prot)
9927 char_u *name;
Bram Moolenaar78a15312009-05-15 19:33:18 +00009928 int prot UNUSED;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009929{
9930 if (vim_mkdir(name, prot) != 0)
9931 {
9932 EMSG2(_("E739: Cannot create directory: %s"), name);
9933 return FAIL;
9934 }
9935 return OK;
9936}
9937#endif
9938
Bram Moolenaar071d4272004-06-13 20:20:40 +00009939/*
9940 * Open a file for writing for an Ex command, with some checks.
9941 * Return file descriptor, or NULL on failure.
9942 */
9943 FILE *
9944open_exfile(fname, forceit, mode)
9945 char_u *fname;
9946 int forceit;
9947 char *mode; /* "w" for create new file or "a" for append */
9948{
9949 FILE *fd;
9950
9951#ifdef UNIX
9952 /* with Unix it is possible to open a directory */
9953 if (mch_isdir(fname))
9954 {
9955 EMSG2(_(e_isadir2), fname);
9956 return NULL;
9957 }
9958#endif
9959 if (!forceit && *mode != 'a' && vim_fexists(fname))
9960 {
9961 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
9962 return NULL;
9963 }
9964
9965 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
9966 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
9967
9968 return fd;
9969}
9970
9971/*
9972 * ":mark" and ":k".
9973 */
9974 static void
9975ex_mark(eap)
9976 exarg_T *eap;
9977{
9978 pos_T pos;
9979
9980 if (*eap->arg == NUL) /* No argument? */
9981 EMSG(_(e_argreq));
9982 else if (eap->arg[1] != NUL) /* more than one character? */
9983 EMSG(_(e_trailing));
9984 else
9985 {
9986 pos = curwin->w_cursor; /* save curwin->w_cursor */
9987 curwin->w_cursor.lnum = eap->line2;
9988 beginline(BL_WHITE | BL_FIX);
9989 if (setmark(*eap->arg) == FAIL) /* set mark */
9990 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
9991 curwin->w_cursor = pos; /* restore curwin->w_cursor */
9992 }
9993}
9994
9995/*
9996 * Update w_topline, w_leftcol and the cursor position.
9997 */
9998 void
9999update_topline_cursor()
10000{
10001 check_cursor(); /* put cursor on valid line */
10002 update_topline();
10003 if (!curwin->w_p_wrap)
10004 validate_cursor();
10005 update_curswant();
10006}
10007
10008#ifdef FEAT_EX_EXTRA
10009/*
10010 * ":normal[!] {commands}": Execute normal mode commands.
10011 */
10012 static void
10013ex_normal(eap)
10014 exarg_T *eap;
10015{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010016 int save_msg_scroll = msg_scroll;
10017 int save_restart_edit = restart_edit;
10018 int save_msg_didout = msg_didout;
10019 int save_State = State;
10020 tasave_T tabuf;
10021 int save_insertmode = p_im;
10022 int save_finish_op = finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +000010023 int save_opcount = opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010024#ifdef FEAT_MBYTE
10025 char_u *arg = NULL;
10026 int l;
10027 char_u *p;
10028#endif
10029
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000010030 if (ex_normal_lock > 0)
10031 {
10032 EMSG(_(e_secure));
10033 return;
10034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010035 if (ex_normal_busy >= p_mmd)
10036 {
10037 EMSG(_("E192: Recursive use of :normal too deep"));
10038 return;
10039 }
10040 ++ex_normal_busy;
10041
10042 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
10043 restart_edit = 0; /* don't go to Insert mode */
10044 p_im = FALSE; /* don't use 'insertmode' */
10045
10046#ifdef FEAT_MBYTE
10047 /*
10048 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
10049 * this for the K_SPECIAL leading byte, otherwise special keys will not
10050 * work.
10051 */
10052 if (has_mbyte)
10053 {
10054 int len = 0;
10055
10056 /* Count the number of characters to be escaped. */
10057 for (p = eap->arg; *p != NUL; ++p)
10058 {
10059# ifdef FEAT_GUI
10060 if (*p == CSI) /* leadbyte CSI */
10061 len += 2;
10062# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010063 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010064 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
10065# ifdef FEAT_GUI
10066 || *p == CSI
10067# endif
10068 )
10069 len += 2;
10070 }
10071 if (len > 0)
10072 {
10073 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
10074 if (arg != NULL)
10075 {
10076 len = 0;
10077 for (p = eap->arg; *p != NUL; ++p)
10078 {
10079 arg[len++] = *p;
10080# ifdef FEAT_GUI
10081 if (*p == CSI)
10082 {
10083 arg[len++] = KS_EXTRA;
10084 arg[len++] = (int)KE_CSI;
10085 }
10086# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010087 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010088 {
10089 arg[len++] = *++p;
10090 if (*p == K_SPECIAL)
10091 {
10092 arg[len++] = KS_SPECIAL;
10093 arg[len++] = KE_FILLER;
10094 }
10095# ifdef FEAT_GUI
10096 else if (*p == CSI)
10097 {
10098 arg[len++] = KS_EXTRA;
10099 arg[len++] = (int)KE_CSI;
10100 }
10101# endif
10102 }
10103 arg[len] = NUL;
10104 }
10105 }
10106 }
10107 }
10108#endif
10109
10110 /*
10111 * Save the current typeahead. This is required to allow using ":normal"
10112 * from an event handler and makes sure we don't hang when the argument
10113 * ends with half a command.
10114 */
10115 save_typeahead(&tabuf);
10116 if (tabuf.typebuf_valid)
10117 {
10118 /*
10119 * Repeat the :normal command for each line in the range. When no
10120 * range given, execute it just once, without positioning the cursor
10121 * first.
10122 */
10123 do
10124 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010125 if (eap->addr_count != 0)
10126 {
10127 curwin->w_cursor.lnum = eap->line1++;
10128 curwin->w_cursor.col = 0;
10129 }
10130
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010131 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +000010132#ifdef FEAT_MBYTE
10133 arg != NULL ? arg :
10134#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010135 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010136 }
10137 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
10138 }
10139
10140 /* Might not return to the main loop when in an event handler. */
10141 update_topline_cursor();
10142
10143 /* Restore the previous typeahead. */
10144 restore_typeahead(&tabuf);
10145
10146 --ex_normal_busy;
10147 msg_scroll = save_msg_scroll;
10148 restart_edit = save_restart_edit;
10149 p_im = save_insertmode;
10150 finish_op = save_finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +000010151 opcount = save_opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010152 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
10153
10154 /* Restore the state (needed when called from a function executed for
Bram Moolenaareda73602014-11-05 09:53:23 +010010155 * 'indentexpr'). Update the mouse and cursor, they may have changed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010156 State = save_State;
Bram Moolenaareda73602014-11-05 09:53:23 +010010157#ifdef FEAT_MOUSE
10158 setmouse();
10159#endif
10160#ifdef CURSOR_SHAPE
10161 ui_cursor_shape(); /* may show different cursor shape */
10162#endif
10163
Bram Moolenaar071d4272004-06-13 20:20:40 +000010164#ifdef FEAT_MBYTE
10165 vim_free(arg);
10166#endif
10167}
10168
10169/*
Bram Moolenaar64969662005-12-14 21:59:55 +000010170 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010171 */
10172 static void
10173ex_startinsert(eap)
10174 exarg_T *eap;
10175{
Bram Moolenaarfd371682005-01-14 21:42:54 +000010176 if (eap->forceit)
10177 {
10178 coladvance((colnr_T)MAXCOL);
10179 curwin->w_curswant = MAXCOL;
10180 curwin->w_set_curswant = FALSE;
10181 }
10182
Bram Moolenaara40c5002005-01-09 21:16:21 +000010183 /* Ignore the command when already in Insert mode. Inserting an
10184 * expression register that invokes a function can do this. */
10185 if (State & INSERT)
10186 return;
10187
Bram Moolenaar64969662005-12-14 21:59:55 +000010188 if (eap->cmdidx == CMD_startinsert)
10189 restart_edit = 'a';
10190 else if (eap->cmdidx == CMD_startreplace)
10191 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010192 else
Bram Moolenaar64969662005-12-14 21:59:55 +000010193 restart_edit = 'V';
10194
10195 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010196 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +000010197 if (eap->cmdidx == CMD_startinsert)
10198 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010199 curwin->w_curswant = 0; /* avoid MAXCOL */
10200 }
10201}
10202
10203/*
10204 * ":stopinsert"
10205 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010206 static void
10207ex_stopinsert(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010208 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010209{
10210 restart_edit = 0;
10211 stop_insert_mode = TRUE;
10212}
10213#endif
10214
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010215#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
10216/*
10217 * Execute normal mode command "cmd".
10218 * "remap" can be REMAP_NONE or REMAP_YES.
10219 */
10220 void
10221exec_normal_cmd(cmd, remap, silent)
10222 char_u *cmd;
10223 int remap;
10224 int silent;
10225{
10226 oparg_T oa;
10227
10228 /*
10229 * Stuff the argument into the typeahead buffer.
10230 * Execute normal_cmd() until there is no typeahead left.
10231 */
10232 clear_oparg(&oa);
10233 finish_op = FALSE;
10234 ins_typebuf(cmd, remap, 0, TRUE, silent);
10235 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
10236 && !got_int)
10237 {
10238 update_topline_cursor();
Bram Moolenaar48ac02c2011-01-17 19:50:06 +010010239 normal_cmd(&oa, TRUE); /* execute a Normal mode cmd */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010240 }
10241}
10242#endif
10243
Bram Moolenaar071d4272004-06-13 20:20:40 +000010244#ifdef FEAT_FIND_ID
10245 static void
10246ex_checkpath(eap)
10247 exarg_T *eap;
10248{
10249 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
10250 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
10251 (linenr_T)1, (linenr_T)MAXLNUM);
10252}
10253
10254#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
10255/*
10256 * ":psearch"
10257 */
10258 static void
10259ex_psearch(eap)
10260 exarg_T *eap;
10261{
10262 g_do_tagpreview = p_pvh;
10263 ex_findpat(eap);
10264 g_do_tagpreview = 0;
10265}
10266#endif
10267
10268 static void
10269ex_findpat(eap)
10270 exarg_T *eap;
10271{
10272 int whole = TRUE;
10273 long n;
10274 char_u *p;
10275 int action;
10276
10277 switch (cmdnames[eap->cmdidx].cmd_name[2])
10278 {
10279 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
10280 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
10281 action = ACTION_GOTO;
10282 else
10283 action = ACTION_SHOW;
10284 break;
10285 case 'i': /* ":ilist" and ":dlist" */
10286 action = ACTION_SHOW_ALL;
10287 break;
10288 case 'u': /* ":ijump" and ":djump" */
10289 action = ACTION_GOTO;
10290 break;
10291 default: /* ":isplit" and ":dsplit" */
10292 action = ACTION_SPLIT;
10293 break;
10294 }
10295
10296 n = 1;
10297 if (vim_isdigit(*eap->arg)) /* get count */
10298 {
10299 n = getdigits(&eap->arg);
10300 eap->arg = skipwhite(eap->arg);
10301 }
10302 if (*eap->arg == '/') /* Match regexp, not just whole words */
10303 {
10304 whole = FALSE;
10305 ++eap->arg;
10306 p = skip_regexp(eap->arg, '/', p_magic, NULL);
10307 if (*p)
10308 {
10309 *p++ = NUL;
10310 p = skipwhite(p);
10311
10312 /* Check for trailing illegal characters */
10313 if (!ends_excmd(*p))
10314 eap->errmsg = e_trailing;
10315 else
10316 eap->nextcmd = check_nextcmd(p);
10317 }
10318 }
10319 if (!eap->skip)
10320 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
10321 whole, !eap->forceit,
10322 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
10323 n, action, eap->line1, eap->line2);
10324}
10325#endif
10326
10327#ifdef FEAT_WINDOWS
10328
10329# ifdef FEAT_QUICKFIX
10330/*
10331 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
10332 */
10333 static void
10334ex_ptag(eap)
10335 exarg_T *eap;
10336{
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +010010337 g_do_tagpreview = p_pvh; /* will be reset to 0 in ex_tag_cmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010338 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
10339}
10340
10341/*
10342 * ":pedit"
10343 */
10344 static void
10345ex_pedit(eap)
10346 exarg_T *eap;
10347{
10348 win_T *curwin_save = curwin;
10349
10350 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +000010351 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010352 keep_help_flag = curwin_save->w_buffer->b_help;
10353 do_exedit(eap, NULL);
10354 keep_help_flag = FALSE;
10355 if (curwin != curwin_save && win_valid(curwin_save))
10356 {
10357 /* Return cursor to where we were */
10358 validate_cursor();
10359 redraw_later(VALID);
10360 win_enter(curwin_save, TRUE);
10361 }
10362 g_do_tagpreview = 0;
10363}
10364# endif
10365
10366/*
10367 * ":stag", ":stselect" and ":stjump".
10368 */
10369 static void
10370ex_stag(eap)
10371 exarg_T *eap;
10372{
10373 postponed_split = -1;
10374 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +000010375 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010376 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
10377 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +000010378 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010379}
10380#endif
10381
10382/*
10383 * ":tag", ":tselect", ":tjump", ":tnext", etc.
10384 */
10385 static void
10386ex_tag(eap)
10387 exarg_T *eap;
10388{
10389 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
10390}
10391
10392 static void
10393ex_tag_cmd(eap, name)
10394 exarg_T *eap;
10395 char_u *name;
10396{
10397 int cmd;
10398
10399 switch (name[1])
10400 {
10401 case 'j': cmd = DT_JUMP; /* ":tjump" */
10402 break;
10403 case 's': cmd = DT_SELECT; /* ":tselect" */
10404 break;
10405 case 'p': cmd = DT_PREV; /* ":tprevious" */
10406 break;
10407 case 'N': cmd = DT_PREV; /* ":tNext" */
10408 break;
10409 case 'n': cmd = DT_NEXT; /* ":tnext" */
10410 break;
10411 case 'o': cmd = DT_POP; /* ":pop" */
10412 break;
10413 case 'f': /* ":tfirst" */
10414 case 'r': cmd = DT_FIRST; /* ":trewind" */
10415 break;
10416 case 'l': cmd = DT_LAST; /* ":tlast" */
10417 break;
10418 default: /* ":tag" */
10419#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +000010420 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010421 {
10422 do_cstag(eap);
10423 return;
10424 }
10425#endif
10426 cmd = DT_TAG;
10427 break;
10428 }
10429
Bram Moolenaarb8a7b562006-02-01 21:47:16 +000010430 if (name[0] == 'l')
10431 {
10432#ifndef FEAT_QUICKFIX
10433 ex_ni(eap);
10434 return;
10435#else
10436 cmd = DT_LTAG;
10437#endif
10438 }
10439
Bram Moolenaar071d4272004-06-13 20:20:40 +000010440 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
10441 eap->forceit, TRUE);
10442}
10443
10444/*
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010445 * Check "str" for starting with a special cmdline variable.
10446 * If found return one of the SPEC_ values and set "*usedlen" to the length of
10447 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
10448 */
10449 int
10450find_cmdline_var(src, usedlen)
10451 char_u *src;
10452 int *usedlen;
10453{
10454 int len;
10455 int i;
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +000010456 static char *(spec_str[]) = {
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010457 "%",
10458#define SPEC_PERC 0
10459 "#",
10460#define SPEC_HASH 1
10461 "<cword>", /* cursor word */
10462#define SPEC_CWORD 2
10463 "<cWORD>", /* cursor WORD */
10464#define SPEC_CCWORD 3
10465 "<cfile>", /* cursor path name */
10466#define SPEC_CFILE 4
10467 "<sfile>", /* ":so" file name */
10468#define SPEC_SFILE 5
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010469 "<slnum>", /* ":so" file line number */
10470#define SPEC_SLNUM 6
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010471#ifdef FEAT_AUTOCMD
10472 "<afile>", /* autocommand file name */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010473# define SPEC_AFILE 7
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010474 "<abuf>", /* autocommand buffer number */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010475# define SPEC_ABUF 8
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010476 "<amatch>", /* autocommand match name */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010477# define SPEC_AMATCH 9
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010478#endif
10479#ifdef FEAT_CLIENTSERVER
10480 "<client>"
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010481# ifdef FEAT_AUTOCMD
10482# define SPEC_CLIENT 10
10483# else
10484# define SPEC_CLIENT 7
10485# endif
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010486#endif
10487 };
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010488
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000010489 for (i = 0; i < (int)(sizeof(spec_str) / sizeof(char *)); ++i)
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010490 {
10491 len = (int)STRLEN(spec_str[i]);
10492 if (STRNCMP(src, spec_str[i], len) == 0)
10493 {
10494 *usedlen = len;
10495 return i;
10496 }
10497 }
10498 return -1;
10499}
10500
10501/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010502 * Evaluate cmdline variables.
10503 *
10504 * change '%' to curbuf->b_ffname
10505 * '#' to curwin->w_altfile
10506 * '<cword>' to word under the cursor
10507 * '<cWORD>' to WORD under the cursor
10508 * '<cfile>' to path name under the cursor
10509 * '<sfile>' to sourced file name
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010510 * '<slnum>' to sourced file line number
Bram Moolenaar071d4272004-06-13 20:20:40 +000010511 * '<afile>' to file name for autocommand
10512 * '<abuf>' to buffer number for autocommand
10513 * '<amatch>' to matching name for autocommand
10514 *
10515 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
10516 * "" for error without a message) and NULL is returned.
10517 * Returns an allocated string if a valid match was found.
10518 * Returns NULL if no match was found. "usedlen" then still contains the
10519 * number of characters to skip.
10520 */
10521 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +000010522eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010523 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010524 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010525 int *usedlen; /* characters after src that are used */
10526 linenr_T *lnump; /* line number for :e command, or NULL */
10527 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010528 int *escaped; /* return value has escaped white space (can
10529 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010530{
10531 int i;
10532 char_u *s;
10533 char_u *result;
10534 char_u *resultbuf = NULL;
10535 int resultlen;
10536 buf_T *buf;
10537 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
10538 int spec_idx;
10539#ifdef FEAT_MODIFY_FNAME
10540 int skip_mod = FALSE;
10541#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010542 char_u strbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +000010543
10544 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +000010545 if (escaped != NULL)
10546 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010547
10548 /*
10549 * Check if there is something to do.
10550 */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010551 spec_idx = find_cmdline_var(src, usedlen);
10552 if (spec_idx < 0) /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010553 {
10554 *usedlen = 1;
10555 return NULL;
10556 }
10557
10558 /*
10559 * Skip when preceded with a backslash "\%" and "\#".
10560 * Note: In "\\%" the % is also not recognized!
10561 */
10562 if (src > srcstart && src[-1] == '\\')
10563 {
10564 *usedlen = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +000010565 STRMOVE(src - 1, src); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010566 return NULL;
10567 }
10568
10569 /*
10570 * word or WORD under cursor
10571 */
10572 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
10573 {
10574 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
10575 (FIND_IDENT|FIND_STRING) : FIND_STRING);
10576 if (resultlen == 0)
10577 {
10578 *errormsg = (char_u *)"";
10579 return NULL;
10580 }
10581 }
10582
10583 /*
10584 * '#': Alternate file name
10585 * '%': Current file name
10586 * File name under the cursor
10587 * File name for autocommand
10588 * and following modifiers
10589 */
10590 else
10591 {
10592 switch (spec_idx)
10593 {
10594 case SPEC_PERC: /* '%': current file */
10595 if (curbuf->b_fname == NULL)
10596 {
10597 result = (char_u *)"";
10598 valid = 0; /* Must have ":p:h" to be valid */
10599 }
10600 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010601 result = curbuf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010602 break;
10603
10604 case SPEC_HASH: /* '#' or "#99": alternate file */
10605 if (src[1] == '#') /* "##": the argument list */
10606 {
10607 result = arg_all();
10608 resultbuf = result;
10609 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +000010610 if (escaped != NULL)
10611 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010612#ifdef FEAT_MODIFY_FNAME
10613 skip_mod = TRUE;
10614#endif
10615 break;
10616 }
10617 s = src + 1;
Bram Moolenaard812df62008-11-09 12:46:09 +000010618 if (*s == '<') /* "#<99" uses v:oldfiles */
10619 ++s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010620 i = (int)getdigits(&s);
10621 *usedlen = (int)(s - src); /* length of what we expand */
10622
Bram Moolenaard812df62008-11-09 12:46:09 +000010623 if (src[1] == '<')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010624 {
Bram Moolenaard812df62008-11-09 12:46:09 +000010625 if (*usedlen < 2)
10626 {
10627 /* Should we give an error message for #<text? */
10628 *usedlen = 1;
10629 return NULL;
10630 }
10631#ifdef FEAT_EVAL
10632 result = list_find_str(get_vim_var_list(VV_OLDFILES),
10633 (long)i);
10634 if (result == NULL)
10635 {
10636 *errormsg = (char_u *)"";
10637 return NULL;
10638 }
10639#else
10640 *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
Bram Moolenaar071d4272004-06-13 20:20:40 +000010641 return NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +000010642#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010643 }
10644 else
Bram Moolenaard812df62008-11-09 12:46:09 +000010645 {
10646 buf = buflist_findnr(i);
10647 if (buf == NULL)
10648 {
10649 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
10650 return NULL;
10651 }
10652 if (lnump != NULL)
10653 *lnump = ECMD_LAST;
10654 if (buf->b_fname == NULL)
10655 {
10656 result = (char_u *)"";
10657 valid = 0; /* Must have ":p:h" to be valid */
10658 }
10659 else
10660 result = buf->b_fname;
10661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010662 break;
10663
10664#ifdef FEAT_SEARCHPATH
10665 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +000010666 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010667 if (result == NULL)
10668 {
10669 *errormsg = (char_u *)"";
10670 return NULL;
10671 }
10672 resultbuf = result; /* remember allocated string */
10673 break;
10674#endif
10675
10676#ifdef FEAT_AUTOCMD
10677 case SPEC_AFILE: /* file name for autocommand */
10678 result = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +000010679 if (result != NULL && !autocmd_fname_full)
10680 {
10681 /* Still need to turn the fname into a full path. It is
10682 * postponed to avoid a delay when <afile> is not used. */
10683 autocmd_fname_full = TRUE;
10684 result = FullName_save(autocmd_fname, FALSE);
10685 vim_free(autocmd_fname);
10686 autocmd_fname = result;
10687 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010688 if (result == NULL)
10689 {
10690 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
10691 return NULL;
10692 }
Bram Moolenaara0174af2008-01-02 20:08:25 +000010693 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010694 break;
10695
10696 case SPEC_ABUF: /* buffer number for autocommand */
10697 if (autocmd_bufnr <= 0)
10698 {
10699 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
10700 return NULL;
10701 }
10702 sprintf((char *)strbuf, "%d", autocmd_bufnr);
10703 result = strbuf;
10704 break;
10705
10706 case SPEC_AMATCH: /* match name for autocommand */
10707 result = autocmd_match;
10708 if (result == NULL)
10709 {
10710 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
10711 return NULL;
10712 }
10713 break;
10714
10715#endif
10716 case SPEC_SFILE: /* file name for ":so" command */
10717 result = sourcing_name;
10718 if (result == NULL)
10719 {
10720 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
10721 return NULL;
10722 }
10723 break;
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010724 case SPEC_SLNUM: /* line in file for ":so" command */
10725 if (sourcing_name == NULL || sourcing_lnum == 0)
10726 {
10727 *errormsg = (char_u *)_("E842: no line number to use for \"<slnum>\"");
10728 return NULL;
10729 }
10730 sprintf((char *)strbuf, "%ld", (long)sourcing_lnum);
10731 result = strbuf;
10732 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010733#if defined(FEAT_CLIENTSERVER)
10734 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000010735 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
10736 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010737 result = strbuf;
10738 break;
10739#endif
10740 }
10741
10742 resultlen = (int)STRLEN(result); /* length of new string */
10743 if (src[*usedlen] == '<') /* remove the file name extension */
10744 {
10745 ++*usedlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010746 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010747 resultlen = (int)(s - result);
10748 }
10749#ifdef FEAT_MODIFY_FNAME
10750 else if (!skip_mod)
10751 {
10752 valid |= modify_fname(src, usedlen, &result, &resultbuf,
10753 &resultlen);
10754 if (result == NULL)
10755 {
10756 *errormsg = (char_u *)"";
10757 return NULL;
10758 }
10759 }
10760#endif
10761 }
10762
10763 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
10764 {
10765 if (valid != VALID_HEAD + VALID_PATH)
10766 /* xgettext:no-c-format */
10767 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
10768 else
10769 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
10770 result = NULL;
10771 }
10772 else
10773 result = vim_strnsave(result, resultlen);
10774 vim_free(resultbuf);
10775 return result;
10776}
10777
10778/*
10779 * Concatenate all files in the argument list, separated by spaces, and return
10780 * it in one allocated string.
10781 * Spaces and backslashes in the file names are escaped with a backslash.
10782 * Returns NULL when out of memory.
10783 */
10784 static char_u *
10785arg_all()
10786{
10787 int len;
10788 int idx;
10789 char_u *retval = NULL;
10790 char_u *p;
10791
10792 /*
10793 * Do this loop two times:
10794 * first time: compute the total length
10795 * second time: concatenate the names
10796 */
10797 for (;;)
10798 {
10799 len = 0;
10800 for (idx = 0; idx < ARGCOUNT; ++idx)
10801 {
10802 p = alist_name(&ARGLIST[idx]);
10803 if (p != NULL)
10804 {
10805 if (len > 0)
10806 {
10807 /* insert a space in between names */
10808 if (retval != NULL)
10809 retval[len] = ' ';
10810 ++len;
10811 }
10812 for ( ; *p != NUL; ++p)
10813 {
Bram Moolenaar6e8d3b02015-06-09 21:33:31 +020010814 if (*p == ' '
10815#ifndef BACKSLASH_IN_FILENAME
10816 || *p == '\\'
10817#endif
10818 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010819 {
10820 /* insert a backslash */
10821 if (retval != NULL)
10822 retval[len] = '\\';
10823 ++len;
10824 }
10825 if (retval != NULL)
10826 retval[len] = *p;
10827 ++len;
10828 }
10829 }
10830 }
10831
10832 /* second time: break here */
10833 if (retval != NULL)
10834 {
10835 retval[len] = NUL;
10836 break;
10837 }
10838
10839 /* allocate memory */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000010840 retval = alloc((unsigned)len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010841 if (retval == NULL)
10842 break;
10843 }
10844
10845 return retval;
10846}
10847
10848#if defined(FEAT_AUTOCMD) || defined(PROTO)
10849/*
10850 * Expand the <sfile> string in "arg".
10851 *
10852 * Returns an allocated string, or NULL for any error.
10853 */
10854 char_u *
10855expand_sfile(arg)
10856 char_u *arg;
10857{
10858 char_u *errormsg;
10859 int len;
10860 char_u *result;
10861 char_u *newres;
10862 char_u *repl;
10863 int srclen;
10864 char_u *p;
10865
10866 result = vim_strsave(arg);
10867 if (result == NULL)
10868 return NULL;
10869
10870 for (p = result; *p; )
10871 {
10872 if (STRNCMP(p, "<sfile>", 7) != 0)
10873 ++p;
10874 else
10875 {
10876 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010877 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010878 if (errormsg != NULL)
10879 {
10880 if (*errormsg)
10881 emsg(errormsg);
10882 vim_free(result);
10883 return NULL;
10884 }
10885 if (repl == NULL) /* no match (cannot happen) */
10886 {
10887 p += srclen;
10888 continue;
10889 }
10890 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
10891 newres = alloc(len);
10892 if (newres == NULL)
10893 {
10894 vim_free(repl);
10895 vim_free(result);
10896 return NULL;
10897 }
10898 mch_memmove(newres, result, (size_t)(p - result));
10899 STRCPY(newres + (p - result), repl);
10900 len = (int)STRLEN(newres);
10901 STRCAT(newres, p + srclen);
10902 vim_free(repl);
10903 vim_free(result);
10904 result = newres;
10905 p = newres + len; /* continue after the match */
10906 }
10907 }
10908
10909 return result;
10910}
10911#endif
10912
10913#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010914static int ses_winsizes __ARGS((FILE *fd, int restore_size,
10915 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010916static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
10917static frame_T *ses_skipframe __ARGS((frame_T *fr));
10918static int ses_do_frame __ARGS((frame_T *fr));
10919static int ses_do_win __ARGS((win_T *wp));
10920static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
10921static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
10922static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
10923
10924/*
10925 * Write openfile commands for the current buffers to an .exrc file.
10926 * Return FAIL on error, OK otherwise.
10927 */
10928 static int
10929makeopens(fd, dirnow)
10930 FILE *fd;
10931 char_u *dirnow; /* Current directory name */
10932{
10933 buf_T *buf;
10934 int only_save_windows = TRUE;
10935 int nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010936 int restore_size = TRUE;
10937 win_T *wp;
10938 char_u *sname;
10939 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000010940 int tabnr;
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020010941 int restore_stal = FALSE;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010942 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010943 frame_T *tab_topframe;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010944 int cur_arg_idx = 0;
Bram Moolenaar383c6f52008-01-04 15:01:07 +000010945 int next_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010946
10947 if (ssop_flags & SSOP_BUFFERS)
10948 only_save_windows = FALSE; /* Save ALL buffers */
10949
10950 /*
10951 * Begin by setting the this_session variable, and then other
10952 * sessionable variables.
10953 */
10954#ifdef FEAT_EVAL
10955 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
10956 return FAIL;
10957 if (ssop_flags & SSOP_GLOBALS)
10958 if (store_session_globals(fd) == FAIL)
10959 return FAIL;
10960#endif
10961
10962 /*
10963 * Close all windows but one.
10964 */
10965 if (put_line(fd, "silent only") == FAIL)
10966 return FAIL;
10967
10968 /*
10969 * Now a :cd command to the session directory or the current directory
10970 */
10971 if (ssop_flags & SSOP_SESDIR)
10972 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010973 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
10974 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010975 return FAIL;
10976 }
10977 else if (ssop_flags & SSOP_CURDIR)
10978 {
10979 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
10980 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010981 || fputs("cd ", fd) < 0
10982 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
10983 || put_eol(fd) == FAIL)
10984 {
10985 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010986 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010988 vim_free(sname);
10989 }
10990
10991 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010992 * If there is an empty, unnamed buffer we will wipe it out later.
10993 * Remember the buffer number.
10994 */
10995 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
10996 return FAIL;
10997 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
10998 return FAIL;
10999 if (put_line(fd, "endif") == FAIL)
11000 return FAIL;
11001
11002 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011003 * Now save the current files, current buffer first.
11004 */
11005 if (put_line(fd, "set shortmess=aoO") == FAIL)
11006 return FAIL;
11007
11008 /* Now put the other buffers into the buffer list */
11009 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
11010 {
11011 if (!(only_save_windows && buf->b_nwindows == 0)
11012 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
11013 && buf->b_fname != NULL
11014 && buf->b_p_bl)
11015 {
11016 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
11017 : buf->b_wininfo->wi_fpos.lnum) < 0
11018 || ses_fname(fd, buf, &ssop_flags) == FAIL)
11019 return FAIL;
11020 }
11021 }
11022
11023 /* the global argument list */
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011024 if (ses_arglist(fd, "argglobal", &global_alist.al_ga,
Bram Moolenaar071d4272004-06-13 20:20:40 +000011025 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
11026 return FAIL;
11027
11028 if (ssop_flags & SSOP_RESIZE)
11029 {
11030 /* Note: after the restore we still check it worked!*/
11031 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
11032 || put_eol(fd) == FAIL)
11033 return FAIL;
11034 }
11035
11036#ifdef FEAT_GUI
11037 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
11038 {
11039 int x, y;
11040
11041 if (gui_mch_get_winpos(&x, &y) == OK)
11042 {
11043 /* Note: after the restore we still check it worked!*/
11044 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
11045 return FAIL;
11046 }
11047 }
11048#endif
11049
11050 /*
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020011051 * When there are two or more tabpages and 'showtabline' is 1 the tabline
11052 * will be displayed when creating the next tab. That resizes the windows
11053 * in the first tab, which may cause problems. Set 'showtabline' to 2
11054 * temporarily to avoid that.
11055 */
11056 if (p_stal == 1 && first_tabpage->tp_next != NULL)
11057 {
11058 if (put_line(fd, "set stal=2") == FAIL)
11059 return FAIL;
11060 restore_stal = TRUE;
11061 }
11062
11063 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000011064 * May repeat putting Windows for each tab, when "tabpages" is in
11065 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011066 * Don't use goto_tabpage(), it may change directory and trigger
11067 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011068 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011069 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011070 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011071 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011072 {
Bram Moolenaar695baee2015-04-13 12:39:22 +020011073 int need_tabnew = FALSE;
11074 int cnr = 1;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011075
Bram Moolenaar18144c82006-04-12 21:52:12 +000011076 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +000011077 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011078 tabpage_T *tp = find_tabpage(tabnr);
11079
11080 if (tp == NULL)
11081 break; /* done all tab pages */
11082 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011083 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011084 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011085 tab_topframe = topframe;
11086 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011087 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011088 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011089 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011090 tab_topframe = tp->tp_topframe;
11091 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011092 if (tabnr > 1)
11093 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011094 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011095
Bram Moolenaar18144c82006-04-12 21:52:12 +000011096 /*
11097 * Before creating the window layout, try loading one file. If this
11098 * is aborted we don't end up with a number of useless windows.
11099 * This may have side effects! (e.g., compressed or network file).
11100 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011101 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011102 {
11103 if (ses_do_win(wp)
11104 && wp->w_buffer->b_ffname != NULL
11105 && !wp->w_buffer->b_help
11106#ifdef FEAT_QUICKFIX
11107 && !bt_nofile(wp->w_buffer)
11108#endif
11109 )
11110 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011111 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +000011112 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
11113 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011114 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011115 if (!wp->w_arg_idx_invalid)
11116 edited_win = wp;
11117 break;
11118 }
11119 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011120
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011121 /* If no file got edited create an empty tab page. */
11122 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
11123 return FAIL;
11124
Bram Moolenaar18144c82006-04-12 21:52:12 +000011125 /*
11126 * Save current window layout.
11127 */
11128 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011129 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011130 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011131 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011132 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
11133 return FAIL;
11134 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
11135 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011136
Bram Moolenaar18144c82006-04-12 21:52:12 +000011137 /*
11138 * Check if window sizes can be restored (no windows omitted).
11139 * Remember the window number of the current window after restoring.
11140 */
11141 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011142 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +000011143 {
11144 if (ses_do_win(wp))
11145 ++nr;
11146 else
11147 restore_size = FALSE;
11148 if (curwin == wp)
11149 cnr = nr;
11150 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011151
Bram Moolenaar18144c82006-04-12 21:52:12 +000011152 /* Go to the first window. */
11153 if (put_line(fd, "wincmd t") == FAIL)
11154 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000011155
Bram Moolenaar18144c82006-04-12 21:52:12 +000011156 /*
11157 * If more than one window, see if sizes can be restored.
11158 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
11159 * resized when moving between windows.
11160 * Do this before restoring the view, so that the topline and the
11161 * cursor can be set. This is done again below.
11162 */
11163 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
11164 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011165 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011166 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011167
Bram Moolenaar18144c82006-04-12 21:52:12 +000011168 /*
11169 * Restore the view of the window (options, file, cursor, etc.).
11170 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011171 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011172 {
11173 if (!ses_do_win(wp))
11174 continue;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011175 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
11176 cur_arg_idx) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011177 return FAIL;
11178 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
11179 return FAIL;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011180 next_arg_idx = wp->w_arg_idx;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011181 }
11182
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011183 /* The argument index in the first tab page is zero, need to set it in
11184 * each window. For further tab pages it's the window where we do
11185 * "tabedit". */
11186 cur_arg_idx = next_arg_idx;
11187
Bram Moolenaar18144c82006-04-12 21:52:12 +000011188 /*
11189 * Restore cursor to the current window if it's not the first one.
11190 */
11191 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
11192 || put_eol(fd) == FAIL))
11193 return FAIL;
11194
11195 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000011196 * Restore window sizes again after jumping around in windows, because
11197 * the current window has a minimum size while others may not.
11198 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011199 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011200 return FAIL;
11201
Bram Moolenaar18144c82006-04-12 21:52:12 +000011202 /* Don't continue in another tab page when doing only the current one
11203 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011204 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +000011205 break;
11206 }
11207
11208 if (ssop_flags & SSOP_TABPAGES)
11209 {
Bram Moolenaar18144c82006-04-12 21:52:12 +000011210 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
11211 || put_eol(fd) == FAIL)
11212 return FAIL;
11213 }
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020011214 if (restore_stal && put_line(fd, "set stal=1") == FAIL)
11215 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011216
Bram Moolenaar9c102382006-05-03 21:26:49 +000011217 /*
11218 * Wipe out an empty unnamed buffer we started in.
11219 */
11220 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
11221 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +000011222 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +000011223 return FAIL;
11224 if (put_line(fd, "endif") == FAIL)
11225 return FAIL;
11226 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
11227 return FAIL;
11228
11229 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
11230 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
11231 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
11232 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011233
11234 /*
11235 * Lastly, execute the x.vim file if it exists.
11236 */
11237 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
11238 || put_line(fd, "if file_readable(s:sx)") == FAIL
Bram Moolenaar42ba1262008-12-09 10:18:03 +000011239 || put_line(fd, " exe \"source \" . fnameescape(s:sx)") == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011240 || put_line(fd, "endif") == FAIL)
11241 return FAIL;
11242
11243 return OK;
11244}
11245
11246 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011247ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011248 FILE *fd;
11249 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011250 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011251{
11252 int n = 0;
11253 win_T *wp;
11254
11255 if (restore_size && (ssop_flags & SSOP_WINSIZE))
11256 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011257 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011258 {
11259 if (!ses_do_win(wp))
11260 continue;
11261 ++n;
11262
11263 /* restore height when not full height */
11264 if (wp->w_height + wp->w_status_height < topframe->fr_height
11265 && (fprintf(fd,
11266 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
11267 n, (long)wp->w_height, Rows / 2, Rows) < 0
11268 || put_eol(fd) == FAIL))
11269 return FAIL;
11270
11271 /* restore width when not full width */
11272 if (wp->w_width < Columns && (fprintf(fd,
11273 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
11274 n, (long)wp->w_width, Columns / 2, Columns) < 0
11275 || put_eol(fd) == FAIL))
11276 return FAIL;
11277 }
11278 }
11279 else
11280 {
11281 /* Just equalise window sizes */
11282 if (put_line(fd, "wincmd =") == FAIL)
11283 return FAIL;
11284 }
11285 return OK;
11286}
11287
11288/*
11289 * Write commands to "fd" to recursively create windows for frame "fr",
11290 * horizontally and vertically split.
11291 * After the commands the last window in the frame is the current window.
11292 * Returns FAIL when writing the commands to "fd" fails.
11293 */
11294 static int
11295ses_win_rec(fd, fr)
11296 FILE *fd;
11297 frame_T *fr;
11298{
11299 frame_T *frc;
11300 int count = 0;
11301
11302 if (fr->fr_layout != FR_LEAF)
11303 {
11304 /* Find first frame that's not skipped and then create a window for
11305 * each following one (first frame is already there). */
11306 frc = ses_skipframe(fr->fr_child);
11307 if (frc != NULL)
11308 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
11309 {
11310 /* Make window as big as possible so that we have lots of room
11311 * to split. */
11312 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
11313 || put_line(fd, fr->fr_layout == FR_COL
11314 ? "split" : "vsplit") == FAIL)
11315 return FAIL;
11316 ++count;
11317 }
11318
11319 /* Go back to the first window. */
11320 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
11321 ? "%dwincmd k" : "%dwincmd h", count) < 0
11322 || put_eol(fd) == FAIL))
11323 return FAIL;
11324
11325 /* Recursively create frames/windows in each window of this column or
11326 * row. */
11327 frc = ses_skipframe(fr->fr_child);
11328 while (frc != NULL)
11329 {
11330 ses_win_rec(fd, frc);
11331 frc = ses_skipframe(frc->fr_next);
11332 /* Go to next window. */
11333 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
11334 return FAIL;
11335 }
11336 }
11337 return OK;
11338}
11339
11340/*
11341 * Skip frames that don't contain windows we want to save in the Session.
11342 * Returns NULL when there none.
11343 */
11344 static frame_T *
11345ses_skipframe(fr)
11346 frame_T *fr;
11347{
11348 frame_T *frc;
11349
11350 for (frc = fr; frc != NULL; frc = frc->fr_next)
11351 if (ses_do_frame(frc))
11352 break;
11353 return frc;
11354}
11355
11356/*
11357 * Return TRUE if frame "fr" has a window somewhere that we want to save in
11358 * the Session.
11359 */
11360 static int
11361ses_do_frame(fr)
11362 frame_T *fr;
11363{
11364 frame_T *frc;
11365
11366 if (fr->fr_layout == FR_LEAF)
11367 return ses_do_win(fr->fr_win);
11368 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
11369 if (ses_do_frame(frc))
11370 return TRUE;
11371 return FALSE;
11372}
11373
11374/*
11375 * Return non-zero if window "wp" is to be stored in the Session.
11376 */
11377 static int
11378ses_do_win(wp)
11379 win_T *wp;
11380{
11381 if (wp->w_buffer->b_fname == NULL
11382#ifdef FEAT_QUICKFIX
11383 /* When 'buftype' is "nofile" can't restore the window contents. */
11384 || bt_nofile(wp->w_buffer)
11385#endif
11386 )
11387 return (ssop_flags & SSOP_BLANK);
11388 if (wp->w_buffer->b_help)
11389 return (ssop_flags & SSOP_HELP);
11390 return TRUE;
11391}
11392
11393/*
11394 * Write commands to "fd" to restore the view of a window.
11395 * Caller must make sure 'scrolloff' is zero.
11396 */
11397 static int
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011398put_view(fd, wp, add_edit, flagp, current_arg_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011399 FILE *fd;
11400 win_T *wp;
11401 int add_edit; /* add ":edit" command to view */
11402 unsigned *flagp; /* vop_flags or ssop_flags */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011403 int current_arg_idx; /* current argument index of the window, use
11404 * -1 if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011405{
11406 win_T *save_curwin;
11407 int f;
11408 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011409 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011410
11411 /* Always restore cursor position for ":mksession". For ":mkview" only
11412 * when 'viewoptions' contains "cursor". */
11413 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
11414
11415 /*
11416 * Local argument list.
11417 */
11418 if (wp->w_alist == &global_alist)
11419 {
11420 if (put_line(fd, "argglobal") == FAIL)
11421 return FAIL;
11422 }
11423 else
11424 {
11425 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
11426 flagp == &vop_flags
11427 || !(*flagp & SSOP_CURDIR)
11428 || wp->w_localdir != NULL, flagp) == FAIL)
11429 return FAIL;
11430 }
11431
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011432 /* Only when part of a session: restore the argument index. Some
11433 * arguments may have been deleted, check if the index is valid. */
Bram Moolenaar51f53df2010-06-26 05:25:54 +020011434 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx < WARGCOUNT(wp)
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011435 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011436 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011437 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011438 || put_eol(fd) == FAIL)
11439 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011440 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011441 }
11442
11443 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011444 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000011445 {
11446 /*
11447 * Load the file.
11448 */
11449 if (wp->w_buffer->b_ffname != NULL
11450#ifdef FEAT_QUICKFIX
11451 && !bt_nofile(wp->w_buffer)
11452#endif
11453 )
11454 {
11455 /*
11456 * Editing a file in this buffer: use ":edit file".
11457 * This may have side effects! (e.g., compressed or network file).
11458 */
11459 if (fputs("edit ", fd) < 0
11460 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
11461 return FAIL;
11462 }
11463 else
11464 {
11465 /* No file in this buffer, just make it empty. */
11466 if (put_line(fd, "enew") == FAIL)
11467 return FAIL;
11468#ifdef FEAT_QUICKFIX
11469 if (wp->w_buffer->b_ffname != NULL)
11470 {
11471 /* The buffer does have a name, but it's not a file name. */
11472 if (fputs("file ", fd) < 0
11473 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
11474 return FAIL;
11475 }
11476#endif
11477 do_cursor = FALSE;
11478 }
11479 }
11480
11481 /*
11482 * Local mappings and abbreviations.
11483 */
11484 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
11485 && makemap(fd, wp->w_buffer) == FAIL)
11486 return FAIL;
11487
11488 /*
11489 * Local options. Need to go to the window temporarily.
11490 * Store only local values when using ":mkview" and when ":mksession" is
11491 * used and 'sessionoptions' doesn't include "options".
11492 * Some folding options are always stored when "folds" is included,
11493 * otherwise the folds would not be restored correctly.
11494 */
11495 save_curwin = curwin;
11496 curwin = wp;
11497 curbuf = curwin->w_buffer;
11498 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
11499 f = makeset(fd, OPT_LOCAL,
11500 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
11501#ifdef FEAT_FOLDING
11502 else if (*flagp & SSOP_FOLDS)
11503 f = makefoldset(fd);
11504#endif
11505 else
11506 f = OK;
11507 curwin = save_curwin;
11508 curbuf = curwin->w_buffer;
11509 if (f == FAIL)
11510 return FAIL;
11511
11512#ifdef FEAT_FOLDING
11513 /*
11514 * Save Folds when 'buftype' is empty and for help files.
11515 */
11516 if ((*flagp & SSOP_FOLDS)
11517 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000011518# ifdef FEAT_QUICKFIX
11519 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
11520# endif
11521 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000011522 {
11523 if (put_folds(fd, wp) == FAIL)
11524 return FAIL;
11525 }
11526#endif
11527
11528 /*
11529 * Set the cursor after creating folds, since that moves the cursor.
11530 */
11531 if (do_cursor)
11532 {
11533
11534 /* Restore the cursor line in the file and relatively in the
11535 * window. Don't use "G", it changes the jumplist. */
11536 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
11537 (long)wp->w_cursor.lnum,
11538 (long)(wp->w_cursor.lnum - wp->w_topline),
11539 (long)wp->w_height / 2, (long)wp->w_height) < 0
11540 || put_eol(fd) == FAIL
11541 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
11542 || put_line(fd, "exe s:l") == FAIL
11543 || put_line(fd, "normal! zt") == FAIL
11544 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
11545 || put_eol(fd) == FAIL)
11546 return FAIL;
11547 /* Restore the cursor column and left offset when not wrapping. */
11548 if (wp->w_cursor.col == 0)
11549 {
11550 if (put_line(fd, "normal! 0") == FAIL)
11551 return FAIL;
11552 }
11553 else
11554 {
11555 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
11556 {
11557 if (fprintf(fd,
11558 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011559 (long)wp->w_virtcol + 1,
11560 (long)(wp->w_virtcol - wp->w_leftcol),
Bram Moolenaar071d4272004-06-13 20:20:40 +000011561 (long)wp->w_width / 2, (long)wp->w_width) < 0
11562 || put_eol(fd) == FAIL
11563 || put_line(fd, "if s:c > 0") == FAIL
11564 || fprintf(fd,
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011565 " exe 'normal! ' . s:c . '|zs' . %ld . '|'",
11566 (long)wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011567 || put_eol(fd) == FAIL
11568 || put_line(fd, "else") == FAIL
Bram Moolenaarfdf447b2013-02-26 17:21:29 +010011569 || fprintf(fd, " normal! 0%d|", wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011570 || put_eol(fd) == FAIL
11571 || put_line(fd, "endif") == FAIL)
11572 return FAIL;
11573 }
11574 else
11575 {
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011576 if (fprintf(fd, "normal! 0%d|", wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011577 || put_eol(fd) == FAIL)
11578 return FAIL;
11579 }
11580 }
11581 }
11582
11583 /*
11584 * Local directory.
11585 */
11586 if (wp->w_localdir != NULL)
11587 {
11588 if (fputs("lcd ", fd) < 0
11589 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
11590 || put_eol(fd) == FAIL)
11591 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011592 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011593 }
11594
11595 return OK;
11596}
11597
11598/*
11599 * Write an argument list to the session file.
11600 * Returns FAIL if writing fails.
11601 */
11602 static int
11603ses_arglist(fd, cmd, gap, fullname, flagp)
11604 FILE *fd;
11605 char *cmd;
11606 garray_T *gap;
11607 int fullname; /* TRUE: use full path name */
11608 unsigned *flagp;
11609{
11610 int i;
Bram Moolenaard9462e32011-04-11 21:35:11 +020011611 char_u *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011612 char_u *s;
11613
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011614 if (fputs(cmd, fd) < 0 || put_eol(fd) == FAIL)
11615 return FAIL;
11616 if (put_line(fd, "silent! argdel *") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011617 return FAIL;
11618 for (i = 0; i < gap->ga_len; ++i)
11619 {
11620 /* NULL file names are skipped (only happens when out of memory). */
11621 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
11622 if (s != NULL)
11623 {
11624 if (fullname)
11625 {
Bram Moolenaard9462e32011-04-11 21:35:11 +020011626 buf = alloc(MAXPATHL);
11627 if (buf != NULL)
11628 {
11629 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
11630 s = buf;
11631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011632 }
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011633 if (fputs("argadd ", fd) < 0
11634 || ses_put_fname(fd, s, flagp) == FAIL
11635 || put_eol(fd) == FAIL)
Bram Moolenaard9462e32011-04-11 21:35:11 +020011636 {
11637 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011638 return FAIL;
Bram Moolenaard9462e32011-04-11 21:35:11 +020011639 }
11640 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011641 }
11642 }
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011643 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011644}
11645
11646/*
11647 * Write a buffer name to the session file.
11648 * Also ends the line.
11649 * Returns FAIL if writing fails.
11650 */
11651 static int
11652ses_fname(fd, buf, flagp)
11653 FILE *fd;
11654 buf_T *buf;
11655 unsigned *flagp;
11656{
11657 char_u *name;
11658
11659 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011660 * the session file will be sourced.
11661 * Don't do this for ":mkview", we don't know the current directory.
11662 * Don't do this after ":lcd", we don't keep track of what the current
11663 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011664 if (buf->b_sfname != NULL
11665 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011666 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
Bram Moolenaar8d594672009-07-01 18:18:57 +000011667#ifdef FEAT_AUTOCHDIR
11668 && !p_acd
11669#endif
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011670 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011671 name = buf->b_sfname;
11672 else
11673 name = buf->b_ffname;
11674 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
11675 return FAIL;
11676 return OK;
11677}
11678
11679/*
11680 * Write a file name to the session file.
11681 * Takes care of the "slash" option in 'sessionoptions' and escapes special
11682 * characters.
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011683 * Returns FAIL if writing fails or out of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011684 */
11685 static int
11686ses_put_fname(fd, name, flagp)
11687 FILE *fd;
11688 char_u *name;
11689 unsigned *flagp;
11690{
11691 char_u *sname;
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011692 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011693 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011694
11695 sname = home_replace_save(NULL, name);
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011696 if (sname == NULL)
11697 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011698
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011699 if (*flagp & SSOP_SLASH)
11700 {
11701 /* change all backslashes to forward slashes */
11702 for (p = sname; *p != NUL; mb_ptr_adv(p))
11703 if (*p == '\\')
11704 *p = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +000011705 }
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011706
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020011707 /* escape special characters */
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011708 p = vim_strsave_fnameescape(sname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011709 vim_free(sname);
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011710 if (p == NULL)
11711 return FAIL;
11712
11713 /* write the result */
11714 if (fputs((char *)p, fd) < 0)
11715 retval = FAIL;
11716
11717 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011718 return retval;
11719}
11720
11721/*
11722 * ":loadview [nr]"
11723 */
11724 static void
11725ex_loadview(eap)
11726 exarg_T *eap;
11727{
11728 char_u *fname;
11729
11730 fname = get_view_file(*eap->arg);
11731 if (fname != NULL)
11732 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000011733 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011734 vim_free(fname);
11735 }
11736}
11737
11738/*
11739 * Get the name of the view file for the current buffer.
11740 */
11741 static char_u *
11742get_view_file(c)
11743 int c;
11744{
11745 int len = 0;
11746 char_u *p, *s;
11747 char_u *retval;
11748 char_u *sname;
11749
11750 if (curbuf->b_ffname == NULL)
11751 {
11752 EMSG(_(e_noname));
11753 return NULL;
11754 }
11755 sname = home_replace_save(NULL, curbuf->b_ffname);
11756 if (sname == NULL)
11757 return NULL;
11758
11759 /*
11760 * We want a file name without separators, because we're not going to make
11761 * a directory.
11762 * "normal" path separator -> "=+"
11763 * "=" -> "=="
11764 * ":" path separator -> "=-"
11765 */
11766 for (p = sname; *p; ++p)
11767 if (*p == '=' || vim_ispathsep(*p))
11768 ++len;
11769 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
11770 if (retval != NULL)
11771 {
11772 STRCPY(retval, p_vdir);
11773 add_pathsep(retval);
11774 s = retval + STRLEN(retval);
11775 for (p = sname; *p; ++p)
11776 {
11777 if (*p == '=')
11778 {
11779 *s++ = '=';
11780 *s++ = '=';
11781 }
11782 else if (vim_ispathsep(*p))
11783 {
11784 *s++ = '=';
Bram Moolenaare60acc12011-05-10 16:41:25 +020011785#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011786 if (*p == ':')
11787 *s++ = '-';
11788 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000011789#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000011790 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000011791 }
11792 else
11793 *s++ = *p;
11794 }
11795 *s++ = '=';
11796 *s++ = c;
11797 STRCPY(s, ".vim");
11798 }
11799
11800 vim_free(sname);
11801 return retval;
11802}
11803
11804#endif /* FEAT_SESSION */
11805
11806/*
11807 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
11808 * Return FAIL for a write error.
11809 */
11810 int
11811put_eol(fd)
11812 FILE *fd;
11813{
11814 if (
11815#ifdef USE_CRNL
11816 (
11817# ifdef MKSESSION_NL
11818 !mksession_nl &&
11819# endif
11820 (putc('\r', fd) < 0)) ||
11821#endif
11822 (putc('\n', fd) < 0))
11823 return FAIL;
11824 return OK;
11825}
11826
11827/*
11828 * Write a line to "fd".
11829 * Return FAIL for a write error.
11830 */
11831 int
11832put_line(fd, s)
11833 FILE *fd;
11834 char *s;
11835{
11836 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
11837 return FAIL;
11838 return OK;
11839}
11840
11841#ifdef FEAT_VIMINFO
11842/*
11843 * ":rviminfo" and ":wviminfo".
11844 */
11845 static void
11846ex_viminfo(eap)
11847 exarg_T *eap;
11848{
11849 char_u *save_viminfo;
11850
11851 save_viminfo = p_viminfo;
11852 if (*p_viminfo == NUL)
11853 p_viminfo = (char_u *)"'100";
11854 if (eap->cmdidx == CMD_rviminfo)
11855 {
Bram Moolenaard812df62008-11-09 12:46:09 +000011856 if (read_viminfo(eap->arg, VIF_WANT_INFO | VIF_WANT_MARKS
11857 | (eap->forceit ? VIF_FORCEIT : 0)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011858 EMSG(_("E195: Cannot open viminfo file for reading"));
11859 }
11860 else
11861 write_viminfo(eap->arg, eap->forceit);
11862 p_viminfo = save_viminfo;
11863}
11864#endif
11865
11866#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000011867/*
Bram Moolenaard9462e32011-04-11 21:35:11 +020011868 * Make a dialog message in "buff[DIALOG_MSG_SIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000011869 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000011870 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011871 void
11872dialog_msg(buff, format, fname)
11873 char_u *buff;
11874 char *format;
11875 char_u *fname;
11876{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011877 if (fname == NULL)
11878 fname = (char_u *)_("Untitled");
Bram Moolenaard9462e32011-04-11 21:35:11 +020011879 vim_snprintf((char *)buff, DIALOG_MSG_SIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011880}
11881#endif
11882
11883/*
11884 * ":behave {mswin,xterm}"
11885 */
11886 static void
11887ex_behave(eap)
11888 exarg_T *eap;
11889{
11890 if (STRCMP(eap->arg, "mswin") == 0)
11891 {
11892 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
11893 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
11894 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
11895 set_option_value((char_u *)"keymodel", 0L,
11896 (char_u *)"startsel,stopsel", 0);
11897 }
11898 else if (STRCMP(eap->arg, "xterm") == 0)
11899 {
11900 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
11901 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
11902 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
11903 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
11904 }
11905 else
11906 EMSG2(_(e_invarg2), eap->arg);
11907}
11908
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010011909#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
11910/*
11911 * Function given to ExpandGeneric() to obtain the possible arguments of the
11912 * ":behave {mswin,xterm}" command.
11913 */
11914 char_u *
11915get_behave_arg(xp, idx)
11916 expand_T *xp UNUSED;
11917 int idx;
11918{
11919 if (idx == 0)
11920 return (char_u *)"mswin";
11921 if (idx == 1)
11922 return (char_u *)"xterm";
11923 return NULL;
11924}
11925#endif
11926
Bram Moolenaar071d4272004-06-13 20:20:40 +000011927#ifdef FEAT_AUTOCMD
11928static int filetype_detect = FALSE;
11929static int filetype_plugin = FALSE;
11930static int filetype_indent = FALSE;
11931
11932/*
11933 * ":filetype [plugin] [indent] {on,off,detect}"
11934 * on: Load the filetype.vim file to install autocommands for file types.
11935 * off: Load the ftoff.vim file to remove all autocommands for file types.
11936 * plugin on: load filetype.vim and ftplugin.vim
11937 * plugin off: load ftplugof.vim
11938 * indent on: load filetype.vim and indent.vim
11939 * indent off: load indoff.vim
11940 */
11941 static void
11942ex_filetype(eap)
11943 exarg_T *eap;
11944{
11945 char_u *arg = eap->arg;
11946 int plugin = FALSE;
11947 int indent = FALSE;
11948
11949 if (*eap->arg == NUL)
11950 {
11951 /* Print current status. */
11952 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
11953 filetype_detect ? "ON" : "OFF",
11954 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
11955 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
11956 return;
11957 }
11958
11959 /* Accept "plugin" and "indent" in any order. */
11960 for (;;)
11961 {
11962 if (STRNCMP(arg, "plugin", 6) == 0)
11963 {
11964 plugin = TRUE;
11965 arg = skipwhite(arg + 6);
11966 continue;
11967 }
11968 if (STRNCMP(arg, "indent", 6) == 0)
11969 {
11970 indent = TRUE;
11971 arg = skipwhite(arg + 6);
11972 continue;
11973 }
11974 break;
11975 }
11976 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
11977 {
11978 if (*arg == 'o' || !filetype_detect)
11979 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011980 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011981 filetype_detect = TRUE;
11982 if (plugin)
11983 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011984 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011985 filetype_plugin = TRUE;
11986 }
11987 if (indent)
11988 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011989 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011990 filetype_indent = TRUE;
11991 }
11992 }
11993 if (*arg == 'd')
11994 {
11995 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000011996 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011997 }
11998 }
11999 else if (STRCMP(arg, "off") == 0)
12000 {
12001 if (plugin || indent)
12002 {
12003 if (plugin)
12004 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000012005 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012006 filetype_plugin = FALSE;
12007 }
12008 if (indent)
12009 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000012010 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012011 filetype_indent = FALSE;
12012 }
12013 }
12014 else
12015 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000012016 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012017 filetype_detect = FALSE;
12018 }
12019 }
12020 else
12021 EMSG2(_(e_invarg2), arg);
12022}
12023
12024/*
12025 * ":setfiletype {name}"
12026 */
12027 static void
12028ex_setfiletype(eap)
12029 exarg_T *eap;
12030{
12031 if (!did_filetype)
12032 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
12033}
12034#endif
12035
Bram Moolenaar071d4272004-06-13 20:20:40 +000012036 static void
12037ex_digraphs(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000012038 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012039{
12040#ifdef FEAT_DIGRAPHS
12041 if (*eap->arg != NUL)
12042 putdigraph(eap->arg);
12043 else
12044 listdigraphs();
12045#else
12046 EMSG(_("E196: No digraphs in this version"));
12047#endif
12048}
12049
12050 static void
12051ex_set(eap)
12052 exarg_T *eap;
12053{
12054 int flags = 0;
12055
12056 if (eap->cmdidx == CMD_setlocal)
12057 flags = OPT_LOCAL;
12058 else if (eap->cmdidx == CMD_setglobal)
12059 flags = OPT_GLOBAL;
12060#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
12061 if (cmdmod.browse && flags == 0)
12062 ex_options(eap);
12063 else
12064#endif
12065 (void)do_set(eap->arg, flags);
12066}
12067
12068#ifdef FEAT_SEARCH_EXTRA
12069/*
12070 * ":nohlsearch"
12071 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012072 static void
12073ex_nohlsearch(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000012074 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012075{
Bram Moolenaar8050efa2013-11-08 04:30:20 +010012076 SET_NO_HLSEARCH(TRUE);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000012077 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012078}
12079
12080/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000012081 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000012082 * Sets nextcmd to the start of the next command, if any. Also called when
12083 * skipping commands to find the next command.
12084 */
12085 static void
12086ex_match(eap)
12087 exarg_T *eap;
12088{
12089 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000012090 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012091 char_u *end;
12092 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012093 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000012094
12095 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012096 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000012097 else
12098 {
12099 EMSG(e_invcmd);
12100 return;
12101 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012102
12103 /* First clear any old pattern. */
12104 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012105 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012106
12107 if (ends_excmd(*eap->arg))
12108 end = eap->arg;
12109 else if ((STRNICMP(eap->arg, "none", 4) == 0
12110 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
12111 end = eap->arg + 4;
12112 else
12113 {
12114 p = skiptowhite(eap->arg);
12115 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012116 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012117 p = skipwhite(p);
12118 if (*p == NUL)
12119 {
12120 /* There must be two arguments. */
Bram Moolenaar9a7d58e2015-11-24 17:23:56 +010012121 vim_free(g);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012122 EMSG2(_(e_invarg2), eap->arg);
12123 return;
12124 }
12125 end = skip_regexp(p + 1, *p, TRUE, NULL);
12126 if (!eap->skip)
12127 {
12128 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
12129 {
Bram Moolenaar9a7d58e2015-11-24 17:23:56 +010012130 vim_free(g);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012131 eap->errmsg = e_trailing;
12132 return;
12133 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000012134 if (*end != *p)
12135 {
Bram Moolenaar9a7d58e2015-11-24 17:23:56 +010012136 vim_free(g);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000012137 EMSG2(_(e_invarg2), p);
12138 return;
12139 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012140
12141 c = *end;
12142 *end = NUL;
Bram Moolenaar6561d522015-07-21 15:48:27 +020012143 match_add(curwin, g, p + 1, 10, id, NULL, NULL);
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012144 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012145 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012146 }
12147 }
12148 eap->nextcmd = find_nextcmd(end);
12149}
12150#endif
12151
12152#ifdef FEAT_CRYPT
12153/*
12154 * ":X": Get crypt key
12155 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012156 static void
12157ex_X(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000012158 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012159{
Bram Moolenaar3a0c9082014-11-12 15:15:42 +010012160 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020012161 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012162}
12163#endif
12164
12165#ifdef FEAT_FOLDING
12166 static void
12167ex_fold(eap)
12168 exarg_T *eap;
12169{
12170 if (foldManualAllowed(TRUE))
12171 foldCreate(eap->line1, eap->line2);
12172}
12173
12174 static void
12175ex_foldopen(eap)
12176 exarg_T *eap;
12177{
12178 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
12179 eap->forceit, FALSE);
12180}
12181
12182 static void
12183ex_folddo(eap)
12184 exarg_T *eap;
12185{
12186 linenr_T lnum;
12187
Bram Moolenaar6b1ee342014-08-06 18:17:11 +020012188#ifdef FEAT_CLIPBOARD
12189 start_global_changes();
12190#endif
12191
Bram Moolenaar071d4272004-06-13 20:20:40 +000012192 /* First set the marks for all lines closed/open. */
12193 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
12194 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
12195 ml_setmarked(lnum);
12196
12197 /* Execute the command on the marked lines. */
12198 global_exe(eap->arg);
12199 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +020012200#ifdef FEAT_CLIPBOARD
12201 end_global_changes();
12202#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012203}
12204#endif