blob: 7633d54200146d67202befafab9146077a5c5857 [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 Moolenaarb96a7f32014-11-27 16:22:48 +0100138static linenr_T get_address __ARGS((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 Moolenaar7db5fc82010-05-24 11:59:29 +0200874 vim_memset(&debug_saved, 0, 1);
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;
2176 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 ea.cmd = skipwhite(ea.cmd);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002178 lnum = get_address(&ea.cmd, ea.addr_type, ea.skip, ea.addr_count == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 if (ea.cmd == NULL) /* error detected */
2180 goto doend;
2181 if (lnum == MAXLNUM)
2182 {
2183 if (*ea.cmd == '%') /* '%' - all lines */
2184 {
2185 ++ea.cmd;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002186 switch (ea.addr_type)
2187 {
2188 case ADDR_LINES:
2189 ea.line1 = 1;
2190 ea.line2 = curbuf->b_ml.ml_line_count;
2191 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002192 case ADDR_LOADED_BUFFERS:
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01002193 {
2194 buf_T *buf = firstbuf;
2195
2196 while (buf->b_next != NULL
2197 && buf->b_ml.ml_mfp == NULL)
2198 buf = buf->b_next;
2199 ea.line1 = buf->b_fnum;
2200 buf = lastbuf;
2201 while (buf->b_prev != NULL
2202 && buf->b_ml.ml_mfp == NULL)
2203 buf = buf->b_prev;
2204 ea.line2 = buf->b_fnum;
2205 break;
2206 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002207 case ADDR_BUFFERS:
Bram Moolenaar4d84d932014-11-30 14:50:16 +01002208 ea.line1 = firstbuf->b_fnum;
2209 ea.line2 = lastbuf->b_fnum;
2210 break;
2211 case ADDR_WINDOWS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002212 case ADDR_TABS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002213 if (IS_USER_CMDIDX(ea.cmdidx))
2214 {
2215 ea.line1 = 1;
2216 ea.line2 = ea.addr_type == ADDR_WINDOWS
2217 ? LAST_WIN_NR : LAST_TAB_NR;
2218 }
2219 else
2220 {
2221 /* there is no Vim command which uses '%' and
2222 * ADDR_WINDOWS or ADDR_TABS */
2223 errormsg = (char_u *)_(e_invrange);
2224 goto doend;
2225 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002226 break;
2227 case ADDR_ARGUMENTS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002228 if (ARGCOUNT == 0)
2229 ea.line1 = ea.line2 = 0;
2230 else
2231 {
2232 ea.line1 = 1;
2233 ea.line2 = ARGCOUNT;
2234 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002235 break;
2236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 ++ea.addr_count;
2238 }
2239 /* '*' - visual area */
2240 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
2241 {
2242 pos_T *fp;
2243
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002244 if (ea.addr_type != ADDR_LINES)
2245 {
2246 errormsg = (char_u *)_(e_invrange);
2247 goto doend;
2248 }
2249
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 ++ea.cmd;
2251 if (!ea.skip)
2252 {
2253 fp = getmark('<', FALSE);
2254 if (check_mark(fp) == FAIL)
2255 goto doend;
2256 ea.line1 = fp->lnum;
2257 fp = getmark('>', FALSE);
2258 if (check_mark(fp) == FAIL)
2259 goto doend;
2260 ea.line2 = fp->lnum;
2261 ++ea.addr_count;
2262 }
2263 }
2264 }
2265 else
2266 ea.line2 = lnum;
2267 ea.addr_count++;
2268
2269 if (*ea.cmd == ';')
2270 {
2271 if (!ea.skip)
2272 curwin->w_cursor.lnum = ea.line2;
2273 }
2274 else if (*ea.cmd != ',')
2275 break;
2276 ++ea.cmd;
2277 }
2278
2279 /* One address given: set start and end lines */
2280 if (ea.addr_count == 1)
2281 {
2282 ea.line1 = ea.line2;
2283 /* ... but only implicit: really no address given */
2284 if (lnum == MAXLNUM)
2285 ea.addr_count = 0;
2286 }
2287
2288 /* Don't leave the cursor on an illegal line (caused by ';') */
2289 check_cursor_lnum();
2290
2291/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002292 * 5. Parse the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 */
2294
2295 /*
2296 * Skip ':' and any white space
2297 */
2298 ea.cmd = skipwhite(ea.cmd);
2299 while (*ea.cmd == ':')
2300 ea.cmd = skipwhite(ea.cmd + 1);
2301
2302 /*
2303 * If we got a line, but no command, then go to the line.
2304 * If we find a '|' or '\n' we set ea.nextcmd.
2305 */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002306 if (*ea.cmd == NUL || *ea.cmd == '"'
2307 || (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 {
2309 /*
2310 * strange vi behaviour:
2311 * ":3" jumps to line 3
2312 * ":3|..." prints line 3
2313 * ":|" prints current line
2314 */
2315 if (ea.skip) /* skip this if inside :if */
2316 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002317 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 {
2319 ea.cmdidx = CMD_print;
2320 ea.argt = RANGE+COUNT+TRLBAR;
2321 if ((errormsg = invalid_range(&ea)) == NULL)
2322 {
2323 correct_range(&ea);
2324 ex_print(&ea);
2325 }
2326 }
2327 else if (ea.addr_count != 0)
2328 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002329 if (ea.line2 > curbuf->b_ml.ml_line_count)
2330 {
2331 /* With '-' in 'cpoptions' a line number past the file is an
2332 * error, otherwise put it at the end of the file. */
2333 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2334 ea.line2 = -1;
2335 else
2336 ea.line2 = curbuf->b_ml.ml_line_count;
2337 }
2338
2339 if (ea.line2 < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002340 errormsg = (char_u *)_(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 else
2342 {
2343 if (ea.line2 == 0)
2344 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002345 else
2346 curwin->w_cursor.lnum = ea.line2;
2347 beginline(BL_SOL | BL_FIX);
2348 }
2349 }
2350 goto doend;
2351 }
2352
Bram Moolenaard5005162014-08-22 23:05:54 +02002353#ifdef FEAT_AUTOCMD
2354 /* If this looks like an undefined user command and there are CmdUndefined
2355 * autocommands defined, trigger the matching autocommands. */
2356 if (p != NULL && ea.cmdidx == CMD_SIZE && !ea.skip
2357 && ASCII_ISUPPER(*ea.cmd)
2358 && has_cmdundefined())
2359 {
Bram Moolenaard5005162014-08-22 23:05:54 +02002360 int ret;
2361
Bram Moolenaar5a31b462014-08-23 14:16:20 +02002362 p = ea.cmd;
Bram Moolenaard5005162014-08-22 23:05:54 +02002363 while (ASCII_ISALNUM(*p))
2364 ++p;
Bram Moolenaar120f4a82014-09-09 12:22:06 +02002365 p = vim_strnsave(ea.cmd, (int)(p - ea.cmd));
Bram Moolenaard5005162014-08-22 23:05:54 +02002366 ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL);
2367 vim_free(p);
Bram Moolenaar829aef12015-07-28 14:25:48 +02002368 /* If the autocommands did something and didn't cause an error, try
2369 * finding the command again. */
2370 p = (ret && !aborting()) ? find_command(&ea, NULL) : NULL;
Bram Moolenaard5005162014-08-22 23:05:54 +02002371 }
2372#endif
2373
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374#ifdef FEAT_USR_CMDS
2375 if (p == NULL)
2376 {
2377 if (!ea.skip)
2378 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2379 goto doend;
2380 }
2381 /* Check for wrong commands. */
2382 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2383 {
2384 errormsg = uc_fun_cmd();
2385 goto doend;
2386 }
2387#endif
2388 if (ea.cmdidx == CMD_SIZE)
2389 {
2390 if (!ea.skip)
2391 {
2392 STRCPY(IObuff, _("E492: Not an editor command"));
2393 if (!sourcing)
Bram Moolenaara6f4d612011-09-21 19:10:46 +02002394 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 errormsg = IObuff;
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02002396 did_emsg_syntax = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 }
2398 goto doend;
2399 }
2400
Bram Moolenaar958636c2014-10-21 20:01:58 +02002401 ni = (!IS_USER_CMDIDX(ea.cmdidx)
2402 && (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00002403#ifdef HAVE_EX_SCRIPT_NI
2404 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2405#endif
2406 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407
2408#ifndef FEAT_EVAL
2409 /*
2410 * When the expression evaluation is disabled, recognize the ":if" and
2411 * ":endif" commands and ignore everything in between it.
2412 */
2413 if (ea.cmdidx == CMD_if)
2414 ++if_level;
2415 if (if_level)
2416 {
2417 if (ea.cmdidx == CMD_endif)
2418 --if_level;
2419 goto doend;
2420 }
2421
2422#endif
2423
Bram Moolenaar196b3b02008-06-20 16:51:41 +00002424 /* forced commands */
2425 if (*p == '!' && ea.cmdidx != CMD_substitute
2426 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 {
2428 ++p;
2429 ea.forceit = TRUE;
2430 }
2431 else
2432 ea.forceit = FALSE;
2433
2434/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01002435 * 6. Parse arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02002437 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002438 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
2440 if (!ea.skip)
2441 {
2442#ifdef HAVE_SANDBOX
2443 if (sandbox != 0 && !(ea.argt & SBOXOK))
2444 {
2445 /* Command not allowed in sandbox. */
2446 errormsg = (char_u *)_(e_sandbox);
2447 goto doend;
2448 }
2449#endif
2450 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2451 {
2452 /* Command not allowed in non-'modifiable' buffer */
2453 errormsg = (char_u *)_(e_modifiable);
2454 goto doend;
2455 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002456
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002457 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar958636c2014-10-21 20:01:58 +02002458 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002460 /* Command not allowed when editing the command line. */
2461#ifdef FEAT_CMDWIN
2462 if (cmdwin_type != 0)
2463 errormsg = (char_u *)_(e_cmdwin);
2464 else
2465#endif
2466 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 goto doend;
2468 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002469#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002470 /* Disallow editing another buffer when "curbuf_lock" is set.
2471 * Do allow ":edit" (check for argument later).
2472 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002473 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002474 && ea.cmdidx != CMD_edit
2475 && ea.cmdidx != CMD_checktime
Bram Moolenaar958636c2014-10-21 20:01:58 +02002476 && !IS_USER_CMDIDX(ea.cmdidx)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002477 && curbuf_locked())
2478 goto doend;
2479#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480
2481 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2482 {
2483 /* no range allowed */
2484 errormsg = (char_u *)_(e_norange);
2485 goto doend;
2486 }
2487 }
2488
2489 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2490 {
2491 errormsg = (char_u *)_(e_nobang);
2492 goto doend;
2493 }
2494
2495 /*
2496 * Don't complain about the range if it is not used
2497 * (could happen if line_count is accidentally set to 0).
2498 */
2499 if (!ea.skip && !ni)
2500 {
2501 /*
2502 * If the range is backwards, ask for confirmation and, if given, swap
2503 * ea.line1 & ea.line2 so it's forwards again.
2504 * When global command is busy, don't ask, will fail below.
2505 */
2506 if (!global_busy && ea.line1 > ea.line2)
2507 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002508 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002510 if (sourcing || exmode_active)
2511 {
2512 errormsg = (char_u *)_("E493: Backwards range given");
2513 goto doend;
2514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 if (ask_yesno((char_u *)
2516 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002517 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 }
2519 lnum = ea.line1;
2520 ea.line1 = ea.line2;
2521 ea.line2 = lnum;
2522 }
2523 if ((errormsg = invalid_range(&ea)) != NULL)
2524 goto doend;
2525 }
2526
2527 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2528 ea.line2 = 1;
2529
2530 correct_range(&ea);
2531
2532#ifdef FEAT_FOLDING
2533 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2534 {
2535 /* Put the first line at the start of a closed fold, put the last line
2536 * at the end of a closed fold. */
2537 (void)hasFolding(ea.line1, &ea.line1, NULL);
2538 (void)hasFolding(ea.line2, NULL, &ea.line2);
2539 }
2540#endif
2541
2542#ifdef FEAT_QUICKFIX
2543 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002544 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 * option here, so things like % get expanded.
2546 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002547 p = replace_makeprg(&ea, p, cmdlinep);
2548 if (p == NULL)
2549 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550#endif
2551
2552 /*
2553 * Skip to start of argument.
2554 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2555 */
2556 if (ea.cmdidx == CMD_bang)
2557 ea.arg = p;
2558 else
2559 ea.arg = skipwhite(p);
2560
2561 /*
2562 * Check for "++opt=val" argument.
2563 * Must be first, allow ":w ++enc=utf8 !cmd"
2564 */
2565 if (ea.argt & ARGOPT)
2566 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2567 if (getargopt(&ea) == FAIL && !ni)
2568 {
2569 errormsg = (char_u *)_(e_invarg);
2570 goto doend;
2571 }
2572
2573 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2574 {
2575 if (*ea.arg == '>') /* append */
2576 {
2577 if (*++ea.arg != '>') /* typed wrong */
2578 {
2579 errormsg = (char_u *)_("E494: Use w or w>>");
2580 goto doend;
2581 }
2582 ea.arg = skipwhite(ea.arg + 1);
2583 ea.append = TRUE;
2584 }
2585 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2586 {
2587 ++ea.arg;
2588 ea.usefilter = TRUE;
2589 }
2590 }
2591
2592 if (ea.cmdidx == CMD_read)
2593 {
2594 if (ea.forceit)
2595 {
2596 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2597 ea.forceit = FALSE;
2598 }
2599 else if (*ea.arg == '!') /* :r !filter */
2600 {
2601 ++ea.arg;
2602 ea.usefilter = TRUE;
2603 }
2604 }
2605
2606 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2607 {
2608 ea.amount = 1;
2609 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2610 {
2611 ++ea.arg;
2612 ++ea.amount;
2613 }
2614 ea.arg = skipwhite(ea.arg);
2615 }
2616
2617 /*
2618 * Check for "+command" argument, before checking for next command.
2619 * Don't do this for ":read !cmd" and ":write !cmd".
2620 */
2621 if ((ea.argt & EDITCMD) && !ea.usefilter)
2622 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2623
2624 /*
2625 * Check for '|' to separate commands and '"' to start comments.
2626 * Don't do this for ":read !cmd" and ":write !cmd".
2627 */
2628 if ((ea.argt & TRLBAR) && !ea.usefilter)
2629 separate_nextcmd(&ea);
2630
2631 /*
2632 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002633 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2634 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002636 else if (ea.cmdidx == CMD_bang
2637 || ea.cmdidx == CMD_global
2638 || ea.cmdidx == CMD_vglobal
2639 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 {
2641 for (p = ea.arg; *p; ++p)
2642 {
2643 /* Remove one backslash before a newline, so that it's possible to
2644 * pass a newline to the shell and also a newline that is preceded
2645 * with a backslash. This makes it impossible to end a shell
2646 * command in a backslash, but that doesn't appear useful.
2647 * Halving the number of backslashes is incompatible with previous
2648 * versions. */
2649 if (*p == '\\' && p[1] == '\n')
Bram Moolenaara7241f52008-06-24 20:39:31 +00002650 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 else if (*p == '\n')
2652 {
2653 ea.nextcmd = p + 1;
2654 *p = NUL;
2655 break;
2656 }
2657 }
2658 }
2659
2660 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2661 {
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002662 buf_T *buf;
2663
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 ea.line1 = 1;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002665 switch (ea.addr_type)
2666 {
2667 case ADDR_LINES:
2668 ea.line2 = curbuf->b_ml.ml_line_count;
2669 break;
2670 case ADDR_LOADED_BUFFERS:
2671 buf = firstbuf;
2672 while (buf->b_next != NULL && buf->b_ml.ml_mfp == NULL)
2673 buf = buf->b_next;
2674 ea.line1 = buf->b_fnum;
2675 buf = lastbuf;
2676 while (buf->b_prev != NULL && buf->b_ml.ml_mfp == NULL)
2677 buf = buf->b_prev;
2678 ea.line2 = buf->b_fnum;
2679 break;
2680 case ADDR_BUFFERS:
2681 ea.line1 = firstbuf->b_fnum;
2682 ea.line2 = lastbuf->b_fnum;
2683 break;
2684 case ADDR_WINDOWS:
2685 ea.line2 = LAST_WIN_NR;
2686 break;
2687 case ADDR_TABS:
2688 ea.line2 = LAST_TAB_NR;
2689 break;
2690 case ADDR_ARGUMENTS:
2691 if (ARGCOUNT == 0)
2692 ea.line1 = ea.line2 = 0;
2693 else
2694 ea.line2 = ARGCOUNT;
2695 break;
2696 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 }
2698
2699 /* accept numbered register only when no count allowed (:put) */
2700 if ( (ea.argt & REGSTR)
2701 && *ea.arg != NUL
Bram Moolenaar958636c2014-10-21 20:01:58 +02002702 /* Do not allow register = for user commands */
2703 && (!IS_USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2705 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002706#ifndef FEAT_CLIPBOARD
2707 /* check these explicitly for a more specific error message */
2708 if (*ea.arg == '*' || *ea.arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002710 errormsg = (char_u *)_(e_invalidreg);
2711 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 }
2713#endif
Bram Moolenaar958636c2014-10-21 20:01:58 +02002714 if (valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2715 && !IS_USER_CMDIDX(ea.cmdidx))))
Bram Moolenaar85de2062011-05-05 14:26:41 +02002716 {
2717 ea.regname = *ea.arg++;
2718#ifdef FEAT_EVAL
2719 /* for '=' register: accept the rest of the line as an expression */
2720 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2721 {
2722 set_expr_line(vim_strsave(ea.arg));
2723 ea.arg += STRLEN(ea.arg);
2724 }
2725#endif
2726 ea.arg = skipwhite(ea.arg);
2727 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 }
2729
2730 /*
2731 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2732 * count, it's a buffer name.
2733 */
2734 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2735 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2736 || vim_iswhite(*p)))
2737 {
2738 n = getdigits(&ea.arg);
2739 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002740 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002741 {
2742 errormsg = (char_u *)_(e_zerocount);
2743 goto doend;
2744 }
2745 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2746 {
2747 ea.line2 = n;
2748 if (ea.addr_count == 0)
2749 ea.addr_count = 1;
2750 }
2751 else
2752 {
2753 ea.line1 = ea.line2;
2754 ea.line2 += n - 1;
2755 ++ea.addr_count;
2756 /*
2757 * Be vi compatible: no error message for out of range.
2758 */
2759 if (ea.line2 > curbuf->b_ml.ml_line_count)
2760 ea.line2 = curbuf->b_ml.ml_line_count;
2761 }
2762 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002763
2764 /*
2765 * Check for flags: 'l', 'p' and '#'.
2766 */
2767 if (ea.argt & EXFLAGS)
2768 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002770 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002771 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 {
2773 errormsg = (char_u *)_(e_trailing);
2774 goto doend;
2775 }
2776
2777 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2778 {
2779 errormsg = (char_u *)_(e_argreq);
2780 goto doend;
2781 }
2782
2783#ifdef FEAT_EVAL
2784 /*
2785 * Skip the command when it's not going to be executed.
2786 * The commands like :if, :endif, etc. always need to be executed.
2787 * Also make an exception for commands that handle a trailing command
2788 * themselves.
2789 */
2790 if (ea.skip)
2791 {
2792 switch (ea.cmdidx)
2793 {
2794 /* commands that need evaluation */
2795 case CMD_while:
2796 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002797 case CMD_for:
2798 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799 case CMD_if:
2800 case CMD_elseif:
2801 case CMD_else:
2802 case CMD_endif:
2803 case CMD_try:
2804 case CMD_catch:
2805 case CMD_finally:
2806 case CMD_endtry:
2807 case CMD_function:
2808 break;
2809
2810 /* Commands that handle '|' themselves. Check: A command should
2811 * either have the TRLBAR flag, appear in this list or appear in
2812 * the list at ":help :bar". */
2813 case CMD_aboveleft:
2814 case CMD_and:
2815 case CMD_belowright:
2816 case CMD_botright:
2817 case CMD_browse:
2818 case CMD_call:
2819 case CMD_confirm:
2820 case CMD_delfunction:
2821 case CMD_djump:
2822 case CMD_dlist:
2823 case CMD_dsearch:
2824 case CMD_dsplit:
2825 case CMD_echo:
2826 case CMD_echoerr:
2827 case CMD_echomsg:
2828 case CMD_echon:
2829 case CMD_execute:
2830 case CMD_help:
2831 case CMD_hide:
2832 case CMD_ijump:
2833 case CMD_ilist:
2834 case CMD_isearch:
2835 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002836 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 case CMD_keepjumps:
2838 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01002839 case CMD_keeppatterns:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 case CMD_leftabove:
2841 case CMD_let:
2842 case CMD_lockmarks:
Bram Moolenaar0ba04292010-07-14 23:23:17 +02002843 case CMD_lua:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002845 case CMD_mzscheme:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01002846 case CMD_noautocmd:
2847 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 case CMD_perl:
2849 case CMD_psearch:
2850 case CMD_python:
Bram Moolenaar368373e2010-07-19 20:46:22 +02002851 case CMD_py3:
Bram Moolenaarb6590522010-07-21 16:00:43 +02002852 case CMD_python3:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002853 case CMD_return:
2854 case CMD_rightbelow:
2855 case CMD_ruby:
2856 case CMD_silent:
2857 case CMD_smagic:
2858 case CMD_snomagic:
2859 case CMD_substitute:
2860 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002861 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 case CMD_tcl:
2863 case CMD_throw:
2864 case CMD_tilde:
2865 case CMD_topleft:
2866 case CMD_unlet:
2867 case CMD_verbose:
2868 case CMD_vertical:
Bram Moolenaar12bde492011-06-13 01:19:56 +02002869 case CMD_wincmd:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 break;
2871
2872 default: goto doend;
2873 }
2874 }
2875#endif
2876
2877 if (ea.argt & XFILE)
2878 {
2879 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2880 goto doend;
2881 }
2882
2883#ifdef FEAT_LISTCMDS
2884 /*
2885 * Accept buffer name. Cannot be used at the same time with a buffer
2886 * number. Don't do this for a user command.
2887 */
2888 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
Bram Moolenaar958636c2014-10-21 20:01:58 +02002889 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 {
2891 /*
2892 * :bdelete, :bwipeout and :bunload take several arguments, separated
2893 * by spaces: find next space (skipping over escaped characters).
2894 * The others take one argument: ignore trailing spaces.
2895 */
2896 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2897 || ea.cmdidx == CMD_bunload)
2898 p = skiptowhite_esc(ea.arg);
2899 else
2900 {
2901 p = ea.arg + STRLEN(ea.arg);
2902 while (p > ea.arg && vim_iswhite(p[-1]))
2903 --p;
2904 }
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002905 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0,
2906 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 if (ea.line2 < 0) /* failed */
2908 goto doend;
2909 ea.addr_count = 1;
2910 ea.arg = skipwhite(p);
2911 }
2912#endif
2913
2914/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01002915 * 7. Switch on command name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916 *
2917 * The "ea" structure holds the arguments that can be used.
2918 */
2919 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002920 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 ea.cookie = cookie;
2922#ifdef FEAT_EVAL
2923 ea.cstack = cstack;
2924#endif
2925
2926#ifdef FEAT_USR_CMDS
Bram Moolenaar958636c2014-10-21 20:01:58 +02002927 if (IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002928 {
2929 /*
2930 * Execute a user-defined command.
2931 */
2932 do_ucmd(&ea);
2933 }
2934 else
2935#endif
2936 {
2937 /*
2938 * Call the function to execute the command.
2939 */
2940 ea.errmsg = NULL;
2941 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2942 if (ea.errmsg != NULL)
2943 errormsg = (char_u *)_(ea.errmsg);
2944 }
2945
2946#ifdef FEAT_EVAL
2947 /*
2948 * If the command just executed called do_cmdline(), any throw or ":return"
2949 * or ":finish" encountered there must also check the cstack of the still
2950 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2951 * exception, or reanimate a returned function or finished script file and
2952 * return or finish it again.
2953 */
2954 if (need_rethrow)
2955 do_throw(cstack);
2956 else if (check_cstack)
2957 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002958 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002960 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961 && current_func_returned())
2962 do_return(&ea, TRUE, FALSE, NULL);
2963 }
2964 need_rethrow = check_cstack = FALSE;
2965#endif
2966
2967doend:
2968 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2969 curwin->w_cursor.lnum = 1;
2970
2971 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2972 {
2973 if (sourcing)
2974 {
2975 if (errormsg != IObuff)
2976 {
2977 STRCPY(IObuff, errormsg);
2978 errormsg = IObuff;
2979 }
Bram Moolenaara6f4d612011-09-21 19:10:46 +02002980 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 }
2982 emsg(errormsg);
2983 }
2984#ifdef FEAT_EVAL
2985 do_errthrow(cstack,
Bram Moolenaar958636c2014-10-21 20:01:58 +02002986 (ea.cmdidx != CMD_SIZE && !IS_USER_CMDIDX(ea.cmdidx))
2987 ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988#endif
2989
2990 if (verbose_save >= 0)
2991 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002992#ifdef FEAT_AUTOCMD
2993 if (cmdmod.save_ei != NULL)
2994 {
2995 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002996 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2997 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002998 free_string_option(cmdmod.save_ei);
2999 }
3000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001
3002 cmdmod = save_cmdmod;
3003
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003004 if (save_msg_silent != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 {
3006 /* messages could be enabled for a serious error, need to check if the
3007 * counters don't become negative */
Bram Moolenaarbecf4282009-09-30 11:24:36 +00003008 if (!did_emsg || msg_silent > save_msg_silent)
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003009 msg_silent = save_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 emsg_silent -= did_esilent;
3011 if (emsg_silent < 0)
3012 emsg_silent = 0;
3013 /* Restore msg_scroll, it's set by file I/O commands, even when no
3014 * message is actually displayed. */
3015 msg_scroll = save_msg_scroll;
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003016
3017 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
3018 * somewhere in the line. Put it back in the first column. */
3019 if (redirecting())
3020 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 }
3022
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003023#ifdef HAVE_SANDBOX
3024 if (did_sandbox)
3025 --sandbox;
3026#endif
3027
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
3029 ea.nextcmd = NULL;
3030
3031#ifdef FEAT_EVAL
3032 --ex_nesting_level;
3033#endif
3034
3035 return ea.nextcmd;
3036}
3037#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00003038 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039#endif
3040
3041/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003042 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 * If there is a match advance "pp" to the argument and return TRUE.
3044 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003045 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003047 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 char *cmd; /* name of command */
3049 int len; /* required length */
3050{
3051 int i;
3052
3053 for (i = 0; cmd[i] != NUL; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003054 if (((char_u *)cmd)[i] != (*pp)[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 break;
3056 if (i >= len && !isalpha((*pp)[i]))
3057 {
3058 *pp = skipwhite(*pp + i);
3059 return TRUE;
3060 }
3061 return FALSE;
3062}
3063
3064/*
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003065 * Append "cmd" to the error message in IObuff.
3066 * Takes care of limiting the length and handling 0xa0, which would be
3067 * invisible otherwise.
3068 */
3069 static void
3070append_command(cmd)
3071 char_u *cmd;
3072{
3073 char_u *s = cmd;
3074 char_u *d;
3075
3076 STRCAT(IObuff, ": ");
3077 d = IObuff + STRLEN(IObuff);
3078 while (*s != NUL && d - IObuff < IOSIZE - 7)
3079 {
3080 if (
3081#ifdef FEAT_MBYTE
3082 enc_utf8 ? (s[0] == 0xc2 && s[1] == 0xa0) :
3083#endif
3084 *s == 0xa0)
3085 {
3086 s +=
3087#ifdef FEAT_MBYTE
3088 enc_utf8 ? 2 :
3089#endif
3090 1;
3091 STRCPY(d, "<a0>");
3092 d += 4;
3093 }
3094 else
3095 MB_COPY_CHAR(s, d);
3096 }
3097 *d = NUL;
3098}
3099
3100/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003102 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003104 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 * Returns NULL for an ambiguous user command.
3106 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 static char_u *
3108find_command(eap, full)
3109 exarg_T *eap;
Bram Moolenaar78a15312009-05-15 19:33:18 +00003110 int *full UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111{
3112 int len;
3113 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003114 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115
3116 /*
3117 * Isolate the command and search for it in the command table.
Bram Moolenaar81870892007-11-11 18:17:28 +00003118 * Exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 * - the 'k' command can directly be followed by any character.
3120 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003121 * but :sre[wind] is another command, as are :scr[iptnames],
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00003123 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 */
3125 p = eap->cmd;
3126 if (*p == 'k')
3127 {
3128 eap->cmdidx = CMD_k;
3129 ++p;
3130 }
3131 else if (p[0] == 's'
Bram Moolenaar204b93f2015-08-04 22:02:51 +02003132 && ((p[1] == 'c' && (p[2] == NUL || (p[2] != 's' && p[2] != 'r'
3133 && (p[3] == NUL || (p[3] != 'i' && p[4] != 'p')))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 || p[1] == 'g'
3135 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
3136 || p[1] == 'I'
3137 || (p[1] == 'r' && p[2] != 'e')))
3138 {
3139 eap->cmdidx = CMD_substitute;
3140 ++p;
3141 }
3142 else
3143 {
3144 while (ASCII_ISALPHA(*p))
3145 ++p;
Bram Moolenaarb6590522010-07-21 16:00:43 +02003146 /* for python 3.x support ":py3", ":python3", ":py3file", etc. */
Bram Moolenaar55d5c032010-07-17 23:52:29 +02003147 if (eap->cmd[0] == 'p' && eap->cmd[1] == 'y')
Bram Moolenaarb6590522010-07-21 16:00:43 +02003148 while (ASCII_ISALNUM(*p))
3149 ++p;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02003150
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 /* check for non-alpha command */
3152 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3153 ++p;
3154 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003155 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
3156 {
3157 /* Check for ":dl", ":dell", etc. to ":deletel": that's
3158 * :delete with the 'l' flag. Same for 'p'. */
3159 for (i = 0; i < len; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003160 if (eap->cmd[i] != ((char_u *)"delete")[i])
Bram Moolenaardf177f62005-02-22 08:39:57 +00003161 break;
3162 if (i == len - 1)
3163 {
3164 --len;
3165 if (p[-1] == 'l')
3166 eap->flags |= EXFLAG_LIST;
3167 else
3168 eap->flags |= EXFLAG_PRINT;
3169 }
3170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171
3172 if (ASCII_ISLOWER(*eap->cmd))
3173 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
3174 else
3175 eap->cmdidx = cmdidxs[26];
3176
3177 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
3178 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
3179 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
3180 (size_t)len) == 0)
3181 {
3182#ifdef FEAT_EVAL
3183 if (full != NULL
3184 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
3185 *full = TRUE;
3186#endif
3187 break;
3188 }
3189
3190#ifdef FEAT_USR_CMDS
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01003191 /* Look for a user defined command as a last resort. Let ":Print" be
3192 * overruled by a user defined command. */
3193 if ((eap->cmdidx == CMD_SIZE || eap->cmdidx == CMD_Print)
3194 && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003196 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 while (ASCII_ISALNUM(*p))
3198 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003199 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 }
3201#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003202 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003203 eap->cmdidx = CMD_SIZE;
3204 }
3205
3206 return p;
3207}
3208
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003209#ifdef FEAT_USR_CMDS
3210/*
3211 * Search for a user command that matches "eap->cmd".
3212 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
3213 * Return a pointer to just after the command.
3214 * Return NULL if there is no matching command.
3215 */
3216 static char_u *
3217find_ucmd(eap, p, full, xp, compl)
3218 exarg_T *eap;
3219 char_u *p; /* end of the command (possibly including count) */
3220 int *full; /* set to TRUE for a full match */
3221 expand_T *xp; /* used for completion, NULL otherwise */
3222 int *compl; /* completion flags or NULL */
3223{
3224 int len = (int)(p - eap->cmd);
3225 int j, k, matchlen = 0;
3226 ucmd_T *uc;
3227 int found = FALSE;
3228 int possible = FALSE;
3229 char_u *cp, *np; /* Point into typed cmd and test name */
3230 garray_T *gap;
3231 int amb_local = FALSE; /* Found ambiguous buffer-local command,
3232 only full match global is accepted. */
3233
3234 /*
3235 * Look for buffer-local user commands first, then global ones.
3236 */
3237 gap = &curbuf->b_ucmds;
3238 for (;;)
3239 {
3240 for (j = 0; j < gap->ga_len; ++j)
3241 {
3242 uc = USER_CMD_GA(gap, j);
3243 cp = eap->cmd;
3244 np = uc->uc_name;
3245 k = 0;
3246 while (k < len && *np != NUL && *cp++ == *np++)
3247 k++;
3248 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
3249 {
3250 /* If finding a second match, the command is ambiguous. But
3251 * not if a buffer-local command wasn't a full match and a
3252 * global command is a full match. */
3253 if (k == len && found && *np != NUL)
3254 {
3255 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003256 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003257 amb_local = TRUE;
3258 }
3259
3260 if (!found || (k == len && *np == NUL))
3261 {
3262 /* If we matched up to a digit, then there could
3263 * be another command including the digit that we
3264 * should use instead.
3265 */
3266 if (k == len)
3267 found = TRUE;
3268 else
3269 possible = TRUE;
3270
3271 if (gap == &ucmds)
3272 eap->cmdidx = CMD_USER;
3273 else
3274 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003275 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003276 eap->useridx = j;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003277 eap->addr_type = uc->uc_addr_type;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003278
3279# ifdef FEAT_CMDL_COMPL
3280 if (compl != NULL)
3281 *compl = uc->uc_compl;
3282# ifdef FEAT_EVAL
3283 if (xp != NULL)
3284 {
3285 xp->xp_arg = uc->uc_compl_arg;
3286 xp->xp_scriptID = uc->uc_scriptID;
3287 }
3288# endif
3289# endif
3290 /* Do not search for further abbreviations
3291 * if this is an exact match. */
3292 matchlen = k;
3293 if (k == len && *np == NUL)
3294 {
3295 if (full != NULL)
3296 *full = TRUE;
3297 amb_local = FALSE;
3298 break;
3299 }
3300 }
3301 }
3302 }
3303
3304 /* Stop if we found a full match or searched all. */
3305 if (j < gap->ga_len || gap == &ucmds)
3306 break;
3307 gap = &ucmds;
3308 }
3309
3310 /* Only found ambiguous matches. */
3311 if (amb_local)
3312 {
3313 if (xp != NULL)
3314 xp->xp_context = EXPAND_UNSUCCESSFUL;
3315 return NULL;
3316 }
3317
3318 /* The match we found may be followed immediately by a number. Move "p"
3319 * back to point to it. */
3320 if (found || possible)
3321 return p + (matchlen - len);
3322 return p;
3323}
3324#endif
3325
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003327static struct cmdmod
3328{
3329 char *name;
3330 int minlen;
3331 int has_count; /* :123verbose :3tab */
3332} cmdmods[] = {
3333 {"aboveleft", 3, FALSE},
3334 {"belowright", 3, FALSE},
3335 {"botright", 2, FALSE},
3336 {"browse", 3, FALSE},
3337 {"confirm", 4, FALSE},
3338 {"hide", 3, FALSE},
3339 {"keepalt", 5, FALSE},
3340 {"keepjumps", 5, FALSE},
3341 {"keepmarks", 3, FALSE},
Bram Moolenaara939e432013-11-09 05:30:26 +01003342 {"keeppatterns", 5, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003343 {"leftabove", 5, FALSE},
3344 {"lockmarks", 3, FALSE},
Bram Moolenaarca9f9582008-09-18 10:44:28 +00003345 {"noautocmd", 3, FALSE},
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003346 {"noswapfile", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003347 {"rightbelow", 6, FALSE},
3348 {"sandbox", 3, FALSE},
3349 {"silent", 3, FALSE},
3350 {"tab", 3, TRUE},
3351 {"topleft", 2, FALSE},
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003352 {"unsilent", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003353 {"verbose", 4, TRUE},
3354 {"vertical", 4, FALSE},
3355};
3356
3357/*
3358 * Return length of a command modifier (including optional count).
3359 * Return zero when it's not a modifier.
3360 */
3361 int
3362modifier_len(cmd)
3363 char_u *cmd;
3364{
3365 int i, j;
3366 char_u *p = cmd;
3367
3368 if (VIM_ISDIGIT(*cmd))
3369 p = skipwhite(skipdigits(cmd));
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003370 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003371 {
3372 for (j = 0; p[j] != NUL; ++j)
3373 if (p[j] != cmdmods[i].name[j])
3374 break;
Bram Moolenaar2d473ab2013-06-12 17:12:24 +02003375 if (!ASCII_ISALPHA(p[j]) && j >= cmdmods[i].minlen
Bram Moolenaared53fb92007-11-24 20:50:24 +00003376 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003377 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003378 }
3379 return 0;
3380}
3381
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382/*
3383 * Return > 0 if an Ex command "name" exists.
3384 * Return 2 if there is an exact match.
3385 * Return 3 if there is an ambiguous match.
3386 */
3387 int
3388cmd_exists(name)
3389 char_u *name;
3390{
3391 exarg_T ea;
3392 int full = FALSE;
3393 int i;
3394 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003395 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396
3397 /* Check command modifiers. */
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003398 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399 {
3400 for (j = 0; name[j] != NUL; ++j)
3401 if (name[j] != cmdmods[i].name[j])
3402 break;
3403 if (name[j] == NUL && j >= cmdmods[i].minlen)
3404 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3405 }
3406
Bram Moolenaara9587612006-05-04 21:47:50 +00003407 /* Check built-in commands and user defined commands.
3408 * For ":2match" and ":3match" we need to skip the number. */
3409 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003411 p = find_command(&ea, &full);
3412 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003413 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003414 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3415 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003416 if (*skipwhite(p) != NUL)
3417 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3419}
3420#endif
3421
3422/*
3423 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3424 * we don't need/want deleted. Maybe this could be done better if we didn't
3425 * repeat all this stuff. The only problem is that they may not stay
3426 * perfectly compatible with each other, but then the command line syntax
3427 * probably won't change that much -- webb.
3428 */
3429 char_u *
3430set_one_cmd_context(xp, buff)
3431 expand_T *xp;
3432 char_u *buff; /* buffer for command string */
3433{
3434 char_u *p;
3435 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003436 int len = 0;
3437 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3439 int compl = EXPAND_NOTHING;
3440#endif
3441#ifdef FEAT_CMDL_COMPL
3442 int delim;
3443#endif
3444 int forceit = FALSE;
3445 int usefilter = FALSE; /* filter instead of file name */
3446
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003447 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 xp->xp_pattern = buff;
3449 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003450 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451
3452/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003453 * 1. skip comment lines and leading space, colons or bars
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 */
3455 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3456 ;
3457 xp->xp_pattern = cmd;
3458
3459 if (*cmd == NUL)
3460 return NULL;
3461 if (*cmd == '"') /* ignore comment lines */
3462 {
3463 xp->xp_context = EXPAND_NOTHING;
3464 return NULL;
3465 }
3466
3467/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003468 * 3. Skip over the range to find the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469 */
3470 cmd = skip_range(cmd, &xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 xp->xp_pattern = cmd;
3472 if (*cmd == NUL)
3473 return NULL;
3474 if (*cmd == '"')
3475 {
3476 xp->xp_context = EXPAND_NOTHING;
3477 return NULL;
3478 }
3479
3480 if (*cmd == '|' || *cmd == '\n')
3481 return cmd + 1; /* There's another command */
3482
3483 /*
3484 * Isolate the command and search for it in the command table.
3485 * Exceptions:
3486 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003487 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3489 */
3490 if (*cmd == 'k' && cmd[1] != 'e')
3491 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003492 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 p = cmd + 1;
3494 }
3495 else
3496 {
3497 p = cmd;
3498 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3499 ++p;
3500 /* check for non-alpha command */
3501 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3502 ++p;
Bram Moolenaar9f5d6002013-06-02 19:22:13 +02003503 /* for python 3.x: ":py3*" commands completion */
3504 if (cmd[0] == 'p' && cmd[1] == 'y' && p == cmd + 2 && *p == '3')
Bram Moolenaar893b2d72013-12-11 17:44:38 +01003505 {
Bram Moolenaar9f5d6002013-06-02 19:22:13 +02003506 ++p;
Bram Moolenaar893b2d72013-12-11 17:44:38 +01003507 while (ASCII_ISALPHA(*p) || *p == '*')
3508 ++p;
3509 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003510 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003512 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 {
3514 xp->xp_context = EXPAND_UNSUCCESSFUL;
3515 return NULL;
3516 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003517 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01003518 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3519 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd,
3520 (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003521 break;
3522
3523#ifdef FEAT_USR_CMDS
3524 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3526 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527#endif
3528 }
3529
3530 /*
3531 * If the cursor is touching the command, and it ends in an alpha-numeric
3532 * character, complete the command name.
3533 */
3534 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3535 return NULL;
3536
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003537 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538 {
3539 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3540 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003541 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542 p = cmd + 1;
3543 }
3544#ifdef FEAT_USR_CMDS
3545 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3546 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003547 ea.cmd = cmd;
3548 p = find_ucmd(&ea, p, NULL, xp,
3549# if defined(FEAT_CMDL_COMPL)
3550 &compl
3551# else
3552 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003554 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003555 if (p == NULL)
3556 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 }
3558#endif
3559 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003560 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 {
3562 /* Not still touching the command and it was an illegal one */
3563 xp->xp_context = EXPAND_UNSUCCESSFUL;
3564 return NULL;
3565 }
3566
3567 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3568
3569 if (*p == '!') /* forced commands */
3570 {
3571 forceit = TRUE;
3572 ++p;
3573 }
3574
3575/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003576 * 6. parse arguments
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02003578 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003579 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580
3581 arg = skipwhite(p);
3582
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003583 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 {
3585 if (*arg == '>') /* append */
3586 {
3587 if (*++arg == '>')
3588 ++arg;
3589 arg = skipwhite(arg);
3590 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003591 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 {
3593 ++arg;
3594 usefilter = TRUE;
3595 }
3596 }
3597
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003598 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 {
3600 usefilter = forceit; /* :r! filter if forced */
3601 if (*arg == '!') /* :r !filter */
3602 {
3603 ++arg;
3604 usefilter = TRUE;
3605 }
3606 }
3607
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003608 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 {
3610 while (*arg == *cmd) /* allow any number of '>' or '<' */
3611 ++arg;
3612 arg = skipwhite(arg);
3613 }
3614
3615 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003616 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003617 {
3618 /* Check if we're in the +command */
3619 p = arg + 1;
3620 arg = skip_cmd_arg(arg, FALSE);
3621
3622 /* Still touching the command after '+'? */
3623 if (*arg == NUL)
3624 return p;
3625
3626 /* Skip space(s) after +command to get to the real argument */
3627 arg = skipwhite(arg);
3628 }
3629
3630 /*
3631 * Check for '|' to separate commands and '"' to start comments.
3632 * Don't do this for ":read !cmd" and ":write !cmd".
3633 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003634 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 {
3636 p = arg;
3637 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003638 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 p += 2;
3640 while (*p)
3641 {
3642 if (*p == Ctrl_V)
3643 {
3644 if (p[1] != NUL)
3645 ++p;
3646 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003647 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 || *p == '|' || *p == '\n')
3649 {
3650 if (*(p - 1) != '\\')
3651 {
3652 if (*p == '|' || *p == '\n')
3653 return p + 1;
3654 return NULL; /* It's a comment */
3655 }
3656 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003657 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003658 }
3659 }
3660
3661 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003662 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 vim_strchr((char_u *)"|\"", *arg) == NULL)
3664 return NULL;
3665
3666 /* Find start of last argument (argument just before cursor): */
Bram Moolenaar848f8762012-07-25 17:22:23 +02003667 p = buff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 xp->xp_pattern = p;
Bram Moolenaar09168a72012-08-02 21:24:42 +02003669 len = (int)STRLEN(buff);
Bram Moolenaar848f8762012-07-25 17:22:23 +02003670 while (*p && p < buff + len)
3671 {
3672 if (*p == ' ' || *p == TAB)
3673 {
3674 /* argument starts after a space */
3675 xp->xp_pattern = ++p;
3676 }
3677 else
3678 {
3679 if (*p == '\\' && *(p + 1) != NUL)
3680 ++p; /* skip over escaped character */
3681 mb_ptr_adv(p);
3682 }
3683 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003685 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003687 int c;
3688 int in_quote = FALSE;
3689 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690
3691 /*
3692 * Allow spaces within back-quotes to count as part of the argument
3693 * being expanded.
3694 */
3695 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003696 p = xp->xp_pattern;
3697 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003699#ifdef FEAT_MBYTE
3700 if (has_mbyte)
3701 c = mb_ptr2char(p);
3702 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003704 c = *p;
3705 if (c == '\\' && p[1] != NUL)
3706 ++p;
3707 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 {
3709 if (!in_quote)
3710 {
3711 xp->xp_pattern = p;
3712 bow = p + 1;
3713 }
3714 in_quote = !in_quote;
3715 }
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003716 /* An argument can contain just about everything, except
3717 * characters that end the command and white space. */
3718 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003719#ifdef SPACE_IN_FILENAME
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003720 && (!(ea.argt & NOSPC) || usefilter)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003721#endif
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003722 ))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003723 {
Bram Moolenaarcf5a5b82008-02-26 20:30:12 +00003724 len = 0; /* avoid getting stuck when space is in 'isfname' */
Bram Moolenaar6529c102007-08-18 15:47:34 +00003725 while (*p != NUL)
3726 {
3727#ifdef FEAT_MBYTE
3728 if (has_mbyte)
3729 c = mb_ptr2char(p);
3730 else
3731#endif
3732 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003733 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003734 break;
3735#ifdef FEAT_MBYTE
3736 if (has_mbyte)
3737 len = (*mb_ptr2len)(p);
3738 else
3739#endif
3740 len = 1;
3741 mb_ptr_adv(p);
3742 }
3743 if (in_quote)
3744 bow = p;
3745 else
3746 xp->xp_pattern = p;
3747 p -= len;
3748 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003749 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 }
3751
3752 /*
3753 * If we are still inside the quotes, and we passed a space, just
3754 * expand from there.
3755 */
3756 if (bow != NULL && in_quote)
3757 xp->xp_pattern = bow;
3758 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003759
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003760 /* For a shell command more chars need to be escaped. */
3761 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003762 {
Bram Moolenaarc0cba4d2010-08-07 17:07:21 +02003763#ifndef BACKSLASH_IN_FILENAME
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003764 xp->xp_shell = TRUE;
Bram Moolenaarc0cba4d2010-08-07 17:07:21 +02003765#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003766 /* When still after the command name expand executables. */
3767 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003768 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770
3771 /* Check for environment variable */
3772 if (*xp->xp_pattern == '$'
3773#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3774 || *xp->xp_pattern == '%'
3775#endif
3776 )
3777 {
3778 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3779 if (!vim_isIDc(*p))
3780 break;
3781 if (*p == NUL)
3782 {
3783 xp->xp_context = EXPAND_ENV_VARS;
3784 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003785#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3786 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003787 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003788 compl = EXPAND_ENV_VARS;
3789#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790 }
3791 }
Bram Moolenaar24305862012-08-15 14:05:05 +02003792#if defined(FEAT_CMDL_COMPL)
3793 /* Check for user names */
3794 if (*xp->xp_pattern == '~')
3795 {
3796 for (p = xp->xp_pattern + 1; *p != NUL && *p != '/'; ++p)
3797 ;
3798 /* Complete ~user only if it partially matches a user name.
3799 * A full match ~user<Tab> will be replaced by user's home
3800 * directory i.e. something like ~user<Tab> -> /home/user/ */
3801 if (*p == NUL && p > xp->xp_pattern + 1
3802 && match_user(xp->xp_pattern + 1) == 1)
3803 {
3804 xp->xp_context = EXPAND_USER;
3805 ++xp->xp_pattern;
3806 }
3807 }
3808#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 }
3810
3811/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003812 * 6. Switch on command name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003814 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003816 case CMD_find:
3817 case CMD_sfind:
3818 case CMD_tabfind:
Bram Moolenaarc24b6972010-08-16 22:34:29 +02003819 if (xp->xp_context == EXPAND_FILES)
3820 xp->xp_context = EXPAND_FILES_IN_PATH;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003821 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 case CMD_cd:
3823 case CMD_chdir:
3824 case CMD_lcd:
3825 case CMD_lchdir:
3826 if (xp->xp_context == EXPAND_FILES)
3827 xp->xp_context = EXPAND_DIRECTORIES;
3828 break;
3829 case CMD_help:
3830 xp->xp_context = EXPAND_HELP;
3831 xp->xp_pattern = arg;
3832 break;
3833
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003834 /* Command modifiers: return the argument.
3835 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003837 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 case CMD_belowright:
3839 case CMD_botright:
3840 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003841 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003843 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 case CMD_folddoclosed:
3845 case CMD_folddoopen:
3846 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003847 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003848 case CMD_keepjumps:
3849 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01003850 case CMD_keeppatterns:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 case CMD_leftabove:
3852 case CMD_lockmarks:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003853 case CMD_noautocmd:
3854 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003855 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003856 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003858 case CMD_tab:
Bram Moolenaar70baa402013-06-16 16:14:03 +02003859 case CMD_tabdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 case CMD_topleft:
3861 case CMD_verbose:
3862 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003863 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 return arg;
3865
Bram Moolenaar4f688582007-07-24 12:34:30 +00003866#ifdef FEAT_CMDL_COMPL
3867# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868 case CMD_match:
3869 if (*arg == NUL || !ends_excmd(*arg))
3870 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003871 /* also complete "None" */
3872 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873 arg = skipwhite(skiptowhite(arg));
3874 if (*arg != NUL)
3875 {
3876 xp->xp_context = EXPAND_NOTHING;
3877 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3878 }
3879 }
3880 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003881# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883/*
3884 * All completion for the +cmdline_compl feature goes here.
3885 */
3886
3887# ifdef FEAT_USR_CMDS
3888 case CMD_command:
3889 /* Check for attributes */
3890 while (*arg == '-')
3891 {
3892 arg++; /* Skip "-" */
3893 p = skiptowhite(arg);
3894 if (*p == NUL)
3895 {
3896 /* Cursor is still in the attribute */
3897 p = vim_strchr(arg, '=');
3898 if (p == NULL)
3899 {
3900 /* No "=", so complete attribute names */
3901 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3902 xp->xp_pattern = arg;
3903 return NULL;
3904 }
3905
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003906 /* For the -complete, -nargs and -addr attributes, we complete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907 * their arguments as well.
3908 */
3909 if (STRNICMP(arg, "complete", p - arg) == 0)
3910 {
3911 xp->xp_context = EXPAND_USER_COMPLETE;
3912 xp->xp_pattern = p + 1;
3913 return NULL;
3914 }
3915 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3916 {
3917 xp->xp_context = EXPAND_USER_NARGS;
3918 xp->xp_pattern = p + 1;
3919 return NULL;
3920 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003921 else if (STRNICMP(arg, "addr", p - arg) == 0)
3922 {
3923 xp->xp_context = EXPAND_USER_ADDR_TYPE;
3924 xp->xp_pattern = p + 1;
3925 return NULL;
3926 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 return NULL;
3928 }
3929 arg = skipwhite(p);
3930 }
3931
3932 /* After the attributes comes the new command name */
3933 p = skiptowhite(arg);
3934 if (*p == NUL)
3935 {
3936 xp->xp_context = EXPAND_USER_COMMANDS;
3937 xp->xp_pattern = arg;
3938 break;
3939 }
3940
3941 /* And finally comes a normal command */
3942 return skipwhite(p);
3943
3944 case CMD_delcommand:
3945 xp->xp_context = EXPAND_USER_COMMANDS;
3946 xp->xp_pattern = arg;
3947 break;
3948# endif
3949
3950 case CMD_global:
3951 case CMD_vglobal:
3952 delim = *arg; /* get the delimiter */
3953 if (delim)
3954 ++arg; /* skip delimiter if there is one */
3955
3956 while (arg[0] != NUL && arg[0] != delim)
3957 {
3958 if (arg[0] == '\\' && arg[1] != NUL)
3959 ++arg;
3960 ++arg;
3961 }
3962 if (arg[0] != NUL)
3963 return arg + 1;
3964 break;
3965 case CMD_and:
3966 case CMD_substitute:
3967 delim = *arg;
3968 if (delim)
3969 {
3970 /* skip "from" part */
3971 ++arg;
3972 arg = skip_regexp(arg, delim, p_magic, NULL);
3973 }
3974 /* skip "to" part */
3975 while (arg[0] != NUL && arg[0] != delim)
3976 {
3977 if (arg[0] == '\\' && arg[1] != NUL)
3978 ++arg;
3979 ++arg;
3980 }
3981 if (arg[0] != NUL) /* skip delimiter */
3982 ++arg;
3983 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3984 ++arg;
3985 if (arg[0] != NUL)
3986 return arg;
3987 break;
3988 case CMD_isearch:
3989 case CMD_dsearch:
3990 case CMD_ilist:
3991 case CMD_dlist:
3992 case CMD_ijump:
3993 case CMD_psearch:
3994 case CMD_djump:
3995 case CMD_isplit:
3996 case CMD_dsplit:
3997 arg = skipwhite(skipdigits(arg)); /* skip count */
3998 if (*arg == '/') /* Match regexp, not just whole words */
3999 {
4000 for (++arg; *arg && *arg != '/'; arg++)
4001 if (*arg == '\\' && arg[1] != NUL)
4002 arg++;
4003 if (*arg)
4004 {
4005 arg = skipwhite(arg + 1);
4006
4007 /* Check for trailing illegal characters */
4008 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
4009 xp->xp_context = EXPAND_NOTHING;
4010 else
4011 return arg;
4012 }
4013 }
4014 break;
4015#ifdef FEAT_AUTOCMD
4016 case CMD_autocmd:
4017 return set_context_in_autocmd(xp, arg, FALSE);
4018
4019 case CMD_doautocmd:
Bram Moolenaar73a9d7b2008-11-06 16:16:44 +00004020 case CMD_doautoall:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004021 return set_context_in_autocmd(xp, arg, TRUE);
4022#endif
4023 case CMD_set:
4024 set_context_in_set_cmd(xp, arg, 0);
4025 break;
4026 case CMD_setglobal:
4027 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
4028 break;
4029 case CMD_setlocal:
4030 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
4031 break;
4032 case CMD_tag:
4033 case CMD_stag:
4034 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00004035 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036 case CMD_tselect:
4037 case CMD_stselect:
4038 case CMD_ptselect:
4039 case CMD_tjump:
4040 case CMD_stjump:
4041 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004042 if (*p_wop != NUL)
4043 xp->xp_context = EXPAND_TAGS_LISTFILES;
4044 else
4045 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 xp->xp_pattern = arg;
4047 break;
4048 case CMD_augroup:
4049 xp->xp_context = EXPAND_AUGROUP;
4050 xp->xp_pattern = arg;
4051 break;
4052#ifdef FEAT_SYN_HL
4053 case CMD_syntax:
4054 set_context_in_syntax_cmd(xp, arg);
4055 break;
4056#endif
4057#ifdef FEAT_EVAL
4058 case CMD_let:
4059 case CMD_if:
4060 case CMD_elseif:
4061 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00004062 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 case CMD_echo:
4064 case CMD_echon:
4065 case CMD_execute:
4066 case CMD_echomsg:
4067 case CMD_echoerr:
4068 case CMD_call:
4069 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004070 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 break;
4072
4073 case CMD_unlet:
4074 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
4075 arg = xp->xp_pattern + 1;
4076 xp->xp_context = EXPAND_USER_VARS;
4077 xp->xp_pattern = arg;
4078 break;
4079
4080 case CMD_function:
4081 case CMD_delfunction:
4082 xp->xp_context = EXPAND_USER_FUNC;
4083 xp->xp_pattern = arg;
4084 break;
4085
4086 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00004087 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 break;
4089#endif
4090 case CMD_highlight:
4091 set_context_in_highlight_cmd(xp, arg);
4092 break;
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004093#ifdef FEAT_CSCOPE
4094 case CMD_cscope:
Bram Moolenaar7bfef802009-04-22 14:25:01 +00004095 case CMD_lcscope:
4096 case CMD_scscope:
4097 set_context_in_cscope_cmd(xp, arg, ea.cmdidx);
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004098 break;
4099#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004100#ifdef FEAT_SIGNS
4101 case CMD_sign:
4102 set_context_in_sign_cmd(xp, arg);
4103 break;
4104#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004105#ifdef FEAT_LISTCMDS
4106 case CMD_bdelete:
4107 case CMD_bwipeout:
4108 case CMD_bunload:
4109 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
4110 arg = xp->xp_pattern + 1;
4111 /*FALLTHROUGH*/
4112 case CMD_buffer:
4113 case CMD_sbuffer:
4114 case CMD_checktime:
4115 xp->xp_context = EXPAND_BUFFERS;
4116 xp->xp_pattern = arg;
4117 break;
4118#endif
4119#ifdef FEAT_USR_CMDS
4120 case CMD_USER:
4121 case CMD_USER_BUF:
4122 if (compl != EXPAND_NOTHING)
4123 {
4124 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004125 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 {
4127# ifdef FEAT_MENU
4128 if (compl == EXPAND_MENUS)
4129 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
4130# endif
4131 if (compl == EXPAND_COMMANDS)
4132 return arg;
4133 if (compl == EXPAND_MAPPINGS)
4134 return set_context_in_map_cmd(xp, (char_u *)"map",
4135 arg, forceit, FALSE, FALSE, CMD_map);
Bram Moolenaar848f8762012-07-25 17:22:23 +02004136 /* Find start of last argument. */
4137 p = arg;
4138 while (*p)
4139 {
4140 if (*p == ' ')
Bram Moolenaar848f8762012-07-25 17:22:23 +02004141 /* argument starts after a space */
4142 arg = p + 1;
Bram Moolenaara07c8312012-07-27 21:12:07 +02004143 else if (*p == '\\' && *(p + 1) != NUL)
4144 ++p; /* skip over escaped character */
4145 mb_ptr_adv(p);
Bram Moolenaar848f8762012-07-25 17:22:23 +02004146 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 xp->xp_pattern = arg;
4148 }
4149 xp->xp_context = compl;
4150 }
4151 break;
4152#endif
4153 case CMD_map: case CMD_noremap:
4154 case CMD_nmap: case CMD_nnoremap:
4155 case CMD_vmap: case CMD_vnoremap:
4156 case CMD_omap: case CMD_onoremap:
4157 case CMD_imap: case CMD_inoremap:
4158 case CMD_cmap: case CMD_cnoremap:
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004159 case CMD_lmap: case CMD_lnoremap:
Bram Moolenaar09bb33d2013-05-07 05:18:20 +02004160 case CMD_smap: case CMD_snoremap:
4161 case CMD_xmap: case CMD_xnoremap:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004163 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 case CMD_unmap:
4165 case CMD_nunmap:
4166 case CMD_vunmap:
4167 case CMD_ounmap:
4168 case CMD_iunmap:
4169 case CMD_cunmap:
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004170 case CMD_lunmap:
Bram Moolenaar09bb33d2013-05-07 05:18:20 +02004171 case CMD_sunmap:
4172 case CMD_xunmap:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004174 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 case CMD_abbreviate: case CMD_noreabbrev:
4176 case CMD_cabbrev: case CMD_cnoreabbrev:
4177 case CMD_iabbrev: case CMD_inoreabbrev:
4178 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004179 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180 case CMD_unabbreviate:
4181 case CMD_cunabbrev:
4182 case CMD_iunabbrev:
4183 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004184 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185#ifdef FEAT_MENU
4186 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
4187 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
4188 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
4189 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
4190 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
4191 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
4192 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
4193 case CMD_tmenu: case CMD_tunmenu:
4194 case CMD_popup: case CMD_tearoff: case CMD_emenu:
4195 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
4196#endif
4197
4198 case CMD_colorscheme:
4199 xp->xp_context = EXPAND_COLORS;
4200 xp->xp_pattern = arg;
4201 break;
4202
4203 case CMD_compiler:
4204 xp->xp_context = EXPAND_COMPILER;
4205 xp->xp_pattern = arg;
4206 break;
4207
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004208 case CMD_ownsyntax:
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004209 xp->xp_context = EXPAND_OWNSYNTAX;
4210 xp->xp_pattern = arg;
4211 break;
4212
4213 case CMD_setfiletype:
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004214 xp->xp_context = EXPAND_FILETYPE;
4215 xp->xp_pattern = arg;
4216 break;
4217
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4219 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4220 case CMD_language:
Bram Moolenaara660dc82011-05-25 12:51:22 +02004221 p = skiptowhite(arg);
4222 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 {
4224 xp->xp_context = EXPAND_LANGUAGE;
4225 xp->xp_pattern = arg;
4226 }
4227 else
Bram Moolenaara660dc82011-05-25 12:51:22 +02004228 {
4229 if ( STRNCMP(arg, "messages", p - arg) == 0
4230 || STRNCMP(arg, "ctype", p - arg) == 0
4231 || STRNCMP(arg, "time", p - arg) == 0)
4232 {
4233 xp->xp_context = EXPAND_LOCALES;
4234 xp->xp_pattern = skipwhite(p);
4235 }
4236 else
4237 xp->xp_context = EXPAND_NOTHING;
4238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004239 break;
4240#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004241#if defined(FEAT_PROFILE)
4242 case CMD_profile:
4243 set_context_in_profile_cmd(xp, arg);
4244 break;
4245#endif
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004246 case CMD_behave:
4247 xp->xp_context = EXPAND_BEHAVE;
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004248 xp->xp_pattern = arg;
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004249 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004251#if defined(FEAT_CMDHIST)
4252 case CMD_history:
4253 xp->xp_context = EXPAND_HISTORY;
4254 xp->xp_pattern = arg;
4255 break;
4256#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004257#if defined(FEAT_PROFILE)
4258 case CMD_syntime:
4259 xp->xp_context = EXPAND_SYNTIME;
4260 xp->xp_pattern = arg;
4261 break;
4262#endif
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004263
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264#endif /* FEAT_CMDL_COMPL */
4265
4266 default:
4267 break;
4268 }
4269 return NULL;
4270}
4271
4272/*
4273 * skip a range specifier of the form: addr [,addr] [;addr] ..
4274 *
4275 * Backslashed delimiters after / or ? will be skipped, and commands will
4276 * not be expanded between /'s and ?'s or after "'".
4277 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00004278 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 * Returns the "cmd" pointer advanced to beyond the range.
4280 */
4281 char_u *
4282skip_range(cmd, ctx)
4283 char_u *cmd;
4284 int *ctx; /* pointer to xp_context or NULL */
4285{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004286 unsigned delim;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287
Bram Moolenaardf177f62005-02-22 08:39:57 +00004288 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 {
4290 if (*cmd == '\'')
4291 {
4292 if (*++cmd == NUL && ctx != NULL)
4293 *ctx = EXPAND_NOTHING;
4294 }
4295 else if (*cmd == '/' || *cmd == '?')
4296 {
4297 delim = *cmd++;
4298 while (*cmd != NUL && *cmd != delim)
4299 if (*cmd++ == '\\' && *cmd != NUL)
4300 ++cmd;
4301 if (*cmd == NUL && ctx != NULL)
4302 *ctx = EXPAND_NOTHING;
4303 }
4304 if (*cmd != NUL)
4305 ++cmd;
4306 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004307
4308 /* Skip ":" and white space. */
4309 while (*cmd == ':')
4310 cmd = skipwhite(cmd + 1);
4311
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 return cmd;
4313}
4314
4315/*
4316 * get a single EX address
4317 *
4318 * Set ptr to the next character after the part that was interpreted.
4319 * Set ptr to NULL when an error is encountered.
4320 *
4321 * Return MAXLNUM when no Ex address was found.
4322 */
4323 static linenr_T
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004324get_address(ptr, addr_type, skip, to_other_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 char_u **ptr;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004326 int addr_type; /* flag: one of ADDR_LINES, ... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004327 int skip; /* only skip the address, don't use it */
4328 int to_other_file; /* flag: may jump to other file */
4329{
4330 int c;
4331 int i;
4332 long n;
4333 char_u *cmd;
4334 pos_T pos;
4335 pos_T *fp;
4336 linenr_T lnum;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004337 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338
4339 cmd = skipwhite(*ptr);
4340 lnum = MAXLNUM;
4341 do
4342 {
4343 switch (*cmd)
4344 {
4345 case '.': /* '.' - Cursor position */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004346 ++cmd;
4347 switch (addr_type)
4348 {
4349 case ADDR_LINES:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 lnum = curwin->w_cursor.lnum;
4351 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004352 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004353 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004354 break;
4355 case ADDR_ARGUMENTS:
4356 lnum = curwin->w_arg_idx + 1;
4357 break;
4358 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004359 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004360 lnum = curbuf->b_fnum;
4361 break;
4362 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004363 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004364 break;
4365 }
4366 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367
4368 case '$': /* '$' - last line */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004369 ++cmd;
4370 switch (addr_type)
4371 {
4372 case ADDR_LINES:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 lnum = curbuf->b_ml.ml_line_count;
4374 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004375 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004376 lnum = LAST_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004377 break;
4378 case ADDR_ARGUMENTS:
4379 lnum = ARGCOUNT;
4380 break;
4381 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004382 buf = lastbuf;
4383 while (buf->b_ml.ml_mfp == NULL)
4384 {
4385 if (buf->b_prev == NULL)
4386 break;
4387 buf = buf->b_prev;
4388 }
4389 lnum = buf->b_fnum;
4390 break;
4391 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004392 lnum = lastbuf->b_fnum;
4393 break;
4394 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004395 lnum = LAST_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004396 break;
4397 }
4398 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399
4400 case '\'': /* ''' - mark */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004401 if (*++cmd == NUL)
4402 {
4403 cmd = NULL;
4404 goto error;
4405 }
4406 if (addr_type != ADDR_LINES)
4407 {
4408 EMSG(_(e_invaddr));
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004409 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004410 goto error;
4411 }
4412 if (skip)
4413 ++cmd;
4414 else
4415 {
4416 /* Only accept a mark in another file when it is
4417 * used by itself: ":'M". */
4418 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
4419 ++cmd;
4420 if (fp == (pos_T *)-1)
4421 /* Jumped to another file. */
4422 lnum = curwin->w_cursor.lnum;
4423 else
4424 {
4425 if (check_mark(fp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 {
4427 cmd = NULL;
4428 goto error;
4429 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004430 lnum = fp->lnum;
4431 }
4432 }
4433 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434
4435 case '/':
4436 case '?': /* '/' or '?' - search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004437 c = *cmd++;
4438 if (addr_type != ADDR_LINES)
4439 {
4440 EMSG(_(e_invaddr));
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004441 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004442 goto error;
4443 }
4444 if (skip) /* skip "/pat/" */
4445 {
4446 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
4447 if (*cmd == c)
4448 ++cmd;
4449 }
4450 else
4451 {
4452 pos = curwin->w_cursor; /* save curwin->w_cursor */
4453 /*
4454 * When '/' or '?' follows another address, start
4455 * from there.
4456 */
4457 if (lnum != MAXLNUM)
4458 curwin->w_cursor.lnum = lnum;
4459 /*
4460 * Start a forward search at the end of the line.
4461 * Start a backward search at the start of the line.
4462 * This makes sure we never match in the current
4463 * line, and can match anywhere in the
4464 * next/previous line.
4465 */
4466 if (c == '/')
4467 curwin->w_cursor.col = MAXCOL;
4468 else
4469 curwin->w_cursor.col = 0;
4470 searchcmdlen = 0;
4471 if (!do_search(NULL, c, cmd, 1L,
4472 SEARCH_HIS | SEARCH_MSG, NULL))
4473 {
4474 curwin->w_cursor = pos;
4475 cmd = NULL;
4476 goto error;
4477 }
4478 lnum = curwin->w_cursor.lnum;
4479 curwin->w_cursor = pos;
4480 /* adjust command string pointer */
4481 cmd += searchcmdlen;
4482 }
4483 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484
4485 case '\\': /* "\?", "\/" or "\&", repeat search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004486 ++cmd;
4487 if (addr_type != ADDR_LINES)
4488 {
4489 EMSG(_(e_invaddr));
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004490 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004491 goto error;
4492 }
4493 if (*cmd == '&')
4494 i = RE_SUBST;
4495 else if (*cmd == '?' || *cmd == '/')
4496 i = RE_SEARCH;
4497 else
4498 {
4499 EMSG(_(e_backslash));
4500 cmd = NULL;
4501 goto error;
4502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004504 if (!skip)
4505 {
4506 /*
4507 * When search follows another address, start from
4508 * there.
4509 */
4510 if (lnum != MAXLNUM)
4511 pos.lnum = lnum;
4512 else
4513 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004515 /*
4516 * Start the search just like for the above
4517 * do_search().
4518 */
4519 if (*cmd != '?')
4520 pos.col = MAXCOL;
4521 else
4522 pos.col = 0;
Bram Moolenaarbd8539a2015-08-11 18:53:03 +02004523#ifdef FEAT_VIRTUALEDIT
4524 pos.coladd = 0;
4525#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004526 if (searchit(curwin, curbuf, &pos,
4527 *cmd == '?' ? BACKWARD : FORWARD,
4528 (char_u *)"", 1L, SEARCH_MSG,
4529 i, (linenr_T)0, NULL) != FAIL)
4530 lnum = pos.lnum;
4531 else
4532 {
4533 cmd = NULL;
4534 goto error;
4535 }
4536 }
4537 ++cmd;
4538 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539
4540 default:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004541 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
4542 lnum = getdigits(&cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 }
4544
4545 for (;;)
4546 {
4547 cmd = skipwhite(cmd);
4548 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4549 break;
4550
4551 if (lnum == MAXLNUM)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004552 {
4553 switch (addr_type)
4554 {
4555 case ADDR_LINES:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004556 /* "+1" is same as ".+1" */
4557 lnum = curwin->w_cursor.lnum;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004558 break;
4559 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004560 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004561 break;
4562 case ADDR_ARGUMENTS:
4563 lnum = curwin->w_arg_idx + 1;
4564 break;
4565 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004566 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004567 lnum = curbuf->b_fnum;
4568 break;
4569 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004570 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004571 break;
4572 }
4573 }
4574
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 if (VIM_ISDIGIT(*cmd))
4576 i = '+'; /* "number" is same as "+number" */
4577 else
4578 i = *cmd++;
4579 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4580 n = 1;
4581 else
4582 n = getdigits(&cmd);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004583 if (addr_type == ADDR_LOADED_BUFFERS
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004584 || addr_type == ADDR_BUFFERS)
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004585 lnum = compute_buffer_local_count(
4586 addr_type, lnum, (i == '-') ? -1 * n : n);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004587 else if (i == '-')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 lnum -= n;
4589 else
4590 lnum += n;
4591 }
4592 } while (*cmd == '/' || *cmd == '?');
4593
4594error:
4595 *ptr = cmd;
4596 return lnum;
4597}
4598
4599/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004600 * Get flags from an Ex command argument.
4601 */
4602 static void
4603get_flags(eap)
4604 exarg_T *eap;
4605{
4606 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4607 {
4608 if (*eap->arg == 'l')
4609 eap->flags |= EXFLAG_LIST;
4610 else if (*eap->arg == 'p')
4611 eap->flags |= EXFLAG_PRINT;
4612 else
4613 eap->flags |= EXFLAG_NR;
4614 eap->arg = skipwhite(eap->arg + 1);
4615 }
4616}
4617
4618/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 * Function called for command which is Not Implemented. NI!
4620 */
4621 void
4622ex_ni(eap)
4623 exarg_T *eap;
4624{
4625 if (!eap->skip)
4626 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4627}
4628
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004629#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630/*
4631 * Function called for script command which is Not Implemented. NI!
4632 * Skips over ":perl <<EOF" constructs.
4633 */
4634 static void
4635ex_script_ni(eap)
4636 exarg_T *eap;
4637{
4638 if (!eap->skip)
4639 ex_ni(eap);
4640 else
4641 vim_free(script_get(eap, eap->arg));
4642}
4643#endif
4644
4645/*
4646 * Check range in Ex command for validity.
4647 * Return NULL when valid, error message when invalid.
4648 */
4649 static char_u *
4650invalid_range(eap)
4651 exarg_T *eap;
4652{
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004653 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004654 if ( eap->line1 < 0
4655 || eap->line2 < 0
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004656 || eap->line1 > eap->line2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 return (char_u *)_(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004658
4659 if (eap->argt & RANGE)
4660 {
4661 switch(eap->addr_type)
4662 {
4663 case ADDR_LINES:
4664 if (!(eap->argt & NOTADR)
4665 && eap->line2 > curbuf->b_ml.ml_line_count
4666#ifdef FEAT_DIFF
4667 + (eap->cmdidx == CMD_diffget)
4668#endif
4669 )
4670 return (char_u *)_(e_invrange);
4671 break;
4672 case ADDR_ARGUMENTS:
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004673 /* add 1 if ARGCOUNT is 0 */
4674 if (eap->line2 > ARGCOUNT + (!ARGCOUNT))
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004675 return (char_u *)_(e_invrange);
4676 break;
4677 case ADDR_BUFFERS:
4678 if (eap->line1 < firstbuf->b_fnum
4679 || eap->line2 > lastbuf->b_fnum)
4680 return (char_u *)_(e_invrange);
4681 break;
4682 case ADDR_LOADED_BUFFERS:
4683 buf = firstbuf;
4684 while (buf->b_ml.ml_mfp == NULL)
4685 {
4686 if (buf->b_next == NULL)
4687 return (char_u *)_(e_invrange);
4688 buf = buf->b_next;
4689 }
4690 if (eap->line1 < buf->b_fnum)
4691 return (char_u *)_(e_invrange);
4692 buf = lastbuf;
4693 while (buf->b_ml.ml_mfp == NULL)
4694 {
4695 if (buf->b_prev == NULL)
4696 return (char_u *)_(e_invrange);
4697 buf = buf->b_prev;
4698 }
4699 if (eap->line2 > buf->b_fnum)
4700 return (char_u *)_(e_invrange);
4701 break;
4702 case ADDR_WINDOWS:
Bram Moolenaar8be63882015-01-14 11:25:05 +01004703 if (eap->line2 > LAST_WIN_NR)
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004704 return (char_u *)_(e_invrange);
4705 break;
4706 case ADDR_TABS:
4707 if (eap->line2 > LAST_TAB_NR)
4708 return (char_u *)_(e_invrange);
4709 break;
4710 }
4711 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712 return NULL;
4713}
4714
4715/*
4716 * Correct the range for zero line number, if required.
4717 */
4718 static void
4719correct_range(eap)
4720 exarg_T *eap;
4721{
4722 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4723 {
4724 if (eap->line1 == 0)
4725 eap->line1 = 1;
4726 if (eap->line2 == 0)
4727 eap->line2 = 1;
4728 }
4729}
4730
Bram Moolenaar748bf032005-02-02 23:04:36 +00004731#ifdef FEAT_QUICKFIX
4732static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4733
4734/*
4735 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4736 * pattern. Otherwise return eap->arg.
4737 */
4738 static char_u *
4739skip_grep_pat(eap)
4740 exarg_T *eap;
4741{
4742 char_u *p = eap->arg;
4743
Bram Moolenaara37420f2006-02-04 22:37:47 +00004744 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4745 || eap->cmdidx == CMD_vimgrepadd
4746 || eap->cmdidx == CMD_lvimgrepadd
4747 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004748 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004749 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004750 if (p == NULL)
4751 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004752 }
4753 return p;
4754}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004755
4756/*
4757 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4758 * in the command line, so that things like % get expanded.
4759 */
4760 static char_u *
4761replace_makeprg(eap, p, cmdlinep)
4762 exarg_T *eap;
4763 char_u *p;
4764 char_u **cmdlinep;
4765{
4766 char_u *new_cmdline;
4767 char_u *program;
4768 char_u *pos;
4769 char_u *ptr;
4770 int len;
4771 int i;
4772
4773 /*
4774 * Don't do it when ":vimgrep" is used for ":grep".
4775 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004776 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4777 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4778 || eap->cmdidx == CMD_grepadd
4779 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004780 && !grep_internal(eap->cmdidx))
4781 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004782 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4783 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004784 {
4785 if (*curbuf->b_p_gp == NUL)
4786 program = p_gp;
4787 else
4788 program = curbuf->b_p_gp;
4789 }
4790 else
4791 {
4792 if (*curbuf->b_p_mp == NUL)
4793 program = p_mp;
4794 else
4795 program = curbuf->b_p_mp;
4796 }
4797
4798 p = skipwhite(p);
4799
4800 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4801 {
4802 /* replace $* by given arguments */
4803 i = 1;
4804 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4805 ++i;
4806 len = (int)STRLEN(p);
4807 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4808 if (new_cmdline == NULL)
4809 return NULL; /* out of memory */
4810 ptr = new_cmdline;
4811 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4812 {
4813 i = (int)(pos - program);
4814 STRNCPY(ptr, program, i);
4815 STRCPY(ptr += i, p);
4816 ptr += len;
4817 program = pos + 2;
4818 }
4819 STRCPY(ptr, program);
4820 }
4821 else
4822 {
4823 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4824 if (new_cmdline == NULL)
4825 return NULL; /* out of memory */
4826 STRCPY(new_cmdline, program);
4827 STRCAT(new_cmdline, " ");
4828 STRCAT(new_cmdline, p);
4829 }
4830 msg_make(p);
4831
4832 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4833 vim_free(*cmdlinep);
4834 *cmdlinep = new_cmdline;
4835 p = new_cmdline;
4836 }
4837 return p;
4838}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004839#endif
4840
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841/*
4842 * Expand file name in Ex command argument.
4843 * Return FAIL for failure, OK otherwise.
4844 */
4845 int
4846expand_filename(eap, cmdlinep, errormsgp)
4847 exarg_T *eap;
4848 char_u **cmdlinep;
4849 char_u **errormsgp;
4850{
4851 int has_wildcards; /* need to expand wildcards */
4852 char_u *repl;
4853 int srclen;
4854 char_u *p;
4855 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004856 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857
Bram Moolenaar748bf032005-02-02 23:04:36 +00004858#ifdef FEAT_QUICKFIX
4859 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4860 p = skip_grep_pat(eap);
4861#else
4862 p = eap->arg;
4863#endif
4864
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 /*
4866 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4867 * the file name contains a wildcard it should not cause expanding.
4868 * (it will be expanded anyway if there is a wildcard before replacing).
4869 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004870 has_wildcards = mch_has_wildcard(p);
4871 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004873#ifdef FEAT_EVAL
4874 /* Skip over `=expr`, wildcards in it are not expanded. */
4875 if (p[0] == '`' && p[1] == '=')
4876 {
4877 p += 2;
4878 (void)skip_expr(&p);
4879 if (*p == '`')
4880 ++p;
4881 continue;
4882 }
4883#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884 /*
4885 * Quick check if this cannot be the start of a special string.
4886 * Also removes backslash before '%', '#' and '<'.
4887 */
4888 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4889 {
4890 ++p;
4891 continue;
4892 }
4893
4894 /*
4895 * Try to find a match at this position.
4896 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004897 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4898 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 if (*errormsgp != NULL) /* error detected */
4900 return FAIL;
4901 if (repl == NULL) /* no match found */
4902 {
4903 p += srclen;
4904 continue;
4905 }
4906
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004907 /* Wildcards won't be expanded below, the replacement is taken
4908 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4909 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4910 {
4911 char_u *l = repl;
4912
4913 repl = expand_env_save(repl);
4914 vim_free(l);
4915 }
4916
Bram Moolenaar63b92542007-03-27 14:57:09 +00004917 /* Need to escape white space et al. with a backslash.
4918 * Don't do this for:
4919 * - replacement that already has been escaped: "##"
4920 * - shell commands (may have to use quotes instead).
4921 * - non-unix systems when there is a single argument (spaces don't
4922 * separate arguments then).
4923 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004925 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 && eap->cmdidx != CMD_bang
4927 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004928 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004930 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004932 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933#ifndef UNIX
4934 && !(eap->argt & NOSPC)
4935#endif
4936 )
4937 {
4938 char_u *l;
4939#ifdef BACKSLASH_IN_FILENAME
4940 /* Don't escape a backslash here, because rem_backslash() doesn't
4941 * remove it later. */
4942 static char_u *nobslash = (char_u *)" \t\"|";
4943# define ESCAPE_CHARS nobslash
4944#else
4945# define ESCAPE_CHARS escape_chars
4946#endif
4947
4948 for (l = repl; *l; ++l)
4949 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4950 {
4951 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4952 if (l != NULL)
4953 {
4954 vim_free(repl);
4955 repl = l;
4956 }
4957 break;
4958 }
4959 }
4960
4961 /* For a shell command a '!' must be escaped. */
4962 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar31b7d382014-04-01 18:54:48 +02004963 && vim_strpbrk(repl, (char_u *)"!") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004964 {
4965 char_u *l;
4966
Bram Moolenaar31b7d382014-04-01 18:54:48 +02004967 l = vim_strsave_escaped(repl, (char_u *)"!");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 if (l != NULL)
4969 {
4970 vim_free(repl);
4971 repl = l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 }
4973 }
4974
4975 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4976 vim_free(repl);
4977 if (p == NULL)
4978 return FAIL;
4979 }
4980
4981 /*
4982 * One file argument: Expand wildcards.
4983 * Don't do this with ":r !command" or ":w !command".
4984 */
4985 if ((eap->argt & NOSPC) && !eap->usefilter)
4986 {
4987 /*
4988 * May do this twice:
4989 * 1. Replace environment variables.
4990 * 2. Replace any other wildcards, remove backslashes.
4991 */
4992 for (n = 1; n <= 2; ++n)
4993 {
4994 if (n == 2)
4995 {
4996#ifdef UNIX
4997 /*
4998 * Only for Unix we check for more than one file name.
4999 * For other systems spaces are considered to be part
5000 * of the file name.
5001 * Only check here if there is no wildcard, otherwise
5002 * ExpandOne() will check for errors. This allows
5003 * ":e `ls ve*.c`" on Unix.
5004 */
5005 if (!has_wildcards)
5006 for (p = eap->arg; *p; ++p)
5007 {
5008 /* skip escaped characters */
5009 if (p[1] && (*p == '\\' || *p == Ctrl_V))
5010 ++p;
5011 else if (vim_iswhite(*p))
5012 {
5013 *errormsgp = (char_u *)_("E172: Only one file name allowed");
5014 return FAIL;
5015 }
5016 }
5017#endif
5018
5019 /*
5020 * Halve the number of backslashes (this is Vi compatible).
5021 * For Unix and OS/2, when wildcards are expanded, this is
5022 * done by ExpandOne() below.
5023 */
5024#if defined(UNIX) || defined(OS2)
5025 if (!has_wildcards)
5026#endif
5027 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005028 }
5029
5030 if (has_wildcards)
5031 {
5032 if (n == 1)
5033 {
5034 /*
5035 * First loop: May expand environment variables. This
5036 * can be done much faster with expand_env() than with
5037 * something else (e.g., calling a shell).
5038 * After expanding environment variables, check again
5039 * if there are still wildcards present.
5040 */
5041 if (vim_strchr(eap->arg, '$') != NULL
5042 || vim_strchr(eap->arg, '~') != NULL)
5043 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00005044 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00005045 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 has_wildcards = mch_has_wildcard(NameBuff);
5047 p = NameBuff;
5048 }
5049 else
5050 p = NULL;
5051 }
5052 else /* n == 2 */
5053 {
5054 expand_T xpc;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005055 int options = WILD_LIST_NOTFOUND|WILD_ADD_SLASH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056
5057 ExpandInit(&xpc);
5058 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005059 if (p_wic)
5060 options += WILD_ICASE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 p = ExpandOne(&xpc, eap->arg, NULL,
Bram Moolenaar94950a92010-12-02 16:01:29 +01005062 options, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 if (p == NULL)
5064 return FAIL;
5065 }
5066 if (p != NULL)
5067 {
5068 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
5069 p, cmdlinep);
5070 if (n == 2) /* p came from ExpandOne() */
5071 vim_free(p);
5072 }
5073 }
5074 }
5075 }
5076 return OK;
5077}
5078
5079/*
5080 * Replace part of the command line, keeping eap->cmd, eap->arg and
5081 * eap->nextcmd correct.
5082 * "src" points to the part that is to be replaced, of length "srclen".
5083 * "repl" is the replacement string.
5084 * Returns a pointer to the character after the replaced string.
5085 * Returns NULL for failure.
5086 */
5087 static char_u *
5088repl_cmdline(eap, src, srclen, repl, cmdlinep)
5089 exarg_T *eap;
5090 char_u *src;
5091 int srclen;
5092 char_u *repl;
5093 char_u **cmdlinep;
5094{
5095 int len;
5096 int i;
5097 char_u *new_cmdline;
5098
5099 /*
5100 * The new command line is build in new_cmdline[].
5101 * First allocate it.
5102 * Careful: a "+cmd" argument may have been NUL terminated.
5103 */
5104 len = (int)STRLEN(repl);
5105 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005106 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
5108 if ((new_cmdline = alloc((unsigned)i)) == NULL)
5109 return NULL; /* out of memory! */
5110
5111 /*
5112 * Copy the stuff before the expanded part.
5113 * Copy the expanded stuff.
5114 * Copy what came after the expanded part.
5115 * Copy the next commands, if there are any.
5116 */
5117 i = (int)(src - *cmdlinep); /* length of part before match */
5118 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00005119
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 mch_memmove(new_cmdline + i, repl, (size_t)len);
5121 i += len; /* remember the end of the string */
5122 STRCPY(new_cmdline + i, src + srclen);
5123 src = new_cmdline + i; /* remember where to continue */
5124
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005125 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 {
5127 i = (int)STRLEN(new_cmdline) + 1;
5128 STRCPY(new_cmdline + i, eap->nextcmd);
5129 eap->nextcmd = new_cmdline + i;
5130 }
5131 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
5132 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
5133 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
5134 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
5135 vim_free(*cmdlinep);
5136 *cmdlinep = new_cmdline;
5137
5138 return src;
5139}
5140
5141/*
5142 * Check for '|' to separate commands and '"' to start comments.
5143 */
5144 void
5145separate_nextcmd(eap)
5146 exarg_T *eap;
5147{
5148 char_u *p;
5149
Bram Moolenaar86b68352004-12-27 21:59:20 +00005150#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00005151 p = skip_grep_pat(eap);
5152#else
5153 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005154#endif
5155
5156 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 {
5158 if (*p == Ctrl_V)
5159 {
5160 if (eap->argt & (USECTRLV | XFILE))
5161 ++p; /* skip CTRL-V and next char */
5162 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00005163 /* remove CTRL-V and skip next char */
Bram Moolenaara7241f52008-06-24 20:39:31 +00005164 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 if (*p == NUL) /* stop at NUL after CTRL-V */
5166 break;
5167 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005168
5169#ifdef FEAT_EVAL
5170 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005171 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005172 {
5173 p += 2;
5174 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005175 }
5176#endif
5177
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 /* Check for '"': start of comment or '|': next command */
5179 /* :@" and :*" do not start a comment!
5180 * :redir @" doesn't either. */
5181 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
5182 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
5183 || p != eap->arg)
5184 && (eap->cmdidx != CMD_redir
5185 || p != eap->arg + 1 || p[-1] != '@'))
5186 || *p == '|' || *p == '\n')
5187 {
5188 /*
5189 * We remove the '\' before the '|', unless USECTRLV is used
5190 * AND 'b' is present in 'cpoptions'.
5191 */
5192 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
5193 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
5194 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00005195 STRMOVE(p - 1, p); /* remove the '\' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196 --p;
5197 }
5198 else
5199 {
5200 eap->nextcmd = check_nextcmd(p);
5201 *p = NUL;
5202 break;
5203 }
5204 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005206
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
5208 del_trailing_spaces(eap->arg);
5209}
5210
5211/*
5212 * get + command from ex argument
5213 */
5214 static char_u *
5215getargcmd(argp)
5216 char_u **argp;
5217{
5218 char_u *arg = *argp;
5219 char_u *command = NULL;
5220
5221 if (*arg == '+') /* +[command] */
5222 {
5223 ++arg;
Bram Moolenaar3e451592014-04-02 14:22:05 +02005224 if (vim_isspace(*arg) || *arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005225 command = dollar_command;
5226 else
5227 {
5228 command = arg;
5229 arg = skip_cmd_arg(command, TRUE);
5230 if (*arg != NUL)
5231 *arg++ = NUL; /* terminate command with NUL */
5232 }
5233
5234 arg = skipwhite(arg); /* skip over spaces */
5235 *argp = arg;
5236 }
5237 return command;
5238}
5239
5240/*
5241 * Find end of "+command" argument. Skip over "\ " and "\\".
5242 */
5243 static char_u *
5244skip_cmd_arg(p, rembs)
5245 char_u *p;
5246 int rembs; /* TRUE to halve the number of backslashes */
5247{
5248 while (*p && !vim_isspace(*p))
5249 {
5250 if (*p == '\\' && p[1] != NUL)
5251 {
5252 if (rembs)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005253 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 else
5255 ++p;
5256 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005257 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 }
5259 return p;
5260}
5261
5262/*
5263 * Get "++opt=arg" argument.
5264 * Return FAIL or OK.
5265 */
5266 static int
5267getargopt(eap)
5268 exarg_T *eap;
5269{
5270 char_u *arg = eap->arg + 2;
5271 int *pp = NULL;
5272#ifdef FEAT_MBYTE
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005273 int bad_char_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 char_u *p;
5275#endif
5276
5277 /* ":edit ++[no]bin[ary] file" */
5278 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
5279 {
5280 if (*arg == 'n')
5281 {
5282 arg += 2;
5283 eap->force_bin = FORCE_NOBIN;
5284 }
5285 else
5286 eap->force_bin = FORCE_BIN;
5287 if (!checkforcmd(&arg, "binary", 3))
5288 return FAIL;
5289 eap->arg = skipwhite(arg);
5290 return OK;
5291 }
5292
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005293 /* ":read ++edit file" */
5294 if (STRNCMP(arg, "edit", 4) == 0)
5295 {
5296 eap->read_edit = TRUE;
5297 eap->arg = skipwhite(arg + 4);
5298 return OK;
5299 }
5300
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 if (STRNCMP(arg, "ff", 2) == 0)
5302 {
5303 arg += 2;
5304 pp = &eap->force_ff;
5305 }
5306 else if (STRNCMP(arg, "fileformat", 10) == 0)
5307 {
5308 arg += 10;
5309 pp = &eap->force_ff;
5310 }
5311#ifdef FEAT_MBYTE
5312 else if (STRNCMP(arg, "enc", 3) == 0)
5313 {
Bram Moolenaarb38e9ab2011-12-14 14:49:45 +01005314 if (STRNCMP(arg, "encoding", 8) == 0)
5315 arg += 8;
5316 else
5317 arg += 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005318 pp = &eap->force_enc;
5319 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005320 else if (STRNCMP(arg, "bad", 3) == 0)
5321 {
5322 arg += 3;
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005323 pp = &bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005324 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005325#endif
5326
5327 if (pp == NULL || *arg != '=')
5328 return FAIL;
5329
5330 ++arg;
5331 *pp = (int)(arg - eap->cmd);
5332 arg = skip_cmd_arg(arg, FALSE);
5333 eap->arg = skipwhite(arg);
5334 *arg = NUL;
5335
5336#ifdef FEAT_MBYTE
5337 if (pp == &eap->force_ff)
5338 {
5339#endif
5340 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
5341 return FAIL;
5342#ifdef FEAT_MBYTE
5343 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005344 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005345 {
5346 /* Make 'fileencoding' lower case. */
5347 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
5348 *p = TOLOWER_ASC(*p);
5349 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005350 else
5351 {
5352 /* Check ++bad= argument. Must be a single-byte character, "keep" or
5353 * "drop". */
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005354 p = eap->cmd + bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005355 if (STRICMP(p, "keep") == 0)
5356 eap->bad_char = BAD_KEEP;
5357 else if (STRICMP(p, "drop") == 0)
5358 eap->bad_char = BAD_DROP;
5359 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
5360 eap->bad_char = *p;
5361 else
5362 return FAIL;
5363 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364#endif
5365
5366 return OK;
5367}
5368
5369/*
5370 * ":abbreviate" and friends.
5371 */
5372 static void
5373ex_abbreviate(eap)
5374 exarg_T *eap;
5375{
5376 do_exmap(eap, TRUE); /* almost the same as mapping */
5377}
5378
5379/*
5380 * ":map" and friends.
5381 */
5382 static void
5383ex_map(eap)
5384 exarg_T *eap;
5385{
5386 /*
5387 * If we are sourcing .exrc or .vimrc in current directory we
5388 * print the mappings for security reasons.
5389 */
5390 if (secure)
5391 {
5392 secure = 2;
5393 msg_outtrans(eap->cmd);
5394 msg_putchar('\n');
5395 }
5396 do_exmap(eap, FALSE);
5397}
5398
5399/*
5400 * ":unmap" and friends.
5401 */
5402 static void
5403ex_unmap(eap)
5404 exarg_T *eap;
5405{
5406 do_exmap(eap, FALSE);
5407}
5408
5409/*
5410 * ":mapclear" and friends.
5411 */
5412 static void
5413ex_mapclear(eap)
5414 exarg_T *eap;
5415{
5416 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
5417}
5418
5419/*
5420 * ":abclear" and friends.
5421 */
5422 static void
5423ex_abclear(eap)
5424 exarg_T *eap;
5425{
5426 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
5427}
5428
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005429#if defined(FEAT_AUTOCMD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 static void
5431ex_autocmd(eap)
5432 exarg_T *eap;
5433{
5434 /*
5435 * Disallow auto commands from .exrc and .vimrc in current
5436 * directory for security reasons.
5437 */
5438 if (secure)
5439 {
5440 secure = 2;
5441 eap->errmsg = e_curdir;
5442 }
5443 else if (eap->cmdidx == CMD_autocmd)
5444 do_autocmd(eap->arg, eap->forceit);
5445 else
5446 do_augroup(eap->arg, eap->forceit);
5447}
5448
5449/*
5450 * ":doautocmd": Apply the automatic commands to the current buffer.
5451 */
5452 static void
5453ex_doautocmd(eap)
5454 exarg_T *eap;
5455{
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005456 char_u *arg = eap->arg;
5457 int call_do_modelines = check_nomodeline(&arg);
5458
5459 (void)do_doautocmd(arg, TRUE);
5460 if (call_do_modelines) /* Only when there is no <nomodeline>. */
5461 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462}
5463#endif
5464
5465#ifdef FEAT_LISTCMDS
5466/*
5467 * :[N]bunload[!] [N] [bufname] unload buffer
5468 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
5469 * :[N]bwipeout[!] [N] [bufname] delete buffer really
5470 */
5471 static void
5472ex_bunload(eap)
5473 exarg_T *eap;
5474{
5475 eap->errmsg = do_bufdel(
5476 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
5477 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
5478 : DOBUF_UNLOAD, eap->arg,
5479 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
5480}
5481
5482/*
5483 * :[N]buffer [N] to buffer N
5484 * :[N]sbuffer [N] to buffer N
5485 */
5486 static void
5487ex_buffer(eap)
5488 exarg_T *eap;
5489{
5490 if (*eap->arg)
5491 eap->errmsg = e_trailing;
5492 else
5493 {
5494 if (eap->addr_count == 0) /* default is current buffer */
5495 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
5496 else
5497 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005498 if (eap->do_ecmd_cmd != NULL)
5499 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005500 }
5501}
5502
5503/*
5504 * :[N]bmodified [N] to next mod. buffer
5505 * :[N]sbmodified [N] to next mod. buffer
5506 */
5507 static void
5508ex_bmodified(eap)
5509 exarg_T *eap;
5510{
5511 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005512 if (eap->do_ecmd_cmd != NULL)
5513 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514}
5515
5516/*
5517 * :[N]bnext [N] to next buffer
5518 * :[N]sbnext [N] split and to next buffer
5519 */
5520 static void
5521ex_bnext(eap)
5522 exarg_T *eap;
5523{
5524 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005525 if (eap->do_ecmd_cmd != NULL)
5526 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527}
5528
5529/*
5530 * :[N]bNext [N] to previous buffer
5531 * :[N]bprevious [N] to previous buffer
5532 * :[N]sbNext [N] split and to previous buffer
5533 * :[N]sbprevious [N] split and to previous buffer
5534 */
5535 static void
5536ex_bprevious(eap)
5537 exarg_T *eap;
5538{
5539 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005540 if (eap->do_ecmd_cmd != NULL)
5541 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005542}
5543
5544/*
5545 * :brewind to first buffer
5546 * :bfirst to first buffer
5547 * :sbrewind split and to first buffer
5548 * :sbfirst split and to first buffer
5549 */
5550 static void
5551ex_brewind(eap)
5552 exarg_T *eap;
5553{
5554 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005555 if (eap->do_ecmd_cmd != NULL)
5556 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557}
5558
5559/*
5560 * :blast to last buffer
5561 * :sblast split and to last buffer
5562 */
5563 static void
5564ex_blast(eap)
5565 exarg_T *eap;
5566{
5567 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005568 if (eap->do_ecmd_cmd != NULL)
5569 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570}
5571#endif
5572
5573 int
5574ends_excmd(c)
5575 int c;
5576{
5577 return (c == NUL || c == '|' || c == '"' || c == '\n');
5578}
5579
5580#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
5581 || defined(PROTO)
5582/*
5583 * Return the next command, after the first '|' or '\n'.
5584 * Return NULL if not found.
5585 */
5586 char_u *
5587find_nextcmd(p)
5588 char_u *p;
5589{
5590 while (*p != '|' && *p != '\n')
5591 {
5592 if (*p == NUL)
5593 return NULL;
5594 ++p;
5595 }
5596 return (p + 1);
5597}
5598#endif
5599
5600/*
5601 * Check if *p is a separator between Ex commands.
5602 * Return NULL if it isn't, (p + 1) if it is.
5603 */
5604 char_u *
5605check_nextcmd(p)
5606 char_u *p;
5607{
5608 p = skipwhite(p);
5609 if (*p == '|' || *p == '\n')
5610 return (p + 1);
5611 else
5612 return NULL;
5613}
5614
5615/*
5616 * - if there are more files to edit
5617 * - and this is the last window
5618 * - and forceit not used
5619 * - and not repeated twice on a row
5620 * return FAIL and give error message if 'message' TRUE
5621 * return OK otherwise
5622 */
5623 static int
5624check_more(message, forceit)
5625 int message; /* when FALSE check only, no messages */
5626 int forceit;
5627{
5628 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5629
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005630 if (!forceit && only_one_window()
5631 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 {
5633 if (message)
5634 {
5635#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5636 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5637 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02005638 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639
5640 if (n == 1)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02005641 vim_strncpy(buff,
5642 (char_u *)_("1 more file to edit. Quit anyway?"),
Bram Moolenaard9462e32011-04-11 21:35:11 +02005643 DIALOG_MSG_SIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644 else
Bram Moolenaard9462e32011-04-11 21:35:11 +02005645 vim_snprintf((char *)buff, DIALOG_MSG_SIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 _("%d more files to edit. Quit anyway?"), n);
5647 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5648 return OK;
5649 return FAIL;
5650 }
5651#endif
5652 if (n == 1)
5653 EMSG(_("E173: 1 more file to edit"));
5654 else
5655 EMSGN(_("E173: %ld more files to edit"), n);
5656 quitmore = 2; /* next try to quit is allowed */
5657 }
5658 return FAIL;
5659 }
5660 return OK;
5661}
5662
5663#ifdef FEAT_CMDL_COMPL
5664/*
5665 * Function given to ExpandGeneric() to obtain the list of command names.
5666 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667 char_u *
5668get_command_name(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00005669 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670 int idx;
5671{
5672 if (idx >= (int)CMD_SIZE)
5673# ifdef FEAT_USR_CMDS
5674 return get_user_command_name(idx);
5675# else
5676 return NULL;
5677# endif
5678 return cmdnames[idx].cmd_name;
5679}
5680#endif
5681
5682#if defined(FEAT_USR_CMDS) || defined(PROTO)
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005683static 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 +00005684static void uc_list __ARGS((char_u *name, size_t name_len));
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005685static 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 +00005686static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5687static 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));
5688
5689 static int
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005690uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, addr_type, force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691 char_u *name;
5692 size_t name_len;
5693 char_u *rep;
5694 long argt;
5695 long def;
5696 int flags;
5697 int compl;
5698 char_u *compl_arg;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005699 int addr_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 int force;
5701{
5702 ucmd_T *cmd = NULL;
5703 char_u *p;
5704 int i;
5705 int cmp = 1;
5706 char_u *rep_buf = NULL;
5707 garray_T *gap;
5708
Bram Moolenaar9c102382006-05-03 21:26:49 +00005709 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005710 if (rep_buf == NULL)
5711 {
5712 /* Can't replace termcodes - try using the string as is */
5713 rep_buf = vim_strsave(rep);
5714
5715 /* Give up if out of memory */
5716 if (rep_buf == NULL)
5717 return FAIL;
5718 }
5719
5720 /* get address of growarray: global or in curbuf */
5721 if (flags & UC_BUFFER)
5722 {
5723 gap = &curbuf->b_ucmds;
5724 if (gap->ga_itemsize == 0)
5725 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5726 }
5727 else
5728 gap = &ucmds;
5729
5730 /* Search for the command in the already defined commands. */
5731 for (i = 0; i < gap->ga_len; ++i)
5732 {
5733 size_t len;
5734
5735 cmd = USER_CMD_GA(gap, i);
5736 len = STRLEN(cmd->uc_name);
5737 cmp = STRNCMP(name, cmd->uc_name, name_len);
5738 if (cmp == 0)
5739 {
5740 if (name_len < len)
5741 cmp = -1;
5742 else if (name_len > len)
5743 cmp = 1;
5744 }
5745
5746 if (cmp == 0)
5747 {
5748 if (!force)
5749 {
5750 EMSG(_("E174: Command already exists: add ! to replace it"));
5751 goto fail;
5752 }
5753
5754 vim_free(cmd->uc_rep);
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00005755 cmd->uc_rep = NULL;
5756#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5757 vim_free(cmd->uc_compl_arg);
5758 cmd->uc_compl_arg = NULL;
5759#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 break;
5761 }
5762
5763 /* Stop as soon as we pass the name to add */
5764 if (cmp < 0)
5765 break;
5766 }
5767
5768 /* Extend the array unless we're replacing an existing command */
5769 if (cmp != 0)
5770 {
5771 if (ga_grow(gap, 1) != OK)
5772 goto fail;
5773 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5774 goto fail;
5775
5776 cmd = USER_CMD_GA(gap, i);
5777 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5778
5779 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780
5781 cmd->uc_name = p;
5782 }
5783
5784 cmd->uc_rep = rep_buf;
5785 cmd->uc_argt = argt;
5786 cmd->uc_def = def;
5787 cmd->uc_compl = compl;
5788#ifdef FEAT_EVAL
5789 cmd->uc_scriptID = current_SID;
5790# ifdef FEAT_CMDL_COMPL
5791 cmd->uc_compl_arg = compl_arg;
5792# endif
5793#endif
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005794 cmd->uc_addr_type = addr_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005795
5796 return OK;
5797
5798fail:
5799 vim_free(rep_buf);
5800#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5801 vim_free(compl_arg);
5802#endif
5803 return FAIL;
5804}
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005805#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005807#if defined(FEAT_USR_CMDS)
5808static struct
5809{
5810 int expand;
5811 char *name;
5812} addr_type_complete[] =
5813{
5814 {ADDR_ARGUMENTS, "arguments"},
5815 {ADDR_LINES, "lines"},
5816 {ADDR_LOADED_BUFFERS, "loaded_buffers"},
5817 {ADDR_TABS, "tabs"},
5818 {ADDR_BUFFERS, "buffers"},
5819 {ADDR_WINDOWS, "windows"},
5820 {-1, NULL}
5821};
5822#endif
5823
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005824#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005825/*
5826 * List of names for completion for ":command" with the EXPAND_ flag.
5827 * Must be alphabetical for completion.
5828 */
5829static struct
5830{
5831 int expand;
5832 char *name;
5833} command_complete[] =
5834{
5835 {EXPAND_AUGROUP, "augroup"},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005836 {EXPAND_BEHAVE, "behave"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837 {EXPAND_BUFFERS, "buffer"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005838 {EXPAND_COLORS, "color"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839 {EXPAND_COMMANDS, "command"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005840 {EXPAND_COMPILER, "compiler"},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005841#if defined(FEAT_CSCOPE)
5842 {EXPAND_CSCOPE, "cscope"},
5843#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5845 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005846 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847#endif
5848 {EXPAND_DIRECTORIES, "dir"},
5849 {EXPAND_ENV_VARS, "environment"},
5850 {EXPAND_EVENTS, "event"},
5851 {EXPAND_EXPRESSION, "expression"},
5852 {EXPAND_FILES, "file"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005853 {EXPAND_FILES_IN_PATH, "file_in_path"},
Bram Moolenaara26559b2010-07-31 14:59:19 +02005854 {EXPAND_FILETYPE, "filetype"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 {EXPAND_FUNCTIONS, "function"},
5856 {EXPAND_HELP, "help"},
5857 {EXPAND_HIGHLIGHT, "highlight"},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005858#if defined(FEAT_CMDHIST)
5859 {EXPAND_HISTORY, "history"},
5860#endif
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005861#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005862 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005863 {EXPAND_LOCALES, "locale"},
5864#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 {EXPAND_MAPPINGS, "mapping"},
5866 {EXPAND_MENUS, "menu"},
Bram Moolenaara26559b2010-07-31 14:59:19 +02005867 {EXPAND_OWNSYNTAX, "syntax"},
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02005868#if defined(FEAT_PROFILE)
5869 {EXPAND_SYNTIME, "syntime"},
5870#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005871 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005872 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005873#if defined(FEAT_SIGNS)
5874 {EXPAND_SIGN, "sign"},
5875#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 {EXPAND_TAGS, "tag"},
5877 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
Bram Moolenaar24305862012-08-15 14:05:05 +02005878 {EXPAND_USER, "user"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 {EXPAND_USER_VARS, "var"},
5880 {0, NULL}
5881};
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005882#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005884#if defined(FEAT_USR_CMDS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885 static void
5886uc_list(name, name_len)
5887 char_u *name;
5888 size_t name_len;
5889{
5890 int i, j;
5891 int found = FALSE;
5892 ucmd_T *cmd;
5893 int len;
5894 long a;
5895 garray_T *gap;
5896
5897 gap = &curbuf->b_ucmds;
5898 for (;;)
5899 {
5900 for (i = 0; i < gap->ga_len; ++i)
5901 {
5902 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005903 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904
5905 /* Skip commands which don't match the requested prefix */
5906 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5907 continue;
5908
5909 /* Put out the title first time */
5910 if (!found)
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005911 MSG_PUTS_TITLE(_("\n Name Args Address Complete Definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 found = TRUE;
5913 msg_putchar('\n');
5914 if (got_int)
5915 break;
5916
5917 /* Special cases */
5918 msg_putchar(a & BANG ? '!' : ' ');
5919 msg_putchar(a & REGSTR ? '"' : ' ');
5920 msg_putchar(gap != &ucmds ? 'b' : ' ');
5921 msg_putchar(' ');
5922
5923 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5924 len = (int)STRLEN(cmd->uc_name) + 4;
5925
5926 do {
5927 msg_putchar(' ');
5928 ++len;
5929 } while (len < 16);
5930
5931 len = 0;
5932
5933 /* Arguments */
5934 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5935 {
5936 case 0: IObuff[len++] = '0'; break;
5937 case (EXTRA): IObuff[len++] = '*'; break;
5938 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5939 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5940 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5941 }
5942
5943 do {
5944 IObuff[len++] = ' ';
5945 } while (len < 5);
5946
5947 /* Range */
5948 if (a & (RANGE|COUNT))
5949 {
5950 if (a & COUNT)
5951 {
5952 /* -count=N */
5953 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5954 len += (int)STRLEN(IObuff + len);
5955 }
5956 else if (a & DFLALL)
5957 IObuff[len++] = '%';
5958 else if (cmd->uc_def >= 0)
5959 {
5960 /* -range=N */
5961 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5962 len += (int)STRLEN(IObuff + len);
5963 }
5964 else
5965 IObuff[len++] = '.';
5966 }
5967
5968 do {
5969 IObuff[len++] = ' ';
5970 } while (len < 11);
5971
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005972 /* Address Type */
5973 for (j = 0; addr_type_complete[j].expand != -1; ++j)
5974 if (addr_type_complete[j].expand != ADDR_LINES
5975 && addr_type_complete[j].expand == cmd->uc_addr_type)
5976 {
5977 STRCPY(IObuff + len, addr_type_complete[j].name);
5978 len += (int)STRLEN(IObuff + len);
5979 break;
5980 }
5981
5982 do {
5983 IObuff[len++] = ' ';
5984 } while (len < 21);
5985
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986 /* Completion */
5987 for (j = 0; command_complete[j].expand != 0; ++j)
5988 if (command_complete[j].expand == cmd->uc_compl)
5989 {
5990 STRCPY(IObuff + len, command_complete[j].name);
5991 len += (int)STRLEN(IObuff + len);
5992 break;
5993 }
5994
5995 do {
5996 IObuff[len++] = ' ';
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005997 } while (len < 35);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998
5999 IObuff[len] = '\0';
6000 msg_outtrans(IObuff);
6001
6002 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00006003#ifdef FEAT_EVAL
6004 if (p_verbose > 0)
6005 last_set_msg(cmd->uc_scriptID);
6006#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007 out_flush();
6008 ui_breakcheck();
6009 if (got_int)
6010 break;
6011 }
6012 if (gap == &ucmds || i < gap->ga_len)
6013 break;
6014 gap = &ucmds;
6015 }
6016
6017 if (!found)
6018 MSG(_("No user-defined commands found"));
6019}
6020
6021 static char_u *
6022uc_fun_cmd()
6023{
6024 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
6025 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
6026 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
6027 0xb9, 0x7f, 0};
6028 int i;
6029
6030 for (i = 0; fcmd[i]; ++i)
6031 IObuff[i] = fcmd[i] - 0x40;
6032 IObuff[i] = 0;
6033 return IObuff;
6034}
6035
6036 static int
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006037uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg, addr_type_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 char_u *attr;
6039 size_t len;
6040 long *argt;
6041 long *def;
6042 int *flags;
6043 int *compl;
6044 char_u **compl_arg;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006045 int *addr_type_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046{
6047 char_u *p;
6048
6049 if (len == 0)
6050 {
6051 EMSG(_("E175: No attribute specified"));
6052 return FAIL;
6053 }
6054
6055 /* First, try the simple attributes (no arguments) */
6056 if (STRNICMP(attr, "bang", len) == 0)
6057 *argt |= BANG;
6058 else if (STRNICMP(attr, "buffer", len) == 0)
6059 *flags |= UC_BUFFER;
6060 else if (STRNICMP(attr, "register", len) == 0)
6061 *argt |= REGSTR;
6062 else if (STRNICMP(attr, "bar", len) == 0)
6063 *argt |= TRLBAR;
6064 else
6065 {
6066 int i;
6067 char_u *val = NULL;
6068 size_t vallen = 0;
6069 size_t attrlen = len;
6070
6071 /* Look for the attribute name - which is the part before any '=' */
6072 for (i = 0; i < (int)len; ++i)
6073 {
6074 if (attr[i] == '=')
6075 {
6076 val = &attr[i + 1];
6077 vallen = len - i - 1;
6078 attrlen = i;
6079 break;
6080 }
6081 }
6082
6083 if (STRNICMP(attr, "nargs", attrlen) == 0)
6084 {
6085 if (vallen == 1)
6086 {
6087 if (*val == '0')
6088 /* Do nothing - this is the default */;
6089 else if (*val == '1')
6090 *argt |= (EXTRA | NOSPC | NEEDARG);
6091 else if (*val == '*')
6092 *argt |= EXTRA;
6093 else if (*val == '?')
6094 *argt |= (EXTRA | NOSPC);
6095 else if (*val == '+')
6096 *argt |= (EXTRA | NEEDARG);
6097 else
6098 goto wrong_nargs;
6099 }
6100 else
6101 {
6102wrong_nargs:
6103 EMSG(_("E176: Invalid number of arguments"));
6104 return FAIL;
6105 }
6106 }
6107 else if (STRNICMP(attr, "range", attrlen) == 0)
6108 {
6109 *argt |= RANGE;
6110 if (vallen == 1 && *val == '%')
6111 *argt |= DFLALL;
6112 else if (val != NULL)
6113 {
6114 p = val;
6115 if (*def >= 0)
6116 {
6117two_count:
6118 EMSG(_("E177: Count cannot be specified twice"));
6119 return FAIL;
6120 }
6121
6122 *def = getdigits(&p);
6123 *argt |= (ZEROR | NOTADR);
6124
6125 if (p != val + vallen || vallen == 0)
6126 {
6127invalid_count:
6128 EMSG(_("E178: Invalid default value for count"));
6129 return FAIL;
6130 }
6131 }
6132 }
6133 else if (STRNICMP(attr, "count", attrlen) == 0)
6134 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00006135 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136
6137 if (val != NULL)
6138 {
6139 p = val;
6140 if (*def >= 0)
6141 goto two_count;
6142
6143 *def = getdigits(&p);
6144
6145 if (p != val + vallen)
6146 goto invalid_count;
6147 }
6148
6149 if (*def < 0)
6150 *def = 0;
6151 }
6152 else if (STRNICMP(attr, "complete", attrlen) == 0)
6153 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154 if (val == NULL)
6155 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006156 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006157 return FAIL;
6158 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006160 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
6161 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006164 else if (STRNICMP(attr, "addr", attrlen) == 0)
6165 {
6166 *argt |= RANGE;
6167 if (val == NULL)
6168 {
6169 EMSG(_("E179: argument required for -addr"));
6170 return FAIL;
6171 }
6172 if (parse_addr_type_arg(val, (int)vallen, argt, addr_type_arg)
6173 == FAIL)
6174 return FAIL;
6175 if (addr_type_arg != ADDR_LINES)
6176 *argt |= (ZEROR | NOTADR) ;
6177 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 else
6179 {
6180 char_u ch = attr[len];
6181 attr[len] = '\0';
6182 EMSG2(_("E181: Invalid attribute: %s"), attr);
6183 attr[len] = ch;
6184 return FAIL;
6185 }
6186 }
6187
6188 return OK;
6189}
6190
Bram Moolenaara850a712009-01-28 14:42:59 +00006191/*
6192 * ":command ..."
6193 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 static void
6195ex_command(eap)
6196 exarg_T *eap;
6197{
6198 char_u *name;
6199 char_u *end;
6200 char_u *p;
6201 long argt = 0;
6202 long def = -1;
6203 int flags = 0;
6204 int compl = EXPAND_NOTHING;
6205 char_u *compl_arg = NULL;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006206 int addr_type_arg = ADDR_LINES;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006207 int has_attr = (eap->arg[0] == '-');
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006208 int name_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209
6210 p = eap->arg;
6211
6212 /* Check for attributes */
6213 while (*p == '-')
6214 {
6215 ++p;
6216 end = skiptowhite(p);
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006217 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg, &addr_type_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218 == FAIL)
6219 return;
6220 p = skipwhite(end);
6221 }
6222
6223 /* Get the name (if any) and skip to the following argument */
6224 name = p;
6225 if (ASCII_ISALPHA(*p))
6226 while (ASCII_ISALNUM(*p))
6227 ++p;
6228 if (!ends_excmd(*p) && !vim_iswhite(*p))
6229 {
6230 EMSG(_("E182: Invalid command name"));
6231 return;
6232 }
6233 end = p;
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006234 name_len = (int)(end - name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006235
6236 /* If there is nothing after the name, and no attributes were specified,
6237 * we are listing commands
6238 */
6239 p = skipwhite(end);
6240 if (!has_attr && ends_excmd(*p))
6241 {
6242 uc_list(name, end - name);
6243 }
6244 else if (!ASCII_ISUPPER(*name))
6245 {
6246 EMSG(_("E183: User defined commands must start with an uppercase letter"));
6247 return;
6248 }
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006249 else if ((name_len == 1 && *name == 'X')
6250 || (name_len <= 4
6251 && STRNCMP(name, "Next", name_len > 4 ? 4 : name_len) == 0))
6252 {
6253 EMSG(_("E841: Reserved name, cannot be used for user defined command"));
6254 return;
6255 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256 else
6257 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006258 addr_type_arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006259}
6260
6261/*
6262 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 * Clear all user commands, global and for current buffer.
6264 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00006265 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006266ex_comclear(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006267 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268{
6269 uc_clear(&ucmds);
6270 uc_clear(&curbuf->b_ucmds);
6271}
6272
6273/*
6274 * Clear all user commands for "gap".
6275 */
6276 void
6277uc_clear(gap)
6278 garray_T *gap;
6279{
6280 int i;
6281 ucmd_T *cmd;
6282
6283 for (i = 0; i < gap->ga_len; ++i)
6284 {
6285 cmd = USER_CMD_GA(gap, i);
6286 vim_free(cmd->uc_name);
6287 vim_free(cmd->uc_rep);
6288# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6289 vim_free(cmd->uc_compl_arg);
6290# endif
6291 }
6292 ga_clear(gap);
6293}
6294
6295 static void
6296ex_delcommand(eap)
6297 exarg_T *eap;
6298{
6299 int i = 0;
6300 ucmd_T *cmd = NULL;
6301 int cmp = -1;
6302 garray_T *gap;
6303
6304 gap = &curbuf->b_ucmds;
6305 for (;;)
6306 {
6307 for (i = 0; i < gap->ga_len; ++i)
6308 {
6309 cmd = USER_CMD_GA(gap, i);
6310 cmp = STRCMP(eap->arg, cmd->uc_name);
6311 if (cmp <= 0)
6312 break;
6313 }
6314 if (gap == &ucmds || cmp == 0)
6315 break;
6316 gap = &ucmds;
6317 }
6318
6319 if (cmp != 0)
6320 {
6321 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
6322 return;
6323 }
6324
6325 vim_free(cmd->uc_name);
6326 vim_free(cmd->uc_rep);
6327# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6328 vim_free(cmd->uc_compl_arg);
6329# endif
6330
6331 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332
6333 if (i < gap->ga_len)
6334 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
6335}
6336
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006337/*
6338 * split and quote args for <f-args>
6339 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 static char_u *
6341uc_split_args(arg, lenp)
6342 char_u *arg;
6343 size_t *lenp;
6344{
6345 char_u *buf;
6346 char_u *p;
6347 char_u *q;
6348 int len;
6349
6350 /* Precalculate length */
6351 p = arg;
6352 len = 2; /* Initial and final quotes */
6353
6354 while (*p)
6355 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006356 if (p[0] == '\\' && p[1] == '\\')
6357 {
6358 len += 2;
6359 p += 2;
6360 }
6361 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 {
6363 len += 1;
6364 p += 2;
6365 }
6366 else if (*p == '\\' || *p == '"')
6367 {
6368 len += 2;
6369 p += 1;
6370 }
6371 else if (vim_iswhite(*p))
6372 {
6373 p = skipwhite(p);
6374 if (*p == NUL)
6375 break;
6376 len += 3; /* "," */
6377 }
6378 else
6379 {
Bram Moolenaardfef1542012-07-10 19:25:10 +02006380#ifdef FEAT_MBYTE
6381 int charlen = (*mb_ptr2len)(p);
6382 len += charlen;
6383 p += charlen;
6384#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 ++len;
6386 ++p;
Bram Moolenaardfef1542012-07-10 19:25:10 +02006387#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006388 }
6389 }
6390
6391 buf = alloc(len + 1);
6392 if (buf == NULL)
6393 {
6394 *lenp = 0;
6395 return buf;
6396 }
6397
6398 p = arg;
6399 q = buf;
6400 *q++ = '"';
6401 while (*p)
6402 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006403 if (p[0] == '\\' && p[1] == '\\')
6404 {
6405 *q++ = '\\';
6406 *q++ = '\\';
6407 p += 2;
6408 }
6409 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410 {
6411 *q++ = p[1];
6412 p += 2;
6413 }
6414 else if (*p == '\\' || *p == '"')
6415 {
6416 *q++ = '\\';
6417 *q++ = *p++;
6418 }
6419 else if (vim_iswhite(*p))
6420 {
6421 p = skipwhite(p);
6422 if (*p == NUL)
6423 break;
6424 *q++ = '"';
6425 *q++ = ',';
6426 *q++ = '"';
6427 }
6428 else
6429 {
Bram Moolenaardfef1542012-07-10 19:25:10 +02006430 MB_COPY_CHAR(p, q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 }
6432 }
6433 *q++ = '"';
6434 *q = 0;
6435
6436 *lenp = len;
6437 return buf;
6438}
6439
6440/*
6441 * Check for a <> code in a user command.
6442 * "code" points to the '<'. "len" the length of the <> (inclusive).
6443 * "buf" is where the result is to be added.
6444 * "split_buf" points to a buffer used for splitting, caller should free it.
6445 * "split_len" is the length of what "split_buf" contains.
6446 * Returns the length of the replacement, which has been added to "buf".
6447 * Returns -1 if there was no match, and only the "<" has been copied.
6448 */
6449 static size_t
6450uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
6451 char_u *code;
6452 size_t len;
6453 char_u *buf;
6454 ucmd_T *cmd; /* the user command we're expanding */
6455 exarg_T *eap; /* ex arguments */
6456 char_u **split_buf;
6457 size_t *split_len;
6458{
6459 size_t result = 0;
6460 char_u *p = code + 1;
6461 size_t l = len - 2;
6462 int quote = 0;
6463 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
6464 ct_LT, ct_NONE } type = ct_NONE;
6465
6466 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
6467 {
6468 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
6469 p += 2;
6470 l -= 2;
6471 }
6472
Bram Moolenaar371d5402006-03-20 21:47:49 +00006473 ++l;
6474 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006476 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006477 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006478 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006479 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006480 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006482 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006484 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006485 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006486 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006488 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 type = ct_REGISTER;
6490
6491 switch (type)
6492 {
6493 case ct_ARGS:
6494 /* Simple case first */
6495 if (*eap->arg == NUL)
6496 {
6497 if (quote == 1)
6498 {
6499 result = 2;
6500 if (buf != NULL)
6501 STRCPY(buf, "''");
6502 }
6503 else
6504 result = 0;
6505 break;
6506 }
6507
6508 /* When specified there is a single argument don't split it.
6509 * Works for ":Cmd %" when % is "a b c". */
6510 if ((eap->argt & NOSPC) && quote == 2)
6511 quote = 1;
6512
6513 switch (quote)
6514 {
6515 case 0: /* No quoting, no splitting */
6516 result = STRLEN(eap->arg);
6517 if (buf != NULL)
6518 STRCPY(buf, eap->arg);
6519 break;
6520 case 1: /* Quote, but don't split */
6521 result = STRLEN(eap->arg) + 2;
6522 for (p = eap->arg; *p; ++p)
6523 {
Bram Moolenaar7d550fb2012-01-26 20:41:26 +01006524#ifdef FEAT_MBYTE
6525 if (enc_dbcs != 0 && (*mb_ptr2len)(p) == 2)
6526 /* DBCS can contain \ in a trail byte, skip the
6527 * double-byte character. */
6528 ++p;
6529 else
6530#endif
6531 if (*p == '\\' || *p == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 ++result;
6533 }
6534
6535 if (buf != NULL)
6536 {
6537 *buf++ = '"';
6538 for (p = eap->arg; *p; ++p)
6539 {
Bram Moolenaar7d550fb2012-01-26 20:41:26 +01006540#ifdef FEAT_MBYTE
6541 if (enc_dbcs != 0 && (*mb_ptr2len)(p) == 2)
6542 /* DBCS can contain \ in a trail byte, copy the
6543 * double-byte character to avoid escaping. */
6544 *buf++ = *p++;
6545 else
6546#endif
6547 if (*p == '\\' || *p == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548 *buf++ = '\\';
6549 *buf++ = *p;
6550 }
6551 *buf = '"';
6552 }
6553
6554 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006555 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 /* This is hard, so only do it once, and cache the result */
6557 if (*split_buf == NULL)
6558 *split_buf = uc_split_args(eap->arg, split_len);
6559
6560 result = *split_len;
6561 if (buf != NULL && result != 0)
6562 STRCPY(buf, *split_buf);
6563
6564 break;
6565 }
6566 break;
6567
6568 case ct_BANG:
6569 result = eap->forceit ? 1 : 0;
6570 if (quote)
6571 result += 2;
6572 if (buf != NULL)
6573 {
6574 if (quote)
6575 *buf++ = '"';
6576 if (eap->forceit)
6577 *buf++ = '!';
6578 if (quote)
6579 *buf = '"';
6580 }
6581 break;
6582
6583 case ct_LINE1:
6584 case ct_LINE2:
6585 case ct_COUNT:
6586 {
6587 char num_buf[20];
6588 long num = (type == ct_LINE1) ? eap->line1 :
6589 (type == ct_LINE2) ? eap->line2 :
6590 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
6591 size_t num_len;
6592
6593 sprintf(num_buf, "%ld", num);
6594 num_len = STRLEN(num_buf);
6595 result = num_len;
6596
6597 if (quote)
6598 result += 2;
6599
6600 if (buf != NULL)
6601 {
6602 if (quote)
6603 *buf++ = '"';
6604 STRCPY(buf, num_buf);
6605 buf += num_len;
6606 if (quote)
6607 *buf = '"';
6608 }
6609
6610 break;
6611 }
6612
6613 case ct_REGISTER:
6614 result = eap->regname ? 1 : 0;
6615 if (quote)
6616 result += 2;
6617 if (buf != NULL)
6618 {
6619 if (quote)
6620 *buf++ = '\'';
6621 if (eap->regname)
6622 *buf++ = eap->regname;
6623 if (quote)
6624 *buf = '\'';
6625 }
6626 break;
6627
6628 case ct_LT:
6629 result = 1;
6630 if (buf != NULL)
6631 *buf = '<';
6632 break;
6633
6634 default:
6635 /* Not recognized: just copy the '<' and return -1. */
6636 result = (size_t)-1;
6637 if (buf != NULL)
6638 *buf = '<';
6639 break;
6640 }
6641
6642 return result;
6643}
6644
6645 static void
6646do_ucmd(eap)
6647 exarg_T *eap;
6648{
6649 char_u *buf;
6650 char_u *p;
6651 char_u *q;
6652
6653 char_u *start;
Bram Moolenaar25648a52009-02-21 19:37:46 +00006654 char_u *end = NULL;
Bram Moolenaara850a712009-01-28 14:42:59 +00006655 char_u *ksp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656 size_t len, totlen;
6657
6658 size_t split_len = 0;
6659 char_u *split_buf = NULL;
6660 ucmd_T *cmd;
6661#ifdef FEAT_EVAL
6662 scid_T save_current_SID = current_SID;
6663#endif
6664
6665 if (eap->cmdidx == CMD_USER)
6666 cmd = USER_CMD(eap->useridx);
6667 else
6668 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
6669
6670 /*
6671 * Replace <> in the command by the arguments.
Bram Moolenaara850a712009-01-28 14:42:59 +00006672 * First round: "buf" is NULL, compute length, allocate "buf".
6673 * Second round: copy result into "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006674 */
6675 buf = NULL;
6676 for (;;)
6677 {
Bram Moolenaara850a712009-01-28 14:42:59 +00006678 p = cmd->uc_rep; /* source */
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00006679 q = buf; /* destination */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006680 totlen = 0;
Bram Moolenaara850a712009-01-28 14:42:59 +00006681
6682 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006683 {
Bram Moolenaara850a712009-01-28 14:42:59 +00006684 start = vim_strchr(p, '<');
6685 if (start != NULL)
6686 end = vim_strchr(start + 1, '>');
6687 if (buf != NULL)
6688 {
Bram Moolenaarf63c49d2011-03-03 15:54:50 +01006689 for (ksp = p; *ksp != NUL && *ksp != K_SPECIAL; ++ksp)
6690 ;
6691 if (*ksp == K_SPECIAL
6692 && (start == NULL || ksp < start || end == NULL)
Bram Moolenaara850a712009-01-28 14:42:59 +00006693 && ((ksp[1] == KS_SPECIAL && ksp[2] == KE_FILLER)
6694# ifdef FEAT_GUI
6695 || (ksp[1] == KS_EXTRA && ksp[2] == (int)KE_CSI)
6696# endif
6697 ))
6698 {
Bram Moolenaarf63c49d2011-03-03 15:54:50 +01006699 /* K_SPECIAL has been put in the buffer as K_SPECIAL
Bram Moolenaara850a712009-01-28 14:42:59 +00006700 * KS_SPECIAL KE_FILLER, like for mappings, but
6701 * do_cmdline() doesn't handle that, so convert it back.
6702 * Also change K_SPECIAL KS_EXTRA KE_CSI into CSI. */
6703 len = ksp - p;
6704 if (len > 0)
6705 {
6706 mch_memmove(q, p, len);
6707 q += len;
6708 }
6709 *q++ = ksp[1] == KS_SPECIAL ? K_SPECIAL : CSI;
6710 p = ksp + 3;
6711 continue;
6712 }
6713 }
6714
6715 /* break if there no <item> is found */
6716 if (start == NULL || end == NULL)
6717 break;
6718
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719 /* Include the '>' */
6720 ++end;
6721
6722 /* Take everything up to the '<' */
6723 len = start - p;
6724 if (buf == NULL)
6725 totlen += len;
6726 else
6727 {
6728 mch_memmove(q, p, len);
6729 q += len;
6730 }
6731
6732 len = uc_check_code(start, end - start, q, cmd, eap,
6733 &split_buf, &split_len);
6734 if (len == (size_t)-1)
6735 {
6736 /* no match, continue after '<' */
6737 p = start + 1;
6738 len = 1;
6739 }
6740 else
6741 p = end;
6742 if (buf == NULL)
6743 totlen += len;
6744 else
6745 q += len;
6746 }
6747 if (buf != NULL) /* second time here, finished */
6748 {
6749 STRCPY(q, p);
6750 break;
6751 }
6752
6753 totlen += STRLEN(p); /* Add on the trailing characters */
6754 buf = alloc((unsigned)(totlen + 1));
6755 if (buf == NULL)
6756 {
6757 vim_free(split_buf);
6758 return;
6759 }
6760 }
6761
6762#ifdef FEAT_EVAL
6763 current_SID = cmd->uc_scriptID;
6764#endif
6765 (void)do_cmdline(buf, eap->getline, eap->cookie,
6766 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
6767#ifdef FEAT_EVAL
6768 current_SID = save_current_SID;
6769#endif
6770 vim_free(buf);
6771 vim_free(split_buf);
6772}
6773
6774# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6775 static char_u *
6776get_user_command_name(idx)
6777 int idx;
6778{
6779 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6780}
6781
6782/*
6783 * Function given to ExpandGeneric() to obtain the list of user command names.
6784 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785 char_u *
6786get_user_commands(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006787 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788 int idx;
6789{
6790 if (idx < curbuf->b_ucmds.ga_len)
6791 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6792 idx -= curbuf->b_ucmds.ga_len;
6793 if (idx < ucmds.ga_len)
6794 return USER_CMD(idx)->uc_name;
6795 return NULL;
6796}
6797
6798/*
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006799 * Function given to ExpandGeneric() to obtain the list of user address type names.
6800 */
6801 char_u *
6802get_user_cmd_addr_type(xp, idx)
6803 expand_T *xp UNUSED;
6804 int idx;
6805{
6806 return (char_u *)addr_type_complete[idx].name;
6807}
6808
6809/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006810 * Function given to ExpandGeneric() to obtain the list of user command
6811 * attributes.
6812 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813 char_u *
6814get_user_cmd_flags(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006815 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006816 int idx;
6817{
6818 static char *user_cmd_flags[] =
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006819 {"addr", "bang", "bar", "buffer", "complete",
6820 "count", "nargs", "range", "register"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00006822 if (idx >= (int)(sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006823 return NULL;
6824 return (char_u *)user_cmd_flags[idx];
6825}
6826
6827/*
6828 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6829 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006830 char_u *
6831get_user_cmd_nargs(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006832 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833 int idx;
6834{
6835 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6836
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00006837 if (idx >= (int)(sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 return NULL;
6839 return (char_u *)user_cmd_nargs[idx];
6840}
6841
6842/*
6843 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6844 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845 char_u *
6846get_user_cmd_complete(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006847 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848 int idx;
6849{
6850 return (char_u *)command_complete[idx].name;
6851}
6852# endif /* FEAT_CMDL_COMPL */
6853
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006854/*
6855 * Parse address type argument
6856 */
6857 int
6858parse_addr_type_arg(value, vallen, argt, addr_type_arg)
6859 char_u *value;
6860 int vallen;
6861 long *argt;
6862 int *addr_type_arg;
6863{
6864 int i, a, b;
6865 for (i = 0; addr_type_complete[i].expand != -1; ++i)
6866 {
6867 a = (int)STRLEN(addr_type_complete[i].name) == vallen;
6868 b = STRNCMP(value, addr_type_complete[i].name, vallen) == 0;
6869 if (a && b)
6870 {
6871 *addr_type_arg = addr_type_complete[i].expand;
6872 break;
6873 }
6874 }
6875
6876 if (addr_type_complete[i].expand == -1)
6877 {
6878 char_u *err = value;
6879 for (i=0; err[i] == NUL || !vim_iswhite(err[i]); i++);
6880 err[i] = NUL;
6881 EMSG2(_("E180: Invalid address type value: %s"), err);
6882 return FAIL;
6883 }
6884
6885 if (*addr_type_arg != ADDR_LINES)
6886 *argt |= NOTADR;
6887
6888 return OK;
6889}
6890
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891#endif /* FEAT_USR_CMDS */
6892
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006893#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6894/*
6895 * Parse a completion argument "value[vallen]".
6896 * The detected completion goes in "*complp", argument type in "*argt".
6897 * When there is an argument, for function and user defined completion, it's
6898 * copied to allocated memory and stored in "*compl_arg".
6899 * Returns FAIL if something is wrong.
6900 */
6901 int
6902parse_compl_arg(value, vallen, complp, argt, compl_arg)
6903 char_u *value;
6904 int vallen;
6905 int *complp;
6906 long *argt;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006907 char_u **compl_arg UNUSED;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006908{
6909 char_u *arg = NULL;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006910# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006911 size_t arglen = 0;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006912# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006913 int i;
6914 int valend = vallen;
6915
6916 /* Look for any argument part - which is the part after any ',' */
6917 for (i = 0; i < vallen; ++i)
6918 {
6919 if (value[i] == ',')
6920 {
6921 arg = &value[i + 1];
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006922# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006923 arglen = vallen - i - 1;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006924# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006925 valend = i;
6926 break;
6927 }
6928 }
6929
6930 for (i = 0; command_complete[i].expand != 0; ++i)
6931 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006932 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006933 && STRNCMP(value, command_complete[i].name, valend) == 0)
6934 {
6935 *complp = command_complete[i].expand;
6936 if (command_complete[i].expand == EXPAND_BUFFERS)
6937 *argt |= BUFNAME;
6938 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6939 || command_complete[i].expand == EXPAND_FILES)
6940 *argt |= XFILE;
6941 break;
6942 }
6943 }
6944
6945 if (command_complete[i].expand == 0)
6946 {
6947 EMSG2(_("E180: Invalid complete value: %s"), value);
6948 return FAIL;
6949 }
6950
6951# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6952 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6953 && arg != NULL)
6954# else
6955 if (arg != NULL)
6956# endif
6957 {
6958 EMSG(_("E468: Completion argument only allowed for custom completion"));
6959 return FAIL;
6960 }
6961
6962# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6963 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6964 && arg == NULL)
6965 {
6966 EMSG(_("E467: Custom completion requires a function argument"));
6967 return FAIL;
6968 }
6969
6970 if (arg != NULL)
6971 *compl_arg = vim_strnsave(arg, (int)arglen);
6972# endif
6973 return OK;
6974}
6975#endif
6976
Bram Moolenaar071d4272004-06-13 20:20:40 +00006977 static void
6978ex_colorscheme(eap)
6979 exarg_T *eap;
6980{
Bram Moolenaare6850792010-05-14 15:28:44 +02006981 if (*eap->arg == NUL)
6982 {
6983#ifdef FEAT_EVAL
6984 char_u *expr = vim_strsave((char_u *)"g:colors_name");
6985 char_u *p = NULL;
6986
6987 if (expr != NULL)
6988 {
6989 ++emsg_off;
6990 p = eval_to_string(expr, NULL, FALSE);
6991 --emsg_off;
6992 vim_free(expr);
6993 }
6994 if (p != NULL)
6995 {
6996 MSG(p);
6997 vim_free(p);
6998 }
6999 else
7000 MSG("default");
7001#else
7002 MSG(_("unknown"));
7003#endif
7004 }
7005 else if (load_colors(eap->arg) == FAIL)
Bram Moolenaarbe1e9e92012-09-18 16:47:07 +02007006 EMSG2(_("E185: Cannot find color scheme '%s'"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007}
7008
7009 static void
7010ex_highlight(eap)
7011 exarg_T *eap;
7012{
7013 if (*eap->arg == NUL && eap->cmd[2] == '!')
7014 MSG(_("Greetings, Vim user!"));
7015 do_highlight(eap->arg, eap->forceit, FALSE);
7016}
7017
7018
7019/*
7020 * Call this function if we thought we were going to exit, but we won't
7021 * (because of an error). May need to restore the terminal mode.
7022 */
7023 void
7024not_exiting()
7025{
7026 exiting = FALSE;
7027 settmode(TMODE_RAW);
7028}
7029
7030/*
Bram Moolenaarf240e182014-11-27 18:33:02 +01007031 * ":quit": quit current window, quit Vim if the last window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032 */
7033 static void
7034ex_quit(eap)
7035 exarg_T *eap;
7036{
Bram Moolenaarf240e182014-11-27 18:33:02 +01007037#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007038 win_T *wp;
Bram Moolenaarf240e182014-11-27 18:33:02 +01007039#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007040
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041#ifdef FEAT_CMDWIN
7042 if (cmdwin_type != 0)
7043 {
7044 cmdwin_result = Ctrl_C;
7045 return;
7046 }
7047#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007048 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007049 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007050 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007051 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007052 return;
7053 }
Bram Moolenaarf240e182014-11-27 18:33:02 +01007054#ifdef FEAT_WINDOWS
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007055 if (eap->addr_count > 0)
7056 {
Bram Moolenaarf240e182014-11-27 18:33:02 +01007057 int wnr = eap->line2;
7058
7059 for (wp = firstwin; wp->w_next != NULL; wp = wp->w_next)
7060 if (--wnr <= 0)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007061 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007062 }
7063 else
Bram Moolenaarf240e182014-11-27 18:33:02 +01007064#endif
7065#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007066 wp = curwin;
Bram Moolenaarf240e182014-11-27 18:33:02 +01007067#endif
7068
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007069#ifdef FEAT_AUTOCMD
Bram Moolenaar3b53dfb2012-06-06 18:03:07 +02007070 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007071 /* Refuse to quit when locked or when the buffer in the last window is
Bram Moolenaar362ce482012-06-06 19:02:45 +02007072 * being closed (can only happen in autocommands). */
Bram Moolenaarf240e182014-11-27 18:33:02 +01007073 if (curbuf_locked() || (wp->w_buffer->b_nwindows == 1
7074 && wp->w_buffer->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007075 return;
7076#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077
7078#ifdef FEAT_NETBEANS_INTG
7079 netbeansForcedQuit = eap->forceit;
7080#endif
7081
7082 /*
7083 * If there are more files or windows we won't exit.
7084 */
7085 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
7086 exiting = TRUE;
7087 if ((!P_HID(curbuf)
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007088 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
7089 | (eap->forceit ? CCGD_FORCEIT : 0)
7090 | CCGD_EXCMD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 || check_more(TRUE, eap->forceit) == FAIL
7092 || (only_one_window() && check_changed_any(eap->forceit)))
7093 {
7094 not_exiting();
7095 }
7096 else
7097 {
7098#ifdef FEAT_WINDOWS
Bram Moolenaarc7a0d322015-06-19 12:43:07 +02007099 /* quit last window
7100 * Note: only_one_window() returns true, even so a help window is
7101 * still open. In that case only quit, if no address has been
7102 * specified. Example:
7103 * :h|wincmd w|1q - don't quit
7104 * :h|wincmd w|q - quit
7105 */
7106 if (only_one_window() && (firstwin == lastwin || eap->addr_count == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007107#endif
7108 getout(0);
7109#ifdef FEAT_WINDOWS
7110# ifdef FEAT_GUI
7111 need_mouse_correct = TRUE;
7112# endif
7113 /* close window; may free buffer */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007114 win_close(wp, !P_HID(wp->w_buffer) || eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115#endif
7116 }
7117}
7118
7119/*
7120 * ":cquit".
7121 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007122 static void
7123ex_cquit(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007124 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007125{
7126 getout(1); /* this does not always pass on the exit code to the Manx
7127 compiler. why? */
7128}
7129
7130/*
7131 * ":qall": try to quit all windows
7132 */
7133 static void
7134ex_quit_all(eap)
7135 exarg_T *eap;
7136{
7137# ifdef FEAT_CMDWIN
7138 if (cmdwin_type != 0)
7139 {
7140 if (eap->forceit)
7141 cmdwin_result = K_XF1; /* ex_window() takes care of this */
7142 else
7143 cmdwin_result = K_XF2;
7144 return;
7145 }
7146# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007147
7148 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007149 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007150 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007151 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007152 return;
7153 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007154#ifdef FEAT_AUTOCMD
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007155 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
7156 /* Refuse to quit when locked or when the buffer in the last window is
7157 * being closed (can only happen in autocommands). */
7158 if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007159 return;
7160#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007161
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162 exiting = TRUE;
7163 if (eap->forceit || !check_changed_any(FALSE))
7164 getout(0);
7165 not_exiting();
7166}
7167
Bram Moolenaard9967712006-03-11 21:18:15 +00007168#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169/*
7170 * ":close": close current window, unless it is the last one
7171 */
7172 static void
7173ex_close(eap)
7174 exarg_T *eap;
7175{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007176 win_T *win;
7177 int winnr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178# ifdef FEAT_CMDWIN
7179 if (cmdwin_type != 0)
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02007180 cmdwin_result = Ctrl_C;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 else
7182# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007183 if (!text_locked()
7184#ifdef FEAT_AUTOCMD
7185 && !curbuf_locked()
7186#endif
7187 )
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007188 {
7189 if (eap->addr_count == 0)
7190 ex_win_close(eap->forceit, curwin, NULL);
7191 else {
7192 for (win = firstwin; win != NULL; win = win->w_next)
7193 {
7194 winnr++;
7195 if (winnr == eap->line2)
7196 break;
7197 }
7198 if (win == NULL)
7199 win = lastwin;
7200 ex_win_close(eap->forceit, win, NULL);
7201 }
7202 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203}
7204
Bram Moolenaard9967712006-03-11 21:18:15 +00007205# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007206/*
7207 * ":pclose": Close any preview window.
7208 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007210ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007212{
7213 win_T *win;
7214
7215 for (win = firstwin; win != NULL; win = win->w_next)
7216 if (win->w_p_pvw)
7217 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007218 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007219 break;
7220 }
7221}
Bram Moolenaard9967712006-03-11 21:18:15 +00007222# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007223
Bram Moolenaarf740b292006-02-16 22:11:02 +00007224/*
7225 * Close window "win" and take care of handling closing the last window for a
7226 * modified buffer.
7227 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007228 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00007229ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007230 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007231 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007232 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007233{
7234 int need_hide;
7235 buf_T *buf = win->w_buffer;
7236
7237 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007238 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239 {
Bram Moolenaard9967712006-03-11 21:18:15 +00007240# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007241 if ((p_confirm || cmdmod.confirm) && p_write)
7242 {
7243 dialog_changed(buf, FALSE);
7244 if (buf_valid(buf) && bufIsChanged(buf))
7245 return;
7246 need_hide = FALSE;
7247 }
7248 else
Bram Moolenaard9967712006-03-11 21:18:15 +00007249# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 {
7251 EMSG(_(e_nowrtmsg));
7252 return;
7253 }
7254 }
7255
Bram Moolenaard9967712006-03-11 21:18:15 +00007256# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007257 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00007258# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00007259
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00007261 if (tp == NULL)
7262 win_close(win, !need_hide && !P_HID(buf));
7263 else
7264 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265}
7266
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00007268 * ":tabclose": close current tab page, unless it is the last one.
7269 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007270 */
7271 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007272ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007273 exarg_T *eap;
7274{
Bram Moolenaarf740b292006-02-16 22:11:02 +00007275 tabpage_T *tp;
7276
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007277# ifdef FEAT_CMDWIN
7278 if (cmdwin_type != 0)
7279 cmdwin_result = K_IGNORE;
7280 else
7281# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00007282 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007283 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00007284 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007286 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007287 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007288 tp = find_tabpage((int)eap->line2);
7289 if (tp == NULL)
7290 {
7291 beep_flush();
7292 return;
7293 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007294 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00007295 {
7296 tabpage_close_other(tp, eap->forceit);
7297 return;
7298 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007299 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007300 if (!text_locked()
7301#ifdef FEAT_AUTOCMD
7302 && !curbuf_locked()
7303#endif
7304 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00007305 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007307}
7308
7309/*
7310 * ":tabonly": close all tab pages except the current one
7311 */
7312 static void
7313ex_tabonly(eap)
7314 exarg_T *eap;
7315{
7316 tabpage_T *tp;
7317 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007318
7319# ifdef FEAT_CMDWIN
7320 if (cmdwin_type != 0)
7321 cmdwin_result = K_IGNORE;
7322 else
7323# endif
7324 if (first_tabpage->tp_next == NULL)
7325 MSG(_("Already only one tab page"));
7326 else
7327 {
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007328 if (eap->addr_count > 0)
7329 goto_tabpage(eap->line2);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007330 /* Repeat this up to a 1000 times, because autocommands may mess
7331 * up the lists. */
7332 for (done = 0; done < 1000; ++done)
7333 {
7334 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7335 if (tp->tp_topframe != topframe)
7336 {
7337 tabpage_close_other(tp, eap->forceit);
7338 /* if we failed to close it quit */
7339 if (valid_tabpage(tp))
7340 done = 1000;
7341 /* start over, "tp" is now invalid */
7342 break;
7343 }
7344 if (first_tabpage->tp_next == NULL)
7345 break;
7346 }
7347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007349
7350/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00007351 * Close the current tab page.
7352 */
7353 void
7354tabpage_close(forceit)
7355 int forceit;
7356{
7357 /* First close all the windows but the current one. If that worked then
7358 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007359 if (lastwin != firstwin)
7360 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007361 if (lastwin == firstwin)
7362 ex_win_close(forceit, curwin, NULL);
7363# ifdef FEAT_GUI
7364 need_mouse_correct = TRUE;
7365# endif
7366}
7367
7368/*
7369 * Close tab page "tp", which is not the current tab page.
7370 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007371 * Also takes care of the tab pages line disappearing when closing the
7372 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00007373 */
7374 void
7375tabpage_close_other(tp, forceit)
7376 tabpage_T *tp;
7377 int forceit;
7378{
7379 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007380 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007381 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00007382
7383 /* Limit to 1000 windows, autocommands may add a window while we close
7384 * one. OK, so I'm paranoid... */
7385 while (++done < 1000)
7386 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007387 wp = tp->tp_firstwin;
7388 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007389
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007390 /* Autocommands may delete the tab page under our fingers and we may
7391 * fail to close a window with a modified buffer. */
7392 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00007393 break;
7394 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007395
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007396 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007397 if (h != tabline_height())
7398 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00007399}
7400
7401/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402 * ":only".
7403 */
7404 static void
7405ex_only(eap)
7406 exarg_T *eap;
7407{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007408 win_T *wp;
7409 int wnr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007410# ifdef FEAT_GUI
7411 need_mouse_correct = TRUE;
7412# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007413 if (eap->addr_count > 0)
7414 {
7415 wnr = eap->line2;
7416 for (wp = firstwin; --wnr > 0; )
7417 {
7418 if (wp->w_next == NULL)
7419 break;
7420 else
7421 wp = wp->w_next;
7422 }
7423 win_goto(wp);
7424 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425 close_others(TRUE, eap->forceit);
7426}
7427
7428/*
7429 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00007430 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007431 */
Bram Moolenaard9967712006-03-11 21:18:15 +00007432 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007433ex_all(eap)
7434 exarg_T *eap;
7435{
7436 if (eap->addr_count == 0)
7437 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00007438 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007439}
7440#endif /* FEAT_WINDOWS */
7441
7442 static void
7443ex_hide(eap)
7444 exarg_T *eap;
7445{
7446 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
7447 eap->errmsg = e_invarg;
7448 else
7449 {
7450 /* ":hide" or ":hide | cmd": hide current window */
7451 eap->nextcmd = check_nextcmd(eap->arg);
7452#ifdef FEAT_WINDOWS
7453 if (!eap->skip)
7454 {
7455# ifdef FEAT_GUI
7456 need_mouse_correct = TRUE;
7457# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007458 if (eap->addr_count == 0)
7459 win_close(curwin, FALSE); /* don't free buffer */
Bram Moolenaarf240e182014-11-27 18:33:02 +01007460 else
7461 {
7462 int winnr = 0;
7463 win_T *win;
7464
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007465 for (win = firstwin; win != NULL; win = win->w_next)
7466 {
7467 winnr++;
7468 if (winnr == eap->line2)
7469 break;
7470 }
7471 if (win == NULL)
7472 win = lastwin;
7473 win_close(win, FALSE);
7474 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007475 }
7476#endif
7477 }
7478}
7479
7480/*
7481 * ":stop" and ":suspend": Suspend Vim.
7482 */
7483 static void
7484ex_stop(eap)
7485 exarg_T *eap;
7486{
7487 /*
7488 * Disallow suspending for "rvim".
7489 */
7490 if (!check_restricted()
7491#ifdef WIN3264
7492 /*
7493 * Check if external commands are allowed now.
7494 */
7495 && can_end_termcap_mode(TRUE)
7496#endif
7497 )
7498 {
7499 if (!eap->forceit)
7500 autowrite_all();
7501 windgoto((int)Rows - 1, 0);
7502 out_char('\n');
7503 out_flush();
7504 stoptermcap();
7505 out_flush(); /* needed for SUN to restore xterm buffer */
7506#ifdef FEAT_TITLE
7507 mch_restore_title(3); /* restore window titles */
7508#endif
7509 ui_suspend(); /* call machine specific function */
7510#ifdef FEAT_TITLE
7511 maketitle();
7512 resettitle(); /* force updating the title */
7513#endif
7514 starttermcap();
7515 scroll_start(); /* scroll screen before redrawing */
7516 redraw_later_clear();
7517 shell_resized(); /* may have resized window */
7518 }
7519}
7520
7521/*
7522 * ":exit", ":xit" and ":wq": Write file and exit Vim.
7523 */
7524 static void
7525ex_exit(eap)
7526 exarg_T *eap;
7527{
7528#ifdef FEAT_CMDWIN
7529 if (cmdwin_type != 0)
7530 {
7531 cmdwin_result = Ctrl_C;
7532 return;
7533 }
7534#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007535 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007536 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007537 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007538 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007539 return;
7540 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007541#ifdef FEAT_AUTOCMD
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007542 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
7543 /* Refuse to quit when locked or when the buffer in the last window is
7544 * being closed (can only happen in autocommands). */
7545 if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007546 return;
7547#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007548
7549 /*
7550 * if more files or windows we won't exit
7551 */
7552 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
7553 exiting = TRUE;
7554 if ( ((eap->cmdidx == CMD_wq
7555 || curbufIsChanged())
7556 && do_write(eap) == FAIL)
7557 || check_more(TRUE, eap->forceit) == FAIL
7558 || (only_one_window() && check_changed_any(eap->forceit)))
7559 {
7560 not_exiting();
7561 }
7562 else
7563 {
7564#ifdef FEAT_WINDOWS
7565 if (only_one_window()) /* quit last window, exit Vim */
7566#endif
7567 getout(0);
7568#ifdef FEAT_WINDOWS
7569# ifdef FEAT_GUI
7570 need_mouse_correct = TRUE;
7571# endif
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02007572 /* Quit current window, may free the buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007573 win_close(curwin, !P_HID(curwin->w_buffer));
7574#endif
7575 }
7576}
7577
7578/*
7579 * ":print", ":list", ":number".
7580 */
7581 static void
7582ex_print(eap)
7583 exarg_T *eap;
7584{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007585 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7586 EMSG(_(e_emptybuf));
7587 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007588 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007589 for ( ;!got_int; ui_breakcheck())
7590 {
7591 print_line(eap->line1,
7592 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
7593 || (eap->flags & EXFLAG_NR)),
7594 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
7595 if (++eap->line1 > eap->line2)
7596 break;
7597 out_flush(); /* show one line at a time */
7598 }
7599 setpcmark();
7600 /* put cursor at last line */
7601 curwin->w_cursor.lnum = eap->line2;
7602 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007603 }
7604
Bram Moolenaar071d4272004-06-13 20:20:40 +00007605 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007606}
7607
7608#ifdef FEAT_BYTEOFF
7609 static void
7610ex_goto(eap)
7611 exarg_T *eap;
7612{
7613 goto_byte(eap->line2);
7614}
7615#endif
7616
7617/*
7618 * ":shell".
7619 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007620 static void
7621ex_shell(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007622 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007623{
7624 do_shell(NULL, 0);
7625}
7626
7627#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
7628 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00007629 || defined(FEAT_GUI_MSWIN) \
7630 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00007631 || defined(PROTO)
7632
7633/*
7634 * Handle a file drop. The code is here because a drop is *nearly* like an
7635 * :args command, but not quite (we have a list of exact filenames, so we
7636 * don't want to (a) parse a command line, or (b) expand wildcards. So the
7637 * code is very similar to :args and hence needs access to a lot of the static
7638 * functions in this file.
7639 *
7640 * The list should be allocated using alloc(), as should each item in the
7641 * list. This function takes over responsibility for freeing the list.
7642 *
Bram Moolenaar81870892007-11-11 18:17:28 +00007643 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00007644 * FreeWild(), which does a series of vim_free() calls, unless the two defines
7645 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
7646 * routine _fnexplodefree() is used. This may cause problems, but as the drop
7647 * file functionality is (currently) not in EMX this is not presently a
7648 * problem.
7649 */
7650 void
7651handle_drop(filec, filev, split)
7652 int filec; /* the number of files dropped */
7653 char_u **filev; /* the list of files dropped */
7654 int split; /* force splitting the window */
7655{
7656 exarg_T ea;
7657 int save_msg_scroll = msg_scroll;
7658
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007659 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007660 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007661 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007662#ifdef FEAT_AUTOCMD
7663 if (curbuf_locked())
7664 return;
7665#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00007666 /* When the screen is being updated we should not change buffers and
7667 * windows structures, it may cause freed memory to be used. */
7668 if (updating_screen)
7669 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007670
7671 /* Check whether the current buffer is changed. If so, we will need
7672 * to split the current window or data could be lost.
7673 * We don't need to check if the 'hidden' option is set, as in this
7674 * case the buffer won't be lost.
7675 */
7676 if (!P_HID(curbuf) && !split)
7677 {
7678 ++emsg_off;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007679 split = check_changed(curbuf, CCGD_AW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007680 --emsg_off;
7681 }
7682 if (split)
7683 {
7684# ifdef FEAT_WINDOWS
7685 if (win_split(0, 0) == FAIL)
7686 return;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02007687 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007688
7689 /* When splitting the window, create a new alist. Otherwise the
7690 * existing one is overwritten. */
7691 alist_unlink(curwin->w_alist);
7692 alist_new();
7693# else
7694 return; /* can't split, always fail */
7695# endif
7696 }
7697
7698 /*
7699 * Set up the new argument list.
7700 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00007701 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007702
7703 /*
7704 * Move to the first file.
7705 */
7706 /* Fake up a minimal "next" command for do_argfile() */
7707 vim_memset(&ea, 0, sizeof(ea));
7708 ea.cmd = (char_u *)"next";
7709 do_argfile(&ea, 0);
7710
7711 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
7712 * mode that is not needed here. */
7713 need_start_insertmode = FALSE;
7714
7715 /* Restore msg_scroll, otherwise a following command may cause scrolling
7716 * unexpectedly. The screen will be redrawn by the caller, thus
7717 * msg_scroll being set by displaying a message is irrelevant. */
7718 msg_scroll = save_msg_scroll;
7719}
7720#endif
7721
Bram Moolenaar071d4272004-06-13 20:20:40 +00007722/*
7723 * Clear an argument list: free all file names and reset it to zero entries.
7724 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007725 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007726alist_clear(al)
7727 alist_T *al;
7728{
7729 while (--al->al_ga.ga_len >= 0)
7730 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
7731 ga_clear(&al->al_ga);
7732}
7733
7734/*
7735 * Init an argument list.
7736 */
7737 void
7738alist_init(al)
7739 alist_T *al;
7740{
7741 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
7742}
7743
7744#if defined(FEAT_WINDOWS) || defined(PROTO)
7745
7746/*
7747 * Remove a reference from an argument list.
7748 * Ignored when the argument list is the global one.
7749 * If the argument list is no longer used by any window, free it.
7750 */
7751 void
7752alist_unlink(al)
7753 alist_T *al;
7754{
7755 if (al != &global_alist && --al->al_refcount <= 0)
7756 {
7757 alist_clear(al);
7758 vim_free(al);
7759 }
7760}
7761
7762# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
7763/*
7764 * Create a new argument list and use it for the current window.
7765 */
7766 void
7767alist_new()
7768{
7769 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
7770 if (curwin->w_alist == NULL)
7771 {
7772 curwin->w_alist = &global_alist;
7773 ++global_alist.al_refcount;
7774 }
7775 else
7776 {
7777 curwin->w_alist->al_refcount = 1;
Bram Moolenaar2d1fe052014-05-28 18:22:57 +02007778 curwin->w_alist->id = ++max_alist_id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007779 alist_init(curwin->w_alist);
7780 }
7781}
7782# endif
7783#endif
7784
7785#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
7786/*
7787 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007788 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
7789 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007790 */
7791 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00007792alist_expand(fnum_list, fnum_len)
7793 int *fnum_list;
7794 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007795{
7796 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007797 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007798 char_u **new_arg_files;
7799 int new_arg_file_count;
7800 char_u *save_p_su = p_su;
7801 int i;
7802
7803 /* Don't use 'suffixes' here. This should work like the shell did the
7804 * expansion. Also, the vimrc file isn't read yet, thus the user
7805 * can't set the options. */
7806 p_su = empty_option;
7807 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
7808 if (old_arg_files != NULL)
7809 {
7810 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007811 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
7812 old_arg_count = GARGCOUNT;
7813 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007814 &new_arg_file_count, &new_arg_files,
Bram Moolenaarb5609832011-07-20 15:04:58 +02007815 EW_FILE|EW_NOTFOUND|EW_ADDSLASH|EW_NOERROR) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00007816 && new_arg_file_count > 0)
7817 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00007818 alist_set(&global_alist, new_arg_file_count, new_arg_files,
7819 TRUE, fnum_list, fnum_len);
7820 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007822 }
7823 p_su = save_p_su;
7824}
7825#endif
7826
7827/*
7828 * Set the argument list for the current window.
7829 * Takes over the allocated files[] and the allocated fnames in it.
7830 */
7831 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00007832alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007833 alist_T *al;
7834 int count;
7835 char_u **files;
7836 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007837 int *fnum_list;
7838 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007839{
7840 int i;
7841
7842 alist_clear(al);
7843 if (ga_grow(&al->al_ga, count) == OK)
7844 {
7845 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007846 {
7847 if (got_int)
7848 {
7849 /* When adding many buffers this can take a long time. Allow
7850 * interrupting here. */
7851 while (i < count)
7852 vim_free(files[i++]);
7853 break;
7854 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007855
7856 /* May set buffer name of a buffer previously used for the
7857 * argument list, so that it's re-used by alist_add. */
7858 if (fnum_list != NULL && i < fnum_len)
7859 buf_set_name(fnum_list[i], files[i]);
7860
Bram Moolenaar071d4272004-06-13 20:20:40 +00007861 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007862 ui_breakcheck();
7863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007864 vim_free(files);
7865 }
7866 else
7867 FreeWild(count, files);
7868#ifdef FEAT_WINDOWS
7869 if (al == &global_alist)
7870#endif
7871 arg_had_last = FALSE;
7872}
7873
7874/*
7875 * Add file "fname" to argument list "al".
7876 * "fname" must have been allocated and "al" must have been checked for room.
7877 */
7878 void
7879alist_add(al, fname, set_fnum)
7880 alist_T *al;
7881 char_u *fname;
7882 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
7883{
7884 if (fname == NULL) /* don't add NULL file names */
7885 return;
7886#ifdef BACKSLASH_IN_FILENAME
7887 slash_adjust(fname);
7888#endif
7889 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
7890 if (set_fnum > 0)
7891 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
7892 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
7893 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007894}
7895
7896#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7897/*
7898 * Adjust slashes in file names. Called after 'shellslash' was set.
7899 */
7900 void
7901alist_slash_adjust()
7902{
7903 int i;
7904# ifdef FEAT_WINDOWS
7905 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007906 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007907# endif
7908
7909 for (i = 0; i < GARGCOUNT; ++i)
7910 if (GARGLIST[i].ae_fname != NULL)
7911 slash_adjust(GARGLIST[i].ae_fname);
7912# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00007913 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007914 if (wp->w_alist != &global_alist)
7915 for (i = 0; i < WARGCOUNT(wp); ++i)
7916 if (WARGLIST(wp)[i].ae_fname != NULL)
7917 slash_adjust(WARGLIST(wp)[i].ae_fname);
7918# endif
7919}
7920#endif
7921
7922/*
7923 * ":preserve".
7924 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007925 static void
7926ex_preserve(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007927 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007928{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007929 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007930 ml_preserve(curbuf, TRUE);
7931}
7932
7933/*
7934 * ":recover".
7935 */
7936 static void
7937ex_recover(eap)
7938 exarg_T *eap;
7939{
7940 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7941 recoverymode = TRUE;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007942 if (!check_changed(curbuf, (p_awa ? CCGD_AW : 0)
7943 | CCGD_MULTWIN
7944 | (eap->forceit ? CCGD_FORCEIT : 0)
7945 | CCGD_EXCMD)
7946
Bram Moolenaar071d4272004-06-13 20:20:40 +00007947 && (*eap->arg == NUL
7948 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7949 ml_recover();
7950 recoverymode = FALSE;
7951}
7952
7953/*
7954 * Command modifier used in a wrong way.
7955 */
7956 static void
7957ex_wrongmodifier(eap)
7958 exarg_T *eap;
7959{
7960 eap->errmsg = e_invcmd;
7961}
7962
7963#ifdef FEAT_WINDOWS
7964/*
7965 * :sview [+command] file split window with new file, read-only
7966 * :split [[+command] file] split window with current or new file
7967 * :vsplit [[+command] file] split window vertically with current or new file
7968 * :new [[+command] file] split window with no or new file
7969 * :vnew [[+command] file] split vertically window with no or new file
7970 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007971 *
7972 * :tabedit open new Tab page with empty window
7973 * :tabedit [+command] file open new Tab page and edit "file"
7974 * :tabnew [[+command] file] just like :tabedit
7975 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007976 */
7977 void
7978ex_splitview(eap)
7979 exarg_T *eap;
7980{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007981 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007982# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007983 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007984# endif
7985# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007986 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007987# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007988
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007989# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007990 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7991 {
7992 ex_ni(eap);
7993 return;
7994 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007995# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007996
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007997# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007998 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007999# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008000
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008001# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00008002 /* A ":split" in the quickfix window works like ":new". Don't want two
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008003 * quickfix windows. But it's OK when doing ":tab split". */
8004 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008005 {
8006 if (eap->cmdidx == CMD_split)
8007 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008008# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00008009 if (eap->cmdidx == CMD_vsplit)
8010 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008011# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008012 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008013# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008014
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008015# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008016 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008017 {
8018 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
8019 FNAME_MESS, TRUE, curbuf->b_ffname);
8020 if (fname == NULL)
8021 goto theend;
8022 eap->arg = fname;
8023 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008024# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008025 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008026# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008027# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008028# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008029 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008030# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00008031 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008032# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008033 && eap->cmdidx != CMD_new)
8034 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008035# ifdef FEAT_AUTOCMD
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008036 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008037# ifdef FEAT_GUI
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008038 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008039# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008040 au_has_group((char_u *)"FileExplorer"))
8041 {
8042 /* No browsing supported but we do have the file explorer:
8043 * Edit the directory. */
8044 if (*eap->arg == NUL || !mch_isdir(eap->arg))
8045 eap->arg = (char_u *)".";
8046 }
8047 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008048# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008049 {
8050 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00008051 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008052 if (fname == NULL)
8053 goto theend;
8054 eap->arg = fname;
8055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008056 }
8057 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008058# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008059
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008060 /*
8061 * Either open new tab page or split the window.
8062 */
8063 if (eap->cmdidx == CMD_tabedit
8064 || eap->cmdidx == CMD_tabfind
8065 || eap->cmdidx == CMD_tabnew)
8066 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00008067 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
8068 : eap->addr_count == 0 ? 0
8069 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008070 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00008071 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008072
8073 /* set the alternate buffer for the window we came from */
8074 if (curwin != old_curwin
8075 && win_valid(old_curwin)
8076 && old_curwin->w_buffer != curbuf
8077 && !cmdmod.keepalt)
8078 old_curwin->w_alt_fnum = curbuf->b_fnum;
8079 }
8080 }
8081 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008082 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
8083 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008084# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00008085 /* Reset 'scrollbind' when editing another file, but keep it when
8086 * doing ":split" without arguments. */
8087 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008088# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008089 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008090# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008091 )
Bram Moolenaar3368ea22010-09-21 16:56:35 +02008092 {
8093 RESET_BINDING(curwin);
8094 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008095 else
8096 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008097# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008098 do_exedit(eap, old_curwin);
8099 }
8100
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008101# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008102 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008103# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008104
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008105# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008106theend:
8107 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008108# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008109}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008110
8111/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008112 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008113 */
8114 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008115tabpage_new()
8116{
8117 exarg_T ea;
8118
8119 vim_memset(&ea, 0, sizeof(ea));
8120 ea.cmdidx = CMD_tabnew;
8121 ea.cmd = (char_u *)"tabn";
8122 ea.arg = (char_u *)"";
8123 ex_splitview(&ea);
8124}
8125
8126/*
8127 * :tabnext command
8128 */
8129 static void
8130ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008131 exarg_T *eap;
8132{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00008133 switch (eap->cmdidx)
8134 {
8135 case CMD_tabfirst:
8136 case CMD_tabrewind:
8137 goto_tabpage(1);
8138 break;
8139 case CMD_tablast:
8140 goto_tabpage(9999);
8141 break;
8142 case CMD_tabprevious:
8143 case CMD_tabNext:
8144 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
8145 break;
8146 default: /* CMD_tabnext */
8147 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
8148 break;
8149 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008150}
8151
8152/*
8153 * :tabmove command
8154 */
8155 static void
8156ex_tabmove(eap)
8157 exarg_T *eap;
8158{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008159 int tab_number;
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008160
8161 if (eap->arg && *eap->arg != NUL)
8162 {
8163 char_u *p = eap->arg;
8164 int relative = 0; /* argument +N/-N means: move N places to the
8165 * right/left relative to the current position. */
8166
8167 if (*eap->arg == '-')
8168 {
8169 relative = -1;
8170 p = eap->arg + 1;
8171 }
8172 else if (*eap->arg == '+')
8173 {
8174 relative = 1;
8175 p = eap->arg + 1;
8176 }
8177 else
8178 p = eap->arg;
8179
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008180 if (relative == 0)
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008181 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008182 if (STRCMP(p, "$") == 0)
8183 tab_number = LAST_TAB_NR;
8184 else if (p == skipdigits(p))
8185 {
8186 /* No numbers as argument. */
8187 eap->errmsg = e_invarg;
8188 return;
8189 }
8190 else
8191 tab_number = getdigits(&p);
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008192 }
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008193 else
8194 {
8195 if (*p != NUL)
8196 tab_number = getdigits(&p);
8197 else
8198 tab_number = 1;
8199 tab_number = tab_number * relative + tabpage_index(curtab);
8200 if (relative == -1)
8201 --tab_number;
8202 }
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008203 }
8204 else if (eap->addr_count != 0)
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008205 {
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008206 tab_number = eap->line2;
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008207 if (**eap->cmdlinep == '-')
8208 --tab_number;
8209 }
8210 else
8211 tab_number = LAST_TAB_NR;
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008212
8213 tabpage_move(tab_number);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008214}
8215
8216/*
8217 * :tabs command: List tabs and their contents.
8218 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008219 static void
8220ex_tabs(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008221 exarg_T *eap UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008222{
8223 tabpage_T *tp;
8224 win_T *wp;
8225 int tabcount = 1;
8226
8227 msg_start();
8228 msg_scroll = TRUE;
8229 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
8230 {
8231 msg_putchar('\n');
8232 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
8233 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
8234 out_flush(); /* output one line at a time */
8235 ui_breakcheck();
8236
Bram Moolenaar030f0df2006-02-21 22:02:53 +00008237 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008238 wp = firstwin;
8239 else
8240 wp = tp->tp_firstwin;
8241 for ( ; wp != NULL && !got_int; wp = wp->w_next)
8242 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008243 msg_putchar('\n');
8244 msg_putchar(wp == curwin ? '>' : ' ');
8245 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00008246 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
8247 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008248 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02008249 vim_strncpy(IObuff, buf_spname(wp->w_buffer), IOSIZE - 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008250 else
8251 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
8252 IObuff, IOSIZE, TRUE);
8253 msg_outtrans(IObuff);
8254 out_flush(); /* output one line at a time */
8255 ui_breakcheck();
8256 }
8257 }
8258}
8259
8260#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008261
8262/*
8263 * ":mode": Set screen mode.
8264 * If no argument given, just get the screen size and redraw.
8265 */
8266 static void
8267ex_mode(eap)
8268 exarg_T *eap;
8269{
8270 if (*eap->arg == NUL)
8271 shell_resized();
8272 else
8273 mch_screenmode(eap->arg);
8274}
8275
8276#ifdef FEAT_WINDOWS
8277/*
8278 * ":resize".
8279 * set, increment or decrement current window height
8280 */
8281 static void
8282ex_resize(eap)
8283 exarg_T *eap;
8284{
8285 int n;
8286 win_T *wp = curwin;
8287
8288 if (eap->addr_count > 0)
8289 {
8290 n = eap->line2;
8291 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
8292 ;
8293 }
8294
8295#ifdef FEAT_GUI
8296 need_mouse_correct = TRUE;
8297#endif
8298 n = atol((char *)eap->arg);
8299#ifdef FEAT_VERTSPLIT
8300 if (cmdmod.split & WSP_VERT)
8301 {
8302 if (*eap->arg == '-' || *eap->arg == '+')
8303 n += W_WIDTH(curwin);
8304 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
8305 n = 9999;
8306 win_setwidth_win((int)n, wp);
8307 }
8308 else
8309#endif
8310 {
8311 if (*eap->arg == '-' || *eap->arg == '+')
8312 n += curwin->w_height;
8313 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
8314 n = 9999;
8315 win_setheight_win((int)n, wp);
8316 }
8317}
8318#endif
8319
8320/*
8321 * ":find [+command] <file>" command.
8322 */
8323 static void
8324ex_find(eap)
8325 exarg_T *eap;
8326{
8327#ifdef FEAT_SEARCHPATH
8328 char_u *fname;
8329 int count;
8330
8331 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
8332 TRUE, curbuf->b_ffname);
8333 if (eap->addr_count > 0)
8334 {
8335 /* Repeat finding the file "count" times. This matters when it
8336 * appears several times in the path. */
8337 count = eap->line2;
8338 while (fname != NULL && --count > 0)
8339 {
8340 vim_free(fname);
8341 fname = find_file_in_path(NULL, 0, FNAME_MESS,
8342 FALSE, curbuf->b_ffname);
8343 }
8344 }
8345
8346 if (fname != NULL)
8347 {
8348 eap->arg = fname;
8349#endif
8350 do_exedit(eap, NULL);
8351#ifdef FEAT_SEARCHPATH
8352 vim_free(fname);
8353 }
8354#endif
8355}
8356
8357/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00008358 * ":open" simulation: for now just work like ":visual".
8359 */
8360 static void
8361ex_open(eap)
8362 exarg_T *eap;
8363{
8364 regmatch_T regmatch;
8365 char_u *p;
8366
8367 curwin->w_cursor.lnum = eap->line2;
8368 beginline(BL_SOL | BL_FIX);
8369 if (*eap->arg == '/')
8370 {
8371 /* ":open /pattern/": put cursor in column found with pattern */
8372 ++eap->arg;
8373 p = skip_regexp(eap->arg, '/', p_magic, NULL);
8374 *p = NUL;
8375 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
8376 if (regmatch.regprog != NULL)
8377 {
8378 regmatch.rm_ic = p_ic;
8379 p = ml_get_curline();
8380 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008381 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008382 else
8383 EMSG(_(e_nomatch));
Bram Moolenaar473de612013-06-08 18:19:48 +02008384 vim_regfree(regmatch.regprog);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008385 }
8386 /* Move to the NUL, ignore any other arguments. */
8387 eap->arg += STRLEN(eap->arg);
8388 }
8389 check_cursor();
8390
8391 eap->cmdidx = CMD_visual;
8392 do_exedit(eap, NULL);
8393}
8394
8395/*
8396 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008397 */
8398 static void
8399ex_edit(eap)
8400 exarg_T *eap;
8401{
8402 do_exedit(eap, NULL);
8403}
8404
8405/*
8406 * ":edit <file>" command and alikes.
8407 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008408 void
8409do_exedit(eap, old_curwin)
8410 exarg_T *eap;
8411 win_T *old_curwin; /* curwin before doing a split or NULL */
8412{
8413 int n;
8414#ifdef FEAT_WINDOWS
8415 int need_hide;
8416#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008417 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008418
8419 /*
8420 * ":vi" command ends Ex mode.
8421 */
8422 if (exmode_active && (eap->cmdidx == CMD_visual
8423 || eap->cmdidx == CMD_view))
8424 {
8425 exmode_active = FALSE;
8426 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008427 {
8428 /* Special case: ":global/pat/visual\NLvi-commands" */
8429 if (global_busy)
8430 {
8431 int rd = RedrawingDisabled;
8432 int nwr = no_wait_return;
8433 int ms = msg_scroll;
8434#ifdef FEAT_GUI
8435 int he = hold_gui_events;
8436#endif
8437
8438 if (eap->nextcmd != NULL)
8439 {
8440 stuffReadbuff(eap->nextcmd);
8441 eap->nextcmd = NULL;
8442 }
8443
8444 if (exmode_was != EXMODE_VIM)
8445 settmode(TMODE_RAW);
8446 RedrawingDisabled = 0;
8447 no_wait_return = 0;
8448 need_wait_return = FALSE;
8449 msg_scroll = 0;
8450#ifdef FEAT_GUI
8451 hold_gui_events = 0;
8452#endif
8453 must_redraw = CLEAR;
8454
8455 main_loop(FALSE, TRUE);
8456
8457 RedrawingDisabled = rd;
8458 no_wait_return = nwr;
8459 msg_scroll = ms;
8460#ifdef FEAT_GUI
8461 hold_gui_events = he;
8462#endif
8463 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008464 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008465 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008466 }
8467
8468 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008469 || eap->cmdidx == CMD_tabnew
8470 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00008471#ifdef FEAT_VERTSPLIT
8472 || eap->cmdidx == CMD_vnew
8473#endif
8474 ) && *eap->arg == NUL)
8475 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008476 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008477 setpcmark();
8478 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00008479 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
8480 old_curwin == NULL ? curwin : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008481 }
8482 else if ((eap->cmdidx != CMD_split
8483#ifdef FEAT_VERTSPLIT
8484 && eap->cmdidx != CMD_vsplit
8485#endif
8486 )
8487 || *eap->arg != NUL
8488#ifdef FEAT_BROWSE
8489 || cmdmod.browse
8490#endif
8491 )
8492 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00008493#ifdef FEAT_AUTOCMD
8494 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
8495 * can bring us here, others are stopped earlier. */
8496 if (*eap->arg != NUL && curbuf_locked())
8497 return;
8498#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008499 n = readonlymode;
8500 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
8501 readonlymode = TRUE;
8502 else if (eap->cmdidx == CMD_enew)
8503 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
8504 empty buffer */
8505 setpcmark();
8506 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
8507 NULL, eap,
8508 /* ":edit" goes to first line if Vi compatible */
8509 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
8510 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
8511 ? ECMD_ONE : eap->do_ecmd_lnum,
8512 (P_HID(curbuf) ? ECMD_HIDE : 0)
8513 + (eap->forceit ? ECMD_FORCEIT : 0)
Bram Moolenaar7b449342014-03-25 13:03:48 +01008514 /* after a split we can use an existing buffer */
8515 + (old_curwin != NULL ? ECMD_OLDBUF : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008516#ifdef FEAT_LISTCMDS
8517 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
8518#endif
Bram Moolenaar701f7af2008-11-15 13:12:07 +00008519 , old_curwin == NULL ? curwin : NULL) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008520 {
8521 /* Editing the file failed. If the window was split, close it. */
8522#ifdef FEAT_WINDOWS
8523 if (old_curwin != NULL)
8524 {
8525 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
8526 if (!need_hide || P_HID(curbuf))
8527 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00008528# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8529 cleanup_T cs;
8530
8531 /* Reset the error/interrupt/exception state here so that
8532 * aborting() returns FALSE when closing a window. */
8533 enter_cleanup(&cs);
8534# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008535# ifdef FEAT_GUI
8536 need_mouse_correct = TRUE;
8537# endif
8538 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00008539
8540# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8541 /* Restore the error/interrupt/exception state if not
8542 * discarded by a new aborting error, interrupt, or
8543 * uncaught exception. */
8544 leave_cleanup(&cs);
8545# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008546 }
8547 }
8548#endif
8549 }
8550 else if (readonlymode && curbuf->b_nwindows == 1)
8551 {
8552 /* When editing an already visited buffer, 'readonly' won't be set
8553 * but the previous value is kept. With ":view" and ":sview" we
8554 * want the file to be readonly, except when another window is
8555 * editing the same buffer. */
8556 curbuf->b_p_ro = TRUE;
8557 }
8558 readonlymode = n;
8559 }
8560 else
8561 {
8562 if (eap->do_ecmd_cmd != NULL)
8563 do_cmdline_cmd(eap->do_ecmd_cmd);
8564#ifdef FEAT_TITLE
8565 n = curwin->w_arg_idx_invalid;
8566#endif
8567 check_arg_idx(curwin);
8568#ifdef FEAT_TITLE
8569 if (n != curwin->w_arg_idx_invalid)
8570 maketitle();
8571#endif
8572 }
8573
8574#ifdef FEAT_WINDOWS
8575 /*
8576 * if ":split file" worked, set alternate file name in old window to new
8577 * file
8578 */
8579 if (old_curwin != NULL
8580 && *eap->arg != NUL
8581 && curwin != old_curwin
8582 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00008583 && old_curwin->w_buffer != curbuf
8584 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008585 old_curwin->w_alt_fnum = curbuf->b_fnum;
8586#endif
8587
8588 ex_no_reprint = TRUE;
8589}
8590
8591#ifndef FEAT_GUI
8592/*
8593 * ":gui" and ":gvim" when there is no GUI.
8594 */
8595 static void
8596ex_nogui(eap)
8597 exarg_T *eap;
8598{
8599 eap->errmsg = e_nogvim;
8600}
8601#endif
8602
8603#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
8604 static void
8605ex_tearoff(eap)
8606 exarg_T *eap;
8607{
8608 gui_make_tearoff(eap->arg);
8609}
8610#endif
8611
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008612#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008613 static void
8614ex_popup(eap)
8615 exarg_T *eap;
8616{
Bram Moolenaar97409f12005-07-08 22:17:29 +00008617 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008618}
8619#endif
8620
Bram Moolenaar071d4272004-06-13 20:20:40 +00008621 static void
8622ex_swapname(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008623 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008624{
8625 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
8626 MSG(_("No swap file"));
8627 else
8628 msg(curbuf->b_ml.ml_mfp->mf_fname);
8629}
8630
8631/*
8632 * ":syncbind" forces all 'scrollbind' windows to have the same relative
8633 * offset.
8634 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
8635 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008636 static void
8637ex_syncbind(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008638 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008639{
8640#ifdef FEAT_SCROLLBIND
8641 win_T *wp;
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008642 win_T *save_curwin = curwin;
8643 buf_T *save_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008644 long topline;
8645 long y;
8646 linenr_T old_linenr = curwin->w_cursor.lnum;
8647
8648 setpcmark();
8649
8650 /*
8651 * determine max topline
8652 */
8653 if (curwin->w_p_scb)
8654 {
8655 topline = curwin->w_topline;
8656 for (wp = firstwin; wp; wp = wp->w_next)
8657 {
8658 if (wp->w_p_scb && wp->w_buffer)
8659 {
8660 y = wp->w_buffer->b_ml.ml_line_count - p_so;
8661 if (topline > y)
8662 topline = y;
8663 }
8664 }
8665 if (topline < 1)
8666 topline = 1;
8667 }
8668 else
8669 {
8670 topline = 1;
8671 }
8672
8673
8674 /*
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008675 * Set all scrollbind windows to the same topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008676 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008677 for (curwin = firstwin; curwin; curwin = curwin->w_next)
8678 {
8679 if (curwin->w_p_scb)
8680 {
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008681 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008682 y = topline - curwin->w_topline;
8683 if (y > 0)
8684 scrollup(y, TRUE);
8685 else
8686 scrolldown(-y, TRUE);
8687 curwin->w_scbind_pos = topline;
8688 redraw_later(VALID);
8689 cursor_correct();
8690#ifdef FEAT_WINDOWS
8691 curwin->w_redr_status = TRUE;
8692#endif
8693 }
8694 }
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008695 curwin = save_curwin;
8696 curbuf = save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008697 if (curwin->w_p_scb)
8698 {
8699 did_syncbind = TRUE;
8700 checkpcmark();
8701 if (old_linenr != curwin->w_cursor.lnum)
8702 {
8703 char_u ctrl_o[2];
8704
8705 ctrl_o[0] = Ctrl_O;
8706 ctrl_o[1] = 0;
8707 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
8708 }
8709 }
8710#endif
8711}
8712
8713
8714 static void
8715ex_read(eap)
8716 exarg_T *eap;
8717{
Bram Moolenaardf177f62005-02-22 08:39:57 +00008718 int i;
8719 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
8720 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008721
8722 if (eap->usefilter) /* :r!cmd */
8723 do_bang(1, eap, FALSE, FALSE, TRUE);
8724 else
8725 {
8726 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
8727 return;
8728
8729#ifdef FEAT_BROWSE
8730 if (cmdmod.browse)
8731 {
8732 char_u *browseFile;
8733
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008734 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008735 NULL, NULL, NULL, curbuf);
8736 if (browseFile != NULL)
8737 {
8738 i = readfile(browseFile, NULL,
8739 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8740 vim_free(browseFile);
8741 }
8742 else
8743 i = OK;
8744 }
8745 else
8746#endif
8747 if (*eap->arg == NUL)
8748 {
8749 if (check_fname() == FAIL) /* check for no file name */
8750 return;
8751 i = readfile(curbuf->b_ffname, curbuf->b_fname,
8752 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8753 }
8754 else
8755 {
8756 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
8757 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
8758 i = readfile(eap->arg, NULL,
8759 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8760
8761 }
8762 if (i == FAIL)
8763 {
8764#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8765 if (!aborting())
8766#endif
8767 EMSG2(_(e_notopen), eap->arg);
8768 }
8769 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008770 {
8771 if (empty && exmode_active)
8772 {
8773 /* Delete the empty line that remains. Historically ex does
8774 * this but vi doesn't. */
8775 if (eap->line2 == 0)
8776 lnum = curbuf->b_ml.ml_line_count;
8777 else
8778 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008779 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008780 {
8781 ml_delete(lnum, FALSE);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008782 if (curwin->w_cursor.lnum > 1
8783 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008784 --curwin->w_cursor.lnum;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00008785 deleted_lines_mark(lnum, 1L);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008786 }
8787 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008788 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008790 }
8791}
8792
Bram Moolenaarea408852005-06-25 22:49:46 +00008793static char_u *prev_dir = NULL;
8794
8795#if defined(EXITFREE) || defined(PROTO)
8796 void
8797free_cd_dir()
8798{
8799 vim_free(prev_dir);
Bram Moolenaara0174af2008-01-02 20:08:25 +00008800 prev_dir = NULL;
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00008801
8802 vim_free(globaldir);
8803 globaldir = NULL;
Bram Moolenaarea408852005-06-25 22:49:46 +00008804}
8805#endif
8806
Bram Moolenaarf4258302013-06-02 18:20:17 +02008807/*
8808 * Deal with the side effects of changing the current directory.
8809 * When "local" is TRUE then this was after an ":lcd" command.
8810 */
8811 void
8812post_chdir(local)
8813 int local;
8814{
8815 vim_free(curwin->w_localdir);
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01008816 curwin->w_localdir = NULL;
Bram Moolenaarf4258302013-06-02 18:20:17 +02008817 if (local)
8818 {
8819 /* If still in global directory, need to remember current
8820 * directory as global directory. */
8821 if (globaldir == NULL && prev_dir != NULL)
8822 globaldir = vim_strsave(prev_dir);
8823 /* Remember this local directory for the window. */
8824 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8825 curwin->w_localdir = vim_strsave(NameBuff);
8826 }
8827 else
8828 {
8829 /* We are now in the global directory, no need to remember its
8830 * name. */
8831 vim_free(globaldir);
8832 globaldir = NULL;
Bram Moolenaarf4258302013-06-02 18:20:17 +02008833 }
8834
8835 shorten_fnames(TRUE);
8836}
8837
Bram Moolenaarea408852005-06-25 22:49:46 +00008838
Bram Moolenaar071d4272004-06-13 20:20:40 +00008839/*
8840 * ":cd", ":lcd", ":chdir" and ":lchdir".
8841 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00008842 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00008843ex_cd(eap)
8844 exarg_T *eap;
8845{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008846 char_u *new_dir;
8847 char_u *tofree;
8848
8849 new_dir = eap->arg;
8850#if !defined(UNIX) && !defined(VMS)
8851 /* for non-UNIX ":cd" means: print current directory */
8852 if (*new_dir == NUL)
8853 ex_pwd(NULL);
8854 else
8855#endif
8856 {
Bram Moolenaar8e8fe9b2009-03-11 14:37:32 +00008857#ifdef FEAT_AUTOCMD
8858 if (allbuf_locked())
8859 return;
8860#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008861 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
8862 && !eap->forceit)
8863 {
Bram Moolenaar81870892007-11-11 18:17:28 +00008864 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00008865 return;
8866 }
8867
Bram Moolenaar071d4272004-06-13 20:20:40 +00008868 /* ":cd -": Change to previous directory */
8869 if (STRCMP(new_dir, "-") == 0)
8870 {
8871 if (prev_dir == NULL)
8872 {
8873 EMSG(_("E186: No previous directory"));
8874 return;
8875 }
8876 new_dir = prev_dir;
8877 }
8878
8879 /* Save current directory for next ":cd -" */
8880 tofree = prev_dir;
8881 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8882 prev_dir = vim_strsave(NameBuff);
8883 else
8884 prev_dir = NULL;
8885
8886#if defined(UNIX) || defined(VMS)
8887 /* for UNIX ":cd" means: go to home directory */
8888 if (*new_dir == NUL)
8889 {
8890 /* use NameBuff for home directory name */
8891# ifdef VMS
8892 char_u *p;
8893
8894 p = mch_getenv((char_u *)"SYS$LOGIN");
8895 if (p == NULL || *p == NUL) /* empty is the same as not set */
8896 NameBuff[0] = NUL;
8897 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00008898 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008899# else
8900 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
8901# endif
8902 new_dir = NameBuff;
8903 }
8904#endif
8905 if (new_dir == NULL || vim_chdir(new_dir))
8906 EMSG(_(e_failed));
8907 else
8908 {
Bram Moolenaarf4258302013-06-02 18:20:17 +02008909 post_chdir(eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008910
8911 /* Echo the new current directory if the command was typed. */
Bram Moolenaarfcfbc672009-07-09 18:13:49 +00008912 if (KeyTyped || p_verbose >= 5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008913 ex_pwd(eap);
8914 }
8915 vim_free(tofree);
8916 }
8917}
8918
8919/*
8920 * ":pwd".
8921 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008922 static void
8923ex_pwd(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008924 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925{
8926 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8927 {
8928#ifdef BACKSLASH_IN_FILENAME
8929 slash_adjust(NameBuff);
8930#endif
8931 msg(NameBuff);
8932 }
8933 else
8934 EMSG(_("E187: Unknown"));
8935}
8936
8937/*
8938 * ":=".
8939 */
8940 static void
8941ex_equal(eap)
8942 exarg_T *eap;
8943{
8944 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008945 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008946}
8947
8948 static void
8949ex_sleep(eap)
8950 exarg_T *eap;
8951{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008952 int n;
8953 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008954
8955 if (cursor_valid())
8956 {
8957 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
8958 if (n >= 0)
Bram Moolenaar10395d82014-02-05 22:46:52 +01008959 windgoto((int)n, W_WINCOL(curwin) + curwin->w_wcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008960 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008961
8962 len = eap->line2;
8963 switch (*eap->arg)
8964 {
8965 case 'm': break;
8966 case NUL: len *= 1000L; break;
8967 default: EMSG2(_(e_invarg2), eap->arg); return;
8968 }
8969 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008970}
8971
8972/*
8973 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
8974 */
8975 void
8976do_sleep(msec)
8977 long msec;
8978{
8979 long done;
8980
8981 cursor_on();
8982 out_flush();
8983 for (done = 0; !got_int && done < msec; done += 1000L)
8984 {
8985 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
8986 ui_breakcheck();
Bram Moolenaare3cc6d42011-10-20 21:58:34 +02008987#ifdef FEAT_NETBEANS_INTG
8988 /* Process the netbeans messages that may have been received in the
8989 * call to ui_breakcheck() when the GUI is in use. This may occur when
8990 * running a test case. */
8991 netbeans_parse_messages();
8992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008993 }
8994}
8995
8996 static void
8997do_exmap(eap, isabbrev)
8998 exarg_T *eap;
8999 int isabbrev;
9000{
9001 int mode;
9002 char_u *cmdp;
9003
9004 cmdp = eap->cmd;
9005 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
9006
9007 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
9008 eap->arg, mode, isabbrev))
9009 {
9010 case 1: EMSG(_(e_invarg));
9011 break;
9012 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
9013 break;
9014 }
9015}
9016
9017/*
9018 * ":winsize" command (obsolete).
9019 */
9020 static void
9021ex_winsize(eap)
9022 exarg_T *eap;
9023{
9024 int w, h;
9025 char_u *arg = eap->arg;
9026 char_u *p;
9027
9028 w = getdigits(&arg);
9029 arg = skipwhite(arg);
9030 p = arg;
9031 h = getdigits(&arg);
9032 if (*p != NUL && *arg == NUL)
9033 set_shellsize(w, h, TRUE);
9034 else
9035 EMSG(_("E465: :winsize requires two number arguments"));
9036}
9037
9038#ifdef FEAT_WINDOWS
9039 static void
9040ex_wincmd(eap)
9041 exarg_T *eap;
9042{
9043 int xchar = NUL;
9044 char_u *p;
9045
9046 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
9047 {
9048 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
9049 if (eap->arg[1] == NUL)
9050 {
9051 EMSG(_(e_invarg));
9052 return;
9053 }
9054 xchar = eap->arg[1];
9055 p = eap->arg + 2;
9056 }
9057 else
9058 p = eap->arg + 1;
9059
9060 eap->nextcmd = check_nextcmd(p);
9061 p = skipwhite(p);
9062 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
9063 EMSG(_(e_invarg));
Bram Moolenaar12bde492011-06-13 01:19:56 +02009064 else if (!eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009065 {
9066 /* Pass flags on for ":vertical wincmd ]". */
9067 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009068 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009069 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
9070 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009071 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009072 }
9073}
9074#endif
9075
Bram Moolenaar843ee412004-06-30 16:16:41 +00009076#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009077/*
9078 * ":winpos".
9079 */
9080 static void
9081ex_winpos(eap)
9082 exarg_T *eap;
9083{
9084 int x, y;
9085 char_u *arg = eap->arg;
9086 char_u *p;
9087
9088 if (*arg == NUL)
9089 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00009090# if defined(FEAT_GUI) || defined(MSWIN)
9091# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00009092 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00009093# else
9094 if (mch_get_winpos(&x, &y) != FAIL)
9095# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009096 {
9097 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
9098 msg(IObuff);
9099 }
9100 else
9101# endif
9102 EMSG(_("E188: Obtaining window position not implemented for this platform"));
9103 }
9104 else
9105 {
9106 x = getdigits(&arg);
9107 arg = skipwhite(arg);
9108 p = arg;
9109 y = getdigits(&arg);
9110 if (*p == NUL || *arg != NUL)
9111 {
9112 EMSG(_("E466: :winpos requires two number arguments"));
9113 return;
9114 }
9115# ifdef FEAT_GUI
9116 if (gui.in_use)
9117 gui_mch_set_winpos(x, y);
9118 else if (gui.starting)
9119 {
9120 /* Remember the coordinates for when the window is opened. */
9121 gui_win_x = x;
9122 gui_win_y = y;
9123 }
9124# ifdef HAVE_TGETENT
9125 else
9126# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00009127# else
9128# ifdef MSWIN
9129 mch_set_winpos(x, y);
9130# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009131# endif
9132# ifdef HAVE_TGETENT
9133 if (*T_CWP)
9134 term_set_winpos(x, y);
9135# endif
9136 }
9137}
9138#endif
9139
9140/*
9141 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
9142 */
9143 static void
9144ex_operators(eap)
9145 exarg_T *eap;
9146{
9147 oparg_T oa;
9148
9149 clear_oparg(&oa);
9150 oa.regname = eap->regname;
9151 oa.start.lnum = eap->line1;
9152 oa.end.lnum = eap->line2;
9153 oa.line_count = eap->line2 - eap->line1 + 1;
9154 oa.motion_type = MLINE;
9155#ifdef FEAT_VIRTUALEDIT
9156 virtual_op = FALSE;
9157#endif
9158 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
9159 {
9160 setpcmark();
9161 curwin->w_cursor.lnum = eap->line1;
9162 beginline(BL_SOL | BL_FIX);
9163 }
9164
Bram Moolenaard07c6e12013-11-21 14:21:40 +01009165 if (VIsual_active)
9166 end_visual_mode();
Bram Moolenaard07c6e12013-11-21 14:21:40 +01009167
Bram Moolenaar071d4272004-06-13 20:20:40 +00009168 switch (eap->cmdidx)
9169 {
9170 case CMD_delete:
9171 oa.op_type = OP_DELETE;
9172 op_delete(&oa);
9173 break;
9174
9175 case CMD_yank:
9176 oa.op_type = OP_YANK;
9177 (void)op_yank(&oa, FALSE, TRUE);
9178 break;
9179
9180 default: /* CMD_rshift or CMD_lshift */
Bram Moolenaar6e707362013-06-14 19:15:58 +02009181 if (
Bram Moolenaar071d4272004-06-13 20:20:40 +00009182#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e707362013-06-14 19:15:58 +02009183 (eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
9184#else
9185 eap->cmdidx == CMD_rshift
Bram Moolenaar071d4272004-06-13 20:20:40 +00009186#endif
Bram Moolenaar6e707362013-06-14 19:15:58 +02009187 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00009188 oa.op_type = OP_RSHIFT;
9189 else
9190 oa.op_type = OP_LSHIFT;
9191 op_shift(&oa, FALSE, eap->amount);
9192 break;
9193 }
9194#ifdef FEAT_VIRTUALEDIT
9195 virtual_op = MAYBE;
9196#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00009197 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009198}
9199
9200/*
9201 * ":put".
9202 */
9203 static void
9204ex_put(eap)
9205 exarg_T *eap;
9206{
9207 /* ":0put" works like ":1put!". */
9208 if (eap->line2 == 0)
9209 {
9210 eap->line2 = 1;
9211 eap->forceit = TRUE;
9212 }
9213 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009214 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
9215 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009216}
9217
9218/*
9219 * Handle ":copy" and ":move".
9220 */
9221 static void
9222ex_copymove(eap)
9223 exarg_T *eap;
9224{
9225 long n;
9226
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01009227 n = get_address(&eap->arg, eap->addr_type, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009228 if (eap->arg == NULL) /* error detected */
9229 {
9230 eap->nextcmd = NULL;
9231 return;
9232 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00009233 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009234
9235 /*
9236 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
9237 */
9238 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
9239 {
9240 EMSG(_(e_invaddr));
9241 return;
9242 }
9243
9244 if (eap->cmdidx == CMD_move)
9245 {
9246 if (do_move(eap->line1, eap->line2, n) == FAIL)
9247 return;
9248 }
9249 else
9250 ex_copy(eap->line1, eap->line2, n);
9251 u_clearline();
9252 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009253 ex_may_print(eap);
9254}
9255
9256/*
9257 * Print the current line if flags were given to the Ex command.
9258 */
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02009259 void
Bram Moolenaardf177f62005-02-22 08:39:57 +00009260ex_may_print(eap)
9261 exarg_T *eap;
9262{
9263 if (eap->flags != 0)
9264 {
9265 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
9266 (eap->flags & EXFLAG_LIST));
9267 ex_no_reprint = TRUE;
9268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009269}
9270
9271/*
9272 * ":smagic" and ":snomagic".
9273 */
9274 static void
9275ex_submagic(eap)
9276 exarg_T *eap;
9277{
9278 int magic_save = p_magic;
9279
9280 p_magic = (eap->cmdidx == CMD_smagic);
9281 do_sub(eap);
9282 p_magic = magic_save;
9283}
9284
9285/*
9286 * ":join".
9287 */
9288 static void
9289ex_join(eap)
9290 exarg_T *eap;
9291{
9292 curwin->w_cursor.lnum = eap->line1;
9293 if (eap->line1 == eap->line2)
9294 {
9295 if (eap->addr_count >= 2) /* :2,2join does nothing */
9296 return;
9297 if (eap->line2 == curbuf->b_ml.ml_line_count)
9298 {
9299 beep_flush();
9300 return;
9301 }
9302 ++eap->line2;
9303 }
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02009304 (void)do_join(eap->line2 - eap->line1 + 1, !eap->forceit, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009305 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009306 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009307}
9308
9309/*
9310 * ":[addr]@r" or ":[addr]*r": execute register
9311 */
9312 static void
9313ex_at(eap)
9314 exarg_T *eap;
9315{
9316 int c;
Bram Moolenaar60462872009-11-03 11:40:19 +00009317 int prev_len = typebuf.tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009318
9319 curwin->w_cursor.lnum = eap->line2;
9320
9321#ifdef USE_ON_FLY_SCROLL
9322 dont_scroll = TRUE; /* disallow scrolling here */
9323#endif
9324
9325 /* get the register name. No name means to use the previous one */
9326 c = *eap->arg;
9327 if (c == NUL || (c == '*' && *eap->cmd == '*'))
9328 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00009329 /* Put the register in the typeahead buffer with the "silent" flag. */
9330 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
9331 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00009332 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009333 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00009334 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009335 else
9336 {
9337 int save_efr = exec_from_reg;
9338
9339 exec_from_reg = TRUE;
9340
9341 /*
9342 * Execute from the typeahead buffer.
Bram Moolenaar60462872009-11-03 11:40:19 +00009343 * Continue until the stuff buffer is empty and all added characters
9344 * have been consumed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009345 */
Bram Moolenaar60462872009-11-03 11:40:19 +00009346 while (!stuff_empty() || typebuf.tb_len > prev_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009347 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
9348
9349 exec_from_reg = save_efr;
9350 }
9351}
9352
9353/*
9354 * ":!".
9355 */
9356 static void
9357ex_bang(eap)
9358 exarg_T *eap;
9359{
9360 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
9361}
9362
9363/*
9364 * ":undo".
9365 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009366 static void
9367ex_undo(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009368 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009369{
Bram Moolenaard3667a22006-03-16 21:35:52 +00009370 if (eap->addr_count == 1) /* :undo 123 */
Bram Moolenaar730cde92010-06-27 05:18:54 +02009371 undo_time(eap->line2, FALSE, FALSE, TRUE);
Bram Moolenaard3667a22006-03-16 21:35:52 +00009372 else
9373 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009374}
9375
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009376#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar6df6f472010-07-18 18:04:50 +02009377 static void
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009378ex_wundo(eap)
9379 exarg_T *eap;
9380{
9381 char_u hash[UNDO_HASH_SIZE];
9382
9383 u_compute_hash(hash);
9384 u_write_undo(eap->arg, eap->forceit, curbuf, hash);
9385}
9386
Bram Moolenaar6df6f472010-07-18 18:04:50 +02009387 static void
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009388ex_rundo(eap)
9389 exarg_T *eap;
9390{
9391 char_u hash[UNDO_HASH_SIZE];
9392
9393 u_compute_hash(hash);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02009394 u_read_undo(eap->arg, hash, NULL);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009395}
9396#endif
9397
Bram Moolenaar071d4272004-06-13 20:20:40 +00009398/*
9399 * ":redo".
9400 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009401 static void
9402ex_redo(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009403 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009404{
9405 u_redo(1);
9406}
9407
9408/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009409 * ":earlier" and ":later".
9410 */
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009411 static void
9412ex_later(eap)
9413 exarg_T *eap;
9414{
9415 long count = 0;
9416 int sec = FALSE;
Bram Moolenaar730cde92010-06-27 05:18:54 +02009417 int file = FALSE;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009418 char_u *p = eap->arg;
9419
9420 if (*p == NUL)
9421 count = 1;
9422 else if (isdigit(*p))
9423 {
9424 count = getdigits(&p);
9425 switch (*p)
9426 {
9427 case 's': ++p; sec = TRUE; break;
9428 case 'm': ++p; sec = TRUE; count *= 60; break;
9429 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
Bram Moolenaar730cde92010-06-27 05:18:54 +02009430 case 'd': ++p; sec = TRUE; count *= 24 * 60 * 60; break;
9431 case 'f': ++p; file = TRUE; break;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009432 }
9433 }
9434
9435 if (*p != NUL)
9436 EMSG2(_(e_invarg2), eap->arg);
9437 else
Bram Moolenaar730cde92010-06-27 05:18:54 +02009438 undo_time(eap->cmdidx == CMD_earlier ? -count : count,
9439 sec, file, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009440}
9441
9442/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009443 * ":redir": start/stop redirection.
9444 */
9445 static void
9446ex_redir(eap)
9447 exarg_T *eap;
9448{
9449 char *mode;
9450 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00009451 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009452
9453 if (STRICMP(eap->arg, "END") == 0)
9454 close_redir();
9455 else
9456 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009457 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009458 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009459 ++arg;
9460 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009461 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009462 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009463 mode = "a";
9464 }
9465 else
9466 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00009467 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009468
9469 close_redir();
9470
9471 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00009472 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009473 if (fname == NULL)
9474 return;
9475#ifdef FEAT_BROWSE
9476 if (cmdmod.browse)
9477 {
9478 char_u *browseFile;
9479
Bram Moolenaar7171abe2004-10-11 10:06:20 +00009480 browseFile = do_browse(BROWSE_SAVE,
9481 (char_u *)_("Save Redirection"),
9482 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009483 if (browseFile == NULL)
9484 return; /* operation cancelled */
9485 vim_free(fname);
9486 fname = browseFile;
9487 eap->forceit = TRUE; /* since dialog already asked */
9488 }
9489#endif
9490
9491 redir_fd = open_exfile(fname, eap->forceit, mode);
9492 vim_free(fname);
9493 }
9494#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00009495 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009496 {
9497 /* redirect to a register a-z (resp. A-Z for appending) */
9498 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00009499 ++arg;
9500 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009501# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00009502 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00009503 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00009504# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00009505 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009506 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009507 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009508 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00009509 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009510 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009511 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00009512 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00009513 if (*arg == '>')
9514 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009515 /* Make register empty when not using @A-@Z and the
9516 * command is valid. */
9517 if (*arg == NUL && !isupper(redir_reg))
9518 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009519 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00009520 }
9521 if (*arg != NUL)
9522 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00009523 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00009524 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009525 }
9526 }
9527 else if (*arg == '=' && arg[1] == '>')
9528 {
9529 int append;
9530
9531 /* redirect to a variable */
9532 close_redir();
9533 arg += 2;
9534
9535 if (*arg == '>')
9536 {
9537 ++arg;
9538 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009539 }
9540 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00009541 append = FALSE;
9542
9543 if (var_redir_start(skipwhite(arg), append) == OK)
9544 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009545 }
9546#endif
9547
9548 /* TODO: redirect to a buffer */
9549
Bram Moolenaar071d4272004-06-13 20:20:40 +00009550 else
Bram Moolenaarca472992005-01-21 11:46:23 +00009551 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009552 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00009553
9554 /* Make sure redirection is not off. Can happen for cmdline completion
9555 * that indirectly invokes a command to catch its output. */
9556 if (redir_fd != NULL
9557#ifdef FEAT_EVAL
9558 || redir_reg || redir_vname
9559#endif
9560 )
9561 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009562}
9563
9564/*
9565 * ":redraw": force redraw
9566 */
9567 static void
9568ex_redraw(eap)
9569 exarg_T *eap;
9570{
9571 int r = RedrawingDisabled;
9572 int p = p_lz;
9573
9574 RedrawingDisabled = 0;
9575 p_lz = FALSE;
9576 update_topline();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009577 update_screen(eap->forceit ? CLEAR : VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009578#ifdef FEAT_TITLE
9579 if (need_maketitle)
9580 maketitle();
9581#endif
9582 RedrawingDisabled = r;
9583 p_lz = p;
9584
9585 /* Reset msg_didout, so that a message that's there is overwritten. */
9586 msg_didout = FALSE;
9587 msg_col = 0;
9588
Bram Moolenaar56667a52013-07-17 11:54:28 +02009589 /* No need to wait after an intentional redraw. */
9590 need_wait_return = FALSE;
9591
Bram Moolenaar071d4272004-06-13 20:20:40 +00009592 out_flush();
9593}
9594
9595/*
9596 * ":redrawstatus": force redraw of status line(s)
9597 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009598 static void
9599ex_redrawstatus(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009600 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009601{
9602#if defined(FEAT_WINDOWS)
9603 int r = RedrawingDisabled;
9604 int p = p_lz;
9605
9606 RedrawingDisabled = 0;
9607 p_lz = FALSE;
9608 if (eap->forceit)
9609 status_redraw_all();
9610 else
9611 status_redraw_curbuf();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009612 update_screen(VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009613 RedrawingDisabled = r;
9614 p_lz = p;
9615 out_flush();
9616#endif
9617}
9618
9619 static void
9620close_redir()
9621{
9622 if (redir_fd != NULL)
9623 {
9624 fclose(redir_fd);
9625 redir_fd = NULL;
9626 }
9627#ifdef FEAT_EVAL
9628 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009629 if (redir_vname)
9630 {
9631 var_redir_stop();
9632 redir_vname = 0;
9633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009634#endif
9635}
9636
9637#if defined(FEAT_SESSION) && defined(USE_CRNL)
9638# define MKSESSION_NL
9639static int mksession_nl = FALSE; /* use NL only in put_eol() */
9640#endif
9641
9642/*
9643 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
9644 */
9645 static void
9646ex_mkrc(eap)
9647 exarg_T *eap;
9648{
9649 FILE *fd;
9650 int failed = FALSE;
9651 char_u *fname;
9652#ifdef FEAT_BROWSE
9653 char_u *browseFile = NULL;
9654#endif
9655#ifdef FEAT_SESSION
9656 int view_session = FALSE;
9657 int using_vdir = FALSE; /* using 'viewdir'? */
9658 char_u *viewFile = NULL;
9659 unsigned *flagp;
9660#endif
9661
9662 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
9663 {
9664#ifdef FEAT_SESSION
9665 view_session = TRUE;
9666#else
9667 ex_ni(eap);
9668 return;
9669#endif
9670 }
9671
9672#ifdef FEAT_SESSION
Bram Moolenaar8d594672009-07-01 18:18:57 +00009673 /* Use the short file name until ":lcd" is used. We also don't use the
9674 * short file name when 'acd' is set, that is checked later. */
Bram Moolenaareeefcc72007-05-01 21:21:21 +00009675 did_lcd = FALSE;
9676
Bram Moolenaar071d4272004-06-13 20:20:40 +00009677 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
9678 if (eap->cmdidx == CMD_mkview
9679 && (*eap->arg == NUL
9680 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
9681 {
9682 eap->forceit = TRUE;
9683 fname = get_view_file(*eap->arg);
9684 if (fname == NULL)
9685 return;
9686 viewFile = fname;
9687 using_vdir = TRUE;
9688 }
9689 else
9690#endif
9691 if (*eap->arg != NUL)
9692 fname = eap->arg;
9693 else if (eap->cmdidx == CMD_mkvimrc)
9694 fname = (char_u *)VIMRC_FILE;
9695#ifdef FEAT_SESSION
9696 else if (eap->cmdidx == CMD_mksession)
9697 fname = (char_u *)SESSION_FILE;
9698#endif
9699 else
9700 fname = (char_u *)EXRC_FILE;
9701
9702#ifdef FEAT_BROWSE
9703 if (cmdmod.browse)
9704 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00009705 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009706# ifdef FEAT_SESSION
9707 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
9708 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
9709# endif
9710 (char_u *)_("Save Setup"),
9711 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
9712 if (browseFile == NULL)
9713 goto theend;
9714 fname = browseFile;
9715 eap->forceit = TRUE; /* since dialog already asked */
9716 }
9717#endif
9718
9719#if defined(FEAT_SESSION) && defined(vim_mkdir)
9720 /* When using 'viewdir' may have to create the directory. */
9721 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00009722 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009723#endif
9724
9725 fd = open_exfile(fname, eap->forceit, WRITEBIN);
9726 if (fd != NULL)
9727 {
9728#ifdef FEAT_SESSION
9729 if (eap->cmdidx == CMD_mkview)
9730 flagp = &vop_flags;
9731 else
9732 flagp = &ssop_flags;
9733#endif
9734
9735#ifdef MKSESSION_NL
9736 /* "unix" in 'sessionoptions': use NL line separator */
9737 if (view_session && (*flagp & SSOP_UNIX))
9738 mksession_nl = TRUE;
9739#endif
9740
9741 /* Write the version command for :mkvimrc */
9742 if (eap->cmdidx == CMD_mkvimrc)
9743 (void)put_line(fd, "version 6.0");
9744
9745#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009746 if (eap->cmdidx == CMD_mksession)
9747 {
9748 if (put_line(fd, "let SessionLoad = 1") == FAIL)
9749 failed = TRUE;
9750 }
9751
Bram Moolenaar071d4272004-06-13 20:20:40 +00009752 if (eap->cmdidx != CMD_mkview)
9753#endif
9754 {
9755 /* Write setting 'compatible' first, because it has side effects.
9756 * For that same reason only do it when needed. */
9757 if (p_cp)
9758 (void)put_line(fd, "if !&cp | set cp | endif");
9759 else
9760 (void)put_line(fd, "if &cp | set nocp | endif");
9761 }
9762
9763#ifdef FEAT_SESSION
9764 if (!view_session
9765 || (eap->cmdidx == CMD_mksession
9766 && (*flagp & SSOP_OPTIONS)))
9767#endif
9768 failed |= (makemap(fd, NULL) == FAIL
9769 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
9770
9771#ifdef FEAT_SESSION
9772 if (!failed && view_session)
9773 {
9774 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
9775 failed = TRUE;
9776 if (eap->cmdidx == CMD_mksession)
9777 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02009778 char_u *dirnow; /* current directory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009779
Bram Moolenaard9462e32011-04-11 21:35:11 +02009780 dirnow = alloc(MAXPATHL);
9781 if (dirnow == NULL)
9782 failed = TRUE;
9783 else
9784 {
9785 /*
9786 * Change to session file's dir.
9787 */
9788 if (mch_dirname(dirnow, MAXPATHL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00009789 || mch_chdir((char *)dirnow) != 0)
Bram Moolenaard9462e32011-04-11 21:35:11 +02009790 *dirnow = NUL;
9791 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
9792 {
9793 if (vim_chdirfile(fname) == OK)
9794 shorten_fnames(TRUE);
9795 }
9796 else if (*dirnow != NUL
9797 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
9798 {
9799 if (mch_chdir((char *)globaldir) == 0)
9800 shorten_fnames(TRUE);
9801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009802
Bram Moolenaard9462e32011-04-11 21:35:11 +02009803 failed |= (makeopens(fd, dirnow) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009804
Bram Moolenaard9462e32011-04-11 21:35:11 +02009805 /* restore original dir */
9806 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009807 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
Bram Moolenaard9462e32011-04-11 21:35:11 +02009808 {
9809 if (mch_chdir((char *)dirnow) != 0)
9810 EMSG(_(e_prev_dir));
9811 shorten_fnames(TRUE);
9812 }
9813 vim_free(dirnow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009814 }
9815 }
9816 else
9817 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009818 failed |= (put_view(fd, curwin, !using_vdir, flagp,
9819 -1) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009820 }
9821 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
9822 == FAIL)
9823 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009824 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
9825 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00009826 if (eap->cmdidx == CMD_mksession)
9827 {
9828 if (put_line(fd, "unlet SessionLoad") == FAIL)
9829 failed = TRUE;
9830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009831 }
9832#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009833 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
9834 failed = TRUE;
9835
Bram Moolenaar071d4272004-06-13 20:20:40 +00009836 failed |= fclose(fd);
9837
9838 if (failed)
9839 EMSG(_(e_write));
9840#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
9841 else if (eap->cmdidx == CMD_mksession)
9842 {
9843 /* successful session write - set this_session var */
Bram Moolenaard9462e32011-04-11 21:35:11 +02009844 char_u *tbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009845
Bram Moolenaard9462e32011-04-11 21:35:11 +02009846 tbuf = alloc(MAXPATHL);
9847 if (tbuf != NULL)
9848 {
9849 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
9850 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
9851 vim_free(tbuf);
9852 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009853 }
9854#endif
9855#ifdef MKSESSION_NL
9856 mksession_nl = FALSE;
9857#endif
9858 }
9859
9860#ifdef FEAT_BROWSE
9861theend:
9862 vim_free(browseFile);
9863#endif
9864#ifdef FEAT_SESSION
9865 vim_free(viewFile);
9866#endif
9867}
9868
Bram Moolenaardf177f62005-02-22 08:39:57 +00009869#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
9870 || defined(PROTO)
9871 int
9872vim_mkdir_emsg(name, prot)
9873 char_u *name;
Bram Moolenaar78a15312009-05-15 19:33:18 +00009874 int prot UNUSED;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009875{
9876 if (vim_mkdir(name, prot) != 0)
9877 {
9878 EMSG2(_("E739: Cannot create directory: %s"), name);
9879 return FAIL;
9880 }
9881 return OK;
9882}
9883#endif
9884
Bram Moolenaar071d4272004-06-13 20:20:40 +00009885/*
9886 * Open a file for writing for an Ex command, with some checks.
9887 * Return file descriptor, or NULL on failure.
9888 */
9889 FILE *
9890open_exfile(fname, forceit, mode)
9891 char_u *fname;
9892 int forceit;
9893 char *mode; /* "w" for create new file or "a" for append */
9894{
9895 FILE *fd;
9896
9897#ifdef UNIX
9898 /* with Unix it is possible to open a directory */
9899 if (mch_isdir(fname))
9900 {
9901 EMSG2(_(e_isadir2), fname);
9902 return NULL;
9903 }
9904#endif
9905 if (!forceit && *mode != 'a' && vim_fexists(fname))
9906 {
9907 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
9908 return NULL;
9909 }
9910
9911 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
9912 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
9913
9914 return fd;
9915}
9916
9917/*
9918 * ":mark" and ":k".
9919 */
9920 static void
9921ex_mark(eap)
9922 exarg_T *eap;
9923{
9924 pos_T pos;
9925
9926 if (*eap->arg == NUL) /* No argument? */
9927 EMSG(_(e_argreq));
9928 else if (eap->arg[1] != NUL) /* more than one character? */
9929 EMSG(_(e_trailing));
9930 else
9931 {
9932 pos = curwin->w_cursor; /* save curwin->w_cursor */
9933 curwin->w_cursor.lnum = eap->line2;
9934 beginline(BL_WHITE | BL_FIX);
9935 if (setmark(*eap->arg) == FAIL) /* set mark */
9936 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
9937 curwin->w_cursor = pos; /* restore curwin->w_cursor */
9938 }
9939}
9940
9941/*
9942 * Update w_topline, w_leftcol and the cursor position.
9943 */
9944 void
9945update_topline_cursor()
9946{
9947 check_cursor(); /* put cursor on valid line */
9948 update_topline();
9949 if (!curwin->w_p_wrap)
9950 validate_cursor();
9951 update_curswant();
9952}
9953
9954#ifdef FEAT_EX_EXTRA
9955/*
9956 * ":normal[!] {commands}": Execute normal mode commands.
9957 */
9958 static void
9959ex_normal(eap)
9960 exarg_T *eap;
9961{
Bram Moolenaar071d4272004-06-13 20:20:40 +00009962 int save_msg_scroll = msg_scroll;
9963 int save_restart_edit = restart_edit;
9964 int save_msg_didout = msg_didout;
9965 int save_State = State;
9966 tasave_T tabuf;
9967 int save_insertmode = p_im;
9968 int save_finish_op = finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +00009969 int save_opcount = opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009970#ifdef FEAT_MBYTE
9971 char_u *arg = NULL;
9972 int l;
9973 char_u *p;
9974#endif
9975
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00009976 if (ex_normal_lock > 0)
9977 {
9978 EMSG(_(e_secure));
9979 return;
9980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009981 if (ex_normal_busy >= p_mmd)
9982 {
9983 EMSG(_("E192: Recursive use of :normal too deep"));
9984 return;
9985 }
9986 ++ex_normal_busy;
9987
9988 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
9989 restart_edit = 0; /* don't go to Insert mode */
9990 p_im = FALSE; /* don't use 'insertmode' */
9991
9992#ifdef FEAT_MBYTE
9993 /*
9994 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
9995 * this for the K_SPECIAL leading byte, otherwise special keys will not
9996 * work.
9997 */
9998 if (has_mbyte)
9999 {
10000 int len = 0;
10001
10002 /* Count the number of characters to be escaped. */
10003 for (p = eap->arg; *p != NUL; ++p)
10004 {
10005# ifdef FEAT_GUI
10006 if (*p == CSI) /* leadbyte CSI */
10007 len += 2;
10008# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010009 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010010 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
10011# ifdef FEAT_GUI
10012 || *p == CSI
10013# endif
10014 )
10015 len += 2;
10016 }
10017 if (len > 0)
10018 {
10019 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
10020 if (arg != NULL)
10021 {
10022 len = 0;
10023 for (p = eap->arg; *p != NUL; ++p)
10024 {
10025 arg[len++] = *p;
10026# ifdef FEAT_GUI
10027 if (*p == CSI)
10028 {
10029 arg[len++] = KS_EXTRA;
10030 arg[len++] = (int)KE_CSI;
10031 }
10032# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010033 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010034 {
10035 arg[len++] = *++p;
10036 if (*p == K_SPECIAL)
10037 {
10038 arg[len++] = KS_SPECIAL;
10039 arg[len++] = KE_FILLER;
10040 }
10041# ifdef FEAT_GUI
10042 else if (*p == CSI)
10043 {
10044 arg[len++] = KS_EXTRA;
10045 arg[len++] = (int)KE_CSI;
10046 }
10047# endif
10048 }
10049 arg[len] = NUL;
10050 }
10051 }
10052 }
10053 }
10054#endif
10055
10056 /*
10057 * Save the current typeahead. This is required to allow using ":normal"
10058 * from an event handler and makes sure we don't hang when the argument
10059 * ends with half a command.
10060 */
10061 save_typeahead(&tabuf);
10062 if (tabuf.typebuf_valid)
10063 {
10064 /*
10065 * Repeat the :normal command for each line in the range. When no
10066 * range given, execute it just once, without positioning the cursor
10067 * first.
10068 */
10069 do
10070 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010071 if (eap->addr_count != 0)
10072 {
10073 curwin->w_cursor.lnum = eap->line1++;
10074 curwin->w_cursor.col = 0;
10075 }
10076
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010077 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +000010078#ifdef FEAT_MBYTE
10079 arg != NULL ? arg :
10080#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010081 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010082 }
10083 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
10084 }
10085
10086 /* Might not return to the main loop when in an event handler. */
10087 update_topline_cursor();
10088
10089 /* Restore the previous typeahead. */
10090 restore_typeahead(&tabuf);
10091
10092 --ex_normal_busy;
10093 msg_scroll = save_msg_scroll;
10094 restart_edit = save_restart_edit;
10095 p_im = save_insertmode;
10096 finish_op = save_finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +000010097 opcount = save_opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010098 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
10099
10100 /* Restore the state (needed when called from a function executed for
Bram Moolenaareda73602014-11-05 09:53:23 +010010101 * 'indentexpr'). Update the mouse and cursor, they may have changed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010102 State = save_State;
Bram Moolenaareda73602014-11-05 09:53:23 +010010103#ifdef FEAT_MOUSE
10104 setmouse();
10105#endif
10106#ifdef CURSOR_SHAPE
10107 ui_cursor_shape(); /* may show different cursor shape */
10108#endif
10109
Bram Moolenaar071d4272004-06-13 20:20:40 +000010110#ifdef FEAT_MBYTE
10111 vim_free(arg);
10112#endif
10113}
10114
10115/*
Bram Moolenaar64969662005-12-14 21:59:55 +000010116 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010117 */
10118 static void
10119ex_startinsert(eap)
10120 exarg_T *eap;
10121{
Bram Moolenaarfd371682005-01-14 21:42:54 +000010122 if (eap->forceit)
10123 {
10124 coladvance((colnr_T)MAXCOL);
10125 curwin->w_curswant = MAXCOL;
10126 curwin->w_set_curswant = FALSE;
10127 }
10128
Bram Moolenaara40c5002005-01-09 21:16:21 +000010129 /* Ignore the command when already in Insert mode. Inserting an
10130 * expression register that invokes a function can do this. */
10131 if (State & INSERT)
10132 return;
10133
Bram Moolenaar64969662005-12-14 21:59:55 +000010134 if (eap->cmdidx == CMD_startinsert)
10135 restart_edit = 'a';
10136 else if (eap->cmdidx == CMD_startreplace)
10137 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010138 else
Bram Moolenaar64969662005-12-14 21:59:55 +000010139 restart_edit = 'V';
10140
10141 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010142 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +000010143 if (eap->cmdidx == CMD_startinsert)
10144 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010145 curwin->w_curswant = 0; /* avoid MAXCOL */
10146 }
10147}
10148
10149/*
10150 * ":stopinsert"
10151 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010152 static void
10153ex_stopinsert(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010154 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010155{
10156 restart_edit = 0;
10157 stop_insert_mode = TRUE;
10158}
10159#endif
10160
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010161#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
10162/*
10163 * Execute normal mode command "cmd".
10164 * "remap" can be REMAP_NONE or REMAP_YES.
10165 */
10166 void
10167exec_normal_cmd(cmd, remap, silent)
10168 char_u *cmd;
10169 int remap;
10170 int silent;
10171{
10172 oparg_T oa;
10173
10174 /*
10175 * Stuff the argument into the typeahead buffer.
10176 * Execute normal_cmd() until there is no typeahead left.
10177 */
10178 clear_oparg(&oa);
10179 finish_op = FALSE;
10180 ins_typebuf(cmd, remap, 0, TRUE, silent);
10181 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
10182 && !got_int)
10183 {
10184 update_topline_cursor();
Bram Moolenaar48ac02c2011-01-17 19:50:06 +010010185 normal_cmd(&oa, TRUE); /* execute a Normal mode cmd */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010186 }
10187}
10188#endif
10189
Bram Moolenaar071d4272004-06-13 20:20:40 +000010190#ifdef FEAT_FIND_ID
10191 static void
10192ex_checkpath(eap)
10193 exarg_T *eap;
10194{
10195 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
10196 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
10197 (linenr_T)1, (linenr_T)MAXLNUM);
10198}
10199
10200#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
10201/*
10202 * ":psearch"
10203 */
10204 static void
10205ex_psearch(eap)
10206 exarg_T *eap;
10207{
10208 g_do_tagpreview = p_pvh;
10209 ex_findpat(eap);
10210 g_do_tagpreview = 0;
10211}
10212#endif
10213
10214 static void
10215ex_findpat(eap)
10216 exarg_T *eap;
10217{
10218 int whole = TRUE;
10219 long n;
10220 char_u *p;
10221 int action;
10222
10223 switch (cmdnames[eap->cmdidx].cmd_name[2])
10224 {
10225 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
10226 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
10227 action = ACTION_GOTO;
10228 else
10229 action = ACTION_SHOW;
10230 break;
10231 case 'i': /* ":ilist" and ":dlist" */
10232 action = ACTION_SHOW_ALL;
10233 break;
10234 case 'u': /* ":ijump" and ":djump" */
10235 action = ACTION_GOTO;
10236 break;
10237 default: /* ":isplit" and ":dsplit" */
10238 action = ACTION_SPLIT;
10239 break;
10240 }
10241
10242 n = 1;
10243 if (vim_isdigit(*eap->arg)) /* get count */
10244 {
10245 n = getdigits(&eap->arg);
10246 eap->arg = skipwhite(eap->arg);
10247 }
10248 if (*eap->arg == '/') /* Match regexp, not just whole words */
10249 {
10250 whole = FALSE;
10251 ++eap->arg;
10252 p = skip_regexp(eap->arg, '/', p_magic, NULL);
10253 if (*p)
10254 {
10255 *p++ = NUL;
10256 p = skipwhite(p);
10257
10258 /* Check for trailing illegal characters */
10259 if (!ends_excmd(*p))
10260 eap->errmsg = e_trailing;
10261 else
10262 eap->nextcmd = check_nextcmd(p);
10263 }
10264 }
10265 if (!eap->skip)
10266 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
10267 whole, !eap->forceit,
10268 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
10269 n, action, eap->line1, eap->line2);
10270}
10271#endif
10272
10273#ifdef FEAT_WINDOWS
10274
10275# ifdef FEAT_QUICKFIX
10276/*
10277 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
10278 */
10279 static void
10280ex_ptag(eap)
10281 exarg_T *eap;
10282{
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +010010283 g_do_tagpreview = p_pvh; /* will be reset to 0 in ex_tag_cmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010284 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
10285}
10286
10287/*
10288 * ":pedit"
10289 */
10290 static void
10291ex_pedit(eap)
10292 exarg_T *eap;
10293{
10294 win_T *curwin_save = curwin;
10295
10296 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +000010297 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010298 keep_help_flag = curwin_save->w_buffer->b_help;
10299 do_exedit(eap, NULL);
10300 keep_help_flag = FALSE;
10301 if (curwin != curwin_save && win_valid(curwin_save))
10302 {
10303 /* Return cursor to where we were */
10304 validate_cursor();
10305 redraw_later(VALID);
10306 win_enter(curwin_save, TRUE);
10307 }
10308 g_do_tagpreview = 0;
10309}
10310# endif
10311
10312/*
10313 * ":stag", ":stselect" and ":stjump".
10314 */
10315 static void
10316ex_stag(eap)
10317 exarg_T *eap;
10318{
10319 postponed_split = -1;
10320 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +000010321 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010322 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
10323 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +000010324 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010325}
10326#endif
10327
10328/*
10329 * ":tag", ":tselect", ":tjump", ":tnext", etc.
10330 */
10331 static void
10332ex_tag(eap)
10333 exarg_T *eap;
10334{
10335 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
10336}
10337
10338 static void
10339ex_tag_cmd(eap, name)
10340 exarg_T *eap;
10341 char_u *name;
10342{
10343 int cmd;
10344
10345 switch (name[1])
10346 {
10347 case 'j': cmd = DT_JUMP; /* ":tjump" */
10348 break;
10349 case 's': cmd = DT_SELECT; /* ":tselect" */
10350 break;
10351 case 'p': cmd = DT_PREV; /* ":tprevious" */
10352 break;
10353 case 'N': cmd = DT_PREV; /* ":tNext" */
10354 break;
10355 case 'n': cmd = DT_NEXT; /* ":tnext" */
10356 break;
10357 case 'o': cmd = DT_POP; /* ":pop" */
10358 break;
10359 case 'f': /* ":tfirst" */
10360 case 'r': cmd = DT_FIRST; /* ":trewind" */
10361 break;
10362 case 'l': cmd = DT_LAST; /* ":tlast" */
10363 break;
10364 default: /* ":tag" */
10365#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +000010366 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010367 {
10368 do_cstag(eap);
10369 return;
10370 }
10371#endif
10372 cmd = DT_TAG;
10373 break;
10374 }
10375
Bram Moolenaarb8a7b562006-02-01 21:47:16 +000010376 if (name[0] == 'l')
10377 {
10378#ifndef FEAT_QUICKFIX
10379 ex_ni(eap);
10380 return;
10381#else
10382 cmd = DT_LTAG;
10383#endif
10384 }
10385
Bram Moolenaar071d4272004-06-13 20:20:40 +000010386 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
10387 eap->forceit, TRUE);
10388}
10389
10390/*
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010391 * Check "str" for starting with a special cmdline variable.
10392 * If found return one of the SPEC_ values and set "*usedlen" to the length of
10393 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
10394 */
10395 int
10396find_cmdline_var(src, usedlen)
10397 char_u *src;
10398 int *usedlen;
10399{
10400 int len;
10401 int i;
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +000010402 static char *(spec_str[]) = {
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010403 "%",
10404#define SPEC_PERC 0
10405 "#",
10406#define SPEC_HASH 1
10407 "<cword>", /* cursor word */
10408#define SPEC_CWORD 2
10409 "<cWORD>", /* cursor WORD */
10410#define SPEC_CCWORD 3
10411 "<cfile>", /* cursor path name */
10412#define SPEC_CFILE 4
10413 "<sfile>", /* ":so" file name */
10414#define SPEC_SFILE 5
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010415 "<slnum>", /* ":so" file line number */
10416#define SPEC_SLNUM 6
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010417#ifdef FEAT_AUTOCMD
10418 "<afile>", /* autocommand file name */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010419# define SPEC_AFILE 7
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010420 "<abuf>", /* autocommand buffer number */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010421# define SPEC_ABUF 8
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010422 "<amatch>", /* autocommand match name */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010423# define SPEC_AMATCH 9
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010424#endif
10425#ifdef FEAT_CLIENTSERVER
10426 "<client>"
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010427# ifdef FEAT_AUTOCMD
10428# define SPEC_CLIENT 10
10429# else
10430# define SPEC_CLIENT 7
10431# endif
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010432#endif
10433 };
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010434
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000010435 for (i = 0; i < (int)(sizeof(spec_str) / sizeof(char *)); ++i)
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010436 {
10437 len = (int)STRLEN(spec_str[i]);
10438 if (STRNCMP(src, spec_str[i], len) == 0)
10439 {
10440 *usedlen = len;
10441 return i;
10442 }
10443 }
10444 return -1;
10445}
10446
10447/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010448 * Evaluate cmdline variables.
10449 *
10450 * change '%' to curbuf->b_ffname
10451 * '#' to curwin->w_altfile
10452 * '<cword>' to word under the cursor
10453 * '<cWORD>' to WORD under the cursor
10454 * '<cfile>' to path name under the cursor
10455 * '<sfile>' to sourced file name
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010456 * '<slnum>' to sourced file line number
Bram Moolenaar071d4272004-06-13 20:20:40 +000010457 * '<afile>' to file name for autocommand
10458 * '<abuf>' to buffer number for autocommand
10459 * '<amatch>' to matching name for autocommand
10460 *
10461 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
10462 * "" for error without a message) and NULL is returned.
10463 * Returns an allocated string if a valid match was found.
10464 * Returns NULL if no match was found. "usedlen" then still contains the
10465 * number of characters to skip.
10466 */
10467 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +000010468eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010469 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010470 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010471 int *usedlen; /* characters after src that are used */
10472 linenr_T *lnump; /* line number for :e command, or NULL */
10473 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010474 int *escaped; /* return value has escaped white space (can
10475 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010476{
10477 int i;
10478 char_u *s;
10479 char_u *result;
10480 char_u *resultbuf = NULL;
10481 int resultlen;
10482 buf_T *buf;
10483 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
10484 int spec_idx;
10485#ifdef FEAT_MODIFY_FNAME
10486 int skip_mod = FALSE;
10487#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010488 char_u strbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +000010489
10490 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +000010491 if (escaped != NULL)
10492 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010493
10494 /*
10495 * Check if there is something to do.
10496 */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010497 spec_idx = find_cmdline_var(src, usedlen);
10498 if (spec_idx < 0) /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010499 {
10500 *usedlen = 1;
10501 return NULL;
10502 }
10503
10504 /*
10505 * Skip when preceded with a backslash "\%" and "\#".
10506 * Note: In "\\%" the % is also not recognized!
10507 */
10508 if (src > srcstart && src[-1] == '\\')
10509 {
10510 *usedlen = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +000010511 STRMOVE(src - 1, src); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010512 return NULL;
10513 }
10514
10515 /*
10516 * word or WORD under cursor
10517 */
10518 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
10519 {
10520 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
10521 (FIND_IDENT|FIND_STRING) : FIND_STRING);
10522 if (resultlen == 0)
10523 {
10524 *errormsg = (char_u *)"";
10525 return NULL;
10526 }
10527 }
10528
10529 /*
10530 * '#': Alternate file name
10531 * '%': Current file name
10532 * File name under the cursor
10533 * File name for autocommand
10534 * and following modifiers
10535 */
10536 else
10537 {
10538 switch (spec_idx)
10539 {
10540 case SPEC_PERC: /* '%': current file */
10541 if (curbuf->b_fname == NULL)
10542 {
10543 result = (char_u *)"";
10544 valid = 0; /* Must have ":p:h" to be valid */
10545 }
10546 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010547 result = curbuf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010548 break;
10549
10550 case SPEC_HASH: /* '#' or "#99": alternate file */
10551 if (src[1] == '#') /* "##": the argument list */
10552 {
10553 result = arg_all();
10554 resultbuf = result;
10555 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +000010556 if (escaped != NULL)
10557 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010558#ifdef FEAT_MODIFY_FNAME
10559 skip_mod = TRUE;
10560#endif
10561 break;
10562 }
10563 s = src + 1;
Bram Moolenaard812df62008-11-09 12:46:09 +000010564 if (*s == '<') /* "#<99" uses v:oldfiles */
10565 ++s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010566 i = (int)getdigits(&s);
10567 *usedlen = (int)(s - src); /* length of what we expand */
10568
Bram Moolenaard812df62008-11-09 12:46:09 +000010569 if (src[1] == '<')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010570 {
Bram Moolenaard812df62008-11-09 12:46:09 +000010571 if (*usedlen < 2)
10572 {
10573 /* Should we give an error message for #<text? */
10574 *usedlen = 1;
10575 return NULL;
10576 }
10577#ifdef FEAT_EVAL
10578 result = list_find_str(get_vim_var_list(VV_OLDFILES),
10579 (long)i);
10580 if (result == NULL)
10581 {
10582 *errormsg = (char_u *)"";
10583 return NULL;
10584 }
10585#else
10586 *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
Bram Moolenaar071d4272004-06-13 20:20:40 +000010587 return NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +000010588#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010589 }
10590 else
Bram Moolenaard812df62008-11-09 12:46:09 +000010591 {
10592 buf = buflist_findnr(i);
10593 if (buf == NULL)
10594 {
10595 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
10596 return NULL;
10597 }
10598 if (lnump != NULL)
10599 *lnump = ECMD_LAST;
10600 if (buf->b_fname == NULL)
10601 {
10602 result = (char_u *)"";
10603 valid = 0; /* Must have ":p:h" to be valid */
10604 }
10605 else
10606 result = buf->b_fname;
10607 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010608 break;
10609
10610#ifdef FEAT_SEARCHPATH
10611 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +000010612 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010613 if (result == NULL)
10614 {
10615 *errormsg = (char_u *)"";
10616 return NULL;
10617 }
10618 resultbuf = result; /* remember allocated string */
10619 break;
10620#endif
10621
10622#ifdef FEAT_AUTOCMD
10623 case SPEC_AFILE: /* file name for autocommand */
10624 result = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +000010625 if (result != NULL && !autocmd_fname_full)
10626 {
10627 /* Still need to turn the fname into a full path. It is
10628 * postponed to avoid a delay when <afile> is not used. */
10629 autocmd_fname_full = TRUE;
10630 result = FullName_save(autocmd_fname, FALSE);
10631 vim_free(autocmd_fname);
10632 autocmd_fname = result;
10633 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010634 if (result == NULL)
10635 {
10636 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
10637 return NULL;
10638 }
Bram Moolenaara0174af2008-01-02 20:08:25 +000010639 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010640 break;
10641
10642 case SPEC_ABUF: /* buffer number for autocommand */
10643 if (autocmd_bufnr <= 0)
10644 {
10645 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
10646 return NULL;
10647 }
10648 sprintf((char *)strbuf, "%d", autocmd_bufnr);
10649 result = strbuf;
10650 break;
10651
10652 case SPEC_AMATCH: /* match name for autocommand */
10653 result = autocmd_match;
10654 if (result == NULL)
10655 {
10656 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
10657 return NULL;
10658 }
10659 break;
10660
10661#endif
10662 case SPEC_SFILE: /* file name for ":so" command */
10663 result = sourcing_name;
10664 if (result == NULL)
10665 {
10666 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
10667 return NULL;
10668 }
10669 break;
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010670 case SPEC_SLNUM: /* line in file for ":so" command */
10671 if (sourcing_name == NULL || sourcing_lnum == 0)
10672 {
10673 *errormsg = (char_u *)_("E842: no line number to use for \"<slnum>\"");
10674 return NULL;
10675 }
10676 sprintf((char *)strbuf, "%ld", (long)sourcing_lnum);
10677 result = strbuf;
10678 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010679#if defined(FEAT_CLIENTSERVER)
10680 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000010681 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
10682 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010683 result = strbuf;
10684 break;
10685#endif
10686 }
10687
10688 resultlen = (int)STRLEN(result); /* length of new string */
10689 if (src[*usedlen] == '<') /* remove the file name extension */
10690 {
10691 ++*usedlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010692 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010693 resultlen = (int)(s - result);
10694 }
10695#ifdef FEAT_MODIFY_FNAME
10696 else if (!skip_mod)
10697 {
10698 valid |= modify_fname(src, usedlen, &result, &resultbuf,
10699 &resultlen);
10700 if (result == NULL)
10701 {
10702 *errormsg = (char_u *)"";
10703 return NULL;
10704 }
10705 }
10706#endif
10707 }
10708
10709 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
10710 {
10711 if (valid != VALID_HEAD + VALID_PATH)
10712 /* xgettext:no-c-format */
10713 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
10714 else
10715 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
10716 result = NULL;
10717 }
10718 else
10719 result = vim_strnsave(result, resultlen);
10720 vim_free(resultbuf);
10721 return result;
10722}
10723
10724/*
10725 * Concatenate all files in the argument list, separated by spaces, and return
10726 * it in one allocated string.
10727 * Spaces and backslashes in the file names are escaped with a backslash.
10728 * Returns NULL when out of memory.
10729 */
10730 static char_u *
10731arg_all()
10732{
10733 int len;
10734 int idx;
10735 char_u *retval = NULL;
10736 char_u *p;
10737
10738 /*
10739 * Do this loop two times:
10740 * first time: compute the total length
10741 * second time: concatenate the names
10742 */
10743 for (;;)
10744 {
10745 len = 0;
10746 for (idx = 0; idx < ARGCOUNT; ++idx)
10747 {
10748 p = alist_name(&ARGLIST[idx]);
10749 if (p != NULL)
10750 {
10751 if (len > 0)
10752 {
10753 /* insert a space in between names */
10754 if (retval != NULL)
10755 retval[len] = ' ';
10756 ++len;
10757 }
10758 for ( ; *p != NUL; ++p)
10759 {
Bram Moolenaar6e8d3b02015-06-09 21:33:31 +020010760 if (*p == ' '
10761#ifndef BACKSLASH_IN_FILENAME
10762 || *p == '\\'
10763#endif
10764 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010765 {
10766 /* insert a backslash */
10767 if (retval != NULL)
10768 retval[len] = '\\';
10769 ++len;
10770 }
10771 if (retval != NULL)
10772 retval[len] = *p;
10773 ++len;
10774 }
10775 }
10776 }
10777
10778 /* second time: break here */
10779 if (retval != NULL)
10780 {
10781 retval[len] = NUL;
10782 break;
10783 }
10784
10785 /* allocate memory */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000010786 retval = alloc((unsigned)len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010787 if (retval == NULL)
10788 break;
10789 }
10790
10791 return retval;
10792}
10793
10794#if defined(FEAT_AUTOCMD) || defined(PROTO)
10795/*
10796 * Expand the <sfile> string in "arg".
10797 *
10798 * Returns an allocated string, or NULL for any error.
10799 */
10800 char_u *
10801expand_sfile(arg)
10802 char_u *arg;
10803{
10804 char_u *errormsg;
10805 int len;
10806 char_u *result;
10807 char_u *newres;
10808 char_u *repl;
10809 int srclen;
10810 char_u *p;
10811
10812 result = vim_strsave(arg);
10813 if (result == NULL)
10814 return NULL;
10815
10816 for (p = result; *p; )
10817 {
10818 if (STRNCMP(p, "<sfile>", 7) != 0)
10819 ++p;
10820 else
10821 {
10822 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010823 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010824 if (errormsg != NULL)
10825 {
10826 if (*errormsg)
10827 emsg(errormsg);
10828 vim_free(result);
10829 return NULL;
10830 }
10831 if (repl == NULL) /* no match (cannot happen) */
10832 {
10833 p += srclen;
10834 continue;
10835 }
10836 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
10837 newres = alloc(len);
10838 if (newres == NULL)
10839 {
10840 vim_free(repl);
10841 vim_free(result);
10842 return NULL;
10843 }
10844 mch_memmove(newres, result, (size_t)(p - result));
10845 STRCPY(newres + (p - result), repl);
10846 len = (int)STRLEN(newres);
10847 STRCAT(newres, p + srclen);
10848 vim_free(repl);
10849 vim_free(result);
10850 result = newres;
10851 p = newres + len; /* continue after the match */
10852 }
10853 }
10854
10855 return result;
10856}
10857#endif
10858
10859#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010860static int ses_winsizes __ARGS((FILE *fd, int restore_size,
10861 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010862static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
10863static frame_T *ses_skipframe __ARGS((frame_T *fr));
10864static int ses_do_frame __ARGS((frame_T *fr));
10865static int ses_do_win __ARGS((win_T *wp));
10866static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
10867static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
10868static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
10869
10870/*
10871 * Write openfile commands for the current buffers to an .exrc file.
10872 * Return FAIL on error, OK otherwise.
10873 */
10874 static int
10875makeopens(fd, dirnow)
10876 FILE *fd;
10877 char_u *dirnow; /* Current directory name */
10878{
10879 buf_T *buf;
10880 int only_save_windows = TRUE;
10881 int nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010882 int restore_size = TRUE;
10883 win_T *wp;
10884 char_u *sname;
10885 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000010886 int tabnr;
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020010887 int restore_stal = FALSE;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010888 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010889 frame_T *tab_topframe;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010890 int cur_arg_idx = 0;
Bram Moolenaar383c6f52008-01-04 15:01:07 +000010891 int next_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010892
10893 if (ssop_flags & SSOP_BUFFERS)
10894 only_save_windows = FALSE; /* Save ALL buffers */
10895
10896 /*
10897 * Begin by setting the this_session variable, and then other
10898 * sessionable variables.
10899 */
10900#ifdef FEAT_EVAL
10901 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
10902 return FAIL;
10903 if (ssop_flags & SSOP_GLOBALS)
10904 if (store_session_globals(fd) == FAIL)
10905 return FAIL;
10906#endif
10907
10908 /*
10909 * Close all windows but one.
10910 */
10911 if (put_line(fd, "silent only") == FAIL)
10912 return FAIL;
10913
10914 /*
10915 * Now a :cd command to the session directory or the current directory
10916 */
10917 if (ssop_flags & SSOP_SESDIR)
10918 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010919 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
10920 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010921 return FAIL;
10922 }
10923 else if (ssop_flags & SSOP_CURDIR)
10924 {
10925 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
10926 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010927 || fputs("cd ", fd) < 0
10928 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
10929 || put_eol(fd) == FAIL)
10930 {
10931 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010932 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010934 vim_free(sname);
10935 }
10936
10937 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010938 * If there is an empty, unnamed buffer we will wipe it out later.
10939 * Remember the buffer number.
10940 */
10941 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
10942 return FAIL;
10943 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
10944 return FAIL;
10945 if (put_line(fd, "endif") == FAIL)
10946 return FAIL;
10947
10948 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010949 * Now save the current files, current buffer first.
10950 */
10951 if (put_line(fd, "set shortmess=aoO") == FAIL)
10952 return FAIL;
10953
10954 /* Now put the other buffers into the buffer list */
10955 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10956 {
10957 if (!(only_save_windows && buf->b_nwindows == 0)
10958 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
10959 && buf->b_fname != NULL
10960 && buf->b_p_bl)
10961 {
10962 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
10963 : buf->b_wininfo->wi_fpos.lnum) < 0
10964 || ses_fname(fd, buf, &ssop_flags) == FAIL)
10965 return FAIL;
10966 }
10967 }
10968
10969 /* the global argument list */
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010010970 if (ses_arglist(fd, "argglobal", &global_alist.al_ga,
Bram Moolenaar071d4272004-06-13 20:20:40 +000010971 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
10972 return FAIL;
10973
10974 if (ssop_flags & SSOP_RESIZE)
10975 {
10976 /* Note: after the restore we still check it worked!*/
10977 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
10978 || put_eol(fd) == FAIL)
10979 return FAIL;
10980 }
10981
10982#ifdef FEAT_GUI
10983 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
10984 {
10985 int x, y;
10986
10987 if (gui_mch_get_winpos(&x, &y) == OK)
10988 {
10989 /* Note: after the restore we still check it worked!*/
10990 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
10991 return FAIL;
10992 }
10993 }
10994#endif
10995
10996 /*
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020010997 * When there are two or more tabpages and 'showtabline' is 1 the tabline
10998 * will be displayed when creating the next tab. That resizes the windows
10999 * in the first tab, which may cause problems. Set 'showtabline' to 2
11000 * temporarily to avoid that.
11001 */
11002 if (p_stal == 1 && first_tabpage->tp_next != NULL)
11003 {
11004 if (put_line(fd, "set stal=2") == FAIL)
11005 return FAIL;
11006 restore_stal = TRUE;
11007 }
11008
11009 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000011010 * May repeat putting Windows for each tab, when "tabpages" is in
11011 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011012 * Don't use goto_tabpage(), it may change directory and trigger
11013 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011014 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011015 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011016 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011017 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011018 {
Bram Moolenaar695baee2015-04-13 12:39:22 +020011019 int need_tabnew = FALSE;
11020 int cnr = 1;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011021
Bram Moolenaar18144c82006-04-12 21:52:12 +000011022 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +000011023 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011024 tabpage_T *tp = find_tabpage(tabnr);
11025
11026 if (tp == NULL)
11027 break; /* done all tab pages */
11028 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011029 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011030 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011031 tab_topframe = topframe;
11032 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011033 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011034 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011035 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011036 tab_topframe = tp->tp_topframe;
11037 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011038 if (tabnr > 1)
11039 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011040 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011041
Bram Moolenaar18144c82006-04-12 21:52:12 +000011042 /*
11043 * Before creating the window layout, try loading one file. If this
11044 * is aborted we don't end up with a number of useless windows.
11045 * This may have side effects! (e.g., compressed or network file).
11046 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011047 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011048 {
11049 if (ses_do_win(wp)
11050 && wp->w_buffer->b_ffname != NULL
11051 && !wp->w_buffer->b_help
11052#ifdef FEAT_QUICKFIX
11053 && !bt_nofile(wp->w_buffer)
11054#endif
11055 )
11056 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011057 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +000011058 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
11059 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011060 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011061 if (!wp->w_arg_idx_invalid)
11062 edited_win = wp;
11063 break;
11064 }
11065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011066
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011067 /* If no file got edited create an empty tab page. */
11068 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
11069 return FAIL;
11070
Bram Moolenaar18144c82006-04-12 21:52:12 +000011071 /*
11072 * Save current window layout.
11073 */
11074 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011075 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011076 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011077 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011078 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
11079 return FAIL;
11080 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
11081 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011082
Bram Moolenaar18144c82006-04-12 21:52:12 +000011083 /*
11084 * Check if window sizes can be restored (no windows omitted).
11085 * Remember the window number of the current window after restoring.
11086 */
11087 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011088 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +000011089 {
11090 if (ses_do_win(wp))
11091 ++nr;
11092 else
11093 restore_size = FALSE;
11094 if (curwin == wp)
11095 cnr = nr;
11096 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011097
Bram Moolenaar18144c82006-04-12 21:52:12 +000011098 /* Go to the first window. */
11099 if (put_line(fd, "wincmd t") == FAIL)
11100 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000011101
Bram Moolenaar18144c82006-04-12 21:52:12 +000011102 /*
11103 * If more than one window, see if sizes can be restored.
11104 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
11105 * resized when moving between windows.
11106 * Do this before restoring the view, so that the topline and the
11107 * cursor can be set. This is done again below.
11108 */
11109 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
11110 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011111 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011112 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011113
Bram Moolenaar18144c82006-04-12 21:52:12 +000011114 /*
11115 * Restore the view of the window (options, file, cursor, etc.).
11116 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011117 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011118 {
11119 if (!ses_do_win(wp))
11120 continue;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011121 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
11122 cur_arg_idx) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011123 return FAIL;
11124 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
11125 return FAIL;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011126 next_arg_idx = wp->w_arg_idx;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011127 }
11128
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011129 /* The argument index in the first tab page is zero, need to set it in
11130 * each window. For further tab pages it's the window where we do
11131 * "tabedit". */
11132 cur_arg_idx = next_arg_idx;
11133
Bram Moolenaar18144c82006-04-12 21:52:12 +000011134 /*
11135 * Restore cursor to the current window if it's not the first one.
11136 */
11137 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
11138 || put_eol(fd) == FAIL))
11139 return FAIL;
11140
11141 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000011142 * Restore window sizes again after jumping around in windows, because
11143 * the current window has a minimum size while others may not.
11144 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011145 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011146 return FAIL;
11147
Bram Moolenaar18144c82006-04-12 21:52:12 +000011148 /* Don't continue in another tab page when doing only the current one
11149 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011150 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +000011151 break;
11152 }
11153
11154 if (ssop_flags & SSOP_TABPAGES)
11155 {
Bram Moolenaar18144c82006-04-12 21:52:12 +000011156 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
11157 || put_eol(fd) == FAIL)
11158 return FAIL;
11159 }
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020011160 if (restore_stal && put_line(fd, "set stal=1") == FAIL)
11161 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011162
Bram Moolenaar9c102382006-05-03 21:26:49 +000011163 /*
11164 * Wipe out an empty unnamed buffer we started in.
11165 */
11166 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
11167 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +000011168 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +000011169 return FAIL;
11170 if (put_line(fd, "endif") == FAIL)
11171 return FAIL;
11172 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
11173 return FAIL;
11174
11175 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
11176 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
11177 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
11178 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011179
11180 /*
11181 * Lastly, execute the x.vim file if it exists.
11182 */
11183 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
11184 || put_line(fd, "if file_readable(s:sx)") == FAIL
Bram Moolenaar42ba1262008-12-09 10:18:03 +000011185 || put_line(fd, " exe \"source \" . fnameescape(s:sx)") == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011186 || put_line(fd, "endif") == FAIL)
11187 return FAIL;
11188
11189 return OK;
11190}
11191
11192 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011193ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011194 FILE *fd;
11195 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011196 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011197{
11198 int n = 0;
11199 win_T *wp;
11200
11201 if (restore_size && (ssop_flags & SSOP_WINSIZE))
11202 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011203 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011204 {
11205 if (!ses_do_win(wp))
11206 continue;
11207 ++n;
11208
11209 /* restore height when not full height */
11210 if (wp->w_height + wp->w_status_height < topframe->fr_height
11211 && (fprintf(fd,
11212 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
11213 n, (long)wp->w_height, Rows / 2, Rows) < 0
11214 || put_eol(fd) == FAIL))
11215 return FAIL;
11216
11217 /* restore width when not full width */
11218 if (wp->w_width < Columns && (fprintf(fd,
11219 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
11220 n, (long)wp->w_width, Columns / 2, Columns) < 0
11221 || put_eol(fd) == FAIL))
11222 return FAIL;
11223 }
11224 }
11225 else
11226 {
11227 /* Just equalise window sizes */
11228 if (put_line(fd, "wincmd =") == FAIL)
11229 return FAIL;
11230 }
11231 return OK;
11232}
11233
11234/*
11235 * Write commands to "fd" to recursively create windows for frame "fr",
11236 * horizontally and vertically split.
11237 * After the commands the last window in the frame is the current window.
11238 * Returns FAIL when writing the commands to "fd" fails.
11239 */
11240 static int
11241ses_win_rec(fd, fr)
11242 FILE *fd;
11243 frame_T *fr;
11244{
11245 frame_T *frc;
11246 int count = 0;
11247
11248 if (fr->fr_layout != FR_LEAF)
11249 {
11250 /* Find first frame that's not skipped and then create a window for
11251 * each following one (first frame is already there). */
11252 frc = ses_skipframe(fr->fr_child);
11253 if (frc != NULL)
11254 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
11255 {
11256 /* Make window as big as possible so that we have lots of room
11257 * to split. */
11258 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
11259 || put_line(fd, fr->fr_layout == FR_COL
11260 ? "split" : "vsplit") == FAIL)
11261 return FAIL;
11262 ++count;
11263 }
11264
11265 /* Go back to the first window. */
11266 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
11267 ? "%dwincmd k" : "%dwincmd h", count) < 0
11268 || put_eol(fd) == FAIL))
11269 return FAIL;
11270
11271 /* Recursively create frames/windows in each window of this column or
11272 * row. */
11273 frc = ses_skipframe(fr->fr_child);
11274 while (frc != NULL)
11275 {
11276 ses_win_rec(fd, frc);
11277 frc = ses_skipframe(frc->fr_next);
11278 /* Go to next window. */
11279 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
11280 return FAIL;
11281 }
11282 }
11283 return OK;
11284}
11285
11286/*
11287 * Skip frames that don't contain windows we want to save in the Session.
11288 * Returns NULL when there none.
11289 */
11290 static frame_T *
11291ses_skipframe(fr)
11292 frame_T *fr;
11293{
11294 frame_T *frc;
11295
11296 for (frc = fr; frc != NULL; frc = frc->fr_next)
11297 if (ses_do_frame(frc))
11298 break;
11299 return frc;
11300}
11301
11302/*
11303 * Return TRUE if frame "fr" has a window somewhere that we want to save in
11304 * the Session.
11305 */
11306 static int
11307ses_do_frame(fr)
11308 frame_T *fr;
11309{
11310 frame_T *frc;
11311
11312 if (fr->fr_layout == FR_LEAF)
11313 return ses_do_win(fr->fr_win);
11314 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
11315 if (ses_do_frame(frc))
11316 return TRUE;
11317 return FALSE;
11318}
11319
11320/*
11321 * Return non-zero if window "wp" is to be stored in the Session.
11322 */
11323 static int
11324ses_do_win(wp)
11325 win_T *wp;
11326{
11327 if (wp->w_buffer->b_fname == NULL
11328#ifdef FEAT_QUICKFIX
11329 /* When 'buftype' is "nofile" can't restore the window contents. */
11330 || bt_nofile(wp->w_buffer)
11331#endif
11332 )
11333 return (ssop_flags & SSOP_BLANK);
11334 if (wp->w_buffer->b_help)
11335 return (ssop_flags & SSOP_HELP);
11336 return TRUE;
11337}
11338
11339/*
11340 * Write commands to "fd" to restore the view of a window.
11341 * Caller must make sure 'scrolloff' is zero.
11342 */
11343 static int
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011344put_view(fd, wp, add_edit, flagp, current_arg_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011345 FILE *fd;
11346 win_T *wp;
11347 int add_edit; /* add ":edit" command to view */
11348 unsigned *flagp; /* vop_flags or ssop_flags */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011349 int current_arg_idx; /* current argument index of the window, use
11350 * -1 if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011351{
11352 win_T *save_curwin;
11353 int f;
11354 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011355 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011356
11357 /* Always restore cursor position for ":mksession". For ":mkview" only
11358 * when 'viewoptions' contains "cursor". */
11359 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
11360
11361 /*
11362 * Local argument list.
11363 */
11364 if (wp->w_alist == &global_alist)
11365 {
11366 if (put_line(fd, "argglobal") == FAIL)
11367 return FAIL;
11368 }
11369 else
11370 {
11371 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
11372 flagp == &vop_flags
11373 || !(*flagp & SSOP_CURDIR)
11374 || wp->w_localdir != NULL, flagp) == FAIL)
11375 return FAIL;
11376 }
11377
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011378 /* Only when part of a session: restore the argument index. Some
11379 * arguments may have been deleted, check if the index is valid. */
Bram Moolenaar51f53df2010-06-26 05:25:54 +020011380 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx < WARGCOUNT(wp)
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011381 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011382 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011383 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011384 || put_eol(fd) == FAIL)
11385 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011386 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011387 }
11388
11389 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011390 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000011391 {
11392 /*
11393 * Load the file.
11394 */
11395 if (wp->w_buffer->b_ffname != NULL
11396#ifdef FEAT_QUICKFIX
11397 && !bt_nofile(wp->w_buffer)
11398#endif
11399 )
11400 {
11401 /*
11402 * Editing a file in this buffer: use ":edit file".
11403 * This may have side effects! (e.g., compressed or network file).
11404 */
11405 if (fputs("edit ", fd) < 0
11406 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
11407 return FAIL;
11408 }
11409 else
11410 {
11411 /* No file in this buffer, just make it empty. */
11412 if (put_line(fd, "enew") == FAIL)
11413 return FAIL;
11414#ifdef FEAT_QUICKFIX
11415 if (wp->w_buffer->b_ffname != NULL)
11416 {
11417 /* The buffer does have a name, but it's not a file name. */
11418 if (fputs("file ", fd) < 0
11419 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
11420 return FAIL;
11421 }
11422#endif
11423 do_cursor = FALSE;
11424 }
11425 }
11426
11427 /*
11428 * Local mappings and abbreviations.
11429 */
11430 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
11431 && makemap(fd, wp->w_buffer) == FAIL)
11432 return FAIL;
11433
11434 /*
11435 * Local options. Need to go to the window temporarily.
11436 * Store only local values when using ":mkview" and when ":mksession" is
11437 * used and 'sessionoptions' doesn't include "options".
11438 * Some folding options are always stored when "folds" is included,
11439 * otherwise the folds would not be restored correctly.
11440 */
11441 save_curwin = curwin;
11442 curwin = wp;
11443 curbuf = curwin->w_buffer;
11444 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
11445 f = makeset(fd, OPT_LOCAL,
11446 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
11447#ifdef FEAT_FOLDING
11448 else if (*flagp & SSOP_FOLDS)
11449 f = makefoldset(fd);
11450#endif
11451 else
11452 f = OK;
11453 curwin = save_curwin;
11454 curbuf = curwin->w_buffer;
11455 if (f == FAIL)
11456 return FAIL;
11457
11458#ifdef FEAT_FOLDING
11459 /*
11460 * Save Folds when 'buftype' is empty and for help files.
11461 */
11462 if ((*flagp & SSOP_FOLDS)
11463 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000011464# ifdef FEAT_QUICKFIX
11465 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
11466# endif
11467 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000011468 {
11469 if (put_folds(fd, wp) == FAIL)
11470 return FAIL;
11471 }
11472#endif
11473
11474 /*
11475 * Set the cursor after creating folds, since that moves the cursor.
11476 */
11477 if (do_cursor)
11478 {
11479
11480 /* Restore the cursor line in the file and relatively in the
11481 * window. Don't use "G", it changes the jumplist. */
11482 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
11483 (long)wp->w_cursor.lnum,
11484 (long)(wp->w_cursor.lnum - wp->w_topline),
11485 (long)wp->w_height / 2, (long)wp->w_height) < 0
11486 || put_eol(fd) == FAIL
11487 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
11488 || put_line(fd, "exe s:l") == FAIL
11489 || put_line(fd, "normal! zt") == FAIL
11490 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
11491 || put_eol(fd) == FAIL)
11492 return FAIL;
11493 /* Restore the cursor column and left offset when not wrapping. */
11494 if (wp->w_cursor.col == 0)
11495 {
11496 if (put_line(fd, "normal! 0") == FAIL)
11497 return FAIL;
11498 }
11499 else
11500 {
11501 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
11502 {
11503 if (fprintf(fd,
11504 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011505 (long)wp->w_virtcol + 1,
11506 (long)(wp->w_virtcol - wp->w_leftcol),
Bram Moolenaar071d4272004-06-13 20:20:40 +000011507 (long)wp->w_width / 2, (long)wp->w_width) < 0
11508 || put_eol(fd) == FAIL
11509 || put_line(fd, "if s:c > 0") == FAIL
11510 || fprintf(fd,
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011511 " exe 'normal! ' . s:c . '|zs' . %ld . '|'",
11512 (long)wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011513 || put_eol(fd) == FAIL
11514 || put_line(fd, "else") == FAIL
Bram Moolenaarfdf447b2013-02-26 17:21:29 +010011515 || fprintf(fd, " normal! 0%d|", wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011516 || put_eol(fd) == FAIL
11517 || put_line(fd, "endif") == FAIL)
11518 return FAIL;
11519 }
11520 else
11521 {
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011522 if (fprintf(fd, "normal! 0%d|", wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011523 || put_eol(fd) == FAIL)
11524 return FAIL;
11525 }
11526 }
11527 }
11528
11529 /*
11530 * Local directory.
11531 */
11532 if (wp->w_localdir != NULL)
11533 {
11534 if (fputs("lcd ", fd) < 0
11535 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
11536 || put_eol(fd) == FAIL)
11537 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011538 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011539 }
11540
11541 return OK;
11542}
11543
11544/*
11545 * Write an argument list to the session file.
11546 * Returns FAIL if writing fails.
11547 */
11548 static int
11549ses_arglist(fd, cmd, gap, fullname, flagp)
11550 FILE *fd;
11551 char *cmd;
11552 garray_T *gap;
11553 int fullname; /* TRUE: use full path name */
11554 unsigned *flagp;
11555{
11556 int i;
Bram Moolenaard9462e32011-04-11 21:35:11 +020011557 char_u *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011558 char_u *s;
11559
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011560 if (fputs(cmd, fd) < 0 || put_eol(fd) == FAIL)
11561 return FAIL;
11562 if (put_line(fd, "silent! argdel *") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011563 return FAIL;
11564 for (i = 0; i < gap->ga_len; ++i)
11565 {
11566 /* NULL file names are skipped (only happens when out of memory). */
11567 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
11568 if (s != NULL)
11569 {
11570 if (fullname)
11571 {
Bram Moolenaard9462e32011-04-11 21:35:11 +020011572 buf = alloc(MAXPATHL);
11573 if (buf != NULL)
11574 {
11575 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
11576 s = buf;
11577 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011578 }
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011579 if (fputs("argadd ", fd) < 0
11580 || ses_put_fname(fd, s, flagp) == FAIL
11581 || put_eol(fd) == FAIL)
Bram Moolenaard9462e32011-04-11 21:35:11 +020011582 {
11583 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011584 return FAIL;
Bram Moolenaard9462e32011-04-11 21:35:11 +020011585 }
11586 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011587 }
11588 }
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011589 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011590}
11591
11592/*
11593 * Write a buffer name to the session file.
11594 * Also ends the line.
11595 * Returns FAIL if writing fails.
11596 */
11597 static int
11598ses_fname(fd, buf, flagp)
11599 FILE *fd;
11600 buf_T *buf;
11601 unsigned *flagp;
11602{
11603 char_u *name;
11604
11605 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011606 * the session file will be sourced.
11607 * Don't do this for ":mkview", we don't know the current directory.
11608 * Don't do this after ":lcd", we don't keep track of what the current
11609 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011610 if (buf->b_sfname != NULL
11611 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011612 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
Bram Moolenaar8d594672009-07-01 18:18:57 +000011613#ifdef FEAT_AUTOCHDIR
11614 && !p_acd
11615#endif
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011616 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011617 name = buf->b_sfname;
11618 else
11619 name = buf->b_ffname;
11620 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
11621 return FAIL;
11622 return OK;
11623}
11624
11625/*
11626 * Write a file name to the session file.
11627 * Takes care of the "slash" option in 'sessionoptions' and escapes special
11628 * characters.
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011629 * Returns FAIL if writing fails or out of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011630 */
11631 static int
11632ses_put_fname(fd, name, flagp)
11633 FILE *fd;
11634 char_u *name;
11635 unsigned *flagp;
11636{
11637 char_u *sname;
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011638 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011639 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011640
11641 sname = home_replace_save(NULL, name);
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011642 if (sname == NULL)
11643 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011644
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011645 if (*flagp & SSOP_SLASH)
11646 {
11647 /* change all backslashes to forward slashes */
11648 for (p = sname; *p != NUL; mb_ptr_adv(p))
11649 if (*p == '\\')
11650 *p = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +000011651 }
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011652
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020011653 /* escape special characters */
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011654 p = vim_strsave_fnameescape(sname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011655 vim_free(sname);
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011656 if (p == NULL)
11657 return FAIL;
11658
11659 /* write the result */
11660 if (fputs((char *)p, fd) < 0)
11661 retval = FAIL;
11662
11663 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011664 return retval;
11665}
11666
11667/*
11668 * ":loadview [nr]"
11669 */
11670 static void
11671ex_loadview(eap)
11672 exarg_T *eap;
11673{
11674 char_u *fname;
11675
11676 fname = get_view_file(*eap->arg);
11677 if (fname != NULL)
11678 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000011679 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011680 vim_free(fname);
11681 }
11682}
11683
11684/*
11685 * Get the name of the view file for the current buffer.
11686 */
11687 static char_u *
11688get_view_file(c)
11689 int c;
11690{
11691 int len = 0;
11692 char_u *p, *s;
11693 char_u *retval;
11694 char_u *sname;
11695
11696 if (curbuf->b_ffname == NULL)
11697 {
11698 EMSG(_(e_noname));
11699 return NULL;
11700 }
11701 sname = home_replace_save(NULL, curbuf->b_ffname);
11702 if (sname == NULL)
11703 return NULL;
11704
11705 /*
11706 * We want a file name without separators, because we're not going to make
11707 * a directory.
11708 * "normal" path separator -> "=+"
11709 * "=" -> "=="
11710 * ":" path separator -> "=-"
11711 */
11712 for (p = sname; *p; ++p)
11713 if (*p == '=' || vim_ispathsep(*p))
11714 ++len;
11715 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
11716 if (retval != NULL)
11717 {
11718 STRCPY(retval, p_vdir);
11719 add_pathsep(retval);
11720 s = retval + STRLEN(retval);
11721 for (p = sname; *p; ++p)
11722 {
11723 if (*p == '=')
11724 {
11725 *s++ = '=';
11726 *s++ = '=';
11727 }
11728 else if (vim_ispathsep(*p))
11729 {
11730 *s++ = '=';
Bram Moolenaare60acc12011-05-10 16:41:25 +020011731#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011732 if (*p == ':')
11733 *s++ = '-';
11734 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000011735#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000011736 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000011737 }
11738 else
11739 *s++ = *p;
11740 }
11741 *s++ = '=';
11742 *s++ = c;
11743 STRCPY(s, ".vim");
11744 }
11745
11746 vim_free(sname);
11747 return retval;
11748}
11749
11750#endif /* FEAT_SESSION */
11751
11752/*
11753 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
11754 * Return FAIL for a write error.
11755 */
11756 int
11757put_eol(fd)
11758 FILE *fd;
11759{
11760 if (
11761#ifdef USE_CRNL
11762 (
11763# ifdef MKSESSION_NL
11764 !mksession_nl &&
11765# endif
11766 (putc('\r', fd) < 0)) ||
11767#endif
11768 (putc('\n', fd) < 0))
11769 return FAIL;
11770 return OK;
11771}
11772
11773/*
11774 * Write a line to "fd".
11775 * Return FAIL for a write error.
11776 */
11777 int
11778put_line(fd, s)
11779 FILE *fd;
11780 char *s;
11781{
11782 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
11783 return FAIL;
11784 return OK;
11785}
11786
11787#ifdef FEAT_VIMINFO
11788/*
11789 * ":rviminfo" and ":wviminfo".
11790 */
11791 static void
11792ex_viminfo(eap)
11793 exarg_T *eap;
11794{
11795 char_u *save_viminfo;
11796
11797 save_viminfo = p_viminfo;
11798 if (*p_viminfo == NUL)
11799 p_viminfo = (char_u *)"'100";
11800 if (eap->cmdidx == CMD_rviminfo)
11801 {
Bram Moolenaard812df62008-11-09 12:46:09 +000011802 if (read_viminfo(eap->arg, VIF_WANT_INFO | VIF_WANT_MARKS
11803 | (eap->forceit ? VIF_FORCEIT : 0)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011804 EMSG(_("E195: Cannot open viminfo file for reading"));
11805 }
11806 else
11807 write_viminfo(eap->arg, eap->forceit);
11808 p_viminfo = save_viminfo;
11809}
11810#endif
11811
11812#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000011813/*
Bram Moolenaard9462e32011-04-11 21:35:11 +020011814 * Make a dialog message in "buff[DIALOG_MSG_SIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000011815 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000011816 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011817 void
11818dialog_msg(buff, format, fname)
11819 char_u *buff;
11820 char *format;
11821 char_u *fname;
11822{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011823 if (fname == NULL)
11824 fname = (char_u *)_("Untitled");
Bram Moolenaard9462e32011-04-11 21:35:11 +020011825 vim_snprintf((char *)buff, DIALOG_MSG_SIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011826}
11827#endif
11828
11829/*
11830 * ":behave {mswin,xterm}"
11831 */
11832 static void
11833ex_behave(eap)
11834 exarg_T *eap;
11835{
11836 if (STRCMP(eap->arg, "mswin") == 0)
11837 {
11838 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
11839 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
11840 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
11841 set_option_value((char_u *)"keymodel", 0L,
11842 (char_u *)"startsel,stopsel", 0);
11843 }
11844 else if (STRCMP(eap->arg, "xterm") == 0)
11845 {
11846 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
11847 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
11848 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
11849 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
11850 }
11851 else
11852 EMSG2(_(e_invarg2), eap->arg);
11853}
11854
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010011855#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
11856/*
11857 * Function given to ExpandGeneric() to obtain the possible arguments of the
11858 * ":behave {mswin,xterm}" command.
11859 */
11860 char_u *
11861get_behave_arg(xp, idx)
11862 expand_T *xp UNUSED;
11863 int idx;
11864{
11865 if (idx == 0)
11866 return (char_u *)"mswin";
11867 if (idx == 1)
11868 return (char_u *)"xterm";
11869 return NULL;
11870}
11871#endif
11872
Bram Moolenaar071d4272004-06-13 20:20:40 +000011873#ifdef FEAT_AUTOCMD
11874static int filetype_detect = FALSE;
11875static int filetype_plugin = FALSE;
11876static int filetype_indent = FALSE;
11877
11878/*
11879 * ":filetype [plugin] [indent] {on,off,detect}"
11880 * on: Load the filetype.vim file to install autocommands for file types.
11881 * off: Load the ftoff.vim file to remove all autocommands for file types.
11882 * plugin on: load filetype.vim and ftplugin.vim
11883 * plugin off: load ftplugof.vim
11884 * indent on: load filetype.vim and indent.vim
11885 * indent off: load indoff.vim
11886 */
11887 static void
11888ex_filetype(eap)
11889 exarg_T *eap;
11890{
11891 char_u *arg = eap->arg;
11892 int plugin = FALSE;
11893 int indent = FALSE;
11894
11895 if (*eap->arg == NUL)
11896 {
11897 /* Print current status. */
11898 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
11899 filetype_detect ? "ON" : "OFF",
11900 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
11901 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
11902 return;
11903 }
11904
11905 /* Accept "plugin" and "indent" in any order. */
11906 for (;;)
11907 {
11908 if (STRNCMP(arg, "plugin", 6) == 0)
11909 {
11910 plugin = TRUE;
11911 arg = skipwhite(arg + 6);
11912 continue;
11913 }
11914 if (STRNCMP(arg, "indent", 6) == 0)
11915 {
11916 indent = TRUE;
11917 arg = skipwhite(arg + 6);
11918 continue;
11919 }
11920 break;
11921 }
11922 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
11923 {
11924 if (*arg == 'o' || !filetype_detect)
11925 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011926 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011927 filetype_detect = TRUE;
11928 if (plugin)
11929 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011930 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011931 filetype_plugin = TRUE;
11932 }
11933 if (indent)
11934 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011935 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011936 filetype_indent = TRUE;
11937 }
11938 }
11939 if (*arg == 'd')
11940 {
11941 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000011942 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011943 }
11944 }
11945 else if (STRCMP(arg, "off") == 0)
11946 {
11947 if (plugin || indent)
11948 {
11949 if (plugin)
11950 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011951 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011952 filetype_plugin = FALSE;
11953 }
11954 if (indent)
11955 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011956 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011957 filetype_indent = FALSE;
11958 }
11959 }
11960 else
11961 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011962 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011963 filetype_detect = FALSE;
11964 }
11965 }
11966 else
11967 EMSG2(_(e_invarg2), arg);
11968}
11969
11970/*
11971 * ":setfiletype {name}"
11972 */
11973 static void
11974ex_setfiletype(eap)
11975 exarg_T *eap;
11976{
11977 if (!did_filetype)
11978 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
11979}
11980#endif
11981
Bram Moolenaar071d4272004-06-13 20:20:40 +000011982 static void
11983ex_digraphs(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000011984 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011985{
11986#ifdef FEAT_DIGRAPHS
11987 if (*eap->arg != NUL)
11988 putdigraph(eap->arg);
11989 else
11990 listdigraphs();
11991#else
11992 EMSG(_("E196: No digraphs in this version"));
11993#endif
11994}
11995
11996 static void
11997ex_set(eap)
11998 exarg_T *eap;
11999{
12000 int flags = 0;
12001
12002 if (eap->cmdidx == CMD_setlocal)
12003 flags = OPT_LOCAL;
12004 else if (eap->cmdidx == CMD_setglobal)
12005 flags = OPT_GLOBAL;
12006#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
12007 if (cmdmod.browse && flags == 0)
12008 ex_options(eap);
12009 else
12010#endif
12011 (void)do_set(eap->arg, flags);
12012}
12013
12014#ifdef FEAT_SEARCH_EXTRA
12015/*
12016 * ":nohlsearch"
12017 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012018 static void
12019ex_nohlsearch(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000012020 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012021{
Bram Moolenaar8050efa2013-11-08 04:30:20 +010012022 SET_NO_HLSEARCH(TRUE);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000012023 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012024}
12025
12026/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000012027 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000012028 * Sets nextcmd to the start of the next command, if any. Also called when
12029 * skipping commands to find the next command.
12030 */
12031 static void
12032ex_match(eap)
12033 exarg_T *eap;
12034{
12035 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000012036 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012037 char_u *end;
12038 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012039 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000012040
12041 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012042 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000012043 else
12044 {
12045 EMSG(e_invcmd);
12046 return;
12047 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012048
12049 /* First clear any old pattern. */
12050 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012051 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012052
12053 if (ends_excmd(*eap->arg))
12054 end = eap->arg;
12055 else if ((STRNICMP(eap->arg, "none", 4) == 0
12056 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
12057 end = eap->arg + 4;
12058 else
12059 {
12060 p = skiptowhite(eap->arg);
12061 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012062 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012063 p = skipwhite(p);
12064 if (*p == NUL)
12065 {
12066 /* There must be two arguments. */
12067 EMSG2(_(e_invarg2), eap->arg);
12068 return;
12069 }
12070 end = skip_regexp(p + 1, *p, TRUE, NULL);
12071 if (!eap->skip)
12072 {
12073 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
12074 {
12075 eap->errmsg = e_trailing;
12076 return;
12077 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000012078 if (*end != *p)
12079 {
12080 EMSG2(_(e_invarg2), p);
12081 return;
12082 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012083
12084 c = *end;
12085 *end = NUL;
Bram Moolenaar6561d522015-07-21 15:48:27 +020012086 match_add(curwin, g, p + 1, 10, id, NULL, NULL);
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012087 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012088 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012089 }
12090 }
12091 eap->nextcmd = find_nextcmd(end);
12092}
12093#endif
12094
12095#ifdef FEAT_CRYPT
12096/*
12097 * ":X": Get crypt key
12098 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012099 static void
12100ex_X(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000012101 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012102{
Bram Moolenaar3a0c9082014-11-12 15:15:42 +010012103 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020012104 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012105}
12106#endif
12107
12108#ifdef FEAT_FOLDING
12109 static void
12110ex_fold(eap)
12111 exarg_T *eap;
12112{
12113 if (foldManualAllowed(TRUE))
12114 foldCreate(eap->line1, eap->line2);
12115}
12116
12117 static void
12118ex_foldopen(eap)
12119 exarg_T *eap;
12120{
12121 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
12122 eap->forceit, FALSE);
12123}
12124
12125 static void
12126ex_folddo(eap)
12127 exarg_T *eap;
12128{
12129 linenr_T lnum;
12130
Bram Moolenaar6b1ee342014-08-06 18:17:11 +020012131#ifdef FEAT_CLIPBOARD
12132 start_global_changes();
12133#endif
12134
Bram Moolenaar071d4272004-06-13 20:20:40 +000012135 /* First set the marks for all lines closed/open. */
12136 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
12137 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
12138 ml_setmarked(lnum);
12139
12140 /* Execute the command on the marked lines. */
12141 global_exe(eap->arg);
12142 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +020012143#ifdef FEAT_CLIPBOARD
12144 end_global_changes();
12145#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012146}
12147#endif