blob: bb07c8bf45fa9e4b43519d995964c56603273d02 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ex_docmd.c: functions for executing an Ex command line.
12 */
13
14#include "vim.h"
15
Bram Moolenaar071d4272004-06-13 20:20:40 +000016static int quitmore = 0;
17static int ex_pressedreturn = FALSE;
18#ifndef FEAT_PRINTER
19# define ex_hardcopy ex_ni
20#endif
21
22#ifdef FEAT_USR_CMDS
23typedef struct ucmd
24{
25 char_u *uc_name; /* The command name */
26 long_u uc_argt; /* The argument type */
27 char_u *uc_rep; /* The command's replacement string */
28 long uc_def; /* The default value for a range/count */
Bram Moolenaar071d4272004-06-13 20:20:40 +000029 int uc_compl; /* completion type */
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +010030 int uc_addr_type; /* The command's address type */
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010031# ifdef FEAT_EVAL
32 scid_T uc_scriptID; /* SID where the command was defined */
33# ifdef FEAT_CMDL_COMPL
Bram Moolenaar071d4272004-06-13 20:20:40 +000034 char_u *uc_compl_arg; /* completion argument if any */
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010035# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000036# endif
37} ucmd_T;
38
39#define UC_BUFFER 1 /* -buffer: local to current buffer */
40
Bram Moolenaar2c29bee2005-06-01 21:46:07 +000041static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43#define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
44#define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
45
46static void do_ucmd __ARGS((exarg_T *eap));
47static void ex_command __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000048static void ex_delcommand __ARGS((exarg_T *eap));
49# ifdef FEAT_CMDL_COMPL
50static char_u *get_user_command_name __ARGS((int idx));
51# endif
52
Bram Moolenaar958636c2014-10-21 20:01:58 +020053/* Wether a command index indicates a user command. */
54# define IS_USER_CMDIDX(idx) ((int)(idx) < 0)
55
Bram Moolenaar071d4272004-06-13 20:20:40 +000056#else
57# define ex_command ex_ni
58# define ex_comclear ex_ni
59# define ex_delcommand ex_ni
Bram Moolenaar958636c2014-10-21 20:01:58 +020060/* Wether a command index indicates a user command. */
61# define IS_USER_CMDIDX(idx) (FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +000062#endif
63
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010064static int compute_buffer_local_count __ARGS((int addr_type, int lnum, int local));
Bram Moolenaar071d4272004-06-13 20:20:40 +000065#ifdef FEAT_EVAL
Bram Moolenaar89d40322006-08-29 15:30:07 +000066static char_u *do_one_cmd __ARGS((char_u **, int, struct condstack *, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#else
Bram Moolenaar89d40322006-08-29 15:30:07 +000068static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000069static int if_level = 0; /* depth in :if */
70#endif
Bram Moolenaara6f4d612011-09-21 19:10:46 +020071static void append_command __ARGS((char_u *cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +000072static char_u *find_command __ARGS((exarg_T *eap, int *full));
73
74static void ex_abbreviate __ARGS((exarg_T *eap));
75static void ex_map __ARGS((exarg_T *eap));
76static void ex_unmap __ARGS((exarg_T *eap));
77static void ex_mapclear __ARGS((exarg_T *eap));
78static void ex_abclear __ARGS((exarg_T *eap));
79#ifndef FEAT_MENU
80# define ex_emenu ex_ni
81# define ex_menu ex_ni
82# define ex_menutranslate ex_ni
83#endif
84#ifdef FEAT_AUTOCMD
85static void ex_autocmd __ARGS((exarg_T *eap));
86static void ex_doautocmd __ARGS((exarg_T *eap));
87#else
88# define ex_autocmd ex_ni
89# define ex_doautocmd ex_ni
90# define ex_doautoall ex_ni
91#endif
92#ifdef FEAT_LISTCMDS
93static void ex_bunload __ARGS((exarg_T *eap));
94static void ex_buffer __ARGS((exarg_T *eap));
95static void ex_bmodified __ARGS((exarg_T *eap));
96static void ex_bnext __ARGS((exarg_T *eap));
97static void ex_bprevious __ARGS((exarg_T *eap));
98static void ex_brewind __ARGS((exarg_T *eap));
99static void ex_blast __ARGS((exarg_T *eap));
100#else
101# define ex_bunload ex_ni
102# define ex_buffer ex_ni
103# define ex_bmodified ex_ni
104# define ex_bnext ex_ni
105# define ex_bprevious ex_ni
106# define ex_brewind ex_ni
107# define ex_blast ex_ni
108# define buflist_list ex_ni
109# define ex_checktime ex_ni
110#endif
111#if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
112# define ex_buffer_all ex_ni
113#endif
114static char_u *getargcmd __ARGS((char_u **));
115static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
116static int getargopt __ARGS((exarg_T *eap));
117#ifndef FEAT_QUICKFIX
118# define ex_make ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000119# define ex_cbuffer ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120# define ex_cc ex_ni
121# define ex_cnext ex_ni
122# define ex_cfile ex_ni
123# define qf_list ex_ni
124# define qf_age ex_ni
125# define ex_helpgrep ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000126# define ex_vimgrep ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127#endif
128#if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
129# define ex_cclose ex_ni
130# define ex_copen ex_ni
131# define ex_cwindow ex_ni
132#endif
Bram Moolenaar1e015462005-09-25 22:16:38 +0000133#if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
134# define ex_cexpr ex_ni
135#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
137static int check_more __ARGS((int, int));
Bram Moolenaaraa23b372015-09-08 18:46:31 +0200138static linenr_T get_address __ARGS((exarg_T *, char_u **, int addr_type, int skip, int to_other_file));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000139static void get_flags __ARGS((exarg_T *eap));
Bram Moolenaar85363ab2010-07-18 13:58:26 +0200140#if !defined(FEAT_PERL) \
141 || !defined(FEAT_PYTHON) || !defined(FEAT_PYTHON3) \
142 || !defined(FEAT_TCL) \
143 || !defined(FEAT_RUBY) \
144 || !defined(FEAT_LUA) \
145 || !defined(FEAT_MZSCHEME)
Bram Moolenaar7bb75552007-07-16 18:39:49 +0000146# define HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147static void ex_script_ni __ARGS((exarg_T *eap));
148#endif
149static char_u *invalid_range __ARGS((exarg_T *eap));
150static void correct_range __ARGS((exarg_T *eap));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000151#ifdef FEAT_QUICKFIX
152static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
155static void ex_highlight __ARGS((exarg_T *eap));
156static void ex_colorscheme __ARGS((exarg_T *eap));
157static void ex_quit __ARGS((exarg_T *eap));
158static void ex_cquit __ARGS((exarg_T *eap));
159static void ex_quit_all __ARGS((exarg_T *eap));
160#ifdef FEAT_WINDOWS
161static void ex_close __ARGS((exarg_T *eap));
Bram Moolenaarf740b292006-02-16 22:11:02 +0000162static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163static void ex_only __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164static void ex_resize __ARGS((exarg_T *eap));
165static void ex_stag __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000166static void ex_tabclose __ARGS((exarg_T *eap));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000167static void ex_tabonly __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000168static void ex_tabnext __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000169static void ex_tabmove __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000170static void ex_tabs __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171#else
172# define ex_close ex_ni
173# define ex_only ex_ni
174# define ex_all ex_ni
175# define ex_resize ex_ni
176# define ex_splitview ex_ni
177# define ex_stag ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000178# define ex_tabnext ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000179# define ex_tabmove ex_ni
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000180# define ex_tabs ex_ni
181# define ex_tabclose ex_ni
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000182# define ex_tabonly ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183#endif
184#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
185static void ex_pclose __ARGS((exarg_T *eap));
186static void ex_ptag __ARGS((exarg_T *eap));
187static void ex_pedit __ARGS((exarg_T *eap));
188#else
189# define ex_pclose ex_ni
190# define ex_ptag ex_ni
191# define ex_pedit ex_ni
192#endif
193static void ex_hide __ARGS((exarg_T *eap));
194static void ex_stop __ARGS((exarg_T *eap));
195static void ex_exit __ARGS((exarg_T *eap));
196static void ex_print __ARGS((exarg_T *eap));
197#ifdef FEAT_BYTEOFF
198static void ex_goto __ARGS((exarg_T *eap));
199#else
200# define ex_goto ex_ni
201#endif
202static void ex_shell __ARGS((exarg_T *eap));
203static void ex_preserve __ARGS((exarg_T *eap));
204static void ex_recover __ARGS((exarg_T *eap));
205#ifndef FEAT_LISTCMDS
206# define ex_argedit ex_ni
207# define ex_argadd ex_ni
208# define ex_argdelete ex_ni
209# define ex_listdo ex_ni
210#endif
211static void ex_mode __ARGS((exarg_T *eap));
212static void ex_wrongmodifier __ARGS((exarg_T *eap));
213static void ex_find __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000214static void ex_open __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215static void ex_edit __ARGS((exarg_T *eap));
216#if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
217# define ex_drop ex_ni
218#endif
219#ifndef FEAT_GUI
220# define ex_gui ex_nogui
221static void ex_nogui __ARGS((exarg_T *eap));
222#endif
223#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
224static void ex_tearoff __ARGS((exarg_T *eap));
225#else
226# define ex_tearoff ex_ni
227#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000228#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229static void ex_popup __ARGS((exarg_T *eap));
230#else
231# define ex_popup ex_ni
232#endif
233#ifndef FEAT_GUI_MSWIN
234# define ex_simalt ex_ni
235#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000236#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237# define gui_mch_find_dialog ex_ni
238# define gui_mch_replace_dialog ex_ni
239#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000240#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241# define ex_helpfind ex_ni
242#endif
243#ifndef FEAT_CSCOPE
244# define do_cscope ex_ni
245# define do_scscope ex_ni
246# define do_cstag ex_ni
247#endif
248#ifndef FEAT_SYN_HL
249# define ex_syntax ex_ni
Bram Moolenaar860cae12010-06-05 23:22:07 +0200250# define ex_ownsyntax ex_ni
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000251#endif
Bram Moolenaarf7512552013-06-06 14:55:19 +0200252#if !defined(FEAT_SYN_HL) || !defined(FEAT_PROFILE)
Bram Moolenaar8a7f5a22013-06-06 14:01:46 +0200253# define ex_syntime ex_ni
254#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000255#ifndef FEAT_SPELL
Bram Moolenaarb765d632005-06-07 21:00:02 +0000256# define ex_spell ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000257# define ex_mkspell ex_ni
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000258# define ex_spelldump ex_ni
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000259# define ex_spellinfo ex_ni
Bram Moolenaara1ba8112005-06-28 23:23:32 +0000260# define ex_spellrepall ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000261#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200262#ifndef FEAT_PERSISTENT_UNDO
263# define ex_rundo ex_ni
264# define ex_wundo ex_ni
265#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200266#ifndef FEAT_LUA
267# define ex_lua ex_script_ni
268# define ex_luado ex_ni
269# define ex_luafile ex_ni
270#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000271#ifndef FEAT_MZSCHEME
272# define ex_mzscheme ex_script_ni
273# define ex_mzfile ex_ni
274#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275#ifndef FEAT_PERL
276# define ex_perl ex_script_ni
277# define ex_perldo ex_ni
278#endif
279#ifndef FEAT_PYTHON
280# define ex_python ex_script_ni
Bram Moolenaard620aa92013-05-17 16:40:06 +0200281# define ex_pydo ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282# define ex_pyfile ex_ni
283#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200284#ifndef FEAT_PYTHON3
Bram Moolenaar368373e2010-07-19 20:46:22 +0200285# define ex_py3 ex_script_ni
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200286# define ex_py3do ex_ni
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200287# define ex_py3file ex_ni
288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289#ifndef FEAT_TCL
290# define ex_tcl ex_script_ni
291# define ex_tcldo ex_ni
292# define ex_tclfile ex_ni
293#endif
294#ifndef FEAT_RUBY
295# define ex_ruby ex_script_ni
296# define ex_rubydo ex_ni
297# define ex_rubyfile ex_ni
298#endif
299#ifndef FEAT_SNIFF
300# define ex_sniff ex_ni
301#endif
302#ifndef FEAT_KEYMAP
303# define ex_loadkeymap ex_ni
304#endif
305static void ex_swapname __ARGS((exarg_T *eap));
306static void ex_syncbind __ARGS((exarg_T *eap));
307static void ex_read __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308static void ex_pwd __ARGS((exarg_T *eap));
309static void ex_equal __ARGS((exarg_T *eap));
310static void ex_sleep __ARGS((exarg_T *eap));
311static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
312static void ex_winsize __ARGS((exarg_T *eap));
313#ifdef FEAT_WINDOWS
314static void ex_wincmd __ARGS((exarg_T *eap));
315#else
316# define ex_wincmd ex_ni
317#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000318#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319static void ex_winpos __ARGS((exarg_T *eap));
320#else
321# define ex_winpos ex_ni
322#endif
323static void ex_operators __ARGS((exarg_T *eap));
324static void ex_put __ARGS((exarg_T *eap));
325static void ex_copymove __ARGS((exarg_T *eap));
326static void ex_submagic __ARGS((exarg_T *eap));
327static void ex_join __ARGS((exarg_T *eap));
328static void ex_at __ARGS((exarg_T *eap));
329static void ex_bang __ARGS((exarg_T *eap));
330static void ex_undo __ARGS((exarg_T *eap));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200331#ifdef FEAT_PERSISTENT_UNDO
332static void ex_wundo __ARGS((exarg_T *eap));
333static void ex_rundo __ARGS((exarg_T *eap));
334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335static void ex_redo __ARGS((exarg_T *eap));
Bram Moolenaarc7d89352006-03-14 22:53:34 +0000336static void ex_later __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337static void ex_redir __ARGS((exarg_T *eap));
338static void ex_redraw __ARGS((exarg_T *eap));
339static void ex_redrawstatus __ARGS((exarg_T *eap));
340static void close_redir __ARGS((void));
341static void ex_mkrc __ARGS((exarg_T *eap));
342static void ex_mark __ARGS((exarg_T *eap));
343#ifdef FEAT_USR_CMDS
344static char_u *uc_fun_cmd __ARGS((void));
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000345static char_u *find_ucmd __ARGS((exarg_T *eap, char_u *p, int *full, expand_T *xp, int *compl));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346#endif
347#ifdef FEAT_EX_EXTRA
348static void ex_normal __ARGS((exarg_T *eap));
349static void ex_startinsert __ARGS((exarg_T *eap));
350static void ex_stopinsert __ARGS((exarg_T *eap));
351#else
352# define ex_normal ex_ni
353# define ex_align ex_ni
354# define ex_retab ex_ni
355# define ex_startinsert ex_ni
356# define ex_stopinsert ex_ni
357# define ex_helptags ex_ni
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000358# define ex_sort ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359#endif
360#ifdef FEAT_FIND_ID
361static void ex_checkpath __ARGS((exarg_T *eap));
362static void ex_findpat __ARGS((exarg_T *eap));
363#else
364# define ex_findpat ex_ni
365# define ex_checkpath ex_ni
366#endif
367#if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
368static void ex_psearch __ARGS((exarg_T *eap));
369#else
370# define ex_psearch ex_ni
371#endif
372static void ex_tag __ARGS((exarg_T *eap));
373static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
374#ifndef FEAT_EVAL
375# define ex_scriptnames ex_ni
376# define ex_finish ex_ni
377# define ex_echo ex_ni
378# define ex_echohl ex_ni
379# define ex_execute ex_ni
380# define ex_call ex_ni
381# define ex_if ex_ni
382# define ex_endif ex_ni
383# define ex_else ex_ni
384# define ex_while ex_ni
385# define ex_continue ex_ni
386# define ex_break ex_ni
387# define ex_endwhile ex_ni
388# define ex_throw ex_ni
389# define ex_try ex_ni
390# define ex_catch ex_ni
391# define ex_finally ex_ni
392# define ex_endtry ex_ni
393# define ex_endfunction ex_ni
394# define ex_let ex_ni
395# define ex_unlet ex_ni
Bram Moolenaar65c1b012005-01-31 19:02:28 +0000396# define ex_lockvar ex_ni
397# define ex_unlockvar ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398# define ex_function ex_ni
399# define ex_delfunction ex_ni
400# define ex_return ex_ni
Bram Moolenaard812df62008-11-09 12:46:09 +0000401# define ex_oldfiles ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402#endif
403static char_u *arg_all __ARGS((void));
404#ifdef FEAT_SESSION
405static int makeopens __ARGS((FILE *fd, char_u *dirnow));
Bram Moolenaarf13be0d2008-01-02 14:13:10 +0000406static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp, int current_arg_idx));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407static void ex_loadview __ARGS((exarg_T *eap));
408static char_u *get_view_file __ARGS((int c));
Bram Moolenaareeefcc72007-05-01 21:21:21 +0000409static int did_lcd; /* whether ":lcd" was produced for a session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410#else
411# define ex_loadview ex_ni
412#endif
413#ifndef FEAT_EVAL
414# define ex_compiler ex_ni
415#endif
416#ifdef FEAT_VIMINFO
417static void ex_viminfo __ARGS((exarg_T *eap));
418#else
419# define ex_viminfo ex_ni
420#endif
421static void ex_behave __ARGS((exarg_T *eap));
422#ifdef FEAT_AUTOCMD
423static void ex_filetype __ARGS((exarg_T *eap));
424static void ex_setfiletype __ARGS((exarg_T *eap));
425#else
426# define ex_filetype ex_ni
427# define ex_setfiletype ex_ni
428#endif
429#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000430# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431# define ex_diffpatch ex_ni
432# define ex_diffgetput ex_ni
433# define ex_diffsplit ex_ni
434# define ex_diffthis ex_ni
435# define ex_diffupdate ex_ni
436#endif
437static void ex_digraphs __ARGS((exarg_T *eap));
438static void ex_set __ARGS((exarg_T *eap));
439#if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
440# define ex_options ex_ni
441#endif
442#ifdef FEAT_SEARCH_EXTRA
443static void ex_nohlsearch __ARGS((exarg_T *eap));
444static void ex_match __ARGS((exarg_T *eap));
445#else
446# define ex_nohlsearch ex_ni
447# define ex_match ex_ni
448#endif
449#ifdef FEAT_CRYPT
450static void ex_X __ARGS((exarg_T *eap));
451#else
452# define ex_X ex_ni
453#endif
454#ifdef FEAT_FOLDING
455static void ex_fold __ARGS((exarg_T *eap));
456static void ex_foldopen __ARGS((exarg_T *eap));
457static void ex_folddo __ARGS((exarg_T *eap));
458#else
459# define ex_fold ex_ni
460# define ex_foldopen ex_ni
461# define ex_folddo ex_ni
462#endif
463#if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
464 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
465# define ex_language ex_ni
466#endif
467#ifndef FEAT_SIGNS
468# define ex_sign ex_ni
469#endif
470#ifndef FEAT_SUN_WORKSHOP
471# define ex_wsverb ex_ni
472#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000473#ifndef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200474# define ex_nbclose ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000475# define ex_nbkey ex_ni
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200476# define ex_nbstart ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000477#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478
479#ifndef FEAT_EVAL
480# define ex_debug ex_ni
481# define ex_breakadd ex_ni
482# define ex_debuggreedy ex_ni
483# define ex_breakdel ex_ni
484# define ex_breaklist ex_ni
485#endif
486
487#ifndef FEAT_CMDHIST
488# define ex_history ex_ni
489#endif
490#ifndef FEAT_JUMPLIST
491# define ex_jumps ex_ni
492# define ex_changes ex_ni
493#endif
494
Bram Moolenaar05159a02005-02-26 23:04:13 +0000495#ifndef FEAT_PROFILE
496# define ex_profile ex_ni
497#endif
498
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499/*
500 * Declare cmdnames[].
501 */
502#define DO_DECLARE_EXCMD
503#include "ex_cmds.h"
504
505/*
506 * Table used to quickly search for a command, based on its first character.
507 */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +0000508static cmdidx_T cmdidxs[27] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509{
510 CMD_append,
511 CMD_buffer,
512 CMD_change,
513 CMD_delete,
514 CMD_edit,
515 CMD_file,
516 CMD_global,
517 CMD_help,
518 CMD_insert,
519 CMD_join,
520 CMD_k,
521 CMD_list,
522 CMD_move,
523 CMD_next,
524 CMD_open,
525 CMD_print,
526 CMD_quit,
527 CMD_read,
528 CMD_substitute,
529 CMD_t,
530 CMD_undo,
531 CMD_vglobal,
532 CMD_write,
533 CMD_xit,
534 CMD_yank,
535 CMD_z,
536 CMD_bang
537};
538
539static char_u dollar_command[2] = {'$', 0};
540
541
542#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000543/* Struct for storing a line inside a while/for loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544typedef struct
545{
546 char_u *line; /* command line */
547 linenr_T lnum; /* sourcing_lnum of the line */
548} wcmd_T;
549
550/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000551 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000553 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000555struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556{
557 garray_T *lines_gap; /* growarray with line info */
558 int current_line; /* last read line from growarray */
559 int repeating; /* TRUE when looping a second time */
560 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
561 char_u *(*getline) __ARGS((int, void *, int));
562 void *cookie;
563};
564
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000565static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
566static int store_loop_line __ARGS((garray_T *gap, char_u *line));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567static void free_cmdlines __ARGS((garray_T *gap));
Bram Moolenaared203462004-06-16 11:19:22 +0000568
569/* Struct to save a few things while debugging. Used in do_cmdline() only. */
570struct dbg_stuff
571{
572 int trylevel;
573 int force_abort;
574 except_T *caught_stack;
575 char_u *vv_exception;
576 char_u *vv_throwpoint;
577 int did_emsg;
578 int got_int;
579 int did_throw;
580 int need_rethrow;
581 int check_cstack;
582 except_T *current_exception;
583};
584
585static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
586static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
587
588 static void
589save_dbg_stuff(dsp)
590 struct dbg_stuff *dsp;
591{
592 dsp->trylevel = trylevel; trylevel = 0;
593 dsp->force_abort = force_abort; force_abort = FALSE;
594 dsp->caught_stack = caught_stack; caught_stack = NULL;
595 dsp->vv_exception = v_exception(NULL);
596 dsp->vv_throwpoint = v_throwpoint(NULL);
597
598 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
599 dsp->did_emsg = did_emsg; did_emsg = FALSE;
600 dsp->got_int = got_int; got_int = FALSE;
601 dsp->did_throw = did_throw; did_throw = FALSE;
602 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
603 dsp->check_cstack = check_cstack; check_cstack = FALSE;
604 dsp->current_exception = current_exception; current_exception = NULL;
605}
606
607 static void
608restore_dbg_stuff(dsp)
609 struct dbg_stuff *dsp;
610{
611 suppress_errthrow = FALSE;
612 trylevel = dsp->trylevel;
613 force_abort = dsp->force_abort;
614 caught_stack = dsp->caught_stack;
615 (void)v_exception(dsp->vv_exception);
616 (void)v_throwpoint(dsp->vv_throwpoint);
617 did_emsg = dsp->did_emsg;
618 got_int = dsp->got_int;
619 did_throw = dsp->did_throw;
620 need_rethrow = dsp->need_rethrow;
621 check_cstack = dsp->check_cstack;
622 current_exception = dsp->current_exception;
623}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624#endif
625
626
627/*
628 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
629 * command is given.
630 */
631 void
632do_exmode(improved)
633 int improved; /* TRUE for "improved Ex" mode */
634{
635 int save_msg_scroll;
636 int prev_msg_row;
637 linenr_T prev_line;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000638 int changedtick;
639
640 if (improved)
641 exmode_active = EXMODE_VIM;
642 else
643 exmode_active = EXMODE_NORMAL;
644 State = NORMAL;
645
646 /* When using ":global /pat/ visual" and then "Q" we return to continue
647 * the :global command. */
648 if (global_busy)
649 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650
651 save_msg_scroll = msg_scroll;
652 ++RedrawingDisabled; /* don't redisplay the window */
653 ++no_wait_return; /* don't wait for return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654#ifdef FEAT_GUI
655 /* Ignore scrollbar and mouse events in Ex mode */
656 ++hold_gui_events;
657#endif
658#ifdef FEAT_SNIFF
659 want_sniff_request = 0; /* No K_SNIFF wanted */
660#endif
661
662 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
663 while (exmode_active)
664 {
Bram Moolenaar7c626922005-02-07 22:01:03 +0000665#ifdef FEAT_EX_EXTRA
666 /* Check for a ":normal" command and no more characters left. */
667 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
668 {
669 exmode_active = FALSE;
670 break;
671 }
672#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 msg_scroll = TRUE;
674 need_wait_return = FALSE;
675 ex_pressedreturn = FALSE;
676 ex_no_reprint = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000677 changedtick = curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 prev_msg_row = msg_row;
679 prev_line = curwin->w_cursor.lnum;
680#ifdef FEAT_SNIFF
681 ProcessSniffRequests();
682#endif
683 if (improved)
684 {
685 cmdline_row = msg_row;
686 do_cmdline(NULL, getexline, NULL, 0);
687 }
688 else
689 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
690 lines_left = Rows - 1;
691
Bram Moolenaardf177f62005-02-22 08:39:57 +0000692 if ((prev_line != curwin->w_cursor.lnum
693 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000695 if (curbuf->b_ml.ml_flags & ML_EMPTY)
696 EMSG(_(e_emptybuf));
697 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000699 if (ex_pressedreturn)
700 {
701 /* go up one line, to overwrite the ":<CR>" line, so the
Bram Moolenaar81870892007-11-11 18:17:28 +0000702 * output doesn't contain empty lines. */
Bram Moolenaardf177f62005-02-22 08:39:57 +0000703 msg_row = prev_msg_row;
704 if (prev_msg_row == Rows - 1)
705 msg_row--;
706 }
707 msg_col = 0;
708 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
709 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 }
Bram Moolenaardf177f62005-02-22 08:39:57 +0000712 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
713 {
714 if (curbuf->b_ml.ml_flags & ML_EMPTY)
715 EMSG(_(e_emptybuf));
716 else
717 EMSG(_("E501: At end-of-file"));
718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 }
720
721#ifdef FEAT_GUI
722 --hold_gui_events;
723#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 --RedrawingDisabled;
725 --no_wait_return;
726 update_screen(CLEAR);
727 need_wait_return = FALSE;
728 msg_scroll = save_msg_scroll;
729}
730
731/*
732 * Execute a simple command line. Used for translated commands like "*".
733 */
734 int
735do_cmdline_cmd(cmd)
736 char_u *cmd;
737{
738 return do_cmdline(cmd, NULL, NULL,
739 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
740}
741
742/*
743 * do_cmdline(): execute one Ex command line
744 *
745 * 1. Execute "cmdline" when it is not NULL.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100746 * If "cmdline" is NULL, or more lines are needed, fgetline() is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 * 2. Split up in parts separated with '|'.
748 *
749 * This function can be called recursively!
750 *
751 * flags:
752 * DOCMD_VERBOSE - The command will be included in the error message.
753 * DOCMD_NOWAIT - Don't call wait_return() and friends.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100754 * DOCMD_REPEAT - Repeat execution until fgetline() returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 * DOCMD_KEYTYPED - Don't reset KeyTyped.
756 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
757 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
758 *
759 * return FAIL if cmdline could not be executed, OK otherwise
760 */
761 int
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100762do_cmdline(cmdline, fgetline, cookie, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 char_u *cmdline;
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100764 char_u *(*fgetline) __ARGS((int, void *, int));
765 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 int flags;
767{
768 char_u *next_cmdline; /* next cmd to execute */
769 char_u *cmdline_copy = NULL; /* copy of cmd line */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100770 int used_getline = FALSE; /* used "fgetline" to obtain command */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 static int recursive = 0; /* recursive depth */
772 int msg_didout_before_start = 0;
773 int count = 0; /* line number count */
774 int did_inc = FALSE; /* incremented RedrawingDisabled */
775 int retval = OK;
776#ifdef FEAT_EVAL
777 struct condstack cstack; /* conditional stack */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000778 garray_T lines_ga; /* keep lines for ":while"/":for" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 int current_line = 0; /* active line in lines_ga */
780 char_u *fname = NULL; /* function or script name */
781 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
782 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
Bram Moolenaared203462004-06-16 11:19:22 +0000783 struct dbg_stuff debug_saved; /* saved things for debug mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 int initial_trylevel;
785 struct msglist **saved_msg_list = NULL;
786 struct msglist *private_msg_list;
787
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100788 /* "fgetline" and "cookie" passed to do_one_cmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 char_u *(*cmd_getline) __ARGS((int, void *, int));
790 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000791 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000793 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794#else
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100795# define cmd_getline fgetline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796# define cmd_cookie cookie
797#endif
798 static int call_depth = 0; /* recursiveness */
799
800#ifdef FEAT_EVAL
801 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
802 * location for storing error messages to be converted to an exception.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000803 * This ensures that the do_errthrow() call in do_one_cmd() does not
804 * combine the messages stored by an earlier invocation of do_one_cmd()
805 * with the command name of the later one. This would happen when
806 * BufWritePost autocommands are executed after a write error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 saved_msg_list = msg_list;
808 msg_list = &private_msg_list;
809 private_msg_list = NULL;
810#endif
811
812 /* It's possible to create an endless loop with ":execute", catch that
813 * here. The value of 200 allows nested function calls, ":source", etc. */
814 if (call_depth == 200)
815 {
816 EMSG(_("E169: Command too recursive"));
817#ifdef FEAT_EVAL
818 /* When converting to an exception, we do not include the command name
819 * since this is not an error of the specific command. */
820 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
821 msg_list = saved_msg_list;
822#endif
823 return FAIL;
824 }
825 ++call_depth;
826
827#ifdef FEAT_EVAL
828 cstack.cs_idx = -1;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000829 cstack.cs_looplevel = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 cstack.cs_trylevel = 0;
831 cstack.cs_emsg_silent_list = NULL;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000832 cstack.cs_lflags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
834
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100835 real_cookie = getline_cookie(fgetline, cookie);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836
837 /* Inside a function use a higher nesting level. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100838 getline_is_func = getline_equal(fgetline, cookie, get_func_line);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000839 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 ++ex_nesting_level;
841
842 /* Get the function or script name and the address where the next breakpoint
843 * line and the debug tick for a function or script are stored. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000844 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 {
846 fname = func_name(real_cookie);
847 breakpoint = func_breakpoint(real_cookie);
848 dbg_tick = func_dbg_tick(real_cookie);
849 }
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100850 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 {
852 fname = sourcing_name;
853 breakpoint = source_breakpoint(real_cookie);
854 dbg_tick = source_dbg_tick(real_cookie);
855 }
856
857 /*
858 * Initialize "force_abort" and "suppress_errthrow" at the top level.
859 */
860 if (!recursive)
861 {
862 force_abort = FALSE;
863 suppress_errthrow = FALSE;
864 }
865
866 /*
867 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000868 * exception handling (used when debugging). Otherwise clear it to avoid
869 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000871 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000872 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000873 else
Bram 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;
Bram Moolenaare906c502015-09-09 21:10:39 +02002176#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02002177 case ADDR_QUICKFIX:
2178 ea.line2 = qf_get_cur_valid_idx(&ea);
2179 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002180#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 ea.cmd = skipwhite(ea.cmd);
Bram Moolenaaraa23b372015-09-08 18:46:31 +02002183 lnum = get_address(&ea, &ea.cmd, ea.addr_type, ea.skip, ea.addr_count == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 if (ea.cmd == NULL) /* error detected */
2185 goto doend;
2186 if (lnum == MAXLNUM)
2187 {
2188 if (*ea.cmd == '%') /* '%' - all lines */
2189 {
2190 ++ea.cmd;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002191 switch (ea.addr_type)
2192 {
2193 case ADDR_LINES:
2194 ea.line1 = 1;
2195 ea.line2 = curbuf->b_ml.ml_line_count;
2196 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002197 case ADDR_LOADED_BUFFERS:
Bram Moolenaar84c8e5a2015-01-14 15:47:36 +01002198 {
2199 buf_T *buf = firstbuf;
2200
2201 while (buf->b_next != NULL
2202 && buf->b_ml.ml_mfp == NULL)
2203 buf = buf->b_next;
2204 ea.line1 = buf->b_fnum;
2205 buf = lastbuf;
2206 while (buf->b_prev != NULL
2207 && buf->b_ml.ml_mfp == NULL)
2208 buf = buf->b_prev;
2209 ea.line2 = buf->b_fnum;
2210 break;
2211 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002212 case ADDR_BUFFERS:
Bram Moolenaar4d84d932014-11-30 14:50:16 +01002213 ea.line1 = firstbuf->b_fnum;
2214 ea.line2 = lastbuf->b_fnum;
2215 break;
2216 case ADDR_WINDOWS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002217 case ADDR_TABS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002218 if (IS_USER_CMDIDX(ea.cmdidx))
2219 {
2220 ea.line1 = 1;
2221 ea.line2 = ea.addr_type == ADDR_WINDOWS
2222 ? LAST_WIN_NR : LAST_TAB_NR;
2223 }
2224 else
2225 {
2226 /* there is no Vim command which uses '%' and
2227 * ADDR_WINDOWS or ADDR_TABS */
2228 errormsg = (char_u *)_(e_invrange);
2229 goto doend;
2230 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002231 break;
2232 case ADDR_ARGUMENTS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002233 if (ARGCOUNT == 0)
2234 ea.line1 = ea.line2 = 0;
2235 else
2236 {
2237 ea.line1 = 1;
2238 ea.line2 = ARGCOUNT;
2239 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002240 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002241#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02002242 case ADDR_QUICKFIX:
2243 ea.line1 = 1;
2244 ea.line2 = qf_get_size(&ea);
2245 if (ea.line2 == 0)
2246 ea.line2 = 1;
2247 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002248#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002249 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 ++ea.addr_count;
2251 }
2252 /* '*' - visual area */
2253 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
2254 {
2255 pos_T *fp;
2256
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002257 if (ea.addr_type != ADDR_LINES)
2258 {
2259 errormsg = (char_u *)_(e_invrange);
2260 goto doend;
2261 }
2262
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 ++ea.cmd;
2264 if (!ea.skip)
2265 {
2266 fp = getmark('<', FALSE);
2267 if (check_mark(fp) == FAIL)
2268 goto doend;
2269 ea.line1 = fp->lnum;
2270 fp = getmark('>', FALSE);
2271 if (check_mark(fp) == FAIL)
2272 goto doend;
2273 ea.line2 = fp->lnum;
2274 ++ea.addr_count;
2275 }
2276 }
2277 }
2278 else
2279 ea.line2 = lnum;
2280 ea.addr_count++;
2281
2282 if (*ea.cmd == ';')
2283 {
2284 if (!ea.skip)
2285 curwin->w_cursor.lnum = ea.line2;
2286 }
2287 else if (*ea.cmd != ',')
2288 break;
2289 ++ea.cmd;
2290 }
2291
2292 /* One address given: set start and end lines */
2293 if (ea.addr_count == 1)
2294 {
2295 ea.line1 = ea.line2;
2296 /* ... but only implicit: really no address given */
2297 if (lnum == MAXLNUM)
2298 ea.addr_count = 0;
2299 }
2300
2301 /* Don't leave the cursor on an illegal line (caused by ';') */
2302 check_cursor_lnum();
2303
2304/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002305 * 5. Parse the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306 */
2307
2308 /*
2309 * Skip ':' and any white space
2310 */
2311 ea.cmd = skipwhite(ea.cmd);
2312 while (*ea.cmd == ':')
2313 ea.cmd = skipwhite(ea.cmd + 1);
2314
2315 /*
2316 * If we got a line, but no command, then go to the line.
2317 * If we find a '|' or '\n' we set ea.nextcmd.
2318 */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002319 if (*ea.cmd == NUL || *ea.cmd == '"'
2320 || (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 {
2322 /*
2323 * strange vi behaviour:
2324 * ":3" jumps to line 3
2325 * ":3|..." prints line 3
2326 * ":|" prints current line
2327 */
2328 if (ea.skip) /* skip this if inside :if */
2329 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002330 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 {
2332 ea.cmdidx = CMD_print;
2333 ea.argt = RANGE+COUNT+TRLBAR;
2334 if ((errormsg = invalid_range(&ea)) == NULL)
2335 {
2336 correct_range(&ea);
2337 ex_print(&ea);
2338 }
2339 }
2340 else if (ea.addr_count != 0)
2341 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002342 if (ea.line2 > curbuf->b_ml.ml_line_count)
2343 {
2344 /* With '-' in 'cpoptions' a line number past the file is an
2345 * error, otherwise put it at the end of the file. */
2346 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2347 ea.line2 = -1;
2348 else
2349 ea.line2 = curbuf->b_ml.ml_line_count;
2350 }
2351
2352 if (ea.line2 < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002353 errormsg = (char_u *)_(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 else
2355 {
2356 if (ea.line2 == 0)
2357 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358 else
2359 curwin->w_cursor.lnum = ea.line2;
2360 beginline(BL_SOL | BL_FIX);
2361 }
2362 }
2363 goto doend;
2364 }
2365
Bram Moolenaard5005162014-08-22 23:05:54 +02002366#ifdef FEAT_AUTOCMD
2367 /* If this looks like an undefined user command and there are CmdUndefined
2368 * autocommands defined, trigger the matching autocommands. */
2369 if (p != NULL && ea.cmdidx == CMD_SIZE && !ea.skip
2370 && ASCII_ISUPPER(*ea.cmd)
2371 && has_cmdundefined())
2372 {
Bram Moolenaard5005162014-08-22 23:05:54 +02002373 int ret;
2374
Bram Moolenaar5a31b462014-08-23 14:16:20 +02002375 p = ea.cmd;
Bram Moolenaard5005162014-08-22 23:05:54 +02002376 while (ASCII_ISALNUM(*p))
2377 ++p;
Bram Moolenaar120f4a82014-09-09 12:22:06 +02002378 p = vim_strnsave(ea.cmd, (int)(p - ea.cmd));
Bram Moolenaard5005162014-08-22 23:05:54 +02002379 ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL);
2380 vim_free(p);
Bram Moolenaar829aef12015-07-28 14:25:48 +02002381 /* If the autocommands did something and didn't cause an error, try
2382 * finding the command again. */
2383 p = (ret && !aborting()) ? find_command(&ea, NULL) : NULL;
Bram Moolenaard5005162014-08-22 23:05:54 +02002384 }
2385#endif
2386
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387#ifdef FEAT_USR_CMDS
2388 if (p == NULL)
2389 {
2390 if (!ea.skip)
2391 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2392 goto doend;
2393 }
2394 /* Check for wrong commands. */
2395 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2396 {
2397 errormsg = uc_fun_cmd();
2398 goto doend;
2399 }
2400#endif
2401 if (ea.cmdidx == CMD_SIZE)
2402 {
2403 if (!ea.skip)
2404 {
2405 STRCPY(IObuff, _("E492: Not an editor command"));
2406 if (!sourcing)
Bram Moolenaara6f4d612011-09-21 19:10:46 +02002407 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 errormsg = IObuff;
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02002409 did_emsg_syntax = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 }
2411 goto doend;
2412 }
2413
Bram Moolenaar958636c2014-10-21 20:01:58 +02002414 ni = (!IS_USER_CMDIDX(ea.cmdidx)
2415 && (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00002416#ifdef HAVE_EX_SCRIPT_NI
2417 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2418#endif
2419 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420
2421#ifndef FEAT_EVAL
2422 /*
2423 * When the expression evaluation is disabled, recognize the ":if" and
2424 * ":endif" commands and ignore everything in between it.
2425 */
2426 if (ea.cmdidx == CMD_if)
2427 ++if_level;
2428 if (if_level)
2429 {
2430 if (ea.cmdidx == CMD_endif)
2431 --if_level;
2432 goto doend;
2433 }
2434
2435#endif
2436
Bram Moolenaar196b3b02008-06-20 16:51:41 +00002437 /* forced commands */
2438 if (*p == '!' && ea.cmdidx != CMD_substitute
2439 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002440 {
2441 ++p;
2442 ea.forceit = TRUE;
2443 }
2444 else
2445 ea.forceit = FALSE;
2446
2447/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01002448 * 6. Parse arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02002450 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002451 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452
2453 if (!ea.skip)
2454 {
2455#ifdef HAVE_SANDBOX
2456 if (sandbox != 0 && !(ea.argt & SBOXOK))
2457 {
2458 /* Command not allowed in sandbox. */
2459 errormsg = (char_u *)_(e_sandbox);
2460 goto doend;
2461 }
2462#endif
2463 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2464 {
2465 /* Command not allowed in non-'modifiable' buffer */
2466 errormsg = (char_u *)_(e_modifiable);
2467 goto doend;
2468 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002469
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002470 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar958636c2014-10-21 20:01:58 +02002471 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002473 /* Command not allowed when editing the command line. */
2474#ifdef FEAT_CMDWIN
2475 if (cmdwin_type != 0)
2476 errormsg = (char_u *)_(e_cmdwin);
2477 else
2478#endif
2479 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 goto doend;
2481 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002482#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002483 /* Disallow editing another buffer when "curbuf_lock" is set.
2484 * Do allow ":edit" (check for argument later).
2485 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002486 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002487 && ea.cmdidx != CMD_edit
2488 && ea.cmdidx != CMD_checktime
Bram Moolenaar958636c2014-10-21 20:01:58 +02002489 && !IS_USER_CMDIDX(ea.cmdidx)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002490 && curbuf_locked())
2491 goto doend;
2492#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493
2494 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2495 {
2496 /* no range allowed */
2497 errormsg = (char_u *)_(e_norange);
2498 goto doend;
2499 }
2500 }
2501
2502 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2503 {
2504 errormsg = (char_u *)_(e_nobang);
2505 goto doend;
2506 }
2507
2508 /*
2509 * Don't complain about the range if it is not used
2510 * (could happen if line_count is accidentally set to 0).
2511 */
2512 if (!ea.skip && !ni)
2513 {
2514 /*
2515 * If the range is backwards, ask for confirmation and, if given, swap
2516 * ea.line1 & ea.line2 so it's forwards again.
2517 * When global command is busy, don't ask, will fail below.
2518 */
2519 if (!global_busy && ea.line1 > ea.line2)
2520 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002521 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002523 if (sourcing || exmode_active)
2524 {
2525 errormsg = (char_u *)_("E493: Backwards range given");
2526 goto doend;
2527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002528 if (ask_yesno((char_u *)
2529 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002530 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 }
2532 lnum = ea.line1;
2533 ea.line1 = ea.line2;
2534 ea.line2 = lnum;
2535 }
2536 if ((errormsg = invalid_range(&ea)) != NULL)
2537 goto doend;
2538 }
2539
2540 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2541 ea.line2 = 1;
2542
2543 correct_range(&ea);
2544
2545#ifdef FEAT_FOLDING
2546 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2547 {
2548 /* Put the first line at the start of a closed fold, put the last line
2549 * at the end of a closed fold. */
2550 (void)hasFolding(ea.line1, &ea.line1, NULL);
2551 (void)hasFolding(ea.line2, NULL, &ea.line2);
2552 }
2553#endif
2554
2555#ifdef FEAT_QUICKFIX
2556 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002557 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 * option here, so things like % get expanded.
2559 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002560 p = replace_makeprg(&ea, p, cmdlinep);
2561 if (p == NULL)
2562 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563#endif
2564
2565 /*
2566 * Skip to start of argument.
2567 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2568 */
2569 if (ea.cmdidx == CMD_bang)
2570 ea.arg = p;
2571 else
2572 ea.arg = skipwhite(p);
2573
2574 /*
2575 * Check for "++opt=val" argument.
2576 * Must be first, allow ":w ++enc=utf8 !cmd"
2577 */
2578 if (ea.argt & ARGOPT)
2579 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2580 if (getargopt(&ea) == FAIL && !ni)
2581 {
2582 errormsg = (char_u *)_(e_invarg);
2583 goto doend;
2584 }
2585
2586 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2587 {
2588 if (*ea.arg == '>') /* append */
2589 {
2590 if (*++ea.arg != '>') /* typed wrong */
2591 {
2592 errormsg = (char_u *)_("E494: Use w or w>>");
2593 goto doend;
2594 }
2595 ea.arg = skipwhite(ea.arg + 1);
2596 ea.append = TRUE;
2597 }
2598 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2599 {
2600 ++ea.arg;
2601 ea.usefilter = TRUE;
2602 }
2603 }
2604
2605 if (ea.cmdidx == CMD_read)
2606 {
2607 if (ea.forceit)
2608 {
2609 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2610 ea.forceit = FALSE;
2611 }
2612 else if (*ea.arg == '!') /* :r !filter */
2613 {
2614 ++ea.arg;
2615 ea.usefilter = TRUE;
2616 }
2617 }
2618
2619 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2620 {
2621 ea.amount = 1;
2622 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2623 {
2624 ++ea.arg;
2625 ++ea.amount;
2626 }
2627 ea.arg = skipwhite(ea.arg);
2628 }
2629
2630 /*
2631 * Check for "+command" argument, before checking for next command.
2632 * Don't do this for ":read !cmd" and ":write !cmd".
2633 */
2634 if ((ea.argt & EDITCMD) && !ea.usefilter)
2635 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2636
2637 /*
2638 * Check for '|' to separate commands and '"' to start comments.
2639 * Don't do this for ":read !cmd" and ":write !cmd".
2640 */
2641 if ((ea.argt & TRLBAR) && !ea.usefilter)
2642 separate_nextcmd(&ea);
2643
2644 /*
2645 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002646 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2647 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002648 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002649 else if (ea.cmdidx == CMD_bang
2650 || ea.cmdidx == CMD_global
2651 || ea.cmdidx == CMD_vglobal
2652 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 {
2654 for (p = ea.arg; *p; ++p)
2655 {
2656 /* Remove one backslash before a newline, so that it's possible to
2657 * pass a newline to the shell and also a newline that is preceded
2658 * with a backslash. This makes it impossible to end a shell
2659 * command in a backslash, but that doesn't appear useful.
2660 * Halving the number of backslashes is incompatible with previous
2661 * versions. */
2662 if (*p == '\\' && p[1] == '\n')
Bram Moolenaara7241f52008-06-24 20:39:31 +00002663 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 else if (*p == '\n')
2665 {
2666 ea.nextcmd = p + 1;
2667 *p = NUL;
2668 break;
2669 }
2670 }
2671 }
2672
2673 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2674 {
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002675 buf_T *buf;
2676
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 ea.line1 = 1;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002678 switch (ea.addr_type)
2679 {
2680 case ADDR_LINES:
2681 ea.line2 = curbuf->b_ml.ml_line_count;
2682 break;
2683 case ADDR_LOADED_BUFFERS:
2684 buf = firstbuf;
2685 while (buf->b_next != NULL && buf->b_ml.ml_mfp == NULL)
2686 buf = buf->b_next;
2687 ea.line1 = buf->b_fnum;
2688 buf = lastbuf;
2689 while (buf->b_prev != NULL && buf->b_ml.ml_mfp == NULL)
2690 buf = buf->b_prev;
2691 ea.line2 = buf->b_fnum;
2692 break;
2693 case ADDR_BUFFERS:
2694 ea.line1 = firstbuf->b_fnum;
2695 ea.line2 = lastbuf->b_fnum;
2696 break;
2697 case ADDR_WINDOWS:
2698 ea.line2 = LAST_WIN_NR;
2699 break;
2700 case ADDR_TABS:
2701 ea.line2 = LAST_TAB_NR;
2702 break;
2703 case ADDR_ARGUMENTS:
2704 if (ARGCOUNT == 0)
2705 ea.line1 = ea.line2 = 0;
2706 else
2707 ea.line2 = ARGCOUNT;
2708 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002709#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02002710 case ADDR_QUICKFIX:
2711 ea.line2 = qf_get_size(&ea);
2712 if (ea.line2 == 0)
2713 ea.line2 = 1;
2714 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02002715#endif
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002716 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002717 }
2718
2719 /* accept numbered register only when no count allowed (:put) */
2720 if ( (ea.argt & REGSTR)
2721 && *ea.arg != NUL
Bram Moolenaar958636c2014-10-21 20:01:58 +02002722 /* Do not allow register = for user commands */
2723 && (!IS_USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2725 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002726#ifndef FEAT_CLIPBOARD
2727 /* check these explicitly for a more specific error message */
2728 if (*ea.arg == '*' || *ea.arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002730 errormsg = (char_u *)_(e_invalidreg);
2731 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 }
2733#endif
Bram Moolenaar958636c2014-10-21 20:01:58 +02002734 if (valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2735 && !IS_USER_CMDIDX(ea.cmdidx))))
Bram Moolenaar85de2062011-05-05 14:26:41 +02002736 {
2737 ea.regname = *ea.arg++;
2738#ifdef FEAT_EVAL
2739 /* for '=' register: accept the rest of the line as an expression */
2740 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2741 {
2742 set_expr_line(vim_strsave(ea.arg));
2743 ea.arg += STRLEN(ea.arg);
2744 }
2745#endif
2746 ea.arg = skipwhite(ea.arg);
2747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 }
2749
2750 /*
2751 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2752 * count, it's a buffer name.
2753 */
2754 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2755 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2756 || vim_iswhite(*p)))
2757 {
2758 n = getdigits(&ea.arg);
2759 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002760 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 {
2762 errormsg = (char_u *)_(e_zerocount);
2763 goto doend;
2764 }
2765 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2766 {
2767 ea.line2 = n;
2768 if (ea.addr_count == 0)
2769 ea.addr_count = 1;
2770 }
2771 else
2772 {
2773 ea.line1 = ea.line2;
2774 ea.line2 += n - 1;
2775 ++ea.addr_count;
2776 /*
2777 * Be vi compatible: no error message for out of range.
2778 */
2779 if (ea.line2 > curbuf->b_ml.ml_line_count)
2780 ea.line2 = curbuf->b_ml.ml_line_count;
2781 }
2782 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002783
2784 /*
2785 * Check for flags: 'l', 'p' and '#'.
2786 */
2787 if (ea.argt & EXFLAGS)
2788 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002790 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002791 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002792 {
2793 errormsg = (char_u *)_(e_trailing);
2794 goto doend;
2795 }
2796
2797 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2798 {
2799 errormsg = (char_u *)_(e_argreq);
2800 goto doend;
2801 }
2802
2803#ifdef FEAT_EVAL
2804 /*
2805 * Skip the command when it's not going to be executed.
2806 * The commands like :if, :endif, etc. always need to be executed.
2807 * Also make an exception for commands that handle a trailing command
2808 * themselves.
2809 */
2810 if (ea.skip)
2811 {
2812 switch (ea.cmdidx)
2813 {
2814 /* commands that need evaluation */
2815 case CMD_while:
2816 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002817 case CMD_for:
2818 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 case CMD_if:
2820 case CMD_elseif:
2821 case CMD_else:
2822 case CMD_endif:
2823 case CMD_try:
2824 case CMD_catch:
2825 case CMD_finally:
2826 case CMD_endtry:
2827 case CMD_function:
2828 break;
2829
2830 /* Commands that handle '|' themselves. Check: A command should
2831 * either have the TRLBAR flag, appear in this list or appear in
2832 * the list at ":help :bar". */
2833 case CMD_aboveleft:
2834 case CMD_and:
2835 case CMD_belowright:
2836 case CMD_botright:
2837 case CMD_browse:
2838 case CMD_call:
2839 case CMD_confirm:
2840 case CMD_delfunction:
2841 case CMD_djump:
2842 case CMD_dlist:
2843 case CMD_dsearch:
2844 case CMD_dsplit:
2845 case CMD_echo:
2846 case CMD_echoerr:
2847 case CMD_echomsg:
2848 case CMD_echon:
2849 case CMD_execute:
2850 case CMD_help:
2851 case CMD_hide:
2852 case CMD_ijump:
2853 case CMD_ilist:
2854 case CMD_isearch:
2855 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002856 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857 case CMD_keepjumps:
2858 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01002859 case CMD_keeppatterns:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 case CMD_leftabove:
2861 case CMD_let:
2862 case CMD_lockmarks:
Bram Moolenaar0ba04292010-07-14 23:23:17 +02002863 case CMD_lua:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002865 case CMD_mzscheme:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01002866 case CMD_noautocmd:
2867 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 case CMD_perl:
2869 case CMD_psearch:
2870 case CMD_python:
Bram Moolenaar368373e2010-07-19 20:46:22 +02002871 case CMD_py3:
Bram Moolenaarb6590522010-07-21 16:00:43 +02002872 case CMD_python3:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 case CMD_return:
2874 case CMD_rightbelow:
2875 case CMD_ruby:
2876 case CMD_silent:
2877 case CMD_smagic:
2878 case CMD_snomagic:
2879 case CMD_substitute:
2880 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002881 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 case CMD_tcl:
2883 case CMD_throw:
2884 case CMD_tilde:
2885 case CMD_topleft:
2886 case CMD_unlet:
2887 case CMD_verbose:
2888 case CMD_vertical:
Bram Moolenaar12bde492011-06-13 01:19:56 +02002889 case CMD_wincmd:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890 break;
2891
2892 default: goto doend;
2893 }
2894 }
2895#endif
2896
2897 if (ea.argt & XFILE)
2898 {
2899 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2900 goto doend;
2901 }
2902
2903#ifdef FEAT_LISTCMDS
2904 /*
2905 * Accept buffer name. Cannot be used at the same time with a buffer
2906 * number. Don't do this for a user command.
2907 */
2908 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
Bram Moolenaar958636c2014-10-21 20:01:58 +02002909 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 {
2911 /*
2912 * :bdelete, :bwipeout and :bunload take several arguments, separated
2913 * by spaces: find next space (skipping over escaped characters).
2914 * The others take one argument: ignore trailing spaces.
2915 */
2916 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2917 || ea.cmdidx == CMD_bunload)
2918 p = skiptowhite_esc(ea.arg);
2919 else
2920 {
2921 p = ea.arg + STRLEN(ea.arg);
2922 while (p > ea.arg && vim_iswhite(p[-1]))
2923 --p;
2924 }
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002925 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0,
2926 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 if (ea.line2 < 0) /* failed */
2928 goto doend;
2929 ea.addr_count = 1;
2930 ea.arg = skipwhite(p);
2931 }
2932#endif
2933
2934/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01002935 * 7. Switch on command name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 *
2937 * The "ea" structure holds the arguments that can be used.
2938 */
2939 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002940 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941 ea.cookie = cookie;
2942#ifdef FEAT_EVAL
2943 ea.cstack = cstack;
2944#endif
2945
2946#ifdef FEAT_USR_CMDS
Bram Moolenaar958636c2014-10-21 20:01:58 +02002947 if (IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 {
2949 /*
2950 * Execute a user-defined command.
2951 */
2952 do_ucmd(&ea);
2953 }
2954 else
2955#endif
2956 {
2957 /*
2958 * Call the function to execute the command.
2959 */
2960 ea.errmsg = NULL;
2961 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2962 if (ea.errmsg != NULL)
2963 errormsg = (char_u *)_(ea.errmsg);
2964 }
2965
2966#ifdef FEAT_EVAL
2967 /*
2968 * If the command just executed called do_cmdline(), any throw or ":return"
2969 * or ":finish" encountered there must also check the cstack of the still
2970 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2971 * exception, or reanimate a returned function or finished script file and
2972 * return or finish it again.
2973 */
2974 if (need_rethrow)
2975 do_throw(cstack);
2976 else if (check_cstack)
2977 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002978 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002980 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 && current_func_returned())
2982 do_return(&ea, TRUE, FALSE, NULL);
2983 }
2984 need_rethrow = check_cstack = FALSE;
2985#endif
2986
2987doend:
2988 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2989 curwin->w_cursor.lnum = 1;
2990
2991 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2992 {
2993 if (sourcing)
2994 {
2995 if (errormsg != IObuff)
2996 {
2997 STRCPY(IObuff, errormsg);
2998 errormsg = IObuff;
2999 }
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003000 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 }
3002 emsg(errormsg);
3003 }
3004#ifdef FEAT_EVAL
3005 do_errthrow(cstack,
Bram Moolenaar958636c2014-10-21 20:01:58 +02003006 (ea.cmdidx != CMD_SIZE && !IS_USER_CMDIDX(ea.cmdidx))
3007 ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008#endif
3009
3010 if (verbose_save >= 0)
3011 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00003012#ifdef FEAT_AUTOCMD
3013 if (cmdmod.save_ei != NULL)
3014 {
3015 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003016 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
3017 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00003018 free_string_option(cmdmod.save_ei);
3019 }
3020#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021
3022 cmdmod = save_cmdmod;
3023
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003024 if (save_msg_silent != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 {
3026 /* messages could be enabled for a serious error, need to check if the
3027 * counters don't become negative */
Bram Moolenaarbecf4282009-09-30 11:24:36 +00003028 if (!did_emsg || msg_silent > save_msg_silent)
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003029 msg_silent = save_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 emsg_silent -= did_esilent;
3031 if (emsg_silent < 0)
3032 emsg_silent = 0;
3033 /* Restore msg_scroll, it's set by file I/O commands, even when no
3034 * message is actually displayed. */
3035 msg_scroll = save_msg_scroll;
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003036
3037 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
3038 * somewhere in the line. Put it back in the first column. */
3039 if (redirecting())
3040 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 }
3042
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003043#ifdef HAVE_SANDBOX
3044 if (did_sandbox)
3045 --sandbox;
3046#endif
3047
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
3049 ea.nextcmd = NULL;
3050
3051#ifdef FEAT_EVAL
3052 --ex_nesting_level;
3053#endif
3054
3055 return ea.nextcmd;
3056}
3057#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00003058 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059#endif
3060
3061/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003062 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 * If there is a match advance "pp" to the argument and return TRUE.
3064 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003065 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003067 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 char *cmd; /* name of command */
3069 int len; /* required length */
3070{
3071 int i;
3072
3073 for (i = 0; cmd[i] != NUL; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003074 if (((char_u *)cmd)[i] != (*pp)[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 break;
3076 if (i >= len && !isalpha((*pp)[i]))
3077 {
3078 *pp = skipwhite(*pp + i);
3079 return TRUE;
3080 }
3081 return FALSE;
3082}
3083
3084/*
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003085 * Append "cmd" to the error message in IObuff.
3086 * Takes care of limiting the length and handling 0xa0, which would be
3087 * invisible otherwise.
3088 */
3089 static void
3090append_command(cmd)
3091 char_u *cmd;
3092{
3093 char_u *s = cmd;
3094 char_u *d;
3095
3096 STRCAT(IObuff, ": ");
3097 d = IObuff + STRLEN(IObuff);
3098 while (*s != NUL && d - IObuff < IOSIZE - 7)
3099 {
3100 if (
3101#ifdef FEAT_MBYTE
3102 enc_utf8 ? (s[0] == 0xc2 && s[1] == 0xa0) :
3103#endif
3104 *s == 0xa0)
3105 {
3106 s +=
3107#ifdef FEAT_MBYTE
3108 enc_utf8 ? 2 :
3109#endif
3110 1;
3111 STRCPY(d, "<a0>");
3112 d += 4;
3113 }
3114 else
3115 MB_COPY_CHAR(s, d);
3116 }
3117 *d = NUL;
3118}
3119
3120/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003122 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003124 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 * Returns NULL for an ambiguous user command.
3126 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 static char_u *
3128find_command(eap, full)
3129 exarg_T *eap;
Bram Moolenaar78a15312009-05-15 19:33:18 +00003130 int *full UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131{
3132 int len;
3133 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003134 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135
3136 /*
3137 * Isolate the command and search for it in the command table.
Bram Moolenaar81870892007-11-11 18:17:28 +00003138 * Exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 * - the 'k' command can directly be followed by any character.
3140 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01003141 * but :sre[wind] is another command, as are :scr[iptnames],
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00003143 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 */
3145 p = eap->cmd;
3146 if (*p == 'k')
3147 {
3148 eap->cmdidx = CMD_k;
3149 ++p;
3150 }
3151 else if (p[0] == 's'
Bram Moolenaar204b93f2015-08-04 22:02:51 +02003152 && ((p[1] == 'c' && (p[2] == NUL || (p[2] != 's' && p[2] != 'r'
3153 && (p[3] == NUL || (p[3] != 'i' && p[4] != 'p')))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154 || p[1] == 'g'
3155 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
3156 || p[1] == 'I'
3157 || (p[1] == 'r' && p[2] != 'e')))
3158 {
3159 eap->cmdidx = CMD_substitute;
3160 ++p;
3161 }
3162 else
3163 {
3164 while (ASCII_ISALPHA(*p))
3165 ++p;
Bram Moolenaarb6590522010-07-21 16:00:43 +02003166 /* for python 3.x support ":py3", ":python3", ":py3file", etc. */
Bram Moolenaar55d5c032010-07-17 23:52:29 +02003167 if (eap->cmd[0] == 'p' && eap->cmd[1] == 'y')
Bram Moolenaarb6590522010-07-21 16:00:43 +02003168 while (ASCII_ISALNUM(*p))
3169 ++p;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02003170
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 /* check for non-alpha command */
3172 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3173 ++p;
3174 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003175 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
3176 {
3177 /* Check for ":dl", ":dell", etc. to ":deletel": that's
3178 * :delete with the 'l' flag. Same for 'p'. */
3179 for (i = 0; i < len; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003180 if (eap->cmd[i] != ((char_u *)"delete")[i])
Bram Moolenaardf177f62005-02-22 08:39:57 +00003181 break;
3182 if (i == len - 1)
3183 {
3184 --len;
3185 if (p[-1] == 'l')
3186 eap->flags |= EXFLAG_LIST;
3187 else
3188 eap->flags |= EXFLAG_PRINT;
3189 }
3190 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191
3192 if (ASCII_ISLOWER(*eap->cmd))
3193 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
3194 else
3195 eap->cmdidx = cmdidxs[26];
3196
3197 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
3198 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
3199 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
3200 (size_t)len) == 0)
3201 {
3202#ifdef FEAT_EVAL
3203 if (full != NULL
3204 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
3205 *full = TRUE;
3206#endif
3207 break;
3208 }
3209
3210#ifdef FEAT_USR_CMDS
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01003211 /* Look for a user defined command as a last resort. Let ":Print" be
3212 * overruled by a user defined command. */
3213 if ((eap->cmdidx == CMD_SIZE || eap->cmdidx == CMD_Print)
3214 && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003216 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 while (ASCII_ISALNUM(*p))
3218 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003219 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 }
3221#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003222 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 eap->cmdidx = CMD_SIZE;
3224 }
3225
3226 return p;
3227}
3228
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003229#ifdef FEAT_USR_CMDS
3230/*
3231 * Search for a user command that matches "eap->cmd".
3232 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
3233 * Return a pointer to just after the command.
3234 * Return NULL if there is no matching command.
3235 */
3236 static char_u *
3237find_ucmd(eap, p, full, xp, compl)
3238 exarg_T *eap;
3239 char_u *p; /* end of the command (possibly including count) */
3240 int *full; /* set to TRUE for a full match */
3241 expand_T *xp; /* used for completion, NULL otherwise */
3242 int *compl; /* completion flags or NULL */
3243{
3244 int len = (int)(p - eap->cmd);
3245 int j, k, matchlen = 0;
3246 ucmd_T *uc;
3247 int found = FALSE;
3248 int possible = FALSE;
3249 char_u *cp, *np; /* Point into typed cmd and test name */
3250 garray_T *gap;
3251 int amb_local = FALSE; /* Found ambiguous buffer-local command,
3252 only full match global is accepted. */
3253
3254 /*
3255 * Look for buffer-local user commands first, then global ones.
3256 */
3257 gap = &curbuf->b_ucmds;
3258 for (;;)
3259 {
3260 for (j = 0; j < gap->ga_len; ++j)
3261 {
3262 uc = USER_CMD_GA(gap, j);
3263 cp = eap->cmd;
3264 np = uc->uc_name;
3265 k = 0;
3266 while (k < len && *np != NUL && *cp++ == *np++)
3267 k++;
3268 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
3269 {
3270 /* If finding a second match, the command is ambiguous. But
3271 * not if a buffer-local command wasn't a full match and a
3272 * global command is a full match. */
3273 if (k == len && found && *np != NUL)
3274 {
3275 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003276 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003277 amb_local = TRUE;
3278 }
3279
3280 if (!found || (k == len && *np == NUL))
3281 {
3282 /* If we matched up to a digit, then there could
3283 * be another command including the digit that we
3284 * should use instead.
3285 */
3286 if (k == len)
3287 found = TRUE;
3288 else
3289 possible = TRUE;
3290
3291 if (gap == &ucmds)
3292 eap->cmdidx = CMD_USER;
3293 else
3294 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003295 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003296 eap->useridx = j;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003297 eap->addr_type = uc->uc_addr_type;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003298
3299# ifdef FEAT_CMDL_COMPL
3300 if (compl != NULL)
3301 *compl = uc->uc_compl;
3302# ifdef FEAT_EVAL
3303 if (xp != NULL)
3304 {
3305 xp->xp_arg = uc->uc_compl_arg;
3306 xp->xp_scriptID = uc->uc_scriptID;
3307 }
3308# endif
3309# endif
3310 /* Do not search for further abbreviations
3311 * if this is an exact match. */
3312 matchlen = k;
3313 if (k == len && *np == NUL)
3314 {
3315 if (full != NULL)
3316 *full = TRUE;
3317 amb_local = FALSE;
3318 break;
3319 }
3320 }
3321 }
3322 }
3323
3324 /* Stop if we found a full match or searched all. */
3325 if (j < gap->ga_len || gap == &ucmds)
3326 break;
3327 gap = &ucmds;
3328 }
3329
3330 /* Only found ambiguous matches. */
3331 if (amb_local)
3332 {
3333 if (xp != NULL)
3334 xp->xp_context = EXPAND_UNSUCCESSFUL;
3335 return NULL;
3336 }
3337
3338 /* The match we found may be followed immediately by a number. Move "p"
3339 * back to point to it. */
3340 if (found || possible)
3341 return p + (matchlen - len);
3342 return p;
3343}
3344#endif
3345
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003347static struct cmdmod
3348{
3349 char *name;
3350 int minlen;
3351 int has_count; /* :123verbose :3tab */
3352} cmdmods[] = {
3353 {"aboveleft", 3, FALSE},
3354 {"belowright", 3, FALSE},
3355 {"botright", 2, FALSE},
3356 {"browse", 3, FALSE},
3357 {"confirm", 4, FALSE},
3358 {"hide", 3, FALSE},
3359 {"keepalt", 5, FALSE},
3360 {"keepjumps", 5, FALSE},
3361 {"keepmarks", 3, FALSE},
Bram Moolenaara939e432013-11-09 05:30:26 +01003362 {"keeppatterns", 5, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003363 {"leftabove", 5, FALSE},
3364 {"lockmarks", 3, FALSE},
Bram Moolenaarca9f9582008-09-18 10:44:28 +00003365 {"noautocmd", 3, FALSE},
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003366 {"noswapfile", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003367 {"rightbelow", 6, FALSE},
3368 {"sandbox", 3, FALSE},
3369 {"silent", 3, FALSE},
3370 {"tab", 3, TRUE},
3371 {"topleft", 2, FALSE},
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003372 {"unsilent", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003373 {"verbose", 4, TRUE},
3374 {"vertical", 4, FALSE},
3375};
3376
3377/*
3378 * Return length of a command modifier (including optional count).
3379 * Return zero when it's not a modifier.
3380 */
3381 int
3382modifier_len(cmd)
3383 char_u *cmd;
3384{
3385 int i, j;
3386 char_u *p = cmd;
3387
3388 if (VIM_ISDIGIT(*cmd))
3389 p = skipwhite(skipdigits(cmd));
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003390 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003391 {
3392 for (j = 0; p[j] != NUL; ++j)
3393 if (p[j] != cmdmods[i].name[j])
3394 break;
Bram Moolenaar2d473ab2013-06-12 17:12:24 +02003395 if (!ASCII_ISALPHA(p[j]) && j >= cmdmods[i].minlen
Bram Moolenaared53fb92007-11-24 20:50:24 +00003396 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003397 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003398 }
3399 return 0;
3400}
3401
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402/*
3403 * Return > 0 if an Ex command "name" exists.
3404 * Return 2 if there is an exact match.
3405 * Return 3 if there is an ambiguous match.
3406 */
3407 int
3408cmd_exists(name)
3409 char_u *name;
3410{
3411 exarg_T ea;
3412 int full = FALSE;
3413 int i;
3414 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003415 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416
3417 /* Check command modifiers. */
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003418 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003419 {
3420 for (j = 0; name[j] != NUL; ++j)
3421 if (name[j] != cmdmods[i].name[j])
3422 break;
3423 if (name[j] == NUL && j >= cmdmods[i].minlen)
3424 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3425 }
3426
Bram Moolenaara9587612006-05-04 21:47:50 +00003427 /* Check built-in commands and user defined commands.
3428 * For ":2match" and ":3match" we need to skip the number. */
3429 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003431 p = find_command(&ea, &full);
3432 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003434 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3435 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003436 if (*skipwhite(p) != NUL)
3437 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3439}
3440#endif
3441
3442/*
3443 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3444 * we don't need/want deleted. Maybe this could be done better if we didn't
3445 * repeat all this stuff. The only problem is that they may not stay
3446 * perfectly compatible with each other, but then the command line syntax
3447 * probably won't change that much -- webb.
3448 */
3449 char_u *
3450set_one_cmd_context(xp, buff)
3451 expand_T *xp;
3452 char_u *buff; /* buffer for command string */
3453{
3454 char_u *p;
3455 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003456 int len = 0;
3457 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3459 int compl = EXPAND_NOTHING;
3460#endif
3461#ifdef FEAT_CMDL_COMPL
3462 int delim;
3463#endif
3464 int forceit = FALSE;
3465 int usefilter = FALSE; /* filter instead of file name */
3466
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003467 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 xp->xp_pattern = buff;
3469 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003470 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471
3472/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003473 * 1. skip comment lines and leading space, colons or bars
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 */
3475 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3476 ;
3477 xp->xp_pattern = cmd;
3478
3479 if (*cmd == NUL)
3480 return NULL;
3481 if (*cmd == '"') /* ignore comment lines */
3482 {
3483 xp->xp_context = EXPAND_NOTHING;
3484 return NULL;
3485 }
3486
3487/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003488 * 3. Skip over the range to find the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 */
3490 cmd = skip_range(cmd, &xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003491 xp->xp_pattern = cmd;
3492 if (*cmd == NUL)
3493 return NULL;
3494 if (*cmd == '"')
3495 {
3496 xp->xp_context = EXPAND_NOTHING;
3497 return NULL;
3498 }
3499
3500 if (*cmd == '|' || *cmd == '\n')
3501 return cmd + 1; /* There's another command */
3502
3503 /*
3504 * Isolate the command and search for it in the command table.
3505 * Exceptions:
3506 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003507 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3509 */
3510 if (*cmd == 'k' && cmd[1] != 'e')
3511 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003512 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 p = cmd + 1;
3514 }
3515 else
3516 {
3517 p = cmd;
3518 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3519 ++p;
3520 /* check for non-alpha command */
3521 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3522 ++p;
Bram Moolenaar9f5d6002013-06-02 19:22:13 +02003523 /* for python 3.x: ":py3*" commands completion */
3524 if (cmd[0] == 'p' && cmd[1] == 'y' && p == cmd + 2 && *p == '3')
Bram Moolenaar893b2d72013-12-11 17:44:38 +01003525 {
Bram Moolenaar9f5d6002013-06-02 19:22:13 +02003526 ++p;
Bram Moolenaar893b2d72013-12-11 17:44:38 +01003527 while (ASCII_ISALPHA(*p) || *p == '*')
3528 ++p;
3529 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003530 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003532 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 {
3534 xp->xp_context = EXPAND_UNSUCCESSFUL;
3535 return NULL;
3536 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003537 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01003538 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3539 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd,
3540 (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 break;
3542
3543#ifdef FEAT_USR_CMDS
3544 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3546 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547#endif
3548 }
3549
3550 /*
3551 * If the cursor is touching the command, and it ends in an alpha-numeric
3552 * character, complete the command name.
3553 */
3554 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3555 return NULL;
3556
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003557 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 {
3559 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3560 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003561 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 p = cmd + 1;
3563 }
3564#ifdef FEAT_USR_CMDS
3565 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3566 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003567 ea.cmd = cmd;
3568 p = find_ucmd(&ea, p, NULL, xp,
3569# if defined(FEAT_CMDL_COMPL)
3570 &compl
3571# else
3572 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003573# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003574 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003575 if (p == NULL)
3576 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003577 }
3578#endif
3579 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003580 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581 {
3582 /* Not still touching the command and it was an illegal one */
3583 xp->xp_context = EXPAND_UNSUCCESSFUL;
3584 return NULL;
3585 }
3586
3587 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3588
3589 if (*p == '!') /* forced commands */
3590 {
3591 forceit = TRUE;
3592 ++p;
3593 }
3594
3595/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003596 * 6. parse arguments
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02003598 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003599 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600
3601 arg = skipwhite(p);
3602
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003603 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 {
3605 if (*arg == '>') /* append */
3606 {
3607 if (*++arg == '>')
3608 ++arg;
3609 arg = skipwhite(arg);
3610 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003611 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 {
3613 ++arg;
3614 usefilter = TRUE;
3615 }
3616 }
3617
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003618 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619 {
3620 usefilter = forceit; /* :r! filter if forced */
3621 if (*arg == '!') /* :r !filter */
3622 {
3623 ++arg;
3624 usefilter = TRUE;
3625 }
3626 }
3627
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003628 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 {
3630 while (*arg == *cmd) /* allow any number of '>' or '<' */
3631 ++arg;
3632 arg = skipwhite(arg);
3633 }
3634
3635 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003636 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 {
3638 /* Check if we're in the +command */
3639 p = arg + 1;
3640 arg = skip_cmd_arg(arg, FALSE);
3641
3642 /* Still touching the command after '+'? */
3643 if (*arg == NUL)
3644 return p;
3645
3646 /* Skip space(s) after +command to get to the real argument */
3647 arg = skipwhite(arg);
3648 }
3649
3650 /*
3651 * Check for '|' to separate commands and '"' to start comments.
3652 * Don't do this for ":read !cmd" and ":write !cmd".
3653 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003654 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 {
3656 p = arg;
3657 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003658 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 p += 2;
3660 while (*p)
3661 {
3662 if (*p == Ctrl_V)
3663 {
3664 if (p[1] != NUL)
3665 ++p;
3666 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003667 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003668 || *p == '|' || *p == '\n')
3669 {
3670 if (*(p - 1) != '\\')
3671 {
3672 if (*p == '|' || *p == '\n')
3673 return p + 1;
3674 return NULL; /* It's a comment */
3675 }
3676 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003677 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 }
3679 }
3680
3681 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003682 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 vim_strchr((char_u *)"|\"", *arg) == NULL)
3684 return NULL;
3685
3686 /* Find start of last argument (argument just before cursor): */
Bram Moolenaar848f8762012-07-25 17:22:23 +02003687 p = buff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 xp->xp_pattern = p;
Bram Moolenaar09168a72012-08-02 21:24:42 +02003689 len = (int)STRLEN(buff);
Bram Moolenaar848f8762012-07-25 17:22:23 +02003690 while (*p && p < buff + len)
3691 {
3692 if (*p == ' ' || *p == TAB)
3693 {
3694 /* argument starts after a space */
3695 xp->xp_pattern = ++p;
3696 }
3697 else
3698 {
3699 if (*p == '\\' && *(p + 1) != NUL)
3700 ++p; /* skip over escaped character */
3701 mb_ptr_adv(p);
3702 }
3703 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003705 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003707 int c;
3708 int in_quote = FALSE;
3709 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710
3711 /*
3712 * Allow spaces within back-quotes to count as part of the argument
3713 * being expanded.
3714 */
3715 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003716 p = xp->xp_pattern;
3717 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003719#ifdef FEAT_MBYTE
3720 if (has_mbyte)
3721 c = mb_ptr2char(p);
3722 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003724 c = *p;
3725 if (c == '\\' && p[1] != NUL)
3726 ++p;
3727 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 {
3729 if (!in_quote)
3730 {
3731 xp->xp_pattern = p;
3732 bow = p + 1;
3733 }
3734 in_quote = !in_quote;
3735 }
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003736 /* An argument can contain just about everything, except
3737 * characters that end the command and white space. */
3738 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003739#ifdef SPACE_IN_FILENAME
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003740 && (!(ea.argt & NOSPC) || usefilter)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003741#endif
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003742 ))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003743 {
Bram Moolenaarcf5a5b82008-02-26 20:30:12 +00003744 len = 0; /* avoid getting stuck when space is in 'isfname' */
Bram Moolenaar6529c102007-08-18 15:47:34 +00003745 while (*p != NUL)
3746 {
3747#ifdef FEAT_MBYTE
3748 if (has_mbyte)
3749 c = mb_ptr2char(p);
3750 else
3751#endif
3752 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003753 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003754 break;
3755#ifdef FEAT_MBYTE
3756 if (has_mbyte)
3757 len = (*mb_ptr2len)(p);
3758 else
3759#endif
3760 len = 1;
3761 mb_ptr_adv(p);
3762 }
3763 if (in_quote)
3764 bow = p;
3765 else
3766 xp->xp_pattern = p;
3767 p -= len;
3768 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003769 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 }
3771
3772 /*
3773 * If we are still inside the quotes, and we passed a space, just
3774 * expand from there.
3775 */
3776 if (bow != NULL && in_quote)
3777 xp->xp_pattern = bow;
3778 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003779
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003780 /* For a shell command more chars need to be escaped. */
3781 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003782 {
Bram Moolenaarc0cba4d2010-08-07 17:07:21 +02003783#ifndef BACKSLASH_IN_FILENAME
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003784 xp->xp_shell = TRUE;
Bram Moolenaarc0cba4d2010-08-07 17:07:21 +02003785#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003786 /* When still after the command name expand executables. */
3787 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003788 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790
3791 /* Check for environment variable */
3792 if (*xp->xp_pattern == '$'
3793#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3794 || *xp->xp_pattern == '%'
3795#endif
3796 )
3797 {
3798 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3799 if (!vim_isIDc(*p))
3800 break;
3801 if (*p == NUL)
3802 {
3803 xp->xp_context = EXPAND_ENV_VARS;
3804 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003805#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3806 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003807 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003808 compl = EXPAND_ENV_VARS;
3809#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 }
3811 }
Bram Moolenaar24305862012-08-15 14:05:05 +02003812#if defined(FEAT_CMDL_COMPL)
3813 /* Check for user names */
3814 if (*xp->xp_pattern == '~')
3815 {
3816 for (p = xp->xp_pattern + 1; *p != NUL && *p != '/'; ++p)
3817 ;
3818 /* Complete ~user only if it partially matches a user name.
3819 * A full match ~user<Tab> will be replaced by user's home
3820 * directory i.e. something like ~user<Tab> -> /home/user/ */
3821 if (*p == NUL && p > xp->xp_pattern + 1
3822 && match_user(xp->xp_pattern + 1) == 1)
3823 {
3824 xp->xp_context = EXPAND_USER;
3825 ++xp->xp_pattern;
3826 }
3827 }
3828#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 }
3830
3831/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003832 * 6. Switch on command name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003834 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003836 case CMD_find:
3837 case CMD_sfind:
3838 case CMD_tabfind:
Bram Moolenaarc24b6972010-08-16 22:34:29 +02003839 if (xp->xp_context == EXPAND_FILES)
3840 xp->xp_context = EXPAND_FILES_IN_PATH;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003841 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842 case CMD_cd:
3843 case CMD_chdir:
3844 case CMD_lcd:
3845 case CMD_lchdir:
3846 if (xp->xp_context == EXPAND_FILES)
3847 xp->xp_context = EXPAND_DIRECTORIES;
3848 break;
3849 case CMD_help:
3850 xp->xp_context = EXPAND_HELP;
3851 xp->xp_pattern = arg;
3852 break;
3853
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003854 /* Command modifiers: return the argument.
3855 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003857 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858 case CMD_belowright:
3859 case CMD_botright:
3860 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003861 case CMD_bufdo:
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003862 case CMD_cdo:
3863 case CMD_cfdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003864 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003865 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 case CMD_folddoclosed:
3867 case CMD_folddoopen:
3868 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003869 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003870 case CMD_keepjumps:
3871 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01003872 case CMD_keeppatterns:
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003873 case CMD_ldo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 case CMD_leftabove:
Bram Moolenaaraa23b372015-09-08 18:46:31 +02003875 case CMD_lfdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003876 case CMD_lockmarks:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003877 case CMD_noautocmd:
3878 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003880 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003881 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003882 case CMD_tab:
Bram Moolenaar70baa402013-06-16 16:14:03 +02003883 case CMD_tabdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884 case CMD_topleft:
3885 case CMD_verbose:
3886 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003887 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888 return arg;
3889
Bram Moolenaar4f688582007-07-24 12:34:30 +00003890#ifdef FEAT_CMDL_COMPL
3891# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003892 case CMD_match:
3893 if (*arg == NUL || !ends_excmd(*arg))
3894 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003895 /* also complete "None" */
3896 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 arg = skipwhite(skiptowhite(arg));
3898 if (*arg != NUL)
3899 {
3900 xp->xp_context = EXPAND_NOTHING;
3901 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3902 }
3903 }
3904 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003905# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907/*
3908 * All completion for the +cmdline_compl feature goes here.
3909 */
3910
3911# ifdef FEAT_USR_CMDS
3912 case CMD_command:
3913 /* Check for attributes */
3914 while (*arg == '-')
3915 {
3916 arg++; /* Skip "-" */
3917 p = skiptowhite(arg);
3918 if (*p == NUL)
3919 {
3920 /* Cursor is still in the attribute */
3921 p = vim_strchr(arg, '=');
3922 if (p == NULL)
3923 {
3924 /* No "=", so complete attribute names */
3925 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3926 xp->xp_pattern = arg;
3927 return NULL;
3928 }
3929
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003930 /* For the -complete, -nargs and -addr attributes, we complete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 * their arguments as well.
3932 */
3933 if (STRNICMP(arg, "complete", p - arg) == 0)
3934 {
3935 xp->xp_context = EXPAND_USER_COMPLETE;
3936 xp->xp_pattern = p + 1;
3937 return NULL;
3938 }
3939 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3940 {
3941 xp->xp_context = EXPAND_USER_NARGS;
3942 xp->xp_pattern = p + 1;
3943 return NULL;
3944 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003945 else if (STRNICMP(arg, "addr", p - arg) == 0)
3946 {
3947 xp->xp_context = EXPAND_USER_ADDR_TYPE;
3948 xp->xp_pattern = p + 1;
3949 return NULL;
3950 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 return NULL;
3952 }
3953 arg = skipwhite(p);
3954 }
3955
3956 /* After the attributes comes the new command name */
3957 p = skiptowhite(arg);
3958 if (*p == NUL)
3959 {
3960 xp->xp_context = EXPAND_USER_COMMANDS;
3961 xp->xp_pattern = arg;
3962 break;
3963 }
3964
3965 /* And finally comes a normal command */
3966 return skipwhite(p);
3967
3968 case CMD_delcommand:
3969 xp->xp_context = EXPAND_USER_COMMANDS;
3970 xp->xp_pattern = arg;
3971 break;
3972# endif
3973
3974 case CMD_global:
3975 case CMD_vglobal:
3976 delim = *arg; /* get the delimiter */
3977 if (delim)
3978 ++arg; /* skip delimiter if there is one */
3979
3980 while (arg[0] != NUL && arg[0] != delim)
3981 {
3982 if (arg[0] == '\\' && arg[1] != NUL)
3983 ++arg;
3984 ++arg;
3985 }
3986 if (arg[0] != NUL)
3987 return arg + 1;
3988 break;
3989 case CMD_and:
3990 case CMD_substitute:
3991 delim = *arg;
3992 if (delim)
3993 {
3994 /* skip "from" part */
3995 ++arg;
3996 arg = skip_regexp(arg, delim, p_magic, NULL);
3997 }
3998 /* skip "to" part */
3999 while (arg[0] != NUL && arg[0] != delim)
4000 {
4001 if (arg[0] == '\\' && arg[1] != NUL)
4002 ++arg;
4003 ++arg;
4004 }
4005 if (arg[0] != NUL) /* skip delimiter */
4006 ++arg;
4007 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
4008 ++arg;
4009 if (arg[0] != NUL)
4010 return arg;
4011 break;
4012 case CMD_isearch:
4013 case CMD_dsearch:
4014 case CMD_ilist:
4015 case CMD_dlist:
4016 case CMD_ijump:
4017 case CMD_psearch:
4018 case CMD_djump:
4019 case CMD_isplit:
4020 case CMD_dsplit:
4021 arg = skipwhite(skipdigits(arg)); /* skip count */
4022 if (*arg == '/') /* Match regexp, not just whole words */
4023 {
4024 for (++arg; *arg && *arg != '/'; arg++)
4025 if (*arg == '\\' && arg[1] != NUL)
4026 arg++;
4027 if (*arg)
4028 {
4029 arg = skipwhite(arg + 1);
4030
4031 /* Check for trailing illegal characters */
4032 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
4033 xp->xp_context = EXPAND_NOTHING;
4034 else
4035 return arg;
4036 }
4037 }
4038 break;
4039#ifdef FEAT_AUTOCMD
4040 case CMD_autocmd:
4041 return set_context_in_autocmd(xp, arg, FALSE);
4042
4043 case CMD_doautocmd:
Bram Moolenaar73a9d7b2008-11-06 16:16:44 +00004044 case CMD_doautoall:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 return set_context_in_autocmd(xp, arg, TRUE);
4046#endif
4047 case CMD_set:
4048 set_context_in_set_cmd(xp, arg, 0);
4049 break;
4050 case CMD_setglobal:
4051 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
4052 break;
4053 case CMD_setlocal:
4054 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
4055 break;
4056 case CMD_tag:
4057 case CMD_stag:
4058 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00004059 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060 case CMD_tselect:
4061 case CMD_stselect:
4062 case CMD_ptselect:
4063 case CMD_tjump:
4064 case CMD_stjump:
4065 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004066 if (*p_wop != NUL)
4067 xp->xp_context = EXPAND_TAGS_LISTFILES;
4068 else
4069 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004070 xp->xp_pattern = arg;
4071 break;
4072 case CMD_augroup:
4073 xp->xp_context = EXPAND_AUGROUP;
4074 xp->xp_pattern = arg;
4075 break;
4076#ifdef FEAT_SYN_HL
4077 case CMD_syntax:
4078 set_context_in_syntax_cmd(xp, arg);
4079 break;
4080#endif
4081#ifdef FEAT_EVAL
4082 case CMD_let:
4083 case CMD_if:
4084 case CMD_elseif:
4085 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00004086 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 case CMD_echo:
4088 case CMD_echon:
4089 case CMD_execute:
4090 case CMD_echomsg:
4091 case CMD_echoerr:
4092 case CMD_call:
4093 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004094 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 break;
4096
4097 case CMD_unlet:
4098 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
4099 arg = xp->xp_pattern + 1;
4100 xp->xp_context = EXPAND_USER_VARS;
4101 xp->xp_pattern = arg;
4102 break;
4103
4104 case CMD_function:
4105 case CMD_delfunction:
4106 xp->xp_context = EXPAND_USER_FUNC;
4107 xp->xp_pattern = arg;
4108 break;
4109
4110 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00004111 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 break;
4113#endif
4114 case CMD_highlight:
4115 set_context_in_highlight_cmd(xp, arg);
4116 break;
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004117#ifdef FEAT_CSCOPE
4118 case CMD_cscope:
Bram Moolenaar7bfef802009-04-22 14:25:01 +00004119 case CMD_lcscope:
4120 case CMD_scscope:
4121 set_context_in_cscope_cmd(xp, arg, ea.cmdidx);
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004122 break;
4123#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004124#ifdef FEAT_SIGNS
4125 case CMD_sign:
4126 set_context_in_sign_cmd(xp, arg);
4127 break;
4128#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129#ifdef FEAT_LISTCMDS
4130 case CMD_bdelete:
4131 case CMD_bwipeout:
4132 case CMD_bunload:
4133 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
4134 arg = xp->xp_pattern + 1;
4135 /*FALLTHROUGH*/
4136 case CMD_buffer:
4137 case CMD_sbuffer:
4138 case CMD_checktime:
4139 xp->xp_context = EXPAND_BUFFERS;
4140 xp->xp_pattern = arg;
4141 break;
4142#endif
4143#ifdef FEAT_USR_CMDS
4144 case CMD_USER:
4145 case CMD_USER_BUF:
4146 if (compl != EXPAND_NOTHING)
4147 {
4148 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004149 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 {
4151# ifdef FEAT_MENU
4152 if (compl == EXPAND_MENUS)
4153 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
4154# endif
4155 if (compl == EXPAND_COMMANDS)
4156 return arg;
4157 if (compl == EXPAND_MAPPINGS)
4158 return set_context_in_map_cmd(xp, (char_u *)"map",
4159 arg, forceit, FALSE, FALSE, CMD_map);
Bram Moolenaar848f8762012-07-25 17:22:23 +02004160 /* Find start of last argument. */
4161 p = arg;
4162 while (*p)
4163 {
4164 if (*p == ' ')
Bram Moolenaar848f8762012-07-25 17:22:23 +02004165 /* argument starts after a space */
4166 arg = p + 1;
Bram Moolenaara07c8312012-07-27 21:12:07 +02004167 else if (*p == '\\' && *(p + 1) != NUL)
4168 ++p; /* skip over escaped character */
4169 mb_ptr_adv(p);
Bram Moolenaar848f8762012-07-25 17:22:23 +02004170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 xp->xp_pattern = arg;
4172 }
4173 xp->xp_context = compl;
4174 }
4175 break;
4176#endif
4177 case CMD_map: case CMD_noremap:
4178 case CMD_nmap: case CMD_nnoremap:
4179 case CMD_vmap: case CMD_vnoremap:
4180 case CMD_omap: case CMD_onoremap:
4181 case CMD_imap: case CMD_inoremap:
4182 case CMD_cmap: case CMD_cnoremap:
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004183 case CMD_lmap: case CMD_lnoremap:
Bram Moolenaar09bb33d2013-05-07 05:18:20 +02004184 case CMD_smap: case CMD_snoremap:
4185 case CMD_xmap: case CMD_xnoremap:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004187 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 case CMD_unmap:
4189 case CMD_nunmap:
4190 case CMD_vunmap:
4191 case CMD_ounmap:
4192 case CMD_iunmap:
4193 case CMD_cunmap:
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004194 case CMD_lunmap:
Bram Moolenaar09bb33d2013-05-07 05:18:20 +02004195 case CMD_sunmap:
4196 case CMD_xunmap:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004198 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 case CMD_abbreviate: case CMD_noreabbrev:
4200 case CMD_cabbrev: case CMD_cnoreabbrev:
4201 case CMD_iabbrev: case CMD_inoreabbrev:
4202 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004203 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 case CMD_unabbreviate:
4205 case CMD_cunabbrev:
4206 case CMD_iunabbrev:
4207 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004208 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209#ifdef FEAT_MENU
4210 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
4211 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
4212 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
4213 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
4214 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
4215 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
4216 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
4217 case CMD_tmenu: case CMD_tunmenu:
4218 case CMD_popup: case CMD_tearoff: case CMD_emenu:
4219 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
4220#endif
4221
4222 case CMD_colorscheme:
4223 xp->xp_context = EXPAND_COLORS;
4224 xp->xp_pattern = arg;
4225 break;
4226
4227 case CMD_compiler:
4228 xp->xp_context = EXPAND_COMPILER;
4229 xp->xp_pattern = arg;
4230 break;
4231
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004232 case CMD_ownsyntax:
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004233 xp->xp_context = EXPAND_OWNSYNTAX;
4234 xp->xp_pattern = arg;
4235 break;
4236
4237 case CMD_setfiletype:
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004238 xp->xp_context = EXPAND_FILETYPE;
4239 xp->xp_pattern = arg;
4240 break;
4241
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4243 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4244 case CMD_language:
Bram Moolenaara660dc82011-05-25 12:51:22 +02004245 p = skiptowhite(arg);
4246 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 {
4248 xp->xp_context = EXPAND_LANGUAGE;
4249 xp->xp_pattern = arg;
4250 }
4251 else
Bram Moolenaara660dc82011-05-25 12:51:22 +02004252 {
4253 if ( STRNCMP(arg, "messages", p - arg) == 0
4254 || STRNCMP(arg, "ctype", p - arg) == 0
4255 || STRNCMP(arg, "time", p - arg) == 0)
4256 {
4257 xp->xp_context = EXPAND_LOCALES;
4258 xp->xp_pattern = skipwhite(p);
4259 }
4260 else
4261 xp->xp_context = EXPAND_NOTHING;
4262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 break;
4264#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004265#if defined(FEAT_PROFILE)
4266 case CMD_profile:
4267 set_context_in_profile_cmd(xp, arg);
4268 break;
4269#endif
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004270 case CMD_behave:
4271 xp->xp_context = EXPAND_BEHAVE;
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004272 xp->xp_pattern = arg;
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004273 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004275#if defined(FEAT_CMDHIST)
4276 case CMD_history:
4277 xp->xp_context = EXPAND_HISTORY;
4278 xp->xp_pattern = arg;
4279 break;
4280#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004281#if defined(FEAT_PROFILE)
4282 case CMD_syntime:
4283 xp->xp_context = EXPAND_SYNTIME;
4284 xp->xp_pattern = arg;
4285 break;
4286#endif
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004287
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288#endif /* FEAT_CMDL_COMPL */
4289
4290 default:
4291 break;
4292 }
4293 return NULL;
4294}
4295
4296/*
4297 * skip a range specifier of the form: addr [,addr] [;addr] ..
4298 *
4299 * Backslashed delimiters after / or ? will be skipped, and commands will
4300 * not be expanded between /'s and ?'s or after "'".
4301 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00004302 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 * Returns the "cmd" pointer advanced to beyond the range.
4304 */
4305 char_u *
4306skip_range(cmd, ctx)
4307 char_u *cmd;
4308 int *ctx; /* pointer to xp_context or NULL */
4309{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004310 unsigned delim;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311
Bram Moolenaardf177f62005-02-22 08:39:57 +00004312 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 {
4314 if (*cmd == '\'')
4315 {
4316 if (*++cmd == NUL && ctx != NULL)
4317 *ctx = EXPAND_NOTHING;
4318 }
4319 else if (*cmd == '/' || *cmd == '?')
4320 {
4321 delim = *cmd++;
4322 while (*cmd != NUL && *cmd != delim)
4323 if (*cmd++ == '\\' && *cmd != NUL)
4324 ++cmd;
4325 if (*cmd == NUL && ctx != NULL)
4326 *ctx = EXPAND_NOTHING;
4327 }
4328 if (*cmd != NUL)
4329 ++cmd;
4330 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004331
4332 /* Skip ":" and white space. */
4333 while (*cmd == ':')
4334 cmd = skipwhite(cmd + 1);
4335
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 return cmd;
4337}
4338
4339/*
4340 * get a single EX address
4341 *
4342 * Set ptr to the next character after the part that was interpreted.
4343 * Set ptr to NULL when an error is encountered.
4344 *
4345 * Return MAXLNUM when no Ex address was found.
4346 */
4347 static linenr_T
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004348get_address(eap, ptr, addr_type, skip, to_other_file)
Bram Moolenaare906c502015-09-09 21:10:39 +02004349 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 char_u **ptr;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004351 int addr_type; /* flag: one of ADDR_LINES, ... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 int skip; /* only skip the address, don't use it */
4353 int to_other_file; /* flag: may jump to other file */
4354{
4355 int c;
4356 int i;
4357 long n;
4358 char_u *cmd;
4359 pos_T pos;
4360 pos_T *fp;
4361 linenr_T lnum;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004362 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363
4364 cmd = skipwhite(*ptr);
4365 lnum = MAXLNUM;
4366 do
4367 {
4368 switch (*cmd)
4369 {
4370 case '.': /* '.' - Cursor position */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004371 ++cmd;
4372 switch (addr_type)
4373 {
4374 case ADDR_LINES:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 lnum = curwin->w_cursor.lnum;
4376 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004377 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004378 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004379 break;
4380 case ADDR_ARGUMENTS:
4381 lnum = curwin->w_arg_idx + 1;
4382 break;
4383 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004384 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004385 lnum = curbuf->b_fnum;
4386 break;
4387 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004388 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004389 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004390#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004391 case ADDR_QUICKFIX:
4392 lnum = qf_get_cur_valid_idx(eap);
4393 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004394#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004395 }
4396 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397
4398 case '$': /* '$' - last line */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004399 ++cmd;
4400 switch (addr_type)
4401 {
4402 case ADDR_LINES:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 lnum = curbuf->b_ml.ml_line_count;
4404 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004405 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004406 lnum = LAST_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004407 break;
4408 case ADDR_ARGUMENTS:
4409 lnum = ARGCOUNT;
4410 break;
4411 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004412 buf = lastbuf;
4413 while (buf->b_ml.ml_mfp == NULL)
4414 {
4415 if (buf->b_prev == NULL)
4416 break;
4417 buf = buf->b_prev;
4418 }
4419 lnum = buf->b_fnum;
4420 break;
4421 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004422 lnum = lastbuf->b_fnum;
4423 break;
4424 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004425 lnum = LAST_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004426 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004427#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004428 case ADDR_QUICKFIX:
4429 lnum = qf_get_size(eap);
4430 if (lnum == 0)
4431 lnum = 1;
4432 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004433#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004434 }
4435 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436
4437 case '\'': /* ''' - mark */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004438 if (*++cmd == NUL)
4439 {
4440 cmd = NULL;
4441 goto error;
4442 }
4443 if (addr_type != ADDR_LINES)
4444 {
4445 EMSG(_(e_invaddr));
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004446 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004447 goto error;
4448 }
4449 if (skip)
4450 ++cmd;
4451 else
4452 {
4453 /* Only accept a mark in another file when it is
4454 * used by itself: ":'M". */
4455 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
4456 ++cmd;
4457 if (fp == (pos_T *)-1)
4458 /* Jumped to another file. */
4459 lnum = curwin->w_cursor.lnum;
4460 else
4461 {
4462 if (check_mark(fp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004463 {
4464 cmd = NULL;
4465 goto error;
4466 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004467 lnum = fp->lnum;
4468 }
4469 }
4470 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471
4472 case '/':
4473 case '?': /* '/' or '?' - search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004474 c = *cmd++;
4475 if (addr_type != ADDR_LINES)
4476 {
4477 EMSG(_(e_invaddr));
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004478 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004479 goto error;
4480 }
4481 if (skip) /* skip "/pat/" */
4482 {
4483 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
4484 if (*cmd == c)
4485 ++cmd;
4486 }
4487 else
4488 {
4489 pos = curwin->w_cursor; /* save curwin->w_cursor */
4490 /*
4491 * When '/' or '?' follows another address, start
4492 * from there.
4493 */
4494 if (lnum != MAXLNUM)
4495 curwin->w_cursor.lnum = lnum;
4496 /*
4497 * Start a forward search at the end of the line.
4498 * Start a backward search at the start of the line.
4499 * This makes sure we never match in the current
4500 * line, and can match anywhere in the
4501 * next/previous line.
4502 */
4503 if (c == '/')
4504 curwin->w_cursor.col = MAXCOL;
4505 else
4506 curwin->w_cursor.col = 0;
4507 searchcmdlen = 0;
4508 if (!do_search(NULL, c, cmd, 1L,
4509 SEARCH_HIS | SEARCH_MSG, NULL))
4510 {
4511 curwin->w_cursor = pos;
4512 cmd = NULL;
4513 goto error;
4514 }
4515 lnum = curwin->w_cursor.lnum;
4516 curwin->w_cursor = pos;
4517 /* adjust command string pointer */
4518 cmd += searchcmdlen;
4519 }
4520 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521
4522 case '\\': /* "\?", "\/" or "\&", repeat search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004523 ++cmd;
4524 if (addr_type != ADDR_LINES)
4525 {
4526 EMSG(_(e_invaddr));
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004527 cmd = NULL;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004528 goto error;
4529 }
4530 if (*cmd == '&')
4531 i = RE_SUBST;
4532 else if (*cmd == '?' || *cmd == '/')
4533 i = RE_SEARCH;
4534 else
4535 {
4536 EMSG(_(e_backslash));
4537 cmd = NULL;
4538 goto error;
4539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004541 if (!skip)
4542 {
4543 /*
4544 * When search follows another address, start from
4545 * there.
4546 */
4547 if (lnum != MAXLNUM)
4548 pos.lnum = lnum;
4549 else
4550 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004552 /*
4553 * Start the search just like for the above
4554 * do_search().
4555 */
4556 if (*cmd != '?')
4557 pos.col = MAXCOL;
4558 else
4559 pos.col = 0;
Bram Moolenaarbd8539a2015-08-11 18:53:03 +02004560#ifdef FEAT_VIRTUALEDIT
4561 pos.coladd = 0;
4562#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004563 if (searchit(curwin, curbuf, &pos,
4564 *cmd == '?' ? BACKWARD : FORWARD,
4565 (char_u *)"", 1L, SEARCH_MSG,
4566 i, (linenr_T)0, NULL) != FAIL)
4567 lnum = pos.lnum;
4568 else
4569 {
4570 cmd = NULL;
4571 goto error;
4572 }
4573 }
4574 ++cmd;
4575 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576
4577 default:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004578 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
4579 lnum = getdigits(&cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 }
4581
4582 for (;;)
4583 {
4584 cmd = skipwhite(cmd);
4585 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4586 break;
4587
4588 if (lnum == MAXLNUM)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004589 {
4590 switch (addr_type)
4591 {
4592 case ADDR_LINES:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004593 /* "+1" is same as ".+1" */
4594 lnum = curwin->w_cursor.lnum;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004595 break;
4596 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004597 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004598 break;
4599 case ADDR_ARGUMENTS:
4600 lnum = curwin->w_arg_idx + 1;
4601 break;
4602 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004603 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004604 lnum = curbuf->b_fnum;
4605 break;
4606 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004607 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004608 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004609#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004610 case ADDR_QUICKFIX:
4611 lnum = qf_get_cur_valid_idx(eap);
4612 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004613#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004614 }
4615 }
4616
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 if (VIM_ISDIGIT(*cmd))
4618 i = '+'; /* "number" is same as "+number" */
4619 else
4620 i = *cmd++;
4621 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4622 n = 1;
4623 else
4624 n = getdigits(&cmd);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004625 if (addr_type == ADDR_LOADED_BUFFERS
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004626 || addr_type == ADDR_BUFFERS)
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004627 lnum = compute_buffer_local_count(
4628 addr_type, lnum, (i == '-') ? -1 * n : n);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004629 else if (i == '-')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 lnum -= n;
4631 else
4632 lnum += n;
4633 }
4634 } while (*cmd == '/' || *cmd == '?');
4635
4636error:
4637 *ptr = cmd;
4638 return lnum;
4639}
4640
4641/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004642 * Get flags from an Ex command argument.
4643 */
4644 static void
4645get_flags(eap)
4646 exarg_T *eap;
4647{
4648 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4649 {
4650 if (*eap->arg == 'l')
4651 eap->flags |= EXFLAG_LIST;
4652 else if (*eap->arg == 'p')
4653 eap->flags |= EXFLAG_PRINT;
4654 else
4655 eap->flags |= EXFLAG_NR;
4656 eap->arg = skipwhite(eap->arg + 1);
4657 }
4658}
4659
4660/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 * Function called for command which is Not Implemented. NI!
4662 */
4663 void
4664ex_ni(eap)
4665 exarg_T *eap;
4666{
4667 if (!eap->skip)
4668 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4669}
4670
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004671#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672/*
4673 * Function called for script command which is Not Implemented. NI!
4674 * Skips over ":perl <<EOF" constructs.
4675 */
4676 static void
4677ex_script_ni(eap)
4678 exarg_T *eap;
4679{
4680 if (!eap->skip)
4681 ex_ni(eap);
4682 else
4683 vim_free(script_get(eap, eap->arg));
4684}
4685#endif
4686
4687/*
4688 * Check range in Ex command for validity.
4689 * Return NULL when valid, error message when invalid.
4690 */
4691 static char_u *
4692invalid_range(eap)
4693 exarg_T *eap;
4694{
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004695 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 if ( eap->line1 < 0
4697 || eap->line2 < 0
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004698 || eap->line1 > eap->line2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 return (char_u *)_(e_invrange);
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004700
4701 if (eap->argt & RANGE)
4702 {
4703 switch(eap->addr_type)
4704 {
4705 case ADDR_LINES:
4706 if (!(eap->argt & NOTADR)
4707 && eap->line2 > curbuf->b_ml.ml_line_count
4708#ifdef FEAT_DIFF
4709 + (eap->cmdidx == CMD_diffget)
4710#endif
4711 )
4712 return (char_u *)_(e_invrange);
4713 break;
4714 case ADDR_ARGUMENTS:
Bram Moolenaarc0a37b92015-02-03 19:10:53 +01004715 /* add 1 if ARGCOUNT is 0 */
4716 if (eap->line2 > ARGCOUNT + (!ARGCOUNT))
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004717 return (char_u *)_(e_invrange);
4718 break;
4719 case ADDR_BUFFERS:
4720 if (eap->line1 < firstbuf->b_fnum
4721 || eap->line2 > lastbuf->b_fnum)
4722 return (char_u *)_(e_invrange);
4723 break;
4724 case ADDR_LOADED_BUFFERS:
4725 buf = firstbuf;
4726 while (buf->b_ml.ml_mfp == NULL)
4727 {
4728 if (buf->b_next == NULL)
4729 return (char_u *)_(e_invrange);
4730 buf = buf->b_next;
4731 }
4732 if (eap->line1 < buf->b_fnum)
4733 return (char_u *)_(e_invrange);
4734 buf = lastbuf;
4735 while (buf->b_ml.ml_mfp == NULL)
4736 {
4737 if (buf->b_prev == NULL)
4738 return (char_u *)_(e_invrange);
4739 buf = buf->b_prev;
4740 }
4741 if (eap->line2 > buf->b_fnum)
4742 return (char_u *)_(e_invrange);
4743 break;
4744 case ADDR_WINDOWS:
Bram Moolenaar8be63882015-01-14 11:25:05 +01004745 if (eap->line2 > LAST_WIN_NR)
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004746 return (char_u *)_(e_invrange);
4747 break;
4748 case ADDR_TABS:
4749 if (eap->line2 > LAST_TAB_NR)
4750 return (char_u *)_(e_invrange);
4751 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004752#ifdef FEAT_QUICKFIX
Bram Moolenaaraa23b372015-09-08 18:46:31 +02004753 case ADDR_QUICKFIX:
4754 if (eap->line2 != 1 && eap->line2 > qf_get_size(eap))
4755 return (char_u *)_(e_invrange);
4756 break;
Bram Moolenaare906c502015-09-09 21:10:39 +02004757#endif
Bram Moolenaar3ffc79a2015-01-07 15:57:17 +01004758 }
4759 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 return NULL;
4761}
4762
4763/*
4764 * Correct the range for zero line number, if required.
4765 */
4766 static void
4767correct_range(eap)
4768 exarg_T *eap;
4769{
4770 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4771 {
4772 if (eap->line1 == 0)
4773 eap->line1 = 1;
4774 if (eap->line2 == 0)
4775 eap->line2 = 1;
4776 }
4777}
4778
Bram Moolenaar748bf032005-02-02 23:04:36 +00004779#ifdef FEAT_QUICKFIX
4780static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4781
4782/*
4783 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4784 * pattern. Otherwise return eap->arg.
4785 */
4786 static char_u *
4787skip_grep_pat(eap)
4788 exarg_T *eap;
4789{
4790 char_u *p = eap->arg;
4791
Bram Moolenaara37420f2006-02-04 22:37:47 +00004792 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4793 || eap->cmdidx == CMD_vimgrepadd
4794 || eap->cmdidx == CMD_lvimgrepadd
4795 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004796 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004797 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004798 if (p == NULL)
4799 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004800 }
4801 return p;
4802}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004803
4804/*
4805 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4806 * in the command line, so that things like % get expanded.
4807 */
4808 static char_u *
4809replace_makeprg(eap, p, cmdlinep)
4810 exarg_T *eap;
4811 char_u *p;
4812 char_u **cmdlinep;
4813{
4814 char_u *new_cmdline;
4815 char_u *program;
4816 char_u *pos;
4817 char_u *ptr;
4818 int len;
4819 int i;
4820
4821 /*
4822 * Don't do it when ":vimgrep" is used for ":grep".
4823 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004824 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4825 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4826 || eap->cmdidx == CMD_grepadd
4827 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004828 && !grep_internal(eap->cmdidx))
4829 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004830 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4831 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004832 {
4833 if (*curbuf->b_p_gp == NUL)
4834 program = p_gp;
4835 else
4836 program = curbuf->b_p_gp;
4837 }
4838 else
4839 {
4840 if (*curbuf->b_p_mp == NUL)
4841 program = p_mp;
4842 else
4843 program = curbuf->b_p_mp;
4844 }
4845
4846 p = skipwhite(p);
4847
4848 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4849 {
4850 /* replace $* by given arguments */
4851 i = 1;
4852 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4853 ++i;
4854 len = (int)STRLEN(p);
4855 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4856 if (new_cmdline == NULL)
4857 return NULL; /* out of memory */
4858 ptr = new_cmdline;
4859 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4860 {
4861 i = (int)(pos - program);
4862 STRNCPY(ptr, program, i);
4863 STRCPY(ptr += i, p);
4864 ptr += len;
4865 program = pos + 2;
4866 }
4867 STRCPY(ptr, program);
4868 }
4869 else
4870 {
4871 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4872 if (new_cmdline == NULL)
4873 return NULL; /* out of memory */
4874 STRCPY(new_cmdline, program);
4875 STRCAT(new_cmdline, " ");
4876 STRCAT(new_cmdline, p);
4877 }
4878 msg_make(p);
4879
4880 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4881 vim_free(*cmdlinep);
4882 *cmdlinep = new_cmdline;
4883 p = new_cmdline;
4884 }
4885 return p;
4886}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004887#endif
4888
Bram Moolenaar071d4272004-06-13 20:20:40 +00004889/*
4890 * Expand file name in Ex command argument.
4891 * Return FAIL for failure, OK otherwise.
4892 */
4893 int
4894expand_filename(eap, cmdlinep, errormsgp)
4895 exarg_T *eap;
4896 char_u **cmdlinep;
4897 char_u **errormsgp;
4898{
4899 int has_wildcards; /* need to expand wildcards */
4900 char_u *repl;
4901 int srclen;
4902 char_u *p;
4903 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004904 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905
Bram Moolenaar748bf032005-02-02 23:04:36 +00004906#ifdef FEAT_QUICKFIX
4907 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4908 p = skip_grep_pat(eap);
4909#else
4910 p = eap->arg;
4911#endif
4912
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 /*
4914 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4915 * the file name contains a wildcard it should not cause expanding.
4916 * (it will be expanded anyway if there is a wildcard before replacing).
4917 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004918 has_wildcards = mch_has_wildcard(p);
4919 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004921#ifdef FEAT_EVAL
4922 /* Skip over `=expr`, wildcards in it are not expanded. */
4923 if (p[0] == '`' && p[1] == '=')
4924 {
4925 p += 2;
4926 (void)skip_expr(&p);
4927 if (*p == '`')
4928 ++p;
4929 continue;
4930 }
4931#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 /*
4933 * Quick check if this cannot be the start of a special string.
4934 * Also removes backslash before '%', '#' and '<'.
4935 */
4936 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4937 {
4938 ++p;
4939 continue;
4940 }
4941
4942 /*
4943 * Try to find a match at this position.
4944 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004945 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4946 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 if (*errormsgp != NULL) /* error detected */
4948 return FAIL;
4949 if (repl == NULL) /* no match found */
4950 {
4951 p += srclen;
4952 continue;
4953 }
4954
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004955 /* Wildcards won't be expanded below, the replacement is taken
4956 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4957 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4958 {
4959 char_u *l = repl;
4960
4961 repl = expand_env_save(repl);
4962 vim_free(l);
4963 }
4964
Bram Moolenaar63b92542007-03-27 14:57:09 +00004965 /* Need to escape white space et al. with a backslash.
4966 * Don't do this for:
4967 * - replacement that already has been escaped: "##"
4968 * - shell commands (may have to use quotes instead).
4969 * - non-unix systems when there is a single argument (spaces don't
4970 * separate arguments then).
4971 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004973 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974 && eap->cmdidx != CMD_bang
4975 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004976 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004978 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004980 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981#ifndef UNIX
4982 && !(eap->argt & NOSPC)
4983#endif
4984 )
4985 {
4986 char_u *l;
4987#ifdef BACKSLASH_IN_FILENAME
4988 /* Don't escape a backslash here, because rem_backslash() doesn't
4989 * remove it later. */
4990 static char_u *nobslash = (char_u *)" \t\"|";
4991# define ESCAPE_CHARS nobslash
4992#else
4993# define ESCAPE_CHARS escape_chars
4994#endif
4995
4996 for (l = repl; *l; ++l)
4997 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4998 {
4999 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
5000 if (l != NULL)
5001 {
5002 vim_free(repl);
5003 repl = l;
5004 }
5005 break;
5006 }
5007 }
5008
5009 /* For a shell command a '!' must be escaped. */
5010 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar31b7d382014-04-01 18:54:48 +02005011 && vim_strpbrk(repl, (char_u *)"!") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 {
5013 char_u *l;
5014
Bram Moolenaar31b7d382014-04-01 18:54:48 +02005015 l = vim_strsave_escaped(repl, (char_u *)"!");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 if (l != NULL)
5017 {
5018 vim_free(repl);
5019 repl = l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005020 }
5021 }
5022
5023 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
5024 vim_free(repl);
5025 if (p == NULL)
5026 return FAIL;
5027 }
5028
5029 /*
5030 * One file argument: Expand wildcards.
5031 * Don't do this with ":r !command" or ":w !command".
5032 */
5033 if ((eap->argt & NOSPC) && !eap->usefilter)
5034 {
5035 /*
5036 * May do this twice:
5037 * 1. Replace environment variables.
5038 * 2. Replace any other wildcards, remove backslashes.
5039 */
5040 for (n = 1; n <= 2; ++n)
5041 {
5042 if (n == 2)
5043 {
5044#ifdef UNIX
5045 /*
5046 * Only for Unix we check for more than one file name.
5047 * For other systems spaces are considered to be part
5048 * of the file name.
5049 * Only check here if there is no wildcard, otherwise
5050 * ExpandOne() will check for errors. This allows
5051 * ":e `ls ve*.c`" on Unix.
5052 */
5053 if (!has_wildcards)
5054 for (p = eap->arg; *p; ++p)
5055 {
5056 /* skip escaped characters */
5057 if (p[1] && (*p == '\\' || *p == Ctrl_V))
5058 ++p;
5059 else if (vim_iswhite(*p))
5060 {
5061 *errormsgp = (char_u *)_("E172: Only one file name allowed");
5062 return FAIL;
5063 }
5064 }
5065#endif
5066
5067 /*
5068 * Halve the number of backslashes (this is Vi compatible).
5069 * For Unix and OS/2, when wildcards are expanded, this is
5070 * done by ExpandOne() below.
5071 */
5072#if defined(UNIX) || defined(OS2)
5073 if (!has_wildcards)
5074#endif
5075 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 }
5077
5078 if (has_wildcards)
5079 {
5080 if (n == 1)
5081 {
5082 /*
5083 * First loop: May expand environment variables. This
5084 * can be done much faster with expand_env() than with
5085 * something else (e.g., calling a shell).
5086 * After expanding environment variables, check again
5087 * if there are still wildcards present.
5088 */
5089 if (vim_strchr(eap->arg, '$') != NULL
5090 || vim_strchr(eap->arg, '~') != NULL)
5091 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00005092 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00005093 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005094 has_wildcards = mch_has_wildcard(NameBuff);
5095 p = NameBuff;
5096 }
5097 else
5098 p = NULL;
5099 }
5100 else /* n == 2 */
5101 {
5102 expand_T xpc;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005103 int options = WILD_LIST_NOTFOUND|WILD_ADD_SLASH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104
5105 ExpandInit(&xpc);
5106 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005107 if (p_wic)
5108 options += WILD_ICASE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 p = ExpandOne(&xpc, eap->arg, NULL,
Bram Moolenaar94950a92010-12-02 16:01:29 +01005110 options, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111 if (p == NULL)
5112 return FAIL;
5113 }
5114 if (p != NULL)
5115 {
5116 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
5117 p, cmdlinep);
5118 if (n == 2) /* p came from ExpandOne() */
5119 vim_free(p);
5120 }
5121 }
5122 }
5123 }
5124 return OK;
5125}
5126
5127/*
5128 * Replace part of the command line, keeping eap->cmd, eap->arg and
5129 * eap->nextcmd correct.
5130 * "src" points to the part that is to be replaced, of length "srclen".
5131 * "repl" is the replacement string.
5132 * Returns a pointer to the character after the replaced string.
5133 * Returns NULL for failure.
5134 */
5135 static char_u *
5136repl_cmdline(eap, src, srclen, repl, cmdlinep)
5137 exarg_T *eap;
5138 char_u *src;
5139 int srclen;
5140 char_u *repl;
5141 char_u **cmdlinep;
5142{
5143 int len;
5144 int i;
5145 char_u *new_cmdline;
5146
5147 /*
5148 * The new command line is build in new_cmdline[].
5149 * First allocate it.
5150 * Careful: a "+cmd" argument may have been NUL terminated.
5151 */
5152 len = (int)STRLEN(repl);
5153 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005154 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
5156 if ((new_cmdline = alloc((unsigned)i)) == NULL)
5157 return NULL; /* out of memory! */
5158
5159 /*
5160 * Copy the stuff before the expanded part.
5161 * Copy the expanded stuff.
5162 * Copy what came after the expanded part.
5163 * Copy the next commands, if there are any.
5164 */
5165 i = (int)(src - *cmdlinep); /* length of part before match */
5166 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00005167
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 mch_memmove(new_cmdline + i, repl, (size_t)len);
5169 i += len; /* remember the end of the string */
5170 STRCPY(new_cmdline + i, src + srclen);
5171 src = new_cmdline + i; /* remember where to continue */
5172
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005173 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 {
5175 i = (int)STRLEN(new_cmdline) + 1;
5176 STRCPY(new_cmdline + i, eap->nextcmd);
5177 eap->nextcmd = new_cmdline + i;
5178 }
5179 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
5180 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
5181 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
5182 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
5183 vim_free(*cmdlinep);
5184 *cmdlinep = new_cmdline;
5185
5186 return src;
5187}
5188
5189/*
5190 * Check for '|' to separate commands and '"' to start comments.
5191 */
5192 void
5193separate_nextcmd(eap)
5194 exarg_T *eap;
5195{
5196 char_u *p;
5197
Bram Moolenaar86b68352004-12-27 21:59:20 +00005198#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00005199 p = skip_grep_pat(eap);
5200#else
5201 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005202#endif
5203
5204 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 {
5206 if (*p == Ctrl_V)
5207 {
5208 if (eap->argt & (USECTRLV | XFILE))
5209 ++p; /* skip CTRL-V and next char */
5210 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00005211 /* remove CTRL-V and skip next char */
Bram Moolenaara7241f52008-06-24 20:39:31 +00005212 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 if (*p == NUL) /* stop at NUL after CTRL-V */
5214 break;
5215 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005216
5217#ifdef FEAT_EVAL
5218 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005219 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005220 {
5221 p += 2;
5222 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005223 }
5224#endif
5225
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 /* Check for '"': start of comment or '|': next command */
5227 /* :@" and :*" do not start a comment!
5228 * :redir @" doesn't either. */
5229 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
5230 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
5231 || p != eap->arg)
5232 && (eap->cmdidx != CMD_redir
5233 || p != eap->arg + 1 || p[-1] != '@'))
5234 || *p == '|' || *p == '\n')
5235 {
5236 /*
5237 * We remove the '\' before the '|', unless USECTRLV is used
5238 * AND 'b' is present in 'cpoptions'.
5239 */
5240 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
5241 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
5242 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00005243 STRMOVE(p - 1, p); /* remove the '\' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 --p;
5245 }
5246 else
5247 {
5248 eap->nextcmd = check_nextcmd(p);
5249 *p = NUL;
5250 break;
5251 }
5252 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005254
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
5256 del_trailing_spaces(eap->arg);
5257}
5258
5259/*
5260 * get + command from ex argument
5261 */
5262 static char_u *
5263getargcmd(argp)
5264 char_u **argp;
5265{
5266 char_u *arg = *argp;
5267 char_u *command = NULL;
5268
5269 if (*arg == '+') /* +[command] */
5270 {
5271 ++arg;
Bram Moolenaar3e451592014-04-02 14:22:05 +02005272 if (vim_isspace(*arg) || *arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005273 command = dollar_command;
5274 else
5275 {
5276 command = arg;
5277 arg = skip_cmd_arg(command, TRUE);
5278 if (*arg != NUL)
5279 *arg++ = NUL; /* terminate command with NUL */
5280 }
5281
5282 arg = skipwhite(arg); /* skip over spaces */
5283 *argp = arg;
5284 }
5285 return command;
5286}
5287
5288/*
5289 * Find end of "+command" argument. Skip over "\ " and "\\".
5290 */
5291 static char_u *
5292skip_cmd_arg(p, rembs)
5293 char_u *p;
5294 int rembs; /* TRUE to halve the number of backslashes */
5295{
5296 while (*p && !vim_isspace(*p))
5297 {
5298 if (*p == '\\' && p[1] != NUL)
5299 {
5300 if (rembs)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005301 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302 else
5303 ++p;
5304 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005305 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 }
5307 return p;
5308}
5309
5310/*
5311 * Get "++opt=arg" argument.
5312 * Return FAIL or OK.
5313 */
5314 static int
5315getargopt(eap)
5316 exarg_T *eap;
5317{
5318 char_u *arg = eap->arg + 2;
5319 int *pp = NULL;
5320#ifdef FEAT_MBYTE
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005321 int bad_char_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 char_u *p;
5323#endif
5324
5325 /* ":edit ++[no]bin[ary] file" */
5326 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
5327 {
5328 if (*arg == 'n')
5329 {
5330 arg += 2;
5331 eap->force_bin = FORCE_NOBIN;
5332 }
5333 else
5334 eap->force_bin = FORCE_BIN;
5335 if (!checkforcmd(&arg, "binary", 3))
5336 return FAIL;
5337 eap->arg = skipwhite(arg);
5338 return OK;
5339 }
5340
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005341 /* ":read ++edit file" */
5342 if (STRNCMP(arg, "edit", 4) == 0)
5343 {
5344 eap->read_edit = TRUE;
5345 eap->arg = skipwhite(arg + 4);
5346 return OK;
5347 }
5348
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 if (STRNCMP(arg, "ff", 2) == 0)
5350 {
5351 arg += 2;
5352 pp = &eap->force_ff;
5353 }
5354 else if (STRNCMP(arg, "fileformat", 10) == 0)
5355 {
5356 arg += 10;
5357 pp = &eap->force_ff;
5358 }
5359#ifdef FEAT_MBYTE
5360 else if (STRNCMP(arg, "enc", 3) == 0)
5361 {
Bram Moolenaarb38e9ab2011-12-14 14:49:45 +01005362 if (STRNCMP(arg, "encoding", 8) == 0)
5363 arg += 8;
5364 else
5365 arg += 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 pp = &eap->force_enc;
5367 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005368 else if (STRNCMP(arg, "bad", 3) == 0)
5369 {
5370 arg += 3;
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005371 pp = &bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005372 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005373#endif
5374
5375 if (pp == NULL || *arg != '=')
5376 return FAIL;
5377
5378 ++arg;
5379 *pp = (int)(arg - eap->cmd);
5380 arg = skip_cmd_arg(arg, FALSE);
5381 eap->arg = skipwhite(arg);
5382 *arg = NUL;
5383
5384#ifdef FEAT_MBYTE
5385 if (pp == &eap->force_ff)
5386 {
5387#endif
5388 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
5389 return FAIL;
5390#ifdef FEAT_MBYTE
5391 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005392 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005393 {
5394 /* Make 'fileencoding' lower case. */
5395 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
5396 *p = TOLOWER_ASC(*p);
5397 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005398 else
5399 {
5400 /* Check ++bad= argument. Must be a single-byte character, "keep" or
5401 * "drop". */
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005402 p = eap->cmd + bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005403 if (STRICMP(p, "keep") == 0)
5404 eap->bad_char = BAD_KEEP;
5405 else if (STRICMP(p, "drop") == 0)
5406 eap->bad_char = BAD_DROP;
5407 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
5408 eap->bad_char = *p;
5409 else
5410 return FAIL;
5411 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412#endif
5413
5414 return OK;
5415}
5416
5417/*
5418 * ":abbreviate" and friends.
5419 */
5420 static void
5421ex_abbreviate(eap)
5422 exarg_T *eap;
5423{
5424 do_exmap(eap, TRUE); /* almost the same as mapping */
5425}
5426
5427/*
5428 * ":map" and friends.
5429 */
5430 static void
5431ex_map(eap)
5432 exarg_T *eap;
5433{
5434 /*
5435 * If we are sourcing .exrc or .vimrc in current directory we
5436 * print the mappings for security reasons.
5437 */
5438 if (secure)
5439 {
5440 secure = 2;
5441 msg_outtrans(eap->cmd);
5442 msg_putchar('\n');
5443 }
5444 do_exmap(eap, FALSE);
5445}
5446
5447/*
5448 * ":unmap" and friends.
5449 */
5450 static void
5451ex_unmap(eap)
5452 exarg_T *eap;
5453{
5454 do_exmap(eap, FALSE);
5455}
5456
5457/*
5458 * ":mapclear" and friends.
5459 */
5460 static void
5461ex_mapclear(eap)
5462 exarg_T *eap;
5463{
5464 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
5465}
5466
5467/*
5468 * ":abclear" and friends.
5469 */
5470 static void
5471ex_abclear(eap)
5472 exarg_T *eap;
5473{
5474 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
5475}
5476
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005477#if defined(FEAT_AUTOCMD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 static void
5479ex_autocmd(eap)
5480 exarg_T *eap;
5481{
5482 /*
5483 * Disallow auto commands from .exrc and .vimrc in current
5484 * directory for security reasons.
5485 */
5486 if (secure)
5487 {
5488 secure = 2;
5489 eap->errmsg = e_curdir;
5490 }
5491 else if (eap->cmdidx == CMD_autocmd)
5492 do_autocmd(eap->arg, eap->forceit);
5493 else
5494 do_augroup(eap->arg, eap->forceit);
5495}
5496
5497/*
5498 * ":doautocmd": Apply the automatic commands to the current buffer.
5499 */
5500 static void
5501ex_doautocmd(eap)
5502 exarg_T *eap;
5503{
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005504 char_u *arg = eap->arg;
5505 int call_do_modelines = check_nomodeline(&arg);
5506
5507 (void)do_doautocmd(arg, TRUE);
5508 if (call_do_modelines) /* Only when there is no <nomodeline>. */
5509 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510}
5511#endif
5512
5513#ifdef FEAT_LISTCMDS
5514/*
5515 * :[N]bunload[!] [N] [bufname] unload buffer
5516 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
5517 * :[N]bwipeout[!] [N] [bufname] delete buffer really
5518 */
5519 static void
5520ex_bunload(eap)
5521 exarg_T *eap;
5522{
5523 eap->errmsg = do_bufdel(
5524 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
5525 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
5526 : DOBUF_UNLOAD, eap->arg,
5527 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
5528}
5529
5530/*
5531 * :[N]buffer [N] to buffer N
5532 * :[N]sbuffer [N] to buffer N
5533 */
5534 static void
5535ex_buffer(eap)
5536 exarg_T *eap;
5537{
5538 if (*eap->arg)
5539 eap->errmsg = e_trailing;
5540 else
5541 {
5542 if (eap->addr_count == 0) /* default is current buffer */
5543 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
5544 else
5545 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005546 if (eap->do_ecmd_cmd != NULL)
5547 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 }
5549}
5550
5551/*
5552 * :[N]bmodified [N] to next mod. buffer
5553 * :[N]sbmodified [N] to next mod. buffer
5554 */
5555 static void
5556ex_bmodified(eap)
5557 exarg_T *eap;
5558{
5559 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005560 if (eap->do_ecmd_cmd != NULL)
5561 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562}
5563
5564/*
5565 * :[N]bnext [N] to next buffer
5566 * :[N]sbnext [N] split and to next buffer
5567 */
5568 static void
5569ex_bnext(eap)
5570 exarg_T *eap;
5571{
5572 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005573 if (eap->do_ecmd_cmd != NULL)
5574 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575}
5576
5577/*
5578 * :[N]bNext [N] to previous buffer
5579 * :[N]bprevious [N] to previous buffer
5580 * :[N]sbNext [N] split and to previous buffer
5581 * :[N]sbprevious [N] split and to previous buffer
5582 */
5583 static void
5584ex_bprevious(eap)
5585 exarg_T *eap;
5586{
5587 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005588 if (eap->do_ecmd_cmd != NULL)
5589 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590}
5591
5592/*
5593 * :brewind to first buffer
5594 * :bfirst to first buffer
5595 * :sbrewind split and to first buffer
5596 * :sbfirst split and to first buffer
5597 */
5598 static void
5599ex_brewind(eap)
5600 exarg_T *eap;
5601{
5602 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005603 if (eap->do_ecmd_cmd != NULL)
5604 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605}
5606
5607/*
5608 * :blast to last buffer
5609 * :sblast split and to last buffer
5610 */
5611 static void
5612ex_blast(eap)
5613 exarg_T *eap;
5614{
5615 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005616 if (eap->do_ecmd_cmd != NULL)
5617 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618}
5619#endif
5620
5621 int
5622ends_excmd(c)
5623 int c;
5624{
5625 return (c == NUL || c == '|' || c == '"' || c == '\n');
5626}
5627
5628#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
5629 || defined(PROTO)
5630/*
5631 * Return the next command, after the first '|' or '\n'.
5632 * Return NULL if not found.
5633 */
5634 char_u *
5635find_nextcmd(p)
5636 char_u *p;
5637{
5638 while (*p != '|' && *p != '\n')
5639 {
5640 if (*p == NUL)
5641 return NULL;
5642 ++p;
5643 }
5644 return (p + 1);
5645}
5646#endif
5647
5648/*
5649 * Check if *p is a separator between Ex commands.
5650 * Return NULL if it isn't, (p + 1) if it is.
5651 */
5652 char_u *
5653check_nextcmd(p)
5654 char_u *p;
5655{
5656 p = skipwhite(p);
5657 if (*p == '|' || *p == '\n')
5658 return (p + 1);
5659 else
5660 return NULL;
5661}
5662
5663/*
5664 * - if there are more files to edit
5665 * - and this is the last window
5666 * - and forceit not used
5667 * - and not repeated twice on a row
5668 * return FAIL and give error message if 'message' TRUE
5669 * return OK otherwise
5670 */
5671 static int
5672check_more(message, forceit)
5673 int message; /* when FALSE check only, no messages */
5674 int forceit;
5675{
5676 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5677
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005678 if (!forceit && only_one_window()
5679 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 {
5681 if (message)
5682 {
5683#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5684 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5685 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02005686 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687
5688 if (n == 1)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02005689 vim_strncpy(buff,
5690 (char_u *)_("1 more file to edit. Quit anyway?"),
Bram Moolenaard9462e32011-04-11 21:35:11 +02005691 DIALOG_MSG_SIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 else
Bram Moolenaard9462e32011-04-11 21:35:11 +02005693 vim_snprintf((char *)buff, DIALOG_MSG_SIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694 _("%d more files to edit. Quit anyway?"), n);
5695 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5696 return OK;
5697 return FAIL;
5698 }
5699#endif
5700 if (n == 1)
5701 EMSG(_("E173: 1 more file to edit"));
5702 else
5703 EMSGN(_("E173: %ld more files to edit"), n);
5704 quitmore = 2; /* next try to quit is allowed */
5705 }
5706 return FAIL;
5707 }
5708 return OK;
5709}
5710
5711#ifdef FEAT_CMDL_COMPL
5712/*
5713 * Function given to ExpandGeneric() to obtain the list of command names.
5714 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 char_u *
5716get_command_name(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00005717 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005718 int idx;
5719{
5720 if (idx >= (int)CMD_SIZE)
5721# ifdef FEAT_USR_CMDS
5722 return get_user_command_name(idx);
5723# else
5724 return NULL;
5725# endif
5726 return cmdnames[idx].cmd_name;
5727}
5728#endif
5729
5730#if defined(FEAT_USR_CMDS) || defined(PROTO)
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005731static 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 +00005732static void uc_list __ARGS((char_u *name, size_t name_len));
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005733static 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 +00005734static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5735static 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));
5736
5737 static int
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005738uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, addr_type, force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 char_u *name;
5740 size_t name_len;
5741 char_u *rep;
5742 long argt;
5743 long def;
5744 int flags;
5745 int compl;
5746 char_u *compl_arg;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005747 int addr_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 int force;
5749{
5750 ucmd_T *cmd = NULL;
5751 char_u *p;
5752 int i;
5753 int cmp = 1;
5754 char_u *rep_buf = NULL;
5755 garray_T *gap;
5756
Bram Moolenaar9c102382006-05-03 21:26:49 +00005757 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 if (rep_buf == NULL)
5759 {
5760 /* Can't replace termcodes - try using the string as is */
5761 rep_buf = vim_strsave(rep);
5762
5763 /* Give up if out of memory */
5764 if (rep_buf == NULL)
5765 return FAIL;
5766 }
5767
5768 /* get address of growarray: global or in curbuf */
5769 if (flags & UC_BUFFER)
5770 {
5771 gap = &curbuf->b_ucmds;
5772 if (gap->ga_itemsize == 0)
5773 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5774 }
5775 else
5776 gap = &ucmds;
5777
5778 /* Search for the command in the already defined commands. */
5779 for (i = 0; i < gap->ga_len; ++i)
5780 {
5781 size_t len;
5782
5783 cmd = USER_CMD_GA(gap, i);
5784 len = STRLEN(cmd->uc_name);
5785 cmp = STRNCMP(name, cmd->uc_name, name_len);
5786 if (cmp == 0)
5787 {
5788 if (name_len < len)
5789 cmp = -1;
5790 else if (name_len > len)
5791 cmp = 1;
5792 }
5793
5794 if (cmp == 0)
5795 {
5796 if (!force)
5797 {
5798 EMSG(_("E174: Command already exists: add ! to replace it"));
5799 goto fail;
5800 }
5801
5802 vim_free(cmd->uc_rep);
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00005803 cmd->uc_rep = NULL;
5804#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5805 vim_free(cmd->uc_compl_arg);
5806 cmd->uc_compl_arg = NULL;
5807#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005808 break;
5809 }
5810
5811 /* Stop as soon as we pass the name to add */
5812 if (cmp < 0)
5813 break;
5814 }
5815
5816 /* Extend the array unless we're replacing an existing command */
5817 if (cmp != 0)
5818 {
5819 if (ga_grow(gap, 1) != OK)
5820 goto fail;
5821 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5822 goto fail;
5823
5824 cmd = USER_CMD_GA(gap, i);
5825 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5826
5827 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828
5829 cmd->uc_name = p;
5830 }
5831
5832 cmd->uc_rep = rep_buf;
5833 cmd->uc_argt = argt;
5834 cmd->uc_def = def;
5835 cmd->uc_compl = compl;
5836#ifdef FEAT_EVAL
5837 cmd->uc_scriptID = current_SID;
5838# ifdef FEAT_CMDL_COMPL
5839 cmd->uc_compl_arg = compl_arg;
5840# endif
5841#endif
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005842 cmd->uc_addr_type = addr_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005843
5844 return OK;
5845
5846fail:
5847 vim_free(rep_buf);
5848#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5849 vim_free(compl_arg);
5850#endif
5851 return FAIL;
5852}
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005853#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005855#if defined(FEAT_USR_CMDS)
5856static struct
5857{
5858 int expand;
5859 char *name;
5860} addr_type_complete[] =
5861{
5862 {ADDR_ARGUMENTS, "arguments"},
5863 {ADDR_LINES, "lines"},
5864 {ADDR_LOADED_BUFFERS, "loaded_buffers"},
5865 {ADDR_TABS, "tabs"},
5866 {ADDR_BUFFERS, "buffers"},
5867 {ADDR_WINDOWS, "windows"},
Bram Moolenaaraa23b372015-09-08 18:46:31 +02005868 {ADDR_QUICKFIX, "quickfix"},
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005869 {-1, NULL}
5870};
5871#endif
5872
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005873#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874/*
5875 * List of names for completion for ":command" with the EXPAND_ flag.
5876 * Must be alphabetical for completion.
5877 */
5878static struct
5879{
5880 int expand;
5881 char *name;
5882} command_complete[] =
5883{
5884 {EXPAND_AUGROUP, "augroup"},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005885 {EXPAND_BEHAVE, "behave"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886 {EXPAND_BUFFERS, "buffer"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005887 {EXPAND_COLORS, "color"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 {EXPAND_COMMANDS, "command"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005889 {EXPAND_COMPILER, "compiler"},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005890#if defined(FEAT_CSCOPE)
5891 {EXPAND_CSCOPE, "cscope"},
5892#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5894 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005895 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896#endif
5897 {EXPAND_DIRECTORIES, "dir"},
5898 {EXPAND_ENV_VARS, "environment"},
5899 {EXPAND_EVENTS, "event"},
5900 {EXPAND_EXPRESSION, "expression"},
5901 {EXPAND_FILES, "file"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005902 {EXPAND_FILES_IN_PATH, "file_in_path"},
Bram Moolenaara26559b2010-07-31 14:59:19 +02005903 {EXPAND_FILETYPE, "filetype"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 {EXPAND_FUNCTIONS, "function"},
5905 {EXPAND_HELP, "help"},
5906 {EXPAND_HIGHLIGHT, "highlight"},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005907#if defined(FEAT_CMDHIST)
5908 {EXPAND_HISTORY, "history"},
5909#endif
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005910#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005911 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005912 {EXPAND_LOCALES, "locale"},
5913#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 {EXPAND_MAPPINGS, "mapping"},
5915 {EXPAND_MENUS, "menu"},
Bram Moolenaara26559b2010-07-31 14:59:19 +02005916 {EXPAND_OWNSYNTAX, "syntax"},
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02005917#if defined(FEAT_PROFILE)
5918 {EXPAND_SYNTIME, "syntime"},
5919#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005921 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005922#if defined(FEAT_SIGNS)
5923 {EXPAND_SIGN, "sign"},
5924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 {EXPAND_TAGS, "tag"},
5926 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
Bram Moolenaar24305862012-08-15 14:05:05 +02005927 {EXPAND_USER, "user"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 {EXPAND_USER_VARS, "var"},
5929 {0, NULL}
5930};
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005931#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005933#if defined(FEAT_USR_CMDS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005934 static void
5935uc_list(name, name_len)
5936 char_u *name;
5937 size_t name_len;
5938{
5939 int i, j;
5940 int found = FALSE;
5941 ucmd_T *cmd;
5942 int len;
5943 long a;
5944 garray_T *gap;
5945
5946 gap = &curbuf->b_ucmds;
5947 for (;;)
5948 {
5949 for (i = 0; i < gap->ga_len; ++i)
5950 {
5951 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005952 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953
5954 /* Skip commands which don't match the requested prefix */
5955 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5956 continue;
5957
5958 /* Put out the title first time */
5959 if (!found)
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005960 MSG_PUTS_TITLE(_("\n Name Args Address Complete Definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 found = TRUE;
5962 msg_putchar('\n');
5963 if (got_int)
5964 break;
5965
5966 /* Special cases */
5967 msg_putchar(a & BANG ? '!' : ' ');
5968 msg_putchar(a & REGSTR ? '"' : ' ');
5969 msg_putchar(gap != &ucmds ? 'b' : ' ');
5970 msg_putchar(' ');
5971
5972 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5973 len = (int)STRLEN(cmd->uc_name) + 4;
5974
5975 do {
5976 msg_putchar(' ');
5977 ++len;
5978 } while (len < 16);
5979
5980 len = 0;
5981
5982 /* Arguments */
5983 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5984 {
5985 case 0: IObuff[len++] = '0'; break;
5986 case (EXTRA): IObuff[len++] = '*'; break;
5987 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5988 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5989 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5990 }
5991
5992 do {
5993 IObuff[len++] = ' ';
5994 } while (len < 5);
5995
5996 /* Range */
5997 if (a & (RANGE|COUNT))
5998 {
5999 if (a & COUNT)
6000 {
6001 /* -count=N */
6002 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
6003 len += (int)STRLEN(IObuff + len);
6004 }
6005 else if (a & DFLALL)
6006 IObuff[len++] = '%';
6007 else if (cmd->uc_def >= 0)
6008 {
6009 /* -range=N */
6010 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
6011 len += (int)STRLEN(IObuff + len);
6012 }
6013 else
6014 IObuff[len++] = '.';
6015 }
6016
6017 do {
6018 IObuff[len++] = ' ';
6019 } while (len < 11);
6020
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006021 /* Address Type */
6022 for (j = 0; addr_type_complete[j].expand != -1; ++j)
6023 if (addr_type_complete[j].expand != ADDR_LINES
6024 && addr_type_complete[j].expand == cmd->uc_addr_type)
6025 {
6026 STRCPY(IObuff + len, addr_type_complete[j].name);
6027 len += (int)STRLEN(IObuff + len);
6028 break;
6029 }
6030
6031 do {
6032 IObuff[len++] = ' ';
6033 } while (len < 21);
6034
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 /* Completion */
6036 for (j = 0; command_complete[j].expand != 0; ++j)
6037 if (command_complete[j].expand == cmd->uc_compl)
6038 {
6039 STRCPY(IObuff + len, command_complete[j].name);
6040 len += (int)STRLEN(IObuff + len);
6041 break;
6042 }
6043
6044 do {
6045 IObuff[len++] = ' ';
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006046 } while (len < 35);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047
6048 IObuff[len] = '\0';
6049 msg_outtrans(IObuff);
6050
6051 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00006052#ifdef FEAT_EVAL
6053 if (p_verbose > 0)
6054 last_set_msg(cmd->uc_scriptID);
6055#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056 out_flush();
6057 ui_breakcheck();
6058 if (got_int)
6059 break;
6060 }
6061 if (gap == &ucmds || i < gap->ga_len)
6062 break;
6063 gap = &ucmds;
6064 }
6065
6066 if (!found)
6067 MSG(_("No user-defined commands found"));
6068}
6069
6070 static char_u *
6071uc_fun_cmd()
6072{
6073 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
6074 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
6075 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
6076 0xb9, 0x7f, 0};
6077 int i;
6078
6079 for (i = 0; fcmd[i]; ++i)
6080 IObuff[i] = fcmd[i] - 0x40;
6081 IObuff[i] = 0;
6082 return IObuff;
6083}
6084
6085 static int
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006086uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg, addr_type_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087 char_u *attr;
6088 size_t len;
6089 long *argt;
6090 long *def;
6091 int *flags;
6092 int *compl;
6093 char_u **compl_arg;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006094 int *addr_type_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095{
6096 char_u *p;
6097
6098 if (len == 0)
6099 {
6100 EMSG(_("E175: No attribute specified"));
6101 return FAIL;
6102 }
6103
6104 /* First, try the simple attributes (no arguments) */
6105 if (STRNICMP(attr, "bang", len) == 0)
6106 *argt |= BANG;
6107 else if (STRNICMP(attr, "buffer", len) == 0)
6108 *flags |= UC_BUFFER;
6109 else if (STRNICMP(attr, "register", len) == 0)
6110 *argt |= REGSTR;
6111 else if (STRNICMP(attr, "bar", len) == 0)
6112 *argt |= TRLBAR;
6113 else
6114 {
6115 int i;
6116 char_u *val = NULL;
6117 size_t vallen = 0;
6118 size_t attrlen = len;
6119
6120 /* Look for the attribute name - which is the part before any '=' */
6121 for (i = 0; i < (int)len; ++i)
6122 {
6123 if (attr[i] == '=')
6124 {
6125 val = &attr[i + 1];
6126 vallen = len - i - 1;
6127 attrlen = i;
6128 break;
6129 }
6130 }
6131
6132 if (STRNICMP(attr, "nargs", attrlen) == 0)
6133 {
6134 if (vallen == 1)
6135 {
6136 if (*val == '0')
6137 /* Do nothing - this is the default */;
6138 else if (*val == '1')
6139 *argt |= (EXTRA | NOSPC | NEEDARG);
6140 else if (*val == '*')
6141 *argt |= EXTRA;
6142 else if (*val == '?')
6143 *argt |= (EXTRA | NOSPC);
6144 else if (*val == '+')
6145 *argt |= (EXTRA | NEEDARG);
6146 else
6147 goto wrong_nargs;
6148 }
6149 else
6150 {
6151wrong_nargs:
6152 EMSG(_("E176: Invalid number of arguments"));
6153 return FAIL;
6154 }
6155 }
6156 else if (STRNICMP(attr, "range", attrlen) == 0)
6157 {
6158 *argt |= RANGE;
6159 if (vallen == 1 && *val == '%')
6160 *argt |= DFLALL;
6161 else if (val != NULL)
6162 {
6163 p = val;
6164 if (*def >= 0)
6165 {
6166two_count:
6167 EMSG(_("E177: Count cannot be specified twice"));
6168 return FAIL;
6169 }
6170
6171 *def = getdigits(&p);
6172 *argt |= (ZEROR | NOTADR);
6173
6174 if (p != val + vallen || vallen == 0)
6175 {
6176invalid_count:
6177 EMSG(_("E178: Invalid default value for count"));
6178 return FAIL;
6179 }
6180 }
6181 }
6182 else if (STRNICMP(attr, "count", attrlen) == 0)
6183 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00006184 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006185
6186 if (val != NULL)
6187 {
6188 p = val;
6189 if (*def >= 0)
6190 goto two_count;
6191
6192 *def = getdigits(&p);
6193
6194 if (p != val + vallen)
6195 goto invalid_count;
6196 }
6197
6198 if (*def < 0)
6199 *def = 0;
6200 }
6201 else if (STRNICMP(attr, "complete", attrlen) == 0)
6202 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203 if (val == NULL)
6204 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006205 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 return FAIL;
6207 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006209 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
6210 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006211 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006213 else if (STRNICMP(attr, "addr", attrlen) == 0)
6214 {
6215 *argt |= RANGE;
6216 if (val == NULL)
6217 {
6218 EMSG(_("E179: argument required for -addr"));
6219 return FAIL;
6220 }
6221 if (parse_addr_type_arg(val, (int)vallen, argt, addr_type_arg)
6222 == FAIL)
6223 return FAIL;
6224 if (addr_type_arg != ADDR_LINES)
6225 *argt |= (ZEROR | NOTADR) ;
6226 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 else
6228 {
6229 char_u ch = attr[len];
6230 attr[len] = '\0';
6231 EMSG2(_("E181: Invalid attribute: %s"), attr);
6232 attr[len] = ch;
6233 return FAIL;
6234 }
6235 }
6236
6237 return OK;
6238}
6239
Bram Moolenaara850a712009-01-28 14:42:59 +00006240/*
6241 * ":command ..."
6242 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 static void
6244ex_command(eap)
6245 exarg_T *eap;
6246{
6247 char_u *name;
6248 char_u *end;
6249 char_u *p;
6250 long argt = 0;
6251 long def = -1;
6252 int flags = 0;
6253 int compl = EXPAND_NOTHING;
6254 char_u *compl_arg = NULL;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006255 int addr_type_arg = ADDR_LINES;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256 int has_attr = (eap->arg[0] == '-');
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006257 int name_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258
6259 p = eap->arg;
6260
6261 /* Check for attributes */
6262 while (*p == '-')
6263 {
6264 ++p;
6265 end = skiptowhite(p);
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006266 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg, &addr_type_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006267 == FAIL)
6268 return;
6269 p = skipwhite(end);
6270 }
6271
6272 /* Get the name (if any) and skip to the following argument */
6273 name = p;
6274 if (ASCII_ISALPHA(*p))
6275 while (ASCII_ISALNUM(*p))
6276 ++p;
6277 if (!ends_excmd(*p) && !vim_iswhite(*p))
6278 {
6279 EMSG(_("E182: Invalid command name"));
6280 return;
6281 }
6282 end = p;
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006283 name_len = (int)(end - name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284
6285 /* If there is nothing after the name, and no attributes were specified,
6286 * we are listing commands
6287 */
6288 p = skipwhite(end);
6289 if (!has_attr && ends_excmd(*p))
6290 {
6291 uc_list(name, end - name);
6292 }
6293 else if (!ASCII_ISUPPER(*name))
6294 {
6295 EMSG(_("E183: User defined commands must start with an uppercase letter"));
6296 return;
6297 }
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006298 else if ((name_len == 1 && *name == 'X')
6299 || (name_len <= 4
6300 && STRNCMP(name, "Next", name_len > 4 ? 4 : name_len) == 0))
6301 {
6302 EMSG(_("E841: Reserved name, cannot be used for user defined command"));
6303 return;
6304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305 else
6306 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006307 addr_type_arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308}
6309
6310/*
6311 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312 * Clear all user commands, global and for current buffer.
6313 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00006314 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315ex_comclear(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006316 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317{
6318 uc_clear(&ucmds);
6319 uc_clear(&curbuf->b_ucmds);
6320}
6321
6322/*
6323 * Clear all user commands for "gap".
6324 */
6325 void
6326uc_clear(gap)
6327 garray_T *gap;
6328{
6329 int i;
6330 ucmd_T *cmd;
6331
6332 for (i = 0; i < gap->ga_len; ++i)
6333 {
6334 cmd = USER_CMD_GA(gap, i);
6335 vim_free(cmd->uc_name);
6336 vim_free(cmd->uc_rep);
6337# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6338 vim_free(cmd->uc_compl_arg);
6339# endif
6340 }
6341 ga_clear(gap);
6342}
6343
6344 static void
6345ex_delcommand(eap)
6346 exarg_T *eap;
6347{
6348 int i = 0;
6349 ucmd_T *cmd = NULL;
6350 int cmp = -1;
6351 garray_T *gap;
6352
6353 gap = &curbuf->b_ucmds;
6354 for (;;)
6355 {
6356 for (i = 0; i < gap->ga_len; ++i)
6357 {
6358 cmd = USER_CMD_GA(gap, i);
6359 cmp = STRCMP(eap->arg, cmd->uc_name);
6360 if (cmp <= 0)
6361 break;
6362 }
6363 if (gap == &ucmds || cmp == 0)
6364 break;
6365 gap = &ucmds;
6366 }
6367
6368 if (cmp != 0)
6369 {
6370 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
6371 return;
6372 }
6373
6374 vim_free(cmd->uc_name);
6375 vim_free(cmd->uc_rep);
6376# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6377 vim_free(cmd->uc_compl_arg);
6378# endif
6379
6380 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381
6382 if (i < gap->ga_len)
6383 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
6384}
6385
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006386/*
6387 * split and quote args for <f-args>
6388 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006389 static char_u *
6390uc_split_args(arg, lenp)
6391 char_u *arg;
6392 size_t *lenp;
6393{
6394 char_u *buf;
6395 char_u *p;
6396 char_u *q;
6397 int len;
6398
6399 /* Precalculate length */
6400 p = arg;
6401 len = 2; /* Initial and final quotes */
6402
6403 while (*p)
6404 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006405 if (p[0] == '\\' && p[1] == '\\')
6406 {
6407 len += 2;
6408 p += 2;
6409 }
6410 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006411 {
6412 len += 1;
6413 p += 2;
6414 }
6415 else if (*p == '\\' || *p == '"')
6416 {
6417 len += 2;
6418 p += 1;
6419 }
6420 else if (vim_iswhite(*p))
6421 {
6422 p = skipwhite(p);
6423 if (*p == NUL)
6424 break;
6425 len += 3; /* "," */
6426 }
6427 else
6428 {
Bram Moolenaardfef1542012-07-10 19:25:10 +02006429#ifdef FEAT_MBYTE
6430 int charlen = (*mb_ptr2len)(p);
6431 len += charlen;
6432 p += charlen;
6433#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434 ++len;
6435 ++p;
Bram Moolenaardfef1542012-07-10 19:25:10 +02006436#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437 }
6438 }
6439
6440 buf = alloc(len + 1);
6441 if (buf == NULL)
6442 {
6443 *lenp = 0;
6444 return buf;
6445 }
6446
6447 p = arg;
6448 q = buf;
6449 *q++ = '"';
6450 while (*p)
6451 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006452 if (p[0] == '\\' && p[1] == '\\')
6453 {
6454 *q++ = '\\';
6455 *q++ = '\\';
6456 p += 2;
6457 }
6458 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 {
6460 *q++ = p[1];
6461 p += 2;
6462 }
6463 else if (*p == '\\' || *p == '"')
6464 {
6465 *q++ = '\\';
6466 *q++ = *p++;
6467 }
6468 else if (vim_iswhite(*p))
6469 {
6470 p = skipwhite(p);
6471 if (*p == NUL)
6472 break;
6473 *q++ = '"';
6474 *q++ = ',';
6475 *q++ = '"';
6476 }
6477 else
6478 {
Bram Moolenaardfef1542012-07-10 19:25:10 +02006479 MB_COPY_CHAR(p, q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006480 }
6481 }
6482 *q++ = '"';
6483 *q = 0;
6484
6485 *lenp = len;
6486 return buf;
6487}
6488
6489/*
6490 * Check for a <> code in a user command.
6491 * "code" points to the '<'. "len" the length of the <> (inclusive).
6492 * "buf" is where the result is to be added.
6493 * "split_buf" points to a buffer used for splitting, caller should free it.
6494 * "split_len" is the length of what "split_buf" contains.
6495 * Returns the length of the replacement, which has been added to "buf".
6496 * Returns -1 if there was no match, and only the "<" has been copied.
6497 */
6498 static size_t
6499uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
6500 char_u *code;
6501 size_t len;
6502 char_u *buf;
6503 ucmd_T *cmd; /* the user command we're expanding */
6504 exarg_T *eap; /* ex arguments */
6505 char_u **split_buf;
6506 size_t *split_len;
6507{
6508 size_t result = 0;
6509 char_u *p = code + 1;
6510 size_t l = len - 2;
6511 int quote = 0;
6512 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
6513 ct_LT, ct_NONE } type = ct_NONE;
6514
6515 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
6516 {
6517 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
6518 p += 2;
6519 l -= 2;
6520 }
6521
Bram Moolenaar371d5402006-03-20 21:47:49 +00006522 ++l;
6523 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006525 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006526 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006527 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006528 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006529 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006531 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006533 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006534 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006535 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006536 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006537 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006538 type = ct_REGISTER;
6539
6540 switch (type)
6541 {
6542 case ct_ARGS:
6543 /* Simple case first */
6544 if (*eap->arg == NUL)
6545 {
6546 if (quote == 1)
6547 {
6548 result = 2;
6549 if (buf != NULL)
6550 STRCPY(buf, "''");
6551 }
6552 else
6553 result = 0;
6554 break;
6555 }
6556
6557 /* When specified there is a single argument don't split it.
6558 * Works for ":Cmd %" when % is "a b c". */
6559 if ((eap->argt & NOSPC) && quote == 2)
6560 quote = 1;
6561
6562 switch (quote)
6563 {
6564 case 0: /* No quoting, no splitting */
6565 result = STRLEN(eap->arg);
6566 if (buf != NULL)
6567 STRCPY(buf, eap->arg);
6568 break;
6569 case 1: /* Quote, but don't split */
6570 result = STRLEN(eap->arg) + 2;
6571 for (p = eap->arg; *p; ++p)
6572 {
Bram Moolenaar7d550fb2012-01-26 20:41:26 +01006573#ifdef FEAT_MBYTE
6574 if (enc_dbcs != 0 && (*mb_ptr2len)(p) == 2)
6575 /* DBCS can contain \ in a trail byte, skip the
6576 * double-byte character. */
6577 ++p;
6578 else
6579#endif
6580 if (*p == '\\' || *p == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006581 ++result;
6582 }
6583
6584 if (buf != NULL)
6585 {
6586 *buf++ = '"';
6587 for (p = eap->arg; *p; ++p)
6588 {
Bram Moolenaar7d550fb2012-01-26 20:41:26 +01006589#ifdef FEAT_MBYTE
6590 if (enc_dbcs != 0 && (*mb_ptr2len)(p) == 2)
6591 /* DBCS can contain \ in a trail byte, copy the
6592 * double-byte character to avoid escaping. */
6593 *buf++ = *p++;
6594 else
6595#endif
6596 if (*p == '\\' || *p == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597 *buf++ = '\\';
6598 *buf++ = *p;
6599 }
6600 *buf = '"';
6601 }
6602
6603 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006604 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006605 /* This is hard, so only do it once, and cache the result */
6606 if (*split_buf == NULL)
6607 *split_buf = uc_split_args(eap->arg, split_len);
6608
6609 result = *split_len;
6610 if (buf != NULL && result != 0)
6611 STRCPY(buf, *split_buf);
6612
6613 break;
6614 }
6615 break;
6616
6617 case ct_BANG:
6618 result = eap->forceit ? 1 : 0;
6619 if (quote)
6620 result += 2;
6621 if (buf != NULL)
6622 {
6623 if (quote)
6624 *buf++ = '"';
6625 if (eap->forceit)
6626 *buf++ = '!';
6627 if (quote)
6628 *buf = '"';
6629 }
6630 break;
6631
6632 case ct_LINE1:
6633 case ct_LINE2:
6634 case ct_COUNT:
6635 {
6636 char num_buf[20];
6637 long num = (type == ct_LINE1) ? eap->line1 :
6638 (type == ct_LINE2) ? eap->line2 :
6639 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
6640 size_t num_len;
6641
6642 sprintf(num_buf, "%ld", num);
6643 num_len = STRLEN(num_buf);
6644 result = num_len;
6645
6646 if (quote)
6647 result += 2;
6648
6649 if (buf != NULL)
6650 {
6651 if (quote)
6652 *buf++ = '"';
6653 STRCPY(buf, num_buf);
6654 buf += num_len;
6655 if (quote)
6656 *buf = '"';
6657 }
6658
6659 break;
6660 }
6661
6662 case ct_REGISTER:
6663 result = eap->regname ? 1 : 0;
6664 if (quote)
6665 result += 2;
6666 if (buf != NULL)
6667 {
6668 if (quote)
6669 *buf++ = '\'';
6670 if (eap->regname)
6671 *buf++ = eap->regname;
6672 if (quote)
6673 *buf = '\'';
6674 }
6675 break;
6676
6677 case ct_LT:
6678 result = 1;
6679 if (buf != NULL)
6680 *buf = '<';
6681 break;
6682
6683 default:
6684 /* Not recognized: just copy the '<' and return -1. */
6685 result = (size_t)-1;
6686 if (buf != NULL)
6687 *buf = '<';
6688 break;
6689 }
6690
6691 return result;
6692}
6693
6694 static void
6695do_ucmd(eap)
6696 exarg_T *eap;
6697{
6698 char_u *buf;
6699 char_u *p;
6700 char_u *q;
6701
6702 char_u *start;
Bram Moolenaar25648a52009-02-21 19:37:46 +00006703 char_u *end = NULL;
Bram Moolenaara850a712009-01-28 14:42:59 +00006704 char_u *ksp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006705 size_t len, totlen;
6706
6707 size_t split_len = 0;
6708 char_u *split_buf = NULL;
6709 ucmd_T *cmd;
6710#ifdef FEAT_EVAL
6711 scid_T save_current_SID = current_SID;
6712#endif
6713
6714 if (eap->cmdidx == CMD_USER)
6715 cmd = USER_CMD(eap->useridx);
6716 else
6717 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
6718
6719 /*
6720 * Replace <> in the command by the arguments.
Bram Moolenaara850a712009-01-28 14:42:59 +00006721 * First round: "buf" is NULL, compute length, allocate "buf".
6722 * Second round: copy result into "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006723 */
6724 buf = NULL;
6725 for (;;)
6726 {
Bram Moolenaara850a712009-01-28 14:42:59 +00006727 p = cmd->uc_rep; /* source */
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00006728 q = buf; /* destination */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 totlen = 0;
Bram Moolenaara850a712009-01-28 14:42:59 +00006730
6731 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006732 {
Bram Moolenaara850a712009-01-28 14:42:59 +00006733 start = vim_strchr(p, '<');
6734 if (start != NULL)
6735 end = vim_strchr(start + 1, '>');
6736 if (buf != NULL)
6737 {
Bram Moolenaarf63c49d2011-03-03 15:54:50 +01006738 for (ksp = p; *ksp != NUL && *ksp != K_SPECIAL; ++ksp)
6739 ;
6740 if (*ksp == K_SPECIAL
6741 && (start == NULL || ksp < start || end == NULL)
Bram Moolenaara850a712009-01-28 14:42:59 +00006742 && ((ksp[1] == KS_SPECIAL && ksp[2] == KE_FILLER)
6743# ifdef FEAT_GUI
6744 || (ksp[1] == KS_EXTRA && ksp[2] == (int)KE_CSI)
6745# endif
6746 ))
6747 {
Bram Moolenaarf63c49d2011-03-03 15:54:50 +01006748 /* K_SPECIAL has been put in the buffer as K_SPECIAL
Bram Moolenaara850a712009-01-28 14:42:59 +00006749 * KS_SPECIAL KE_FILLER, like for mappings, but
6750 * do_cmdline() doesn't handle that, so convert it back.
6751 * Also change K_SPECIAL KS_EXTRA KE_CSI into CSI. */
6752 len = ksp - p;
6753 if (len > 0)
6754 {
6755 mch_memmove(q, p, len);
6756 q += len;
6757 }
6758 *q++ = ksp[1] == KS_SPECIAL ? K_SPECIAL : CSI;
6759 p = ksp + 3;
6760 continue;
6761 }
6762 }
6763
6764 /* break if there no <item> is found */
6765 if (start == NULL || end == NULL)
6766 break;
6767
Bram Moolenaar071d4272004-06-13 20:20:40 +00006768 /* Include the '>' */
6769 ++end;
6770
6771 /* Take everything up to the '<' */
6772 len = start - p;
6773 if (buf == NULL)
6774 totlen += len;
6775 else
6776 {
6777 mch_memmove(q, p, len);
6778 q += len;
6779 }
6780
6781 len = uc_check_code(start, end - start, q, cmd, eap,
6782 &split_buf, &split_len);
6783 if (len == (size_t)-1)
6784 {
6785 /* no match, continue after '<' */
6786 p = start + 1;
6787 len = 1;
6788 }
6789 else
6790 p = end;
6791 if (buf == NULL)
6792 totlen += len;
6793 else
6794 q += len;
6795 }
6796 if (buf != NULL) /* second time here, finished */
6797 {
6798 STRCPY(q, p);
6799 break;
6800 }
6801
6802 totlen += STRLEN(p); /* Add on the trailing characters */
6803 buf = alloc((unsigned)(totlen + 1));
6804 if (buf == NULL)
6805 {
6806 vim_free(split_buf);
6807 return;
6808 }
6809 }
6810
6811#ifdef FEAT_EVAL
6812 current_SID = cmd->uc_scriptID;
6813#endif
6814 (void)do_cmdline(buf, eap->getline, eap->cookie,
6815 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
6816#ifdef FEAT_EVAL
6817 current_SID = save_current_SID;
6818#endif
6819 vim_free(buf);
6820 vim_free(split_buf);
6821}
6822
6823# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6824 static char_u *
6825get_user_command_name(idx)
6826 int idx;
6827{
6828 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6829}
6830
6831/*
6832 * Function given to ExpandGeneric() to obtain the list of user command names.
6833 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834 char_u *
6835get_user_commands(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006836 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006837 int idx;
6838{
6839 if (idx < curbuf->b_ucmds.ga_len)
6840 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6841 idx -= curbuf->b_ucmds.ga_len;
6842 if (idx < ucmds.ga_len)
6843 return USER_CMD(idx)->uc_name;
6844 return NULL;
6845}
6846
6847/*
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006848 * Function given to ExpandGeneric() to obtain the list of user address type names.
6849 */
6850 char_u *
6851get_user_cmd_addr_type(xp, idx)
6852 expand_T *xp UNUSED;
6853 int idx;
6854{
6855 return (char_u *)addr_type_complete[idx].name;
6856}
6857
6858/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859 * Function given to ExpandGeneric() to obtain the list of user command
6860 * attributes.
6861 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862 char_u *
6863get_user_cmd_flags(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006864 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865 int idx;
6866{
6867 static char *user_cmd_flags[] =
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006868 {"addr", "bang", "bar", "buffer", "complete",
6869 "count", "nargs", "range", "register"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00006871 if (idx >= (int)(sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006872 return NULL;
6873 return (char_u *)user_cmd_flags[idx];
6874}
6875
6876/*
6877 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6878 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879 char_u *
6880get_user_cmd_nargs(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006881 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006882 int idx;
6883{
6884 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6885
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00006886 if (idx >= (int)(sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887 return NULL;
6888 return (char_u *)user_cmd_nargs[idx];
6889}
6890
6891/*
6892 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6893 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894 char_u *
6895get_user_cmd_complete(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006896 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897 int idx;
6898{
6899 return (char_u *)command_complete[idx].name;
6900}
6901# endif /* FEAT_CMDL_COMPL */
6902
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006903/*
6904 * Parse address type argument
6905 */
6906 int
6907parse_addr_type_arg(value, vallen, argt, addr_type_arg)
6908 char_u *value;
6909 int vallen;
6910 long *argt;
6911 int *addr_type_arg;
6912{
6913 int i, a, b;
6914 for (i = 0; addr_type_complete[i].expand != -1; ++i)
6915 {
6916 a = (int)STRLEN(addr_type_complete[i].name) == vallen;
6917 b = STRNCMP(value, addr_type_complete[i].name, vallen) == 0;
6918 if (a && b)
6919 {
6920 *addr_type_arg = addr_type_complete[i].expand;
6921 break;
6922 }
6923 }
6924
6925 if (addr_type_complete[i].expand == -1)
6926 {
6927 char_u *err = value;
6928 for (i=0; err[i] == NUL || !vim_iswhite(err[i]); i++);
6929 err[i] = NUL;
6930 EMSG2(_("E180: Invalid address type value: %s"), err);
6931 return FAIL;
6932 }
6933
6934 if (*addr_type_arg != ADDR_LINES)
6935 *argt |= NOTADR;
6936
6937 return OK;
6938}
6939
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940#endif /* FEAT_USR_CMDS */
6941
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006942#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6943/*
6944 * Parse a completion argument "value[vallen]".
6945 * The detected completion goes in "*complp", argument type in "*argt".
6946 * When there is an argument, for function and user defined completion, it's
6947 * copied to allocated memory and stored in "*compl_arg".
6948 * Returns FAIL if something is wrong.
6949 */
6950 int
6951parse_compl_arg(value, vallen, complp, argt, compl_arg)
6952 char_u *value;
6953 int vallen;
6954 int *complp;
6955 long *argt;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006956 char_u **compl_arg UNUSED;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006957{
6958 char_u *arg = NULL;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006959# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006960 size_t arglen = 0;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006961# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006962 int i;
6963 int valend = vallen;
6964
6965 /* Look for any argument part - which is the part after any ',' */
6966 for (i = 0; i < vallen; ++i)
6967 {
6968 if (value[i] == ',')
6969 {
6970 arg = &value[i + 1];
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006971# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006972 arglen = vallen - i - 1;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006973# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006974 valend = i;
6975 break;
6976 }
6977 }
6978
6979 for (i = 0; command_complete[i].expand != 0; ++i)
6980 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006981 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006982 && STRNCMP(value, command_complete[i].name, valend) == 0)
6983 {
6984 *complp = command_complete[i].expand;
6985 if (command_complete[i].expand == EXPAND_BUFFERS)
6986 *argt |= BUFNAME;
6987 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6988 || command_complete[i].expand == EXPAND_FILES)
6989 *argt |= XFILE;
6990 break;
6991 }
6992 }
6993
6994 if (command_complete[i].expand == 0)
6995 {
6996 EMSG2(_("E180: Invalid complete value: %s"), value);
6997 return FAIL;
6998 }
6999
7000# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
7001 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
7002 && arg != NULL)
7003# else
7004 if (arg != NULL)
7005# endif
7006 {
7007 EMSG(_("E468: Completion argument only allowed for custom completion"));
7008 return FAIL;
7009 }
7010
7011# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
7012 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
7013 && arg == NULL)
7014 {
7015 EMSG(_("E467: Custom completion requires a function argument"));
7016 return FAIL;
7017 }
7018
7019 if (arg != NULL)
7020 *compl_arg = vim_strnsave(arg, (int)arglen);
7021# endif
7022 return OK;
7023}
7024#endif
7025
Bram Moolenaar071d4272004-06-13 20:20:40 +00007026 static void
7027ex_colorscheme(eap)
7028 exarg_T *eap;
7029{
Bram Moolenaare6850792010-05-14 15:28:44 +02007030 if (*eap->arg == NUL)
7031 {
7032#ifdef FEAT_EVAL
7033 char_u *expr = vim_strsave((char_u *)"g:colors_name");
7034 char_u *p = NULL;
7035
7036 if (expr != NULL)
7037 {
7038 ++emsg_off;
7039 p = eval_to_string(expr, NULL, FALSE);
7040 --emsg_off;
7041 vim_free(expr);
7042 }
7043 if (p != NULL)
7044 {
7045 MSG(p);
7046 vim_free(p);
7047 }
7048 else
7049 MSG("default");
7050#else
7051 MSG(_("unknown"));
7052#endif
7053 }
7054 else if (load_colors(eap->arg) == FAIL)
Bram Moolenaarbe1e9e92012-09-18 16:47:07 +02007055 EMSG2(_("E185: Cannot find color scheme '%s'"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056}
7057
7058 static void
7059ex_highlight(eap)
7060 exarg_T *eap;
7061{
7062 if (*eap->arg == NUL && eap->cmd[2] == '!')
7063 MSG(_("Greetings, Vim user!"));
7064 do_highlight(eap->arg, eap->forceit, FALSE);
7065}
7066
7067
7068/*
7069 * Call this function if we thought we were going to exit, but we won't
7070 * (because of an error). May need to restore the terminal mode.
7071 */
7072 void
7073not_exiting()
7074{
7075 exiting = FALSE;
7076 settmode(TMODE_RAW);
7077}
7078
7079/*
Bram Moolenaarf240e182014-11-27 18:33:02 +01007080 * ":quit": quit current window, quit Vim if the last window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007081 */
7082 static void
7083ex_quit(eap)
7084 exarg_T *eap;
7085{
Bram Moolenaarf240e182014-11-27 18:33:02 +01007086#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007087 win_T *wp;
Bram Moolenaarf240e182014-11-27 18:33:02 +01007088#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007089
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090#ifdef FEAT_CMDWIN
7091 if (cmdwin_type != 0)
7092 {
7093 cmdwin_result = Ctrl_C;
7094 return;
7095 }
7096#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007097 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007098 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007099 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007100 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007101 return;
7102 }
Bram Moolenaarf240e182014-11-27 18:33:02 +01007103#ifdef FEAT_WINDOWS
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007104 if (eap->addr_count > 0)
7105 {
Bram Moolenaarf240e182014-11-27 18:33:02 +01007106 int wnr = eap->line2;
7107
7108 for (wp = firstwin; wp->w_next != NULL; wp = wp->w_next)
7109 if (--wnr <= 0)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007110 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007111 }
7112 else
Bram Moolenaarf240e182014-11-27 18:33:02 +01007113#endif
7114#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007115 wp = curwin;
Bram Moolenaarf240e182014-11-27 18:33:02 +01007116#endif
7117
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007118#ifdef FEAT_AUTOCMD
Bram Moolenaar3b53dfb2012-06-06 18:03:07 +02007119 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007120 /* Refuse to quit when locked or when the buffer in the last window is
Bram Moolenaar362ce482012-06-06 19:02:45 +02007121 * being closed (can only happen in autocommands). */
Bram Moolenaarf240e182014-11-27 18:33:02 +01007122 if (curbuf_locked() || (wp->w_buffer->b_nwindows == 1
7123 && wp->w_buffer->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007124 return;
7125#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126
7127#ifdef FEAT_NETBEANS_INTG
7128 netbeansForcedQuit = eap->forceit;
7129#endif
7130
7131 /*
7132 * If there are more files or windows we won't exit.
7133 */
7134 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
7135 exiting = TRUE;
7136 if ((!P_HID(curbuf)
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007137 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
7138 | (eap->forceit ? CCGD_FORCEIT : 0)
7139 | CCGD_EXCMD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007140 || check_more(TRUE, eap->forceit) == FAIL
7141 || (only_one_window() && check_changed_any(eap->forceit)))
7142 {
7143 not_exiting();
7144 }
7145 else
7146 {
7147#ifdef FEAT_WINDOWS
Bram Moolenaarc7a0d322015-06-19 12:43:07 +02007148 /* quit last window
7149 * Note: only_one_window() returns true, even so a help window is
7150 * still open. In that case only quit, if no address has been
7151 * specified. Example:
7152 * :h|wincmd w|1q - don't quit
7153 * :h|wincmd w|q - quit
7154 */
7155 if (only_one_window() && (firstwin == lastwin || eap->addr_count == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156#endif
7157 getout(0);
7158#ifdef FEAT_WINDOWS
7159# ifdef FEAT_GUI
7160 need_mouse_correct = TRUE;
7161# endif
7162 /* close window; may free buffer */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007163 win_close(wp, !P_HID(wp->w_buffer) || eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164#endif
7165 }
7166}
7167
7168/*
7169 * ":cquit".
7170 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171 static void
7172ex_cquit(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007173 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174{
7175 getout(1); /* this does not always pass on the exit code to the Manx
7176 compiler. why? */
7177}
7178
7179/*
7180 * ":qall": try to quit all windows
7181 */
7182 static void
7183ex_quit_all(eap)
7184 exarg_T *eap;
7185{
7186# ifdef FEAT_CMDWIN
7187 if (cmdwin_type != 0)
7188 {
7189 if (eap->forceit)
7190 cmdwin_result = K_XF1; /* ex_window() takes care of this */
7191 else
7192 cmdwin_result = K_XF2;
7193 return;
7194 }
7195# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007196
7197 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007198 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007199 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007200 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007201 return;
7202 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007203#ifdef FEAT_AUTOCMD
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007204 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
7205 /* Refuse to quit when locked or when the buffer in the last window is
7206 * being closed (can only happen in autocommands). */
7207 if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007208 return;
7209#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007210
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211 exiting = TRUE;
7212 if (eap->forceit || !check_changed_any(FALSE))
7213 getout(0);
7214 not_exiting();
7215}
7216
Bram Moolenaard9967712006-03-11 21:18:15 +00007217#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007218/*
7219 * ":close": close current window, unless it is the last one
7220 */
7221 static void
7222ex_close(eap)
7223 exarg_T *eap;
7224{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007225 win_T *win;
7226 int winnr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227# ifdef FEAT_CMDWIN
7228 if (cmdwin_type != 0)
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02007229 cmdwin_result = Ctrl_C;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 else
7231# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007232 if (!text_locked()
7233#ifdef FEAT_AUTOCMD
7234 && !curbuf_locked()
7235#endif
7236 )
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007237 {
7238 if (eap->addr_count == 0)
7239 ex_win_close(eap->forceit, curwin, NULL);
7240 else {
7241 for (win = firstwin; win != NULL; win = win->w_next)
7242 {
7243 winnr++;
7244 if (winnr == eap->line2)
7245 break;
7246 }
7247 if (win == NULL)
7248 win = lastwin;
7249 ex_win_close(eap->forceit, win, NULL);
7250 }
7251 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007252}
7253
Bram Moolenaard9967712006-03-11 21:18:15 +00007254# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007255/*
7256 * ":pclose": Close any preview window.
7257 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007258 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007259ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007260 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007261{
7262 win_T *win;
7263
7264 for (win = firstwin; win != NULL; win = win->w_next)
7265 if (win->w_p_pvw)
7266 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007267 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007268 break;
7269 }
7270}
Bram Moolenaard9967712006-03-11 21:18:15 +00007271# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007272
Bram Moolenaarf740b292006-02-16 22:11:02 +00007273/*
7274 * Close window "win" and take care of handling closing the last window for a
7275 * modified buffer.
7276 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007277 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00007278ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007279 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007280 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007281 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007282{
7283 int need_hide;
7284 buf_T *buf = win->w_buffer;
7285
7286 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007287 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007288 {
Bram Moolenaard9967712006-03-11 21:18:15 +00007289# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007290 if ((p_confirm || cmdmod.confirm) && p_write)
7291 {
7292 dialog_changed(buf, FALSE);
7293 if (buf_valid(buf) && bufIsChanged(buf))
7294 return;
7295 need_hide = FALSE;
7296 }
7297 else
Bram Moolenaard9967712006-03-11 21:18:15 +00007298# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007299 {
7300 EMSG(_(e_nowrtmsg));
7301 return;
7302 }
7303 }
7304
Bram Moolenaard9967712006-03-11 21:18:15 +00007305# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007306 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00007307# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00007308
Bram Moolenaar071d4272004-06-13 20:20:40 +00007309 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00007310 if (tp == NULL)
7311 win_close(win, !need_hide && !P_HID(buf));
7312 else
7313 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314}
7315
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00007317 * ":tabclose": close current tab page, unless it is the last one.
7318 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007319 */
7320 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007321ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007322 exarg_T *eap;
7323{
Bram Moolenaarf740b292006-02-16 22:11:02 +00007324 tabpage_T *tp;
7325
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007326# ifdef FEAT_CMDWIN
7327 if (cmdwin_type != 0)
7328 cmdwin_result = K_IGNORE;
7329 else
7330# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00007331 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007332 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00007333 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007334 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007335 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007336 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007337 tp = find_tabpage((int)eap->line2);
7338 if (tp == NULL)
7339 {
7340 beep_flush();
7341 return;
7342 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007343 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00007344 {
7345 tabpage_close_other(tp, eap->forceit);
7346 return;
7347 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007348 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007349 if (!text_locked()
7350#ifdef FEAT_AUTOCMD
7351 && !curbuf_locked()
7352#endif
7353 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00007354 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007356}
7357
7358/*
7359 * ":tabonly": close all tab pages except the current one
7360 */
7361 static void
7362ex_tabonly(eap)
7363 exarg_T *eap;
7364{
7365 tabpage_T *tp;
7366 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007367
7368# ifdef FEAT_CMDWIN
7369 if (cmdwin_type != 0)
7370 cmdwin_result = K_IGNORE;
7371 else
7372# endif
7373 if (first_tabpage->tp_next == NULL)
7374 MSG(_("Already only one tab page"));
7375 else
7376 {
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007377 if (eap->addr_count > 0)
7378 goto_tabpage(eap->line2);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007379 /* Repeat this up to a 1000 times, because autocommands may mess
7380 * up the lists. */
7381 for (done = 0; done < 1000; ++done)
7382 {
7383 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7384 if (tp->tp_topframe != topframe)
7385 {
7386 tabpage_close_other(tp, eap->forceit);
7387 /* if we failed to close it quit */
7388 if (valid_tabpage(tp))
7389 done = 1000;
7390 /* start over, "tp" is now invalid */
7391 break;
7392 }
7393 if (first_tabpage->tp_next == NULL)
7394 break;
7395 }
7396 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007397}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007398
7399/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00007400 * Close the current tab page.
7401 */
7402 void
7403tabpage_close(forceit)
7404 int forceit;
7405{
7406 /* First close all the windows but the current one. If that worked then
7407 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007408 if (lastwin != firstwin)
7409 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007410 if (lastwin == firstwin)
7411 ex_win_close(forceit, curwin, NULL);
7412# ifdef FEAT_GUI
7413 need_mouse_correct = TRUE;
7414# endif
7415}
7416
7417/*
7418 * Close tab page "tp", which is not the current tab page.
7419 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007420 * Also takes care of the tab pages line disappearing when closing the
7421 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00007422 */
7423 void
7424tabpage_close_other(tp, forceit)
7425 tabpage_T *tp;
7426 int forceit;
7427{
7428 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007429 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007430 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00007431
7432 /* Limit to 1000 windows, autocommands may add a window while we close
7433 * one. OK, so I'm paranoid... */
7434 while (++done < 1000)
7435 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007436 wp = tp->tp_firstwin;
7437 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007438
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007439 /* Autocommands may delete the tab page under our fingers and we may
7440 * fail to close a window with a modified buffer. */
7441 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00007442 break;
7443 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007444
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007445 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007446 if (h != tabline_height())
7447 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00007448}
7449
7450/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007451 * ":only".
7452 */
7453 static void
7454ex_only(eap)
7455 exarg_T *eap;
7456{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007457 win_T *wp;
7458 int wnr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007459# ifdef FEAT_GUI
7460 need_mouse_correct = TRUE;
7461# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007462 if (eap->addr_count > 0)
7463 {
7464 wnr = eap->line2;
7465 for (wp = firstwin; --wnr > 0; )
7466 {
7467 if (wp->w_next == NULL)
7468 break;
7469 else
7470 wp = wp->w_next;
7471 }
7472 win_goto(wp);
7473 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 close_others(TRUE, eap->forceit);
7475}
7476
7477/*
7478 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00007479 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007480 */
Bram Moolenaard9967712006-03-11 21:18:15 +00007481 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482ex_all(eap)
7483 exarg_T *eap;
7484{
7485 if (eap->addr_count == 0)
7486 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00007487 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007488}
7489#endif /* FEAT_WINDOWS */
7490
7491 static void
7492ex_hide(eap)
7493 exarg_T *eap;
7494{
7495 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
7496 eap->errmsg = e_invarg;
7497 else
7498 {
7499 /* ":hide" or ":hide | cmd": hide current window */
7500 eap->nextcmd = check_nextcmd(eap->arg);
7501#ifdef FEAT_WINDOWS
7502 if (!eap->skip)
7503 {
7504# ifdef FEAT_GUI
7505 need_mouse_correct = TRUE;
7506# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007507 if (eap->addr_count == 0)
7508 win_close(curwin, FALSE); /* don't free buffer */
Bram Moolenaarf240e182014-11-27 18:33:02 +01007509 else
7510 {
7511 int winnr = 0;
7512 win_T *win;
7513
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007514 for (win = firstwin; win != NULL; win = win->w_next)
7515 {
7516 winnr++;
7517 if (winnr == eap->line2)
7518 break;
7519 }
7520 if (win == NULL)
7521 win = lastwin;
7522 win_close(win, FALSE);
7523 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007524 }
7525#endif
7526 }
7527}
7528
7529/*
7530 * ":stop" and ":suspend": Suspend Vim.
7531 */
7532 static void
7533ex_stop(eap)
7534 exarg_T *eap;
7535{
7536 /*
7537 * Disallow suspending for "rvim".
7538 */
7539 if (!check_restricted()
7540#ifdef WIN3264
7541 /*
7542 * Check if external commands are allowed now.
7543 */
7544 && can_end_termcap_mode(TRUE)
7545#endif
7546 )
7547 {
7548 if (!eap->forceit)
7549 autowrite_all();
7550 windgoto((int)Rows - 1, 0);
7551 out_char('\n');
7552 out_flush();
7553 stoptermcap();
7554 out_flush(); /* needed for SUN to restore xterm buffer */
7555#ifdef FEAT_TITLE
7556 mch_restore_title(3); /* restore window titles */
7557#endif
7558 ui_suspend(); /* call machine specific function */
7559#ifdef FEAT_TITLE
7560 maketitle();
7561 resettitle(); /* force updating the title */
7562#endif
7563 starttermcap();
7564 scroll_start(); /* scroll screen before redrawing */
7565 redraw_later_clear();
7566 shell_resized(); /* may have resized window */
7567 }
7568}
7569
7570/*
7571 * ":exit", ":xit" and ":wq": Write file and exit Vim.
7572 */
7573 static void
7574ex_exit(eap)
7575 exarg_T *eap;
7576{
7577#ifdef FEAT_CMDWIN
7578 if (cmdwin_type != 0)
7579 {
7580 cmdwin_result = Ctrl_C;
7581 return;
7582 }
7583#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007584 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007585 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007586 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007587 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007588 return;
7589 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007590#ifdef FEAT_AUTOCMD
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007591 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
7592 /* Refuse to quit when locked or when the buffer in the last window is
7593 * being closed (can only happen in autocommands). */
7594 if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007595 return;
7596#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597
7598 /*
7599 * if more files or windows we won't exit
7600 */
7601 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
7602 exiting = TRUE;
7603 if ( ((eap->cmdidx == CMD_wq
7604 || curbufIsChanged())
7605 && do_write(eap) == FAIL)
7606 || check_more(TRUE, eap->forceit) == FAIL
7607 || (only_one_window() && check_changed_any(eap->forceit)))
7608 {
7609 not_exiting();
7610 }
7611 else
7612 {
7613#ifdef FEAT_WINDOWS
7614 if (only_one_window()) /* quit last window, exit Vim */
7615#endif
7616 getout(0);
7617#ifdef FEAT_WINDOWS
7618# ifdef FEAT_GUI
7619 need_mouse_correct = TRUE;
7620# endif
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02007621 /* Quit current window, may free the buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007622 win_close(curwin, !P_HID(curwin->w_buffer));
7623#endif
7624 }
7625}
7626
7627/*
7628 * ":print", ":list", ":number".
7629 */
7630 static void
7631ex_print(eap)
7632 exarg_T *eap;
7633{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007634 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7635 EMSG(_(e_emptybuf));
7636 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007637 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007638 for ( ;!got_int; ui_breakcheck())
7639 {
7640 print_line(eap->line1,
7641 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
7642 || (eap->flags & EXFLAG_NR)),
7643 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
7644 if (++eap->line1 > eap->line2)
7645 break;
7646 out_flush(); /* show one line at a time */
7647 }
7648 setpcmark();
7649 /* put cursor at last line */
7650 curwin->w_cursor.lnum = eap->line2;
7651 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007652 }
7653
Bram Moolenaar071d4272004-06-13 20:20:40 +00007654 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007655}
7656
7657#ifdef FEAT_BYTEOFF
7658 static void
7659ex_goto(eap)
7660 exarg_T *eap;
7661{
7662 goto_byte(eap->line2);
7663}
7664#endif
7665
7666/*
7667 * ":shell".
7668 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007669 static void
7670ex_shell(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007671 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007672{
7673 do_shell(NULL, 0);
7674}
7675
7676#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
7677 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00007678 || defined(FEAT_GUI_MSWIN) \
7679 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00007680 || defined(PROTO)
7681
7682/*
7683 * Handle a file drop. The code is here because a drop is *nearly* like an
7684 * :args command, but not quite (we have a list of exact filenames, so we
7685 * don't want to (a) parse a command line, or (b) expand wildcards. So the
7686 * code is very similar to :args and hence needs access to a lot of the static
7687 * functions in this file.
7688 *
7689 * The list should be allocated using alloc(), as should each item in the
7690 * list. This function takes over responsibility for freeing the list.
7691 *
Bram Moolenaar81870892007-11-11 18:17:28 +00007692 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00007693 * FreeWild(), which does a series of vim_free() calls, unless the two defines
7694 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
7695 * routine _fnexplodefree() is used. This may cause problems, but as the drop
7696 * file functionality is (currently) not in EMX this is not presently a
7697 * problem.
7698 */
7699 void
7700handle_drop(filec, filev, split)
7701 int filec; /* the number of files dropped */
7702 char_u **filev; /* the list of files dropped */
7703 int split; /* force splitting the window */
7704{
7705 exarg_T ea;
7706 int save_msg_scroll = msg_scroll;
7707
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007708 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007709 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007710 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007711#ifdef FEAT_AUTOCMD
7712 if (curbuf_locked())
7713 return;
7714#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00007715 /* When the screen is being updated we should not change buffers and
7716 * windows structures, it may cause freed memory to be used. */
7717 if (updating_screen)
7718 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007719
7720 /* Check whether the current buffer is changed. If so, we will need
7721 * to split the current window or data could be lost.
7722 * We don't need to check if the 'hidden' option is set, as in this
7723 * case the buffer won't be lost.
7724 */
7725 if (!P_HID(curbuf) && !split)
7726 {
7727 ++emsg_off;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007728 split = check_changed(curbuf, CCGD_AW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007729 --emsg_off;
7730 }
7731 if (split)
7732 {
7733# ifdef FEAT_WINDOWS
7734 if (win_split(0, 0) == FAIL)
7735 return;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02007736 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007737
7738 /* When splitting the window, create a new alist. Otherwise the
7739 * existing one is overwritten. */
7740 alist_unlink(curwin->w_alist);
7741 alist_new();
7742# else
7743 return; /* can't split, always fail */
7744# endif
7745 }
7746
7747 /*
7748 * Set up the new argument list.
7749 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00007750 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007751
7752 /*
7753 * Move to the first file.
7754 */
7755 /* Fake up a minimal "next" command for do_argfile() */
7756 vim_memset(&ea, 0, sizeof(ea));
7757 ea.cmd = (char_u *)"next";
7758 do_argfile(&ea, 0);
7759
7760 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
7761 * mode that is not needed here. */
7762 need_start_insertmode = FALSE;
7763
7764 /* Restore msg_scroll, otherwise a following command may cause scrolling
7765 * unexpectedly. The screen will be redrawn by the caller, thus
7766 * msg_scroll being set by displaying a message is irrelevant. */
7767 msg_scroll = save_msg_scroll;
7768}
7769#endif
7770
Bram Moolenaar071d4272004-06-13 20:20:40 +00007771/*
7772 * Clear an argument list: free all file names and reset it to zero entries.
7773 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007774 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007775alist_clear(al)
7776 alist_T *al;
7777{
7778 while (--al->al_ga.ga_len >= 0)
7779 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
7780 ga_clear(&al->al_ga);
7781}
7782
7783/*
7784 * Init an argument list.
7785 */
7786 void
7787alist_init(al)
7788 alist_T *al;
7789{
7790 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
7791}
7792
7793#if defined(FEAT_WINDOWS) || defined(PROTO)
7794
7795/*
7796 * Remove a reference from an argument list.
7797 * Ignored when the argument list is the global one.
7798 * If the argument list is no longer used by any window, free it.
7799 */
7800 void
7801alist_unlink(al)
7802 alist_T *al;
7803{
7804 if (al != &global_alist && --al->al_refcount <= 0)
7805 {
7806 alist_clear(al);
7807 vim_free(al);
7808 }
7809}
7810
7811# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
7812/*
7813 * Create a new argument list and use it for the current window.
7814 */
7815 void
7816alist_new()
7817{
7818 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
7819 if (curwin->w_alist == NULL)
7820 {
7821 curwin->w_alist = &global_alist;
7822 ++global_alist.al_refcount;
7823 }
7824 else
7825 {
7826 curwin->w_alist->al_refcount = 1;
Bram Moolenaar2d1fe052014-05-28 18:22:57 +02007827 curwin->w_alist->id = ++max_alist_id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007828 alist_init(curwin->w_alist);
7829 }
7830}
7831# endif
7832#endif
7833
7834#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
7835/*
7836 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007837 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
7838 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007839 */
7840 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00007841alist_expand(fnum_list, fnum_len)
7842 int *fnum_list;
7843 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007844{
7845 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007846 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007847 char_u **new_arg_files;
7848 int new_arg_file_count;
7849 char_u *save_p_su = p_su;
7850 int i;
7851
7852 /* Don't use 'suffixes' here. This should work like the shell did the
7853 * expansion. Also, the vimrc file isn't read yet, thus the user
7854 * can't set the options. */
7855 p_su = empty_option;
7856 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
7857 if (old_arg_files != NULL)
7858 {
7859 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007860 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
7861 old_arg_count = GARGCOUNT;
7862 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007863 &new_arg_file_count, &new_arg_files,
Bram Moolenaarb5609832011-07-20 15:04:58 +02007864 EW_FILE|EW_NOTFOUND|EW_ADDSLASH|EW_NOERROR) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00007865 && new_arg_file_count > 0)
7866 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00007867 alist_set(&global_alist, new_arg_file_count, new_arg_files,
7868 TRUE, fnum_list, fnum_len);
7869 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007871 }
7872 p_su = save_p_su;
7873}
7874#endif
7875
7876/*
7877 * Set the argument list for the current window.
7878 * Takes over the allocated files[] and the allocated fnames in it.
7879 */
7880 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00007881alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007882 alist_T *al;
7883 int count;
7884 char_u **files;
7885 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007886 int *fnum_list;
7887 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007888{
7889 int i;
7890
7891 alist_clear(al);
7892 if (ga_grow(&al->al_ga, count) == OK)
7893 {
7894 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007895 {
7896 if (got_int)
7897 {
7898 /* When adding many buffers this can take a long time. Allow
7899 * interrupting here. */
7900 while (i < count)
7901 vim_free(files[i++]);
7902 break;
7903 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007904
7905 /* May set buffer name of a buffer previously used for the
7906 * argument list, so that it's re-used by alist_add. */
7907 if (fnum_list != NULL && i < fnum_len)
7908 buf_set_name(fnum_list[i], files[i]);
7909
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007911 ui_breakcheck();
7912 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007913 vim_free(files);
7914 }
7915 else
7916 FreeWild(count, files);
7917#ifdef FEAT_WINDOWS
7918 if (al == &global_alist)
7919#endif
7920 arg_had_last = FALSE;
7921}
7922
7923/*
7924 * Add file "fname" to argument list "al".
7925 * "fname" must have been allocated and "al" must have been checked for room.
7926 */
7927 void
7928alist_add(al, fname, set_fnum)
7929 alist_T *al;
7930 char_u *fname;
7931 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
7932{
7933 if (fname == NULL) /* don't add NULL file names */
7934 return;
7935#ifdef BACKSLASH_IN_FILENAME
7936 slash_adjust(fname);
7937#endif
7938 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
7939 if (set_fnum > 0)
7940 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
7941 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
7942 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007943}
7944
7945#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7946/*
7947 * Adjust slashes in file names. Called after 'shellslash' was set.
7948 */
7949 void
7950alist_slash_adjust()
7951{
7952 int i;
7953# ifdef FEAT_WINDOWS
7954 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007955 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007956# endif
7957
7958 for (i = 0; i < GARGCOUNT; ++i)
7959 if (GARGLIST[i].ae_fname != NULL)
7960 slash_adjust(GARGLIST[i].ae_fname);
7961# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00007962 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007963 if (wp->w_alist != &global_alist)
7964 for (i = 0; i < WARGCOUNT(wp); ++i)
7965 if (WARGLIST(wp)[i].ae_fname != NULL)
7966 slash_adjust(WARGLIST(wp)[i].ae_fname);
7967# endif
7968}
7969#endif
7970
7971/*
7972 * ":preserve".
7973 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007974 static void
7975ex_preserve(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007976 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007977{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007978 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007979 ml_preserve(curbuf, TRUE);
7980}
7981
7982/*
7983 * ":recover".
7984 */
7985 static void
7986ex_recover(eap)
7987 exarg_T *eap;
7988{
7989 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7990 recoverymode = TRUE;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007991 if (!check_changed(curbuf, (p_awa ? CCGD_AW : 0)
7992 | CCGD_MULTWIN
7993 | (eap->forceit ? CCGD_FORCEIT : 0)
7994 | CCGD_EXCMD)
7995
Bram Moolenaar071d4272004-06-13 20:20:40 +00007996 && (*eap->arg == NUL
7997 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7998 ml_recover();
7999 recoverymode = FALSE;
8000}
8001
8002/*
8003 * Command modifier used in a wrong way.
8004 */
8005 static void
8006ex_wrongmodifier(eap)
8007 exarg_T *eap;
8008{
8009 eap->errmsg = e_invcmd;
8010}
8011
8012#ifdef FEAT_WINDOWS
8013/*
8014 * :sview [+command] file split window with new file, read-only
8015 * :split [[+command] file] split window with current or new file
8016 * :vsplit [[+command] file] split window vertically with current or new file
8017 * :new [[+command] file] split window with no or new file
8018 * :vnew [[+command] file] split vertically window with no or new file
8019 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008020 *
8021 * :tabedit open new Tab page with empty window
8022 * :tabedit [+command] file open new Tab page and edit "file"
8023 * :tabnew [[+command] file] just like :tabedit
8024 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008025 */
8026 void
8027ex_splitview(eap)
8028 exarg_T *eap;
8029{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008030 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008031# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008032 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008033# endif
8034# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008035 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008036# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008037
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008038# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00008039 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
8040 {
8041 ex_ni(eap);
8042 return;
8043 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008044# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008045
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008046# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008047 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008048# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008049
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008050# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00008051 /* A ":split" in the quickfix window works like ":new". Don't want two
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008052 * quickfix windows. But it's OK when doing ":tab split". */
8053 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054 {
8055 if (eap->cmdidx == CMD_split)
8056 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008057# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00008058 if (eap->cmdidx == CMD_vsplit)
8059 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008061 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008062# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008063
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008064# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008065 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008066 {
8067 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
8068 FNAME_MESS, TRUE, curbuf->b_ffname);
8069 if (fname == NULL)
8070 goto theend;
8071 eap->arg = fname;
8072 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008073# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008074 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008075# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008077# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008078 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008079# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00008080 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008081# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008082 && eap->cmdidx != CMD_new)
8083 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008084# ifdef FEAT_AUTOCMD
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008085 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008086# ifdef FEAT_GUI
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008087 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008088# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008089 au_has_group((char_u *)"FileExplorer"))
8090 {
8091 /* No browsing supported but we do have the file explorer:
8092 * Edit the directory. */
8093 if (*eap->arg == NUL || !mch_isdir(eap->arg))
8094 eap->arg = (char_u *)".";
8095 }
8096 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008097# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008098 {
8099 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00008100 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008101 if (fname == NULL)
8102 goto theend;
8103 eap->arg = fname;
8104 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008105 }
8106 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008107# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008108
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008109 /*
8110 * Either open new tab page or split the window.
8111 */
8112 if (eap->cmdidx == CMD_tabedit
8113 || eap->cmdidx == CMD_tabfind
8114 || eap->cmdidx == CMD_tabnew)
8115 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00008116 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
8117 : eap->addr_count == 0 ? 0
8118 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008119 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00008120 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008121
8122 /* set the alternate buffer for the window we came from */
8123 if (curwin != old_curwin
8124 && win_valid(old_curwin)
8125 && old_curwin->w_buffer != curbuf
8126 && !cmdmod.keepalt)
8127 old_curwin->w_alt_fnum = curbuf->b_fnum;
8128 }
8129 }
8130 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008131 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
8132 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008133# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00008134 /* Reset 'scrollbind' when editing another file, but keep it when
8135 * doing ":split" without arguments. */
8136 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008137# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008138 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008139# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008140 )
Bram Moolenaar3368ea22010-09-21 16:56:35 +02008141 {
8142 RESET_BINDING(curwin);
8143 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008144 else
8145 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008146# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008147 do_exedit(eap, old_curwin);
8148 }
8149
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008150# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008151 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008152# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008153
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008154# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008155theend:
8156 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008157# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008158}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008159
8160/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008161 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008162 */
8163 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008164tabpage_new()
8165{
8166 exarg_T ea;
8167
8168 vim_memset(&ea, 0, sizeof(ea));
8169 ea.cmdidx = CMD_tabnew;
8170 ea.cmd = (char_u *)"tabn";
8171 ea.arg = (char_u *)"";
8172 ex_splitview(&ea);
8173}
8174
8175/*
8176 * :tabnext command
8177 */
8178 static void
8179ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008180 exarg_T *eap;
8181{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00008182 switch (eap->cmdidx)
8183 {
8184 case CMD_tabfirst:
8185 case CMD_tabrewind:
8186 goto_tabpage(1);
8187 break;
8188 case CMD_tablast:
8189 goto_tabpage(9999);
8190 break;
8191 case CMD_tabprevious:
8192 case CMD_tabNext:
8193 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
8194 break;
8195 default: /* CMD_tabnext */
8196 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
8197 break;
8198 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008199}
8200
8201/*
8202 * :tabmove command
8203 */
8204 static void
8205ex_tabmove(eap)
8206 exarg_T *eap;
8207{
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008208 int tab_number;
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008209
8210 if (eap->arg && *eap->arg != NUL)
8211 {
8212 char_u *p = eap->arg;
8213 int relative = 0; /* argument +N/-N means: move N places to the
8214 * right/left relative to the current position. */
8215
8216 if (*eap->arg == '-')
8217 {
8218 relative = -1;
8219 p = eap->arg + 1;
8220 }
8221 else if (*eap->arg == '+')
8222 {
8223 relative = 1;
8224 p = eap->arg + 1;
8225 }
8226 else
8227 p = eap->arg;
8228
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008229 if (relative == 0)
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008230 {
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008231 if (STRCMP(p, "$") == 0)
8232 tab_number = LAST_TAB_NR;
8233 else if (p == skipdigits(p))
8234 {
8235 /* No numbers as argument. */
8236 eap->errmsg = e_invarg;
8237 return;
8238 }
8239 else
8240 tab_number = getdigits(&p);
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008241 }
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008242 else
8243 {
8244 if (*p != NUL)
8245 tab_number = getdigits(&p);
8246 else
8247 tab_number = 1;
8248 tab_number = tab_number * relative + tabpage_index(curtab);
8249 if (relative == -1)
8250 --tab_number;
8251 }
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008252 }
8253 else if (eap->addr_count != 0)
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008254 {
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008255 tab_number = eap->line2;
Bram Moolenaar40ce3a42015-04-21 18:08:39 +02008256 if (**eap->cmdlinep == '-')
8257 --tab_number;
8258 }
8259 else
8260 tab_number = LAST_TAB_NR;
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008261
8262 tabpage_move(tab_number);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008263}
8264
8265/*
8266 * :tabs command: List tabs and their contents.
8267 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008268 static void
8269ex_tabs(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008270 exarg_T *eap UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008271{
8272 tabpage_T *tp;
8273 win_T *wp;
8274 int tabcount = 1;
8275
8276 msg_start();
8277 msg_scroll = TRUE;
8278 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
8279 {
8280 msg_putchar('\n');
8281 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
8282 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
8283 out_flush(); /* output one line at a time */
8284 ui_breakcheck();
8285
Bram Moolenaar030f0df2006-02-21 22:02:53 +00008286 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008287 wp = firstwin;
8288 else
8289 wp = tp->tp_firstwin;
8290 for ( ; wp != NULL && !got_int; wp = wp->w_next)
8291 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008292 msg_putchar('\n');
8293 msg_putchar(wp == curwin ? '>' : ' ');
8294 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00008295 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
8296 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008297 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02008298 vim_strncpy(IObuff, buf_spname(wp->w_buffer), IOSIZE - 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008299 else
8300 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
8301 IObuff, IOSIZE, TRUE);
8302 msg_outtrans(IObuff);
8303 out_flush(); /* output one line at a time */
8304 ui_breakcheck();
8305 }
8306 }
8307}
8308
8309#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008310
8311/*
8312 * ":mode": Set screen mode.
8313 * If no argument given, just get the screen size and redraw.
8314 */
8315 static void
8316ex_mode(eap)
8317 exarg_T *eap;
8318{
8319 if (*eap->arg == NUL)
8320 shell_resized();
8321 else
8322 mch_screenmode(eap->arg);
8323}
8324
8325#ifdef FEAT_WINDOWS
8326/*
8327 * ":resize".
8328 * set, increment or decrement current window height
8329 */
8330 static void
8331ex_resize(eap)
8332 exarg_T *eap;
8333{
8334 int n;
8335 win_T *wp = curwin;
8336
8337 if (eap->addr_count > 0)
8338 {
8339 n = eap->line2;
8340 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
8341 ;
8342 }
8343
8344#ifdef FEAT_GUI
8345 need_mouse_correct = TRUE;
8346#endif
8347 n = atol((char *)eap->arg);
8348#ifdef FEAT_VERTSPLIT
8349 if (cmdmod.split & WSP_VERT)
8350 {
8351 if (*eap->arg == '-' || *eap->arg == '+')
8352 n += W_WIDTH(curwin);
8353 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
8354 n = 9999;
8355 win_setwidth_win((int)n, wp);
8356 }
8357 else
8358#endif
8359 {
8360 if (*eap->arg == '-' || *eap->arg == '+')
8361 n += curwin->w_height;
8362 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
8363 n = 9999;
8364 win_setheight_win((int)n, wp);
8365 }
8366}
8367#endif
8368
8369/*
8370 * ":find [+command] <file>" command.
8371 */
8372 static void
8373ex_find(eap)
8374 exarg_T *eap;
8375{
8376#ifdef FEAT_SEARCHPATH
8377 char_u *fname;
8378 int count;
8379
8380 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
8381 TRUE, curbuf->b_ffname);
8382 if (eap->addr_count > 0)
8383 {
8384 /* Repeat finding the file "count" times. This matters when it
8385 * appears several times in the path. */
8386 count = eap->line2;
8387 while (fname != NULL && --count > 0)
8388 {
8389 vim_free(fname);
8390 fname = find_file_in_path(NULL, 0, FNAME_MESS,
8391 FALSE, curbuf->b_ffname);
8392 }
8393 }
8394
8395 if (fname != NULL)
8396 {
8397 eap->arg = fname;
8398#endif
8399 do_exedit(eap, NULL);
8400#ifdef FEAT_SEARCHPATH
8401 vim_free(fname);
8402 }
8403#endif
8404}
8405
8406/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00008407 * ":open" simulation: for now just work like ":visual".
8408 */
8409 static void
8410ex_open(eap)
8411 exarg_T *eap;
8412{
8413 regmatch_T regmatch;
8414 char_u *p;
8415
8416 curwin->w_cursor.lnum = eap->line2;
8417 beginline(BL_SOL | BL_FIX);
8418 if (*eap->arg == '/')
8419 {
8420 /* ":open /pattern/": put cursor in column found with pattern */
8421 ++eap->arg;
8422 p = skip_regexp(eap->arg, '/', p_magic, NULL);
8423 *p = NUL;
8424 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
8425 if (regmatch.regprog != NULL)
8426 {
8427 regmatch.rm_ic = p_ic;
8428 p = ml_get_curline();
8429 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008430 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008431 else
8432 EMSG(_(e_nomatch));
Bram Moolenaar473de612013-06-08 18:19:48 +02008433 vim_regfree(regmatch.regprog);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008434 }
8435 /* Move to the NUL, ignore any other arguments. */
8436 eap->arg += STRLEN(eap->arg);
8437 }
8438 check_cursor();
8439
8440 eap->cmdidx = CMD_visual;
8441 do_exedit(eap, NULL);
8442}
8443
8444/*
8445 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008446 */
8447 static void
8448ex_edit(eap)
8449 exarg_T *eap;
8450{
8451 do_exedit(eap, NULL);
8452}
8453
8454/*
8455 * ":edit <file>" command and alikes.
8456 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008457 void
8458do_exedit(eap, old_curwin)
8459 exarg_T *eap;
8460 win_T *old_curwin; /* curwin before doing a split or NULL */
8461{
8462 int n;
8463#ifdef FEAT_WINDOWS
8464 int need_hide;
8465#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008466 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008467
8468 /*
8469 * ":vi" command ends Ex mode.
8470 */
8471 if (exmode_active && (eap->cmdidx == CMD_visual
8472 || eap->cmdidx == CMD_view))
8473 {
8474 exmode_active = FALSE;
8475 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008476 {
8477 /* Special case: ":global/pat/visual\NLvi-commands" */
8478 if (global_busy)
8479 {
8480 int rd = RedrawingDisabled;
8481 int nwr = no_wait_return;
8482 int ms = msg_scroll;
8483#ifdef FEAT_GUI
8484 int he = hold_gui_events;
8485#endif
8486
8487 if (eap->nextcmd != NULL)
8488 {
8489 stuffReadbuff(eap->nextcmd);
8490 eap->nextcmd = NULL;
8491 }
8492
8493 if (exmode_was != EXMODE_VIM)
8494 settmode(TMODE_RAW);
8495 RedrawingDisabled = 0;
8496 no_wait_return = 0;
8497 need_wait_return = FALSE;
8498 msg_scroll = 0;
8499#ifdef FEAT_GUI
8500 hold_gui_events = 0;
8501#endif
8502 must_redraw = CLEAR;
8503
8504 main_loop(FALSE, TRUE);
8505
8506 RedrawingDisabled = rd;
8507 no_wait_return = nwr;
8508 msg_scroll = ms;
8509#ifdef FEAT_GUI
8510 hold_gui_events = he;
8511#endif
8512 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008513 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008515 }
8516
8517 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008518 || eap->cmdidx == CMD_tabnew
8519 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00008520#ifdef FEAT_VERTSPLIT
8521 || eap->cmdidx == CMD_vnew
8522#endif
8523 ) && *eap->arg == NUL)
8524 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008525 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008526 setpcmark();
8527 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00008528 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
8529 old_curwin == NULL ? curwin : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008530 }
8531 else if ((eap->cmdidx != CMD_split
8532#ifdef FEAT_VERTSPLIT
8533 && eap->cmdidx != CMD_vsplit
8534#endif
8535 )
8536 || *eap->arg != NUL
8537#ifdef FEAT_BROWSE
8538 || cmdmod.browse
8539#endif
8540 )
8541 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00008542#ifdef FEAT_AUTOCMD
8543 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
8544 * can bring us here, others are stopped earlier. */
8545 if (*eap->arg != NUL && curbuf_locked())
8546 return;
8547#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008548 n = readonlymode;
8549 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
8550 readonlymode = TRUE;
8551 else if (eap->cmdidx == CMD_enew)
8552 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
8553 empty buffer */
8554 setpcmark();
8555 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
8556 NULL, eap,
8557 /* ":edit" goes to first line if Vi compatible */
8558 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
8559 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
8560 ? ECMD_ONE : eap->do_ecmd_lnum,
8561 (P_HID(curbuf) ? ECMD_HIDE : 0)
8562 + (eap->forceit ? ECMD_FORCEIT : 0)
Bram Moolenaar7b449342014-03-25 13:03:48 +01008563 /* after a split we can use an existing buffer */
8564 + (old_curwin != NULL ? ECMD_OLDBUF : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008565#ifdef FEAT_LISTCMDS
8566 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
8567#endif
Bram Moolenaar701f7af2008-11-15 13:12:07 +00008568 , old_curwin == NULL ? curwin : NULL) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008569 {
8570 /* Editing the file failed. If the window was split, close it. */
8571#ifdef FEAT_WINDOWS
8572 if (old_curwin != NULL)
8573 {
8574 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
8575 if (!need_hide || P_HID(curbuf))
8576 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00008577# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8578 cleanup_T cs;
8579
8580 /* Reset the error/interrupt/exception state here so that
8581 * aborting() returns FALSE when closing a window. */
8582 enter_cleanup(&cs);
8583# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008584# ifdef FEAT_GUI
8585 need_mouse_correct = TRUE;
8586# endif
8587 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00008588
8589# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8590 /* Restore the error/interrupt/exception state if not
8591 * discarded by a new aborting error, interrupt, or
8592 * uncaught exception. */
8593 leave_cleanup(&cs);
8594# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008595 }
8596 }
8597#endif
8598 }
8599 else if (readonlymode && curbuf->b_nwindows == 1)
8600 {
8601 /* When editing an already visited buffer, 'readonly' won't be set
8602 * but the previous value is kept. With ":view" and ":sview" we
8603 * want the file to be readonly, except when another window is
8604 * editing the same buffer. */
8605 curbuf->b_p_ro = TRUE;
8606 }
8607 readonlymode = n;
8608 }
8609 else
8610 {
8611 if (eap->do_ecmd_cmd != NULL)
8612 do_cmdline_cmd(eap->do_ecmd_cmd);
8613#ifdef FEAT_TITLE
8614 n = curwin->w_arg_idx_invalid;
8615#endif
8616 check_arg_idx(curwin);
8617#ifdef FEAT_TITLE
8618 if (n != curwin->w_arg_idx_invalid)
8619 maketitle();
8620#endif
8621 }
8622
8623#ifdef FEAT_WINDOWS
8624 /*
8625 * if ":split file" worked, set alternate file name in old window to new
8626 * file
8627 */
8628 if (old_curwin != NULL
8629 && *eap->arg != NUL
8630 && curwin != old_curwin
8631 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00008632 && old_curwin->w_buffer != curbuf
8633 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008634 old_curwin->w_alt_fnum = curbuf->b_fnum;
8635#endif
8636
8637 ex_no_reprint = TRUE;
8638}
8639
8640#ifndef FEAT_GUI
8641/*
8642 * ":gui" and ":gvim" when there is no GUI.
8643 */
8644 static void
8645ex_nogui(eap)
8646 exarg_T *eap;
8647{
8648 eap->errmsg = e_nogvim;
8649}
8650#endif
8651
8652#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
8653 static void
8654ex_tearoff(eap)
8655 exarg_T *eap;
8656{
8657 gui_make_tearoff(eap->arg);
8658}
8659#endif
8660
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008661#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008662 static void
8663ex_popup(eap)
8664 exarg_T *eap;
8665{
Bram Moolenaar97409f12005-07-08 22:17:29 +00008666 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008667}
8668#endif
8669
Bram Moolenaar071d4272004-06-13 20:20:40 +00008670 static void
8671ex_swapname(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008672 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008673{
8674 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
8675 MSG(_("No swap file"));
8676 else
8677 msg(curbuf->b_ml.ml_mfp->mf_fname);
8678}
8679
8680/*
8681 * ":syncbind" forces all 'scrollbind' windows to have the same relative
8682 * offset.
8683 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
8684 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008685 static void
8686ex_syncbind(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008687 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008688{
8689#ifdef FEAT_SCROLLBIND
8690 win_T *wp;
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008691 win_T *save_curwin = curwin;
8692 buf_T *save_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008693 long topline;
8694 long y;
8695 linenr_T old_linenr = curwin->w_cursor.lnum;
8696
8697 setpcmark();
8698
8699 /*
8700 * determine max topline
8701 */
8702 if (curwin->w_p_scb)
8703 {
8704 topline = curwin->w_topline;
8705 for (wp = firstwin; wp; wp = wp->w_next)
8706 {
8707 if (wp->w_p_scb && wp->w_buffer)
8708 {
8709 y = wp->w_buffer->b_ml.ml_line_count - p_so;
8710 if (topline > y)
8711 topline = y;
8712 }
8713 }
8714 if (topline < 1)
8715 topline = 1;
8716 }
8717 else
8718 {
8719 topline = 1;
8720 }
8721
8722
8723 /*
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008724 * Set all scrollbind windows to the same topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008725 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008726 for (curwin = firstwin; curwin; curwin = curwin->w_next)
8727 {
8728 if (curwin->w_p_scb)
8729 {
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008730 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008731 y = topline - curwin->w_topline;
8732 if (y > 0)
8733 scrollup(y, TRUE);
8734 else
8735 scrolldown(-y, TRUE);
8736 curwin->w_scbind_pos = topline;
8737 redraw_later(VALID);
8738 cursor_correct();
8739#ifdef FEAT_WINDOWS
8740 curwin->w_redr_status = TRUE;
8741#endif
8742 }
8743 }
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008744 curwin = save_curwin;
8745 curbuf = save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008746 if (curwin->w_p_scb)
8747 {
8748 did_syncbind = TRUE;
8749 checkpcmark();
8750 if (old_linenr != curwin->w_cursor.lnum)
8751 {
8752 char_u ctrl_o[2];
8753
8754 ctrl_o[0] = Ctrl_O;
8755 ctrl_o[1] = 0;
8756 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
8757 }
8758 }
8759#endif
8760}
8761
8762
8763 static void
8764ex_read(eap)
8765 exarg_T *eap;
8766{
Bram Moolenaardf177f62005-02-22 08:39:57 +00008767 int i;
8768 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
8769 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008770
8771 if (eap->usefilter) /* :r!cmd */
8772 do_bang(1, eap, FALSE, FALSE, TRUE);
8773 else
8774 {
8775 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
8776 return;
8777
8778#ifdef FEAT_BROWSE
8779 if (cmdmod.browse)
8780 {
8781 char_u *browseFile;
8782
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008783 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008784 NULL, NULL, NULL, curbuf);
8785 if (browseFile != NULL)
8786 {
8787 i = readfile(browseFile, NULL,
8788 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8789 vim_free(browseFile);
8790 }
8791 else
8792 i = OK;
8793 }
8794 else
8795#endif
8796 if (*eap->arg == NUL)
8797 {
8798 if (check_fname() == FAIL) /* check for no file name */
8799 return;
8800 i = readfile(curbuf->b_ffname, curbuf->b_fname,
8801 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8802 }
8803 else
8804 {
8805 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
8806 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
8807 i = readfile(eap->arg, NULL,
8808 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8809
8810 }
8811 if (i == FAIL)
8812 {
8813#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8814 if (!aborting())
8815#endif
8816 EMSG2(_(e_notopen), eap->arg);
8817 }
8818 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008819 {
8820 if (empty && exmode_active)
8821 {
8822 /* Delete the empty line that remains. Historically ex does
8823 * this but vi doesn't. */
8824 if (eap->line2 == 0)
8825 lnum = curbuf->b_ml.ml_line_count;
8826 else
8827 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008828 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008829 {
8830 ml_delete(lnum, FALSE);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008831 if (curwin->w_cursor.lnum > 1
8832 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008833 --curwin->w_cursor.lnum;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00008834 deleted_lines_mark(lnum, 1L);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008835 }
8836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008837 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008839 }
8840}
8841
Bram Moolenaarea408852005-06-25 22:49:46 +00008842static char_u *prev_dir = NULL;
8843
8844#if defined(EXITFREE) || defined(PROTO)
8845 void
8846free_cd_dir()
8847{
8848 vim_free(prev_dir);
Bram Moolenaara0174af2008-01-02 20:08:25 +00008849 prev_dir = NULL;
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00008850
8851 vim_free(globaldir);
8852 globaldir = NULL;
Bram Moolenaarea408852005-06-25 22:49:46 +00008853}
8854#endif
8855
Bram Moolenaarf4258302013-06-02 18:20:17 +02008856/*
8857 * Deal with the side effects of changing the current directory.
8858 * When "local" is TRUE then this was after an ":lcd" command.
8859 */
8860 void
8861post_chdir(local)
8862 int local;
8863{
8864 vim_free(curwin->w_localdir);
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01008865 curwin->w_localdir = NULL;
Bram Moolenaarf4258302013-06-02 18:20:17 +02008866 if (local)
8867 {
8868 /* If still in global directory, need to remember current
8869 * directory as global directory. */
8870 if (globaldir == NULL && prev_dir != NULL)
8871 globaldir = vim_strsave(prev_dir);
8872 /* Remember this local directory for the window. */
8873 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8874 curwin->w_localdir = vim_strsave(NameBuff);
8875 }
8876 else
8877 {
8878 /* We are now in the global directory, no need to remember its
8879 * name. */
8880 vim_free(globaldir);
8881 globaldir = NULL;
Bram Moolenaarf4258302013-06-02 18:20:17 +02008882 }
8883
8884 shorten_fnames(TRUE);
8885}
8886
Bram Moolenaarea408852005-06-25 22:49:46 +00008887
Bram Moolenaar071d4272004-06-13 20:20:40 +00008888/*
8889 * ":cd", ":lcd", ":chdir" and ":lchdir".
8890 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00008891 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00008892ex_cd(eap)
8893 exarg_T *eap;
8894{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008895 char_u *new_dir;
8896 char_u *tofree;
8897
8898 new_dir = eap->arg;
8899#if !defined(UNIX) && !defined(VMS)
8900 /* for non-UNIX ":cd" means: print current directory */
8901 if (*new_dir == NUL)
8902 ex_pwd(NULL);
8903 else
8904#endif
8905 {
Bram Moolenaar8e8fe9b2009-03-11 14:37:32 +00008906#ifdef FEAT_AUTOCMD
8907 if (allbuf_locked())
8908 return;
8909#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008910 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
8911 && !eap->forceit)
8912 {
Bram Moolenaar81870892007-11-11 18:17:28 +00008913 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00008914 return;
8915 }
8916
Bram Moolenaar071d4272004-06-13 20:20:40 +00008917 /* ":cd -": Change to previous directory */
8918 if (STRCMP(new_dir, "-") == 0)
8919 {
8920 if (prev_dir == NULL)
8921 {
8922 EMSG(_("E186: No previous directory"));
8923 return;
8924 }
8925 new_dir = prev_dir;
8926 }
8927
8928 /* Save current directory for next ":cd -" */
8929 tofree = prev_dir;
8930 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8931 prev_dir = vim_strsave(NameBuff);
8932 else
8933 prev_dir = NULL;
8934
8935#if defined(UNIX) || defined(VMS)
8936 /* for UNIX ":cd" means: go to home directory */
8937 if (*new_dir == NUL)
8938 {
8939 /* use NameBuff for home directory name */
8940# ifdef VMS
8941 char_u *p;
8942
8943 p = mch_getenv((char_u *)"SYS$LOGIN");
8944 if (p == NULL || *p == NUL) /* empty is the same as not set */
8945 NameBuff[0] = NUL;
8946 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00008947 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008948# else
8949 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
8950# endif
8951 new_dir = NameBuff;
8952 }
8953#endif
8954 if (new_dir == NULL || vim_chdir(new_dir))
8955 EMSG(_(e_failed));
8956 else
8957 {
Bram Moolenaarf4258302013-06-02 18:20:17 +02008958 post_chdir(eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008959
8960 /* Echo the new current directory if the command was typed. */
Bram Moolenaarfcfbc672009-07-09 18:13:49 +00008961 if (KeyTyped || p_verbose >= 5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008962 ex_pwd(eap);
8963 }
8964 vim_free(tofree);
8965 }
8966}
8967
8968/*
8969 * ":pwd".
8970 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008971 static void
8972ex_pwd(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008973 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008974{
8975 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8976 {
8977#ifdef BACKSLASH_IN_FILENAME
8978 slash_adjust(NameBuff);
8979#endif
8980 msg(NameBuff);
8981 }
8982 else
8983 EMSG(_("E187: Unknown"));
8984}
8985
8986/*
8987 * ":=".
8988 */
8989 static void
8990ex_equal(eap)
8991 exarg_T *eap;
8992{
8993 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008994 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008995}
8996
8997 static void
8998ex_sleep(eap)
8999 exarg_T *eap;
9000{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009001 int n;
9002 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009003
9004 if (cursor_valid())
9005 {
9006 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
9007 if (n >= 0)
Bram Moolenaar10395d82014-02-05 22:46:52 +01009008 windgoto((int)n, W_WINCOL(curwin) + curwin->w_wcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009009 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00009010
9011 len = eap->line2;
9012 switch (*eap->arg)
9013 {
9014 case 'm': break;
9015 case NUL: len *= 1000L; break;
9016 default: EMSG2(_(e_invarg2), eap->arg); return;
9017 }
9018 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009019}
9020
9021/*
9022 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
9023 */
9024 void
9025do_sleep(msec)
9026 long msec;
9027{
9028 long done;
9029
9030 cursor_on();
9031 out_flush();
9032 for (done = 0; !got_int && done < msec; done += 1000L)
9033 {
9034 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
9035 ui_breakcheck();
Bram Moolenaar93c88e02015-09-15 14:12:05 +02009036#ifdef MESSAGE_QUEUE
9037 /* Process the netbeans and clientserver messages that may have been
9038 * received in the call to ui_breakcheck() when the GUI is in use. This
9039 * may occur when running a test case. */
9040 parse_queued_messages();
Bram Moolenaare3cc6d42011-10-20 21:58:34 +02009041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009042 }
9043}
9044
9045 static void
9046do_exmap(eap, isabbrev)
9047 exarg_T *eap;
9048 int isabbrev;
9049{
9050 int mode;
9051 char_u *cmdp;
9052
9053 cmdp = eap->cmd;
9054 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
9055
9056 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
9057 eap->arg, mode, isabbrev))
9058 {
9059 case 1: EMSG(_(e_invarg));
9060 break;
9061 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
9062 break;
9063 }
9064}
9065
9066/*
9067 * ":winsize" command (obsolete).
9068 */
9069 static void
9070ex_winsize(eap)
9071 exarg_T *eap;
9072{
9073 int w, h;
9074 char_u *arg = eap->arg;
9075 char_u *p;
9076
9077 w = getdigits(&arg);
9078 arg = skipwhite(arg);
9079 p = arg;
9080 h = getdigits(&arg);
9081 if (*p != NUL && *arg == NUL)
9082 set_shellsize(w, h, TRUE);
9083 else
9084 EMSG(_("E465: :winsize requires two number arguments"));
9085}
9086
9087#ifdef FEAT_WINDOWS
9088 static void
9089ex_wincmd(eap)
9090 exarg_T *eap;
9091{
9092 int xchar = NUL;
9093 char_u *p;
9094
9095 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
9096 {
9097 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
9098 if (eap->arg[1] == NUL)
9099 {
9100 EMSG(_(e_invarg));
9101 return;
9102 }
9103 xchar = eap->arg[1];
9104 p = eap->arg + 2;
9105 }
9106 else
9107 p = eap->arg + 1;
9108
9109 eap->nextcmd = check_nextcmd(p);
9110 p = skipwhite(p);
9111 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
9112 EMSG(_(e_invarg));
Bram Moolenaar12bde492011-06-13 01:19:56 +02009113 else if (!eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009114 {
9115 /* Pass flags on for ":vertical wincmd ]". */
9116 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009117 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009118 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
9119 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009120 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009121 }
9122}
9123#endif
9124
Bram Moolenaar843ee412004-06-30 16:16:41 +00009125#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009126/*
9127 * ":winpos".
9128 */
9129 static void
9130ex_winpos(eap)
9131 exarg_T *eap;
9132{
9133 int x, y;
9134 char_u *arg = eap->arg;
9135 char_u *p;
9136
9137 if (*arg == NUL)
9138 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00009139# if defined(FEAT_GUI) || defined(MSWIN)
9140# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00009141 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00009142# else
9143 if (mch_get_winpos(&x, &y) != FAIL)
9144# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009145 {
9146 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
9147 msg(IObuff);
9148 }
9149 else
9150# endif
9151 EMSG(_("E188: Obtaining window position not implemented for this platform"));
9152 }
9153 else
9154 {
9155 x = getdigits(&arg);
9156 arg = skipwhite(arg);
9157 p = arg;
9158 y = getdigits(&arg);
9159 if (*p == NUL || *arg != NUL)
9160 {
9161 EMSG(_("E466: :winpos requires two number arguments"));
9162 return;
9163 }
9164# ifdef FEAT_GUI
9165 if (gui.in_use)
9166 gui_mch_set_winpos(x, y);
9167 else if (gui.starting)
9168 {
9169 /* Remember the coordinates for when the window is opened. */
9170 gui_win_x = x;
9171 gui_win_y = y;
9172 }
9173# ifdef HAVE_TGETENT
9174 else
9175# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00009176# else
9177# ifdef MSWIN
9178 mch_set_winpos(x, y);
9179# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009180# endif
9181# ifdef HAVE_TGETENT
9182 if (*T_CWP)
9183 term_set_winpos(x, y);
9184# endif
9185 }
9186}
9187#endif
9188
9189/*
9190 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
9191 */
9192 static void
9193ex_operators(eap)
9194 exarg_T *eap;
9195{
9196 oparg_T oa;
9197
9198 clear_oparg(&oa);
9199 oa.regname = eap->regname;
9200 oa.start.lnum = eap->line1;
9201 oa.end.lnum = eap->line2;
9202 oa.line_count = eap->line2 - eap->line1 + 1;
9203 oa.motion_type = MLINE;
9204#ifdef FEAT_VIRTUALEDIT
9205 virtual_op = FALSE;
9206#endif
9207 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
9208 {
9209 setpcmark();
9210 curwin->w_cursor.lnum = eap->line1;
9211 beginline(BL_SOL | BL_FIX);
9212 }
9213
Bram Moolenaard07c6e12013-11-21 14:21:40 +01009214 if (VIsual_active)
9215 end_visual_mode();
Bram Moolenaard07c6e12013-11-21 14:21:40 +01009216
Bram Moolenaar071d4272004-06-13 20:20:40 +00009217 switch (eap->cmdidx)
9218 {
9219 case CMD_delete:
9220 oa.op_type = OP_DELETE;
9221 op_delete(&oa);
9222 break;
9223
9224 case CMD_yank:
9225 oa.op_type = OP_YANK;
9226 (void)op_yank(&oa, FALSE, TRUE);
9227 break;
9228
9229 default: /* CMD_rshift or CMD_lshift */
Bram Moolenaar6e707362013-06-14 19:15:58 +02009230 if (
Bram Moolenaar071d4272004-06-13 20:20:40 +00009231#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e707362013-06-14 19:15:58 +02009232 (eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
9233#else
9234 eap->cmdidx == CMD_rshift
Bram Moolenaar071d4272004-06-13 20:20:40 +00009235#endif
Bram Moolenaar6e707362013-06-14 19:15:58 +02009236 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00009237 oa.op_type = OP_RSHIFT;
9238 else
9239 oa.op_type = OP_LSHIFT;
9240 op_shift(&oa, FALSE, eap->amount);
9241 break;
9242 }
9243#ifdef FEAT_VIRTUALEDIT
9244 virtual_op = MAYBE;
9245#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00009246 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009247}
9248
9249/*
9250 * ":put".
9251 */
9252 static void
9253ex_put(eap)
9254 exarg_T *eap;
9255{
9256 /* ":0put" works like ":1put!". */
9257 if (eap->line2 == 0)
9258 {
9259 eap->line2 = 1;
9260 eap->forceit = TRUE;
9261 }
9262 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009263 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
9264 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009265}
9266
9267/*
9268 * Handle ":copy" and ":move".
9269 */
9270 static void
9271ex_copymove(eap)
9272 exarg_T *eap;
9273{
9274 long n;
9275
Bram Moolenaaraa23b372015-09-08 18:46:31 +02009276 n = get_address(eap, &eap->arg, eap->addr_type, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009277 if (eap->arg == NULL) /* error detected */
9278 {
9279 eap->nextcmd = NULL;
9280 return;
9281 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00009282 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009283
9284 /*
9285 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
9286 */
9287 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
9288 {
9289 EMSG(_(e_invaddr));
9290 return;
9291 }
9292
9293 if (eap->cmdidx == CMD_move)
9294 {
9295 if (do_move(eap->line1, eap->line2, n) == FAIL)
9296 return;
9297 }
9298 else
9299 ex_copy(eap->line1, eap->line2, n);
9300 u_clearline();
9301 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009302 ex_may_print(eap);
9303}
9304
9305/*
9306 * Print the current line if flags were given to the Ex command.
9307 */
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02009308 void
Bram Moolenaardf177f62005-02-22 08:39:57 +00009309ex_may_print(eap)
9310 exarg_T *eap;
9311{
9312 if (eap->flags != 0)
9313 {
9314 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
9315 (eap->flags & EXFLAG_LIST));
9316 ex_no_reprint = TRUE;
9317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009318}
9319
9320/*
9321 * ":smagic" and ":snomagic".
9322 */
9323 static void
9324ex_submagic(eap)
9325 exarg_T *eap;
9326{
9327 int magic_save = p_magic;
9328
9329 p_magic = (eap->cmdidx == CMD_smagic);
9330 do_sub(eap);
9331 p_magic = magic_save;
9332}
9333
9334/*
9335 * ":join".
9336 */
9337 static void
9338ex_join(eap)
9339 exarg_T *eap;
9340{
9341 curwin->w_cursor.lnum = eap->line1;
9342 if (eap->line1 == eap->line2)
9343 {
9344 if (eap->addr_count >= 2) /* :2,2join does nothing */
9345 return;
9346 if (eap->line2 == curbuf->b_ml.ml_line_count)
9347 {
9348 beep_flush();
9349 return;
9350 }
9351 ++eap->line2;
9352 }
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02009353 (void)do_join(eap->line2 - eap->line1 + 1, !eap->forceit, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009354 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009355 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009356}
9357
9358/*
9359 * ":[addr]@r" or ":[addr]*r": execute register
9360 */
9361 static void
9362ex_at(eap)
9363 exarg_T *eap;
9364{
9365 int c;
Bram Moolenaar60462872009-11-03 11:40:19 +00009366 int prev_len = typebuf.tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009367
9368 curwin->w_cursor.lnum = eap->line2;
9369
9370#ifdef USE_ON_FLY_SCROLL
9371 dont_scroll = TRUE; /* disallow scrolling here */
9372#endif
9373
9374 /* get the register name. No name means to use the previous one */
9375 c = *eap->arg;
9376 if (c == NUL || (c == '*' && *eap->cmd == '*'))
9377 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00009378 /* Put the register in the typeahead buffer with the "silent" flag. */
9379 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
9380 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00009381 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009382 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00009383 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009384 else
9385 {
9386 int save_efr = exec_from_reg;
9387
9388 exec_from_reg = TRUE;
9389
9390 /*
9391 * Execute from the typeahead buffer.
Bram Moolenaar60462872009-11-03 11:40:19 +00009392 * Continue until the stuff buffer is empty and all added characters
9393 * have been consumed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009394 */
Bram Moolenaar60462872009-11-03 11:40:19 +00009395 while (!stuff_empty() || typebuf.tb_len > prev_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009396 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
9397
9398 exec_from_reg = save_efr;
9399 }
9400}
9401
9402/*
9403 * ":!".
9404 */
9405 static void
9406ex_bang(eap)
9407 exarg_T *eap;
9408{
9409 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
9410}
9411
9412/*
9413 * ":undo".
9414 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009415 static void
9416ex_undo(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009417 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009418{
Bram Moolenaard3667a22006-03-16 21:35:52 +00009419 if (eap->addr_count == 1) /* :undo 123 */
Bram Moolenaar730cde92010-06-27 05:18:54 +02009420 undo_time(eap->line2, FALSE, FALSE, TRUE);
Bram Moolenaard3667a22006-03-16 21:35:52 +00009421 else
9422 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009423}
9424
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009425#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar6df6f472010-07-18 18:04:50 +02009426 static void
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009427ex_wundo(eap)
9428 exarg_T *eap;
9429{
9430 char_u hash[UNDO_HASH_SIZE];
9431
9432 u_compute_hash(hash);
9433 u_write_undo(eap->arg, eap->forceit, curbuf, hash);
9434}
9435
Bram Moolenaar6df6f472010-07-18 18:04:50 +02009436 static void
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009437ex_rundo(eap)
9438 exarg_T *eap;
9439{
9440 char_u hash[UNDO_HASH_SIZE];
9441
9442 u_compute_hash(hash);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02009443 u_read_undo(eap->arg, hash, NULL);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009444}
9445#endif
9446
Bram Moolenaar071d4272004-06-13 20:20:40 +00009447/*
9448 * ":redo".
9449 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009450 static void
9451ex_redo(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009452 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009453{
9454 u_redo(1);
9455}
9456
9457/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009458 * ":earlier" and ":later".
9459 */
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009460 static void
9461ex_later(eap)
9462 exarg_T *eap;
9463{
9464 long count = 0;
9465 int sec = FALSE;
Bram Moolenaar730cde92010-06-27 05:18:54 +02009466 int file = FALSE;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009467 char_u *p = eap->arg;
9468
9469 if (*p == NUL)
9470 count = 1;
9471 else if (isdigit(*p))
9472 {
9473 count = getdigits(&p);
9474 switch (*p)
9475 {
9476 case 's': ++p; sec = TRUE; break;
9477 case 'm': ++p; sec = TRUE; count *= 60; break;
9478 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
Bram Moolenaar730cde92010-06-27 05:18:54 +02009479 case 'd': ++p; sec = TRUE; count *= 24 * 60 * 60; break;
9480 case 'f': ++p; file = TRUE; break;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009481 }
9482 }
9483
9484 if (*p != NUL)
9485 EMSG2(_(e_invarg2), eap->arg);
9486 else
Bram Moolenaar730cde92010-06-27 05:18:54 +02009487 undo_time(eap->cmdidx == CMD_earlier ? -count : count,
9488 sec, file, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009489}
9490
9491/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009492 * ":redir": start/stop redirection.
9493 */
9494 static void
9495ex_redir(eap)
9496 exarg_T *eap;
9497{
9498 char *mode;
9499 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00009500 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009501
9502 if (STRICMP(eap->arg, "END") == 0)
9503 close_redir();
9504 else
9505 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009506 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009507 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009508 ++arg;
9509 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009510 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009511 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009512 mode = "a";
9513 }
9514 else
9515 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00009516 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009517
9518 close_redir();
9519
9520 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00009521 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009522 if (fname == NULL)
9523 return;
9524#ifdef FEAT_BROWSE
9525 if (cmdmod.browse)
9526 {
9527 char_u *browseFile;
9528
Bram Moolenaar7171abe2004-10-11 10:06:20 +00009529 browseFile = do_browse(BROWSE_SAVE,
9530 (char_u *)_("Save Redirection"),
9531 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009532 if (browseFile == NULL)
9533 return; /* operation cancelled */
9534 vim_free(fname);
9535 fname = browseFile;
9536 eap->forceit = TRUE; /* since dialog already asked */
9537 }
9538#endif
9539
9540 redir_fd = open_exfile(fname, eap->forceit, mode);
9541 vim_free(fname);
9542 }
9543#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00009544 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009545 {
9546 /* redirect to a register a-z (resp. A-Z for appending) */
9547 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00009548 ++arg;
9549 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009550# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00009551 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00009552 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00009553# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00009554 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009555 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009556 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009557 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00009558 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009559 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009560 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00009561 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00009562 if (*arg == '>')
9563 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009564 /* Make register empty when not using @A-@Z and the
9565 * command is valid. */
9566 if (*arg == NUL && !isupper(redir_reg))
9567 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009568 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00009569 }
9570 if (*arg != NUL)
9571 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00009572 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00009573 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009574 }
9575 }
9576 else if (*arg == '=' && arg[1] == '>')
9577 {
9578 int append;
9579
9580 /* redirect to a variable */
9581 close_redir();
9582 arg += 2;
9583
9584 if (*arg == '>')
9585 {
9586 ++arg;
9587 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009588 }
9589 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00009590 append = FALSE;
9591
9592 if (var_redir_start(skipwhite(arg), append) == OK)
9593 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009594 }
9595#endif
9596
9597 /* TODO: redirect to a buffer */
9598
Bram Moolenaar071d4272004-06-13 20:20:40 +00009599 else
Bram Moolenaarca472992005-01-21 11:46:23 +00009600 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009601 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00009602
9603 /* Make sure redirection is not off. Can happen for cmdline completion
9604 * that indirectly invokes a command to catch its output. */
9605 if (redir_fd != NULL
9606#ifdef FEAT_EVAL
9607 || redir_reg || redir_vname
9608#endif
9609 )
9610 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009611}
9612
9613/*
9614 * ":redraw": force redraw
9615 */
9616 static void
9617ex_redraw(eap)
9618 exarg_T *eap;
9619{
9620 int r = RedrawingDisabled;
9621 int p = p_lz;
9622
9623 RedrawingDisabled = 0;
9624 p_lz = FALSE;
9625 update_topline();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009626 update_screen(eap->forceit ? CLEAR : VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009627#ifdef FEAT_TITLE
9628 if (need_maketitle)
9629 maketitle();
9630#endif
9631 RedrawingDisabled = r;
9632 p_lz = p;
9633
9634 /* Reset msg_didout, so that a message that's there is overwritten. */
9635 msg_didout = FALSE;
9636 msg_col = 0;
9637
Bram Moolenaar56667a52013-07-17 11:54:28 +02009638 /* No need to wait after an intentional redraw. */
9639 need_wait_return = FALSE;
9640
Bram Moolenaar071d4272004-06-13 20:20:40 +00009641 out_flush();
9642}
9643
9644/*
9645 * ":redrawstatus": force redraw of status line(s)
9646 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009647 static void
9648ex_redrawstatus(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009649 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009650{
9651#if defined(FEAT_WINDOWS)
9652 int r = RedrawingDisabled;
9653 int p = p_lz;
9654
9655 RedrawingDisabled = 0;
9656 p_lz = FALSE;
9657 if (eap->forceit)
9658 status_redraw_all();
9659 else
9660 status_redraw_curbuf();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009661 update_screen(VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009662 RedrawingDisabled = r;
9663 p_lz = p;
9664 out_flush();
9665#endif
9666}
9667
9668 static void
9669close_redir()
9670{
9671 if (redir_fd != NULL)
9672 {
9673 fclose(redir_fd);
9674 redir_fd = NULL;
9675 }
9676#ifdef FEAT_EVAL
9677 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009678 if (redir_vname)
9679 {
9680 var_redir_stop();
9681 redir_vname = 0;
9682 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009683#endif
9684}
9685
9686#if defined(FEAT_SESSION) && defined(USE_CRNL)
9687# define MKSESSION_NL
9688static int mksession_nl = FALSE; /* use NL only in put_eol() */
9689#endif
9690
9691/*
9692 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
9693 */
9694 static void
9695ex_mkrc(eap)
9696 exarg_T *eap;
9697{
9698 FILE *fd;
9699 int failed = FALSE;
9700 char_u *fname;
9701#ifdef FEAT_BROWSE
9702 char_u *browseFile = NULL;
9703#endif
9704#ifdef FEAT_SESSION
9705 int view_session = FALSE;
9706 int using_vdir = FALSE; /* using 'viewdir'? */
9707 char_u *viewFile = NULL;
9708 unsigned *flagp;
9709#endif
9710
9711 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
9712 {
9713#ifdef FEAT_SESSION
9714 view_session = TRUE;
9715#else
9716 ex_ni(eap);
9717 return;
9718#endif
9719 }
9720
9721#ifdef FEAT_SESSION
Bram Moolenaar8d594672009-07-01 18:18:57 +00009722 /* Use the short file name until ":lcd" is used. We also don't use the
9723 * short file name when 'acd' is set, that is checked later. */
Bram Moolenaareeefcc72007-05-01 21:21:21 +00009724 did_lcd = FALSE;
9725
Bram Moolenaar071d4272004-06-13 20:20:40 +00009726 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
9727 if (eap->cmdidx == CMD_mkview
9728 && (*eap->arg == NUL
9729 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
9730 {
9731 eap->forceit = TRUE;
9732 fname = get_view_file(*eap->arg);
9733 if (fname == NULL)
9734 return;
9735 viewFile = fname;
9736 using_vdir = TRUE;
9737 }
9738 else
9739#endif
9740 if (*eap->arg != NUL)
9741 fname = eap->arg;
9742 else if (eap->cmdidx == CMD_mkvimrc)
9743 fname = (char_u *)VIMRC_FILE;
9744#ifdef FEAT_SESSION
9745 else if (eap->cmdidx == CMD_mksession)
9746 fname = (char_u *)SESSION_FILE;
9747#endif
9748 else
9749 fname = (char_u *)EXRC_FILE;
9750
9751#ifdef FEAT_BROWSE
9752 if (cmdmod.browse)
9753 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00009754 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009755# ifdef FEAT_SESSION
9756 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
9757 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
9758# endif
9759 (char_u *)_("Save Setup"),
9760 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
9761 if (browseFile == NULL)
9762 goto theend;
9763 fname = browseFile;
9764 eap->forceit = TRUE; /* since dialog already asked */
9765 }
9766#endif
9767
9768#if defined(FEAT_SESSION) && defined(vim_mkdir)
9769 /* When using 'viewdir' may have to create the directory. */
9770 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00009771 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009772#endif
9773
9774 fd = open_exfile(fname, eap->forceit, WRITEBIN);
9775 if (fd != NULL)
9776 {
9777#ifdef FEAT_SESSION
9778 if (eap->cmdidx == CMD_mkview)
9779 flagp = &vop_flags;
9780 else
9781 flagp = &ssop_flags;
9782#endif
9783
9784#ifdef MKSESSION_NL
9785 /* "unix" in 'sessionoptions': use NL line separator */
9786 if (view_session && (*flagp & SSOP_UNIX))
9787 mksession_nl = TRUE;
9788#endif
9789
9790 /* Write the version command for :mkvimrc */
9791 if (eap->cmdidx == CMD_mkvimrc)
9792 (void)put_line(fd, "version 6.0");
9793
9794#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009795 if (eap->cmdidx == CMD_mksession)
9796 {
9797 if (put_line(fd, "let SessionLoad = 1") == FAIL)
9798 failed = TRUE;
9799 }
9800
Bram Moolenaar071d4272004-06-13 20:20:40 +00009801 if (eap->cmdidx != CMD_mkview)
9802#endif
9803 {
9804 /* Write setting 'compatible' first, because it has side effects.
9805 * For that same reason only do it when needed. */
9806 if (p_cp)
9807 (void)put_line(fd, "if !&cp | set cp | endif");
9808 else
9809 (void)put_line(fd, "if &cp | set nocp | endif");
9810 }
9811
9812#ifdef FEAT_SESSION
9813 if (!view_session
9814 || (eap->cmdidx == CMD_mksession
9815 && (*flagp & SSOP_OPTIONS)))
9816#endif
9817 failed |= (makemap(fd, NULL) == FAIL
9818 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
9819
9820#ifdef FEAT_SESSION
9821 if (!failed && view_session)
9822 {
9823 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
9824 failed = TRUE;
9825 if (eap->cmdidx == CMD_mksession)
9826 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02009827 char_u *dirnow; /* current directory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009828
Bram Moolenaard9462e32011-04-11 21:35:11 +02009829 dirnow = alloc(MAXPATHL);
9830 if (dirnow == NULL)
9831 failed = TRUE;
9832 else
9833 {
9834 /*
9835 * Change to session file's dir.
9836 */
9837 if (mch_dirname(dirnow, MAXPATHL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00009838 || mch_chdir((char *)dirnow) != 0)
Bram Moolenaard9462e32011-04-11 21:35:11 +02009839 *dirnow = NUL;
9840 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
9841 {
9842 if (vim_chdirfile(fname) == OK)
9843 shorten_fnames(TRUE);
9844 }
9845 else if (*dirnow != NUL
9846 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
9847 {
9848 if (mch_chdir((char *)globaldir) == 0)
9849 shorten_fnames(TRUE);
9850 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009851
Bram Moolenaard9462e32011-04-11 21:35:11 +02009852 failed |= (makeopens(fd, dirnow) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009853
Bram Moolenaard9462e32011-04-11 21:35:11 +02009854 /* restore original dir */
9855 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009856 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
Bram Moolenaard9462e32011-04-11 21:35:11 +02009857 {
9858 if (mch_chdir((char *)dirnow) != 0)
9859 EMSG(_(e_prev_dir));
9860 shorten_fnames(TRUE);
9861 }
9862 vim_free(dirnow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009863 }
9864 }
9865 else
9866 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009867 failed |= (put_view(fd, curwin, !using_vdir, flagp,
9868 -1) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009869 }
9870 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
9871 == FAIL)
9872 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009873 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
9874 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00009875 if (eap->cmdidx == CMD_mksession)
9876 {
9877 if (put_line(fd, "unlet SessionLoad") == FAIL)
9878 failed = TRUE;
9879 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009880 }
9881#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009882 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
9883 failed = TRUE;
9884
Bram Moolenaar071d4272004-06-13 20:20:40 +00009885 failed |= fclose(fd);
9886
9887 if (failed)
9888 EMSG(_(e_write));
9889#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
9890 else if (eap->cmdidx == CMD_mksession)
9891 {
9892 /* successful session write - set this_session var */
Bram Moolenaard9462e32011-04-11 21:35:11 +02009893 char_u *tbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009894
Bram Moolenaard9462e32011-04-11 21:35:11 +02009895 tbuf = alloc(MAXPATHL);
9896 if (tbuf != NULL)
9897 {
9898 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
9899 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
9900 vim_free(tbuf);
9901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009902 }
9903#endif
9904#ifdef MKSESSION_NL
9905 mksession_nl = FALSE;
9906#endif
9907 }
9908
9909#ifdef FEAT_BROWSE
9910theend:
9911 vim_free(browseFile);
9912#endif
9913#ifdef FEAT_SESSION
9914 vim_free(viewFile);
9915#endif
9916}
9917
Bram Moolenaardf177f62005-02-22 08:39:57 +00009918#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
9919 || defined(PROTO)
9920 int
9921vim_mkdir_emsg(name, prot)
9922 char_u *name;
Bram Moolenaar78a15312009-05-15 19:33:18 +00009923 int prot UNUSED;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009924{
9925 if (vim_mkdir(name, prot) != 0)
9926 {
9927 EMSG2(_("E739: Cannot create directory: %s"), name);
9928 return FAIL;
9929 }
9930 return OK;
9931}
9932#endif
9933
Bram Moolenaar071d4272004-06-13 20:20:40 +00009934/*
9935 * Open a file for writing for an Ex command, with some checks.
9936 * Return file descriptor, or NULL on failure.
9937 */
9938 FILE *
9939open_exfile(fname, forceit, mode)
9940 char_u *fname;
9941 int forceit;
9942 char *mode; /* "w" for create new file or "a" for append */
9943{
9944 FILE *fd;
9945
9946#ifdef UNIX
9947 /* with Unix it is possible to open a directory */
9948 if (mch_isdir(fname))
9949 {
9950 EMSG2(_(e_isadir2), fname);
9951 return NULL;
9952 }
9953#endif
9954 if (!forceit && *mode != 'a' && vim_fexists(fname))
9955 {
9956 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
9957 return NULL;
9958 }
9959
9960 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
9961 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
9962
9963 return fd;
9964}
9965
9966/*
9967 * ":mark" and ":k".
9968 */
9969 static void
9970ex_mark(eap)
9971 exarg_T *eap;
9972{
9973 pos_T pos;
9974
9975 if (*eap->arg == NUL) /* No argument? */
9976 EMSG(_(e_argreq));
9977 else if (eap->arg[1] != NUL) /* more than one character? */
9978 EMSG(_(e_trailing));
9979 else
9980 {
9981 pos = curwin->w_cursor; /* save curwin->w_cursor */
9982 curwin->w_cursor.lnum = eap->line2;
9983 beginline(BL_WHITE | BL_FIX);
9984 if (setmark(*eap->arg) == FAIL) /* set mark */
9985 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
9986 curwin->w_cursor = pos; /* restore curwin->w_cursor */
9987 }
9988}
9989
9990/*
9991 * Update w_topline, w_leftcol and the cursor position.
9992 */
9993 void
9994update_topline_cursor()
9995{
9996 check_cursor(); /* put cursor on valid line */
9997 update_topline();
9998 if (!curwin->w_p_wrap)
9999 validate_cursor();
10000 update_curswant();
10001}
10002
10003#ifdef FEAT_EX_EXTRA
10004/*
10005 * ":normal[!] {commands}": Execute normal mode commands.
10006 */
10007 static void
10008ex_normal(eap)
10009 exarg_T *eap;
10010{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010011 int save_msg_scroll = msg_scroll;
10012 int save_restart_edit = restart_edit;
10013 int save_msg_didout = msg_didout;
10014 int save_State = State;
10015 tasave_T tabuf;
10016 int save_insertmode = p_im;
10017 int save_finish_op = finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +000010018 int save_opcount = opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010019#ifdef FEAT_MBYTE
10020 char_u *arg = NULL;
10021 int l;
10022 char_u *p;
10023#endif
10024
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000010025 if (ex_normal_lock > 0)
10026 {
10027 EMSG(_(e_secure));
10028 return;
10029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010030 if (ex_normal_busy >= p_mmd)
10031 {
10032 EMSG(_("E192: Recursive use of :normal too deep"));
10033 return;
10034 }
10035 ++ex_normal_busy;
10036
10037 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
10038 restart_edit = 0; /* don't go to Insert mode */
10039 p_im = FALSE; /* don't use 'insertmode' */
10040
10041#ifdef FEAT_MBYTE
10042 /*
10043 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
10044 * this for the K_SPECIAL leading byte, otherwise special keys will not
10045 * work.
10046 */
10047 if (has_mbyte)
10048 {
10049 int len = 0;
10050
10051 /* Count the number of characters to be escaped. */
10052 for (p = eap->arg; *p != NUL; ++p)
10053 {
10054# ifdef FEAT_GUI
10055 if (*p == CSI) /* leadbyte CSI */
10056 len += 2;
10057# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010058 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010059 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
10060# ifdef FEAT_GUI
10061 || *p == CSI
10062# endif
10063 )
10064 len += 2;
10065 }
10066 if (len > 0)
10067 {
10068 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
10069 if (arg != NULL)
10070 {
10071 len = 0;
10072 for (p = eap->arg; *p != NUL; ++p)
10073 {
10074 arg[len++] = *p;
10075# ifdef FEAT_GUI
10076 if (*p == CSI)
10077 {
10078 arg[len++] = KS_EXTRA;
10079 arg[len++] = (int)KE_CSI;
10080 }
10081# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010082 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010083 {
10084 arg[len++] = *++p;
10085 if (*p == K_SPECIAL)
10086 {
10087 arg[len++] = KS_SPECIAL;
10088 arg[len++] = KE_FILLER;
10089 }
10090# ifdef FEAT_GUI
10091 else if (*p == CSI)
10092 {
10093 arg[len++] = KS_EXTRA;
10094 arg[len++] = (int)KE_CSI;
10095 }
10096# endif
10097 }
10098 arg[len] = NUL;
10099 }
10100 }
10101 }
10102 }
10103#endif
10104
10105 /*
10106 * Save the current typeahead. This is required to allow using ":normal"
10107 * from an event handler and makes sure we don't hang when the argument
10108 * ends with half a command.
10109 */
10110 save_typeahead(&tabuf);
10111 if (tabuf.typebuf_valid)
10112 {
10113 /*
10114 * Repeat the :normal command for each line in the range. When no
10115 * range given, execute it just once, without positioning the cursor
10116 * first.
10117 */
10118 do
10119 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010120 if (eap->addr_count != 0)
10121 {
10122 curwin->w_cursor.lnum = eap->line1++;
10123 curwin->w_cursor.col = 0;
10124 }
10125
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010126 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +000010127#ifdef FEAT_MBYTE
10128 arg != NULL ? arg :
10129#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010130 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010131 }
10132 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
10133 }
10134
10135 /* Might not return to the main loop when in an event handler. */
10136 update_topline_cursor();
10137
10138 /* Restore the previous typeahead. */
10139 restore_typeahead(&tabuf);
10140
10141 --ex_normal_busy;
10142 msg_scroll = save_msg_scroll;
10143 restart_edit = save_restart_edit;
10144 p_im = save_insertmode;
10145 finish_op = save_finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +000010146 opcount = save_opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010147 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
10148
10149 /* Restore the state (needed when called from a function executed for
Bram Moolenaareda73602014-11-05 09:53:23 +010010150 * 'indentexpr'). Update the mouse and cursor, they may have changed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010151 State = save_State;
Bram Moolenaareda73602014-11-05 09:53:23 +010010152#ifdef FEAT_MOUSE
10153 setmouse();
10154#endif
10155#ifdef CURSOR_SHAPE
10156 ui_cursor_shape(); /* may show different cursor shape */
10157#endif
10158
Bram Moolenaar071d4272004-06-13 20:20:40 +000010159#ifdef FEAT_MBYTE
10160 vim_free(arg);
10161#endif
10162}
10163
10164/*
Bram Moolenaar64969662005-12-14 21:59:55 +000010165 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010166 */
10167 static void
10168ex_startinsert(eap)
10169 exarg_T *eap;
10170{
Bram Moolenaarfd371682005-01-14 21:42:54 +000010171 if (eap->forceit)
10172 {
10173 coladvance((colnr_T)MAXCOL);
10174 curwin->w_curswant = MAXCOL;
10175 curwin->w_set_curswant = FALSE;
10176 }
10177
Bram Moolenaara40c5002005-01-09 21:16:21 +000010178 /* Ignore the command when already in Insert mode. Inserting an
10179 * expression register that invokes a function can do this. */
10180 if (State & INSERT)
10181 return;
10182
Bram Moolenaar64969662005-12-14 21:59:55 +000010183 if (eap->cmdidx == CMD_startinsert)
10184 restart_edit = 'a';
10185 else if (eap->cmdidx == CMD_startreplace)
10186 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010187 else
Bram Moolenaar64969662005-12-14 21:59:55 +000010188 restart_edit = 'V';
10189
10190 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010191 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +000010192 if (eap->cmdidx == CMD_startinsert)
10193 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010194 curwin->w_curswant = 0; /* avoid MAXCOL */
10195 }
10196}
10197
10198/*
10199 * ":stopinsert"
10200 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010201 static void
10202ex_stopinsert(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010203 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010204{
10205 restart_edit = 0;
10206 stop_insert_mode = TRUE;
10207}
10208#endif
10209
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010210#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
10211/*
10212 * Execute normal mode command "cmd".
10213 * "remap" can be REMAP_NONE or REMAP_YES.
10214 */
10215 void
10216exec_normal_cmd(cmd, remap, silent)
10217 char_u *cmd;
10218 int remap;
10219 int silent;
10220{
10221 oparg_T oa;
10222
10223 /*
10224 * Stuff the argument into the typeahead buffer.
10225 * Execute normal_cmd() until there is no typeahead left.
10226 */
10227 clear_oparg(&oa);
10228 finish_op = FALSE;
10229 ins_typebuf(cmd, remap, 0, TRUE, silent);
10230 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
10231 && !got_int)
10232 {
10233 update_topline_cursor();
Bram Moolenaar48ac02c2011-01-17 19:50:06 +010010234 normal_cmd(&oa, TRUE); /* execute a Normal mode cmd */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010235 }
10236}
10237#endif
10238
Bram Moolenaar071d4272004-06-13 20:20:40 +000010239#ifdef FEAT_FIND_ID
10240 static void
10241ex_checkpath(eap)
10242 exarg_T *eap;
10243{
10244 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
10245 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
10246 (linenr_T)1, (linenr_T)MAXLNUM);
10247}
10248
10249#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
10250/*
10251 * ":psearch"
10252 */
10253 static void
10254ex_psearch(eap)
10255 exarg_T *eap;
10256{
10257 g_do_tagpreview = p_pvh;
10258 ex_findpat(eap);
10259 g_do_tagpreview = 0;
10260}
10261#endif
10262
10263 static void
10264ex_findpat(eap)
10265 exarg_T *eap;
10266{
10267 int whole = TRUE;
10268 long n;
10269 char_u *p;
10270 int action;
10271
10272 switch (cmdnames[eap->cmdidx].cmd_name[2])
10273 {
10274 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
10275 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
10276 action = ACTION_GOTO;
10277 else
10278 action = ACTION_SHOW;
10279 break;
10280 case 'i': /* ":ilist" and ":dlist" */
10281 action = ACTION_SHOW_ALL;
10282 break;
10283 case 'u': /* ":ijump" and ":djump" */
10284 action = ACTION_GOTO;
10285 break;
10286 default: /* ":isplit" and ":dsplit" */
10287 action = ACTION_SPLIT;
10288 break;
10289 }
10290
10291 n = 1;
10292 if (vim_isdigit(*eap->arg)) /* get count */
10293 {
10294 n = getdigits(&eap->arg);
10295 eap->arg = skipwhite(eap->arg);
10296 }
10297 if (*eap->arg == '/') /* Match regexp, not just whole words */
10298 {
10299 whole = FALSE;
10300 ++eap->arg;
10301 p = skip_regexp(eap->arg, '/', p_magic, NULL);
10302 if (*p)
10303 {
10304 *p++ = NUL;
10305 p = skipwhite(p);
10306
10307 /* Check for trailing illegal characters */
10308 if (!ends_excmd(*p))
10309 eap->errmsg = e_trailing;
10310 else
10311 eap->nextcmd = check_nextcmd(p);
10312 }
10313 }
10314 if (!eap->skip)
10315 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
10316 whole, !eap->forceit,
10317 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
10318 n, action, eap->line1, eap->line2);
10319}
10320#endif
10321
10322#ifdef FEAT_WINDOWS
10323
10324# ifdef FEAT_QUICKFIX
10325/*
10326 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
10327 */
10328 static void
10329ex_ptag(eap)
10330 exarg_T *eap;
10331{
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +010010332 g_do_tagpreview = p_pvh; /* will be reset to 0 in ex_tag_cmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010333 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
10334}
10335
10336/*
10337 * ":pedit"
10338 */
10339 static void
10340ex_pedit(eap)
10341 exarg_T *eap;
10342{
10343 win_T *curwin_save = curwin;
10344
10345 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +000010346 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010347 keep_help_flag = curwin_save->w_buffer->b_help;
10348 do_exedit(eap, NULL);
10349 keep_help_flag = FALSE;
10350 if (curwin != curwin_save && win_valid(curwin_save))
10351 {
10352 /* Return cursor to where we were */
10353 validate_cursor();
10354 redraw_later(VALID);
10355 win_enter(curwin_save, TRUE);
10356 }
10357 g_do_tagpreview = 0;
10358}
10359# endif
10360
10361/*
10362 * ":stag", ":stselect" and ":stjump".
10363 */
10364 static void
10365ex_stag(eap)
10366 exarg_T *eap;
10367{
10368 postponed_split = -1;
10369 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +000010370 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010371 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
10372 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +000010373 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010374}
10375#endif
10376
10377/*
10378 * ":tag", ":tselect", ":tjump", ":tnext", etc.
10379 */
10380 static void
10381ex_tag(eap)
10382 exarg_T *eap;
10383{
10384 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
10385}
10386
10387 static void
10388ex_tag_cmd(eap, name)
10389 exarg_T *eap;
10390 char_u *name;
10391{
10392 int cmd;
10393
10394 switch (name[1])
10395 {
10396 case 'j': cmd = DT_JUMP; /* ":tjump" */
10397 break;
10398 case 's': cmd = DT_SELECT; /* ":tselect" */
10399 break;
10400 case 'p': cmd = DT_PREV; /* ":tprevious" */
10401 break;
10402 case 'N': cmd = DT_PREV; /* ":tNext" */
10403 break;
10404 case 'n': cmd = DT_NEXT; /* ":tnext" */
10405 break;
10406 case 'o': cmd = DT_POP; /* ":pop" */
10407 break;
10408 case 'f': /* ":tfirst" */
10409 case 'r': cmd = DT_FIRST; /* ":trewind" */
10410 break;
10411 case 'l': cmd = DT_LAST; /* ":tlast" */
10412 break;
10413 default: /* ":tag" */
10414#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +000010415 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010416 {
10417 do_cstag(eap);
10418 return;
10419 }
10420#endif
10421 cmd = DT_TAG;
10422 break;
10423 }
10424
Bram Moolenaarb8a7b562006-02-01 21:47:16 +000010425 if (name[0] == 'l')
10426 {
10427#ifndef FEAT_QUICKFIX
10428 ex_ni(eap);
10429 return;
10430#else
10431 cmd = DT_LTAG;
10432#endif
10433 }
10434
Bram Moolenaar071d4272004-06-13 20:20:40 +000010435 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
10436 eap->forceit, TRUE);
10437}
10438
10439/*
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010440 * Check "str" for starting with a special cmdline variable.
10441 * If found return one of the SPEC_ values and set "*usedlen" to the length of
10442 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
10443 */
10444 int
10445find_cmdline_var(src, usedlen)
10446 char_u *src;
10447 int *usedlen;
10448{
10449 int len;
10450 int i;
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +000010451 static char *(spec_str[]) = {
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010452 "%",
10453#define SPEC_PERC 0
10454 "#",
10455#define SPEC_HASH 1
10456 "<cword>", /* cursor word */
10457#define SPEC_CWORD 2
10458 "<cWORD>", /* cursor WORD */
10459#define SPEC_CCWORD 3
10460 "<cfile>", /* cursor path name */
10461#define SPEC_CFILE 4
10462 "<sfile>", /* ":so" file name */
10463#define SPEC_SFILE 5
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010464 "<slnum>", /* ":so" file line number */
10465#define SPEC_SLNUM 6
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010466#ifdef FEAT_AUTOCMD
10467 "<afile>", /* autocommand file name */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010468# define SPEC_AFILE 7
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010469 "<abuf>", /* autocommand buffer number */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010470# define SPEC_ABUF 8
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010471 "<amatch>", /* autocommand match name */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010472# define SPEC_AMATCH 9
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010473#endif
10474#ifdef FEAT_CLIENTSERVER
10475 "<client>"
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010476# ifdef FEAT_AUTOCMD
10477# define SPEC_CLIENT 10
10478# else
10479# define SPEC_CLIENT 7
10480# endif
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010481#endif
10482 };
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010483
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000010484 for (i = 0; i < (int)(sizeof(spec_str) / sizeof(char *)); ++i)
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010485 {
10486 len = (int)STRLEN(spec_str[i]);
10487 if (STRNCMP(src, spec_str[i], len) == 0)
10488 {
10489 *usedlen = len;
10490 return i;
10491 }
10492 }
10493 return -1;
10494}
10495
10496/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010497 * Evaluate cmdline variables.
10498 *
10499 * change '%' to curbuf->b_ffname
10500 * '#' to curwin->w_altfile
10501 * '<cword>' to word under the cursor
10502 * '<cWORD>' to WORD under the cursor
10503 * '<cfile>' to path name under the cursor
10504 * '<sfile>' to sourced file name
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010505 * '<slnum>' to sourced file line number
Bram Moolenaar071d4272004-06-13 20:20:40 +000010506 * '<afile>' to file name for autocommand
10507 * '<abuf>' to buffer number for autocommand
10508 * '<amatch>' to matching name for autocommand
10509 *
10510 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
10511 * "" for error without a message) and NULL is returned.
10512 * Returns an allocated string if a valid match was found.
10513 * Returns NULL if no match was found. "usedlen" then still contains the
10514 * number of characters to skip.
10515 */
10516 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +000010517eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010518 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010519 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010520 int *usedlen; /* characters after src that are used */
10521 linenr_T *lnump; /* line number for :e command, or NULL */
10522 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010523 int *escaped; /* return value has escaped white space (can
10524 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010525{
10526 int i;
10527 char_u *s;
10528 char_u *result;
10529 char_u *resultbuf = NULL;
10530 int resultlen;
10531 buf_T *buf;
10532 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
10533 int spec_idx;
10534#ifdef FEAT_MODIFY_FNAME
10535 int skip_mod = FALSE;
10536#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010537 char_u strbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +000010538
10539 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +000010540 if (escaped != NULL)
10541 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010542
10543 /*
10544 * Check if there is something to do.
10545 */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010546 spec_idx = find_cmdline_var(src, usedlen);
10547 if (spec_idx < 0) /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010548 {
10549 *usedlen = 1;
10550 return NULL;
10551 }
10552
10553 /*
10554 * Skip when preceded with a backslash "\%" and "\#".
10555 * Note: In "\\%" the % is also not recognized!
10556 */
10557 if (src > srcstart && src[-1] == '\\')
10558 {
10559 *usedlen = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +000010560 STRMOVE(src - 1, src); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010561 return NULL;
10562 }
10563
10564 /*
10565 * word or WORD under cursor
10566 */
10567 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
10568 {
10569 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
10570 (FIND_IDENT|FIND_STRING) : FIND_STRING);
10571 if (resultlen == 0)
10572 {
10573 *errormsg = (char_u *)"";
10574 return NULL;
10575 }
10576 }
10577
10578 /*
10579 * '#': Alternate file name
10580 * '%': Current file name
10581 * File name under the cursor
10582 * File name for autocommand
10583 * and following modifiers
10584 */
10585 else
10586 {
10587 switch (spec_idx)
10588 {
10589 case SPEC_PERC: /* '%': current file */
10590 if (curbuf->b_fname == NULL)
10591 {
10592 result = (char_u *)"";
10593 valid = 0; /* Must have ":p:h" to be valid */
10594 }
10595 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010596 result = curbuf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010597 break;
10598
10599 case SPEC_HASH: /* '#' or "#99": alternate file */
10600 if (src[1] == '#') /* "##": the argument list */
10601 {
10602 result = arg_all();
10603 resultbuf = result;
10604 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +000010605 if (escaped != NULL)
10606 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010607#ifdef FEAT_MODIFY_FNAME
10608 skip_mod = TRUE;
10609#endif
10610 break;
10611 }
10612 s = src + 1;
Bram Moolenaard812df62008-11-09 12:46:09 +000010613 if (*s == '<') /* "#<99" uses v:oldfiles */
10614 ++s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010615 i = (int)getdigits(&s);
10616 *usedlen = (int)(s - src); /* length of what we expand */
10617
Bram Moolenaard812df62008-11-09 12:46:09 +000010618 if (src[1] == '<')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010619 {
Bram Moolenaard812df62008-11-09 12:46:09 +000010620 if (*usedlen < 2)
10621 {
10622 /* Should we give an error message for #<text? */
10623 *usedlen = 1;
10624 return NULL;
10625 }
10626#ifdef FEAT_EVAL
10627 result = list_find_str(get_vim_var_list(VV_OLDFILES),
10628 (long)i);
10629 if (result == NULL)
10630 {
10631 *errormsg = (char_u *)"";
10632 return NULL;
10633 }
10634#else
10635 *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
Bram Moolenaar071d4272004-06-13 20:20:40 +000010636 return NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +000010637#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010638 }
10639 else
Bram Moolenaard812df62008-11-09 12:46:09 +000010640 {
10641 buf = buflist_findnr(i);
10642 if (buf == NULL)
10643 {
10644 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
10645 return NULL;
10646 }
10647 if (lnump != NULL)
10648 *lnump = ECMD_LAST;
10649 if (buf->b_fname == NULL)
10650 {
10651 result = (char_u *)"";
10652 valid = 0; /* Must have ":p:h" to be valid */
10653 }
10654 else
10655 result = buf->b_fname;
10656 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010657 break;
10658
10659#ifdef FEAT_SEARCHPATH
10660 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +000010661 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010662 if (result == NULL)
10663 {
10664 *errormsg = (char_u *)"";
10665 return NULL;
10666 }
10667 resultbuf = result; /* remember allocated string */
10668 break;
10669#endif
10670
10671#ifdef FEAT_AUTOCMD
10672 case SPEC_AFILE: /* file name for autocommand */
10673 result = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +000010674 if (result != NULL && !autocmd_fname_full)
10675 {
10676 /* Still need to turn the fname into a full path. It is
10677 * postponed to avoid a delay when <afile> is not used. */
10678 autocmd_fname_full = TRUE;
10679 result = FullName_save(autocmd_fname, FALSE);
10680 vim_free(autocmd_fname);
10681 autocmd_fname = result;
10682 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010683 if (result == NULL)
10684 {
10685 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
10686 return NULL;
10687 }
Bram Moolenaara0174af2008-01-02 20:08:25 +000010688 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010689 break;
10690
10691 case SPEC_ABUF: /* buffer number for autocommand */
10692 if (autocmd_bufnr <= 0)
10693 {
10694 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
10695 return NULL;
10696 }
10697 sprintf((char *)strbuf, "%d", autocmd_bufnr);
10698 result = strbuf;
10699 break;
10700
10701 case SPEC_AMATCH: /* match name for autocommand */
10702 result = autocmd_match;
10703 if (result == NULL)
10704 {
10705 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
10706 return NULL;
10707 }
10708 break;
10709
10710#endif
10711 case SPEC_SFILE: /* file name for ":so" command */
10712 result = sourcing_name;
10713 if (result == NULL)
10714 {
10715 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
10716 return NULL;
10717 }
10718 break;
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010719 case SPEC_SLNUM: /* line in file for ":so" command */
10720 if (sourcing_name == NULL || sourcing_lnum == 0)
10721 {
10722 *errormsg = (char_u *)_("E842: no line number to use for \"<slnum>\"");
10723 return NULL;
10724 }
10725 sprintf((char *)strbuf, "%ld", (long)sourcing_lnum);
10726 result = strbuf;
10727 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010728#if defined(FEAT_CLIENTSERVER)
10729 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000010730 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
10731 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010732 result = strbuf;
10733 break;
10734#endif
10735 }
10736
10737 resultlen = (int)STRLEN(result); /* length of new string */
10738 if (src[*usedlen] == '<') /* remove the file name extension */
10739 {
10740 ++*usedlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010741 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010742 resultlen = (int)(s - result);
10743 }
10744#ifdef FEAT_MODIFY_FNAME
10745 else if (!skip_mod)
10746 {
10747 valid |= modify_fname(src, usedlen, &result, &resultbuf,
10748 &resultlen);
10749 if (result == NULL)
10750 {
10751 *errormsg = (char_u *)"";
10752 return NULL;
10753 }
10754 }
10755#endif
10756 }
10757
10758 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
10759 {
10760 if (valid != VALID_HEAD + VALID_PATH)
10761 /* xgettext:no-c-format */
10762 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
10763 else
10764 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
10765 result = NULL;
10766 }
10767 else
10768 result = vim_strnsave(result, resultlen);
10769 vim_free(resultbuf);
10770 return result;
10771}
10772
10773/*
10774 * Concatenate all files in the argument list, separated by spaces, and return
10775 * it in one allocated string.
10776 * Spaces and backslashes in the file names are escaped with a backslash.
10777 * Returns NULL when out of memory.
10778 */
10779 static char_u *
10780arg_all()
10781{
10782 int len;
10783 int idx;
10784 char_u *retval = NULL;
10785 char_u *p;
10786
10787 /*
10788 * Do this loop two times:
10789 * first time: compute the total length
10790 * second time: concatenate the names
10791 */
10792 for (;;)
10793 {
10794 len = 0;
10795 for (idx = 0; idx < ARGCOUNT; ++idx)
10796 {
10797 p = alist_name(&ARGLIST[idx]);
10798 if (p != NULL)
10799 {
10800 if (len > 0)
10801 {
10802 /* insert a space in between names */
10803 if (retval != NULL)
10804 retval[len] = ' ';
10805 ++len;
10806 }
10807 for ( ; *p != NUL; ++p)
10808 {
Bram Moolenaar6e8d3b02015-06-09 21:33:31 +020010809 if (*p == ' '
10810#ifndef BACKSLASH_IN_FILENAME
10811 || *p == '\\'
10812#endif
10813 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010814 {
10815 /* insert a backslash */
10816 if (retval != NULL)
10817 retval[len] = '\\';
10818 ++len;
10819 }
10820 if (retval != NULL)
10821 retval[len] = *p;
10822 ++len;
10823 }
10824 }
10825 }
10826
10827 /* second time: break here */
10828 if (retval != NULL)
10829 {
10830 retval[len] = NUL;
10831 break;
10832 }
10833
10834 /* allocate memory */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000010835 retval = alloc((unsigned)len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010836 if (retval == NULL)
10837 break;
10838 }
10839
10840 return retval;
10841}
10842
10843#if defined(FEAT_AUTOCMD) || defined(PROTO)
10844/*
10845 * Expand the <sfile> string in "arg".
10846 *
10847 * Returns an allocated string, or NULL for any error.
10848 */
10849 char_u *
10850expand_sfile(arg)
10851 char_u *arg;
10852{
10853 char_u *errormsg;
10854 int len;
10855 char_u *result;
10856 char_u *newres;
10857 char_u *repl;
10858 int srclen;
10859 char_u *p;
10860
10861 result = vim_strsave(arg);
10862 if (result == NULL)
10863 return NULL;
10864
10865 for (p = result; *p; )
10866 {
10867 if (STRNCMP(p, "<sfile>", 7) != 0)
10868 ++p;
10869 else
10870 {
10871 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010872 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010873 if (errormsg != NULL)
10874 {
10875 if (*errormsg)
10876 emsg(errormsg);
10877 vim_free(result);
10878 return NULL;
10879 }
10880 if (repl == NULL) /* no match (cannot happen) */
10881 {
10882 p += srclen;
10883 continue;
10884 }
10885 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
10886 newres = alloc(len);
10887 if (newres == NULL)
10888 {
10889 vim_free(repl);
10890 vim_free(result);
10891 return NULL;
10892 }
10893 mch_memmove(newres, result, (size_t)(p - result));
10894 STRCPY(newres + (p - result), repl);
10895 len = (int)STRLEN(newres);
10896 STRCAT(newres, p + srclen);
10897 vim_free(repl);
10898 vim_free(result);
10899 result = newres;
10900 p = newres + len; /* continue after the match */
10901 }
10902 }
10903
10904 return result;
10905}
10906#endif
10907
10908#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010909static int ses_winsizes __ARGS((FILE *fd, int restore_size,
10910 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010911static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
10912static frame_T *ses_skipframe __ARGS((frame_T *fr));
10913static int ses_do_frame __ARGS((frame_T *fr));
10914static int ses_do_win __ARGS((win_T *wp));
10915static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
10916static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
10917static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
10918
10919/*
10920 * Write openfile commands for the current buffers to an .exrc file.
10921 * Return FAIL on error, OK otherwise.
10922 */
10923 static int
10924makeopens(fd, dirnow)
10925 FILE *fd;
10926 char_u *dirnow; /* Current directory name */
10927{
10928 buf_T *buf;
10929 int only_save_windows = TRUE;
10930 int nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010931 int restore_size = TRUE;
10932 win_T *wp;
10933 char_u *sname;
10934 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000010935 int tabnr;
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020010936 int restore_stal = FALSE;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010937 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010938 frame_T *tab_topframe;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010939 int cur_arg_idx = 0;
Bram Moolenaar383c6f52008-01-04 15:01:07 +000010940 int next_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010941
10942 if (ssop_flags & SSOP_BUFFERS)
10943 only_save_windows = FALSE; /* Save ALL buffers */
10944
10945 /*
10946 * Begin by setting the this_session variable, and then other
10947 * sessionable variables.
10948 */
10949#ifdef FEAT_EVAL
10950 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
10951 return FAIL;
10952 if (ssop_flags & SSOP_GLOBALS)
10953 if (store_session_globals(fd) == FAIL)
10954 return FAIL;
10955#endif
10956
10957 /*
10958 * Close all windows but one.
10959 */
10960 if (put_line(fd, "silent only") == FAIL)
10961 return FAIL;
10962
10963 /*
10964 * Now a :cd command to the session directory or the current directory
10965 */
10966 if (ssop_flags & SSOP_SESDIR)
10967 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010968 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
10969 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010970 return FAIL;
10971 }
10972 else if (ssop_flags & SSOP_CURDIR)
10973 {
10974 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
10975 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010976 || fputs("cd ", fd) < 0
10977 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
10978 || put_eol(fd) == FAIL)
10979 {
10980 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010981 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010983 vim_free(sname);
10984 }
10985
10986 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010987 * If there is an empty, unnamed buffer we will wipe it out later.
10988 * Remember the buffer number.
10989 */
10990 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
10991 return FAIL;
10992 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
10993 return FAIL;
10994 if (put_line(fd, "endif") == FAIL)
10995 return FAIL;
10996
10997 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010998 * Now save the current files, current buffer first.
10999 */
11000 if (put_line(fd, "set shortmess=aoO") == FAIL)
11001 return FAIL;
11002
11003 /* Now put the other buffers into the buffer list */
11004 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
11005 {
11006 if (!(only_save_windows && buf->b_nwindows == 0)
11007 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
11008 && buf->b_fname != NULL
11009 && buf->b_p_bl)
11010 {
11011 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
11012 : buf->b_wininfo->wi_fpos.lnum) < 0
11013 || ses_fname(fd, buf, &ssop_flags) == FAIL)
11014 return FAIL;
11015 }
11016 }
11017
11018 /* the global argument list */
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011019 if (ses_arglist(fd, "argglobal", &global_alist.al_ga,
Bram Moolenaar071d4272004-06-13 20:20:40 +000011020 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
11021 return FAIL;
11022
11023 if (ssop_flags & SSOP_RESIZE)
11024 {
11025 /* Note: after the restore we still check it worked!*/
11026 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
11027 || put_eol(fd) == FAIL)
11028 return FAIL;
11029 }
11030
11031#ifdef FEAT_GUI
11032 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
11033 {
11034 int x, y;
11035
11036 if (gui_mch_get_winpos(&x, &y) == OK)
11037 {
11038 /* Note: after the restore we still check it worked!*/
11039 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
11040 return FAIL;
11041 }
11042 }
11043#endif
11044
11045 /*
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020011046 * When there are two or more tabpages and 'showtabline' is 1 the tabline
11047 * will be displayed when creating the next tab. That resizes the windows
11048 * in the first tab, which may cause problems. Set 'showtabline' to 2
11049 * temporarily to avoid that.
11050 */
11051 if (p_stal == 1 && first_tabpage->tp_next != NULL)
11052 {
11053 if (put_line(fd, "set stal=2") == FAIL)
11054 return FAIL;
11055 restore_stal = TRUE;
11056 }
11057
11058 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000011059 * May repeat putting Windows for each tab, when "tabpages" is in
11060 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011061 * Don't use goto_tabpage(), it may change directory and trigger
11062 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011063 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011064 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011065 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011066 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011067 {
Bram Moolenaar695baee2015-04-13 12:39:22 +020011068 int need_tabnew = FALSE;
11069 int cnr = 1;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011070
Bram Moolenaar18144c82006-04-12 21:52:12 +000011071 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +000011072 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011073 tabpage_T *tp = find_tabpage(tabnr);
11074
11075 if (tp == NULL)
11076 break; /* done all tab pages */
11077 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011078 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011079 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011080 tab_topframe = topframe;
11081 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011082 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011083 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011084 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011085 tab_topframe = tp->tp_topframe;
11086 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011087 if (tabnr > 1)
11088 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011089 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011090
Bram Moolenaar18144c82006-04-12 21:52:12 +000011091 /*
11092 * Before creating the window layout, try loading one file. If this
11093 * is aborted we don't end up with a number of useless windows.
11094 * This may have side effects! (e.g., compressed or network file).
11095 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011096 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011097 {
11098 if (ses_do_win(wp)
11099 && wp->w_buffer->b_ffname != NULL
11100 && !wp->w_buffer->b_help
11101#ifdef FEAT_QUICKFIX
11102 && !bt_nofile(wp->w_buffer)
11103#endif
11104 )
11105 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011106 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +000011107 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
11108 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011109 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011110 if (!wp->w_arg_idx_invalid)
11111 edited_win = wp;
11112 break;
11113 }
11114 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011115
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011116 /* If no file got edited create an empty tab page. */
11117 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
11118 return FAIL;
11119
Bram Moolenaar18144c82006-04-12 21:52:12 +000011120 /*
11121 * Save current window layout.
11122 */
11123 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011124 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011125 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011126 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011127 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
11128 return FAIL;
11129 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
11130 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011131
Bram Moolenaar18144c82006-04-12 21:52:12 +000011132 /*
11133 * Check if window sizes can be restored (no windows omitted).
11134 * Remember the window number of the current window after restoring.
11135 */
11136 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011137 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +000011138 {
11139 if (ses_do_win(wp))
11140 ++nr;
11141 else
11142 restore_size = FALSE;
11143 if (curwin == wp)
11144 cnr = nr;
11145 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011146
Bram Moolenaar18144c82006-04-12 21:52:12 +000011147 /* Go to the first window. */
11148 if (put_line(fd, "wincmd t") == FAIL)
11149 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000011150
Bram Moolenaar18144c82006-04-12 21:52:12 +000011151 /*
11152 * If more than one window, see if sizes can be restored.
11153 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
11154 * resized when moving between windows.
11155 * Do this before restoring the view, so that the topline and the
11156 * cursor can be set. This is done again below.
11157 */
11158 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
11159 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011160 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011161 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011162
Bram Moolenaar18144c82006-04-12 21:52:12 +000011163 /*
11164 * Restore the view of the window (options, file, cursor, etc.).
11165 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011166 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011167 {
11168 if (!ses_do_win(wp))
11169 continue;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011170 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
11171 cur_arg_idx) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011172 return FAIL;
11173 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
11174 return FAIL;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011175 next_arg_idx = wp->w_arg_idx;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011176 }
11177
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011178 /* The argument index in the first tab page is zero, need to set it in
11179 * each window. For further tab pages it's the window where we do
11180 * "tabedit". */
11181 cur_arg_idx = next_arg_idx;
11182
Bram Moolenaar18144c82006-04-12 21:52:12 +000011183 /*
11184 * Restore cursor to the current window if it's not the first one.
11185 */
11186 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
11187 || put_eol(fd) == FAIL))
11188 return FAIL;
11189
11190 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000011191 * Restore window sizes again after jumping around in windows, because
11192 * the current window has a minimum size while others may not.
11193 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011194 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011195 return FAIL;
11196
Bram Moolenaar18144c82006-04-12 21:52:12 +000011197 /* Don't continue in another tab page when doing only the current one
11198 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011199 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +000011200 break;
11201 }
11202
11203 if (ssop_flags & SSOP_TABPAGES)
11204 {
Bram Moolenaar18144c82006-04-12 21:52:12 +000011205 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
11206 || put_eol(fd) == FAIL)
11207 return FAIL;
11208 }
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020011209 if (restore_stal && put_line(fd, "set stal=1") == FAIL)
11210 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011211
Bram Moolenaar9c102382006-05-03 21:26:49 +000011212 /*
11213 * Wipe out an empty unnamed buffer we started in.
11214 */
11215 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
11216 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +000011217 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +000011218 return FAIL;
11219 if (put_line(fd, "endif") == FAIL)
11220 return FAIL;
11221 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
11222 return FAIL;
11223
11224 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
11225 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
11226 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
11227 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011228
11229 /*
11230 * Lastly, execute the x.vim file if it exists.
11231 */
11232 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
11233 || put_line(fd, "if file_readable(s:sx)") == FAIL
Bram Moolenaar42ba1262008-12-09 10:18:03 +000011234 || put_line(fd, " exe \"source \" . fnameescape(s:sx)") == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011235 || put_line(fd, "endif") == FAIL)
11236 return FAIL;
11237
11238 return OK;
11239}
11240
11241 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011242ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011243 FILE *fd;
11244 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011245 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011246{
11247 int n = 0;
11248 win_T *wp;
11249
11250 if (restore_size && (ssop_flags & SSOP_WINSIZE))
11251 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011252 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011253 {
11254 if (!ses_do_win(wp))
11255 continue;
11256 ++n;
11257
11258 /* restore height when not full height */
11259 if (wp->w_height + wp->w_status_height < topframe->fr_height
11260 && (fprintf(fd,
11261 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
11262 n, (long)wp->w_height, Rows / 2, Rows) < 0
11263 || put_eol(fd) == FAIL))
11264 return FAIL;
11265
11266 /* restore width when not full width */
11267 if (wp->w_width < Columns && (fprintf(fd,
11268 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
11269 n, (long)wp->w_width, Columns / 2, Columns) < 0
11270 || put_eol(fd) == FAIL))
11271 return FAIL;
11272 }
11273 }
11274 else
11275 {
11276 /* Just equalise window sizes */
11277 if (put_line(fd, "wincmd =") == FAIL)
11278 return FAIL;
11279 }
11280 return OK;
11281}
11282
11283/*
11284 * Write commands to "fd" to recursively create windows for frame "fr",
11285 * horizontally and vertically split.
11286 * After the commands the last window in the frame is the current window.
11287 * Returns FAIL when writing the commands to "fd" fails.
11288 */
11289 static int
11290ses_win_rec(fd, fr)
11291 FILE *fd;
11292 frame_T *fr;
11293{
11294 frame_T *frc;
11295 int count = 0;
11296
11297 if (fr->fr_layout != FR_LEAF)
11298 {
11299 /* Find first frame that's not skipped and then create a window for
11300 * each following one (first frame is already there). */
11301 frc = ses_skipframe(fr->fr_child);
11302 if (frc != NULL)
11303 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
11304 {
11305 /* Make window as big as possible so that we have lots of room
11306 * to split. */
11307 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
11308 || put_line(fd, fr->fr_layout == FR_COL
11309 ? "split" : "vsplit") == FAIL)
11310 return FAIL;
11311 ++count;
11312 }
11313
11314 /* Go back to the first window. */
11315 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
11316 ? "%dwincmd k" : "%dwincmd h", count) < 0
11317 || put_eol(fd) == FAIL))
11318 return FAIL;
11319
11320 /* Recursively create frames/windows in each window of this column or
11321 * row. */
11322 frc = ses_skipframe(fr->fr_child);
11323 while (frc != NULL)
11324 {
11325 ses_win_rec(fd, frc);
11326 frc = ses_skipframe(frc->fr_next);
11327 /* Go to next window. */
11328 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
11329 return FAIL;
11330 }
11331 }
11332 return OK;
11333}
11334
11335/*
11336 * Skip frames that don't contain windows we want to save in the Session.
11337 * Returns NULL when there none.
11338 */
11339 static frame_T *
11340ses_skipframe(fr)
11341 frame_T *fr;
11342{
11343 frame_T *frc;
11344
11345 for (frc = fr; frc != NULL; frc = frc->fr_next)
11346 if (ses_do_frame(frc))
11347 break;
11348 return frc;
11349}
11350
11351/*
11352 * Return TRUE if frame "fr" has a window somewhere that we want to save in
11353 * the Session.
11354 */
11355 static int
11356ses_do_frame(fr)
11357 frame_T *fr;
11358{
11359 frame_T *frc;
11360
11361 if (fr->fr_layout == FR_LEAF)
11362 return ses_do_win(fr->fr_win);
11363 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
11364 if (ses_do_frame(frc))
11365 return TRUE;
11366 return FALSE;
11367}
11368
11369/*
11370 * Return non-zero if window "wp" is to be stored in the Session.
11371 */
11372 static int
11373ses_do_win(wp)
11374 win_T *wp;
11375{
11376 if (wp->w_buffer->b_fname == NULL
11377#ifdef FEAT_QUICKFIX
11378 /* When 'buftype' is "nofile" can't restore the window contents. */
11379 || bt_nofile(wp->w_buffer)
11380#endif
11381 )
11382 return (ssop_flags & SSOP_BLANK);
11383 if (wp->w_buffer->b_help)
11384 return (ssop_flags & SSOP_HELP);
11385 return TRUE;
11386}
11387
11388/*
11389 * Write commands to "fd" to restore the view of a window.
11390 * Caller must make sure 'scrolloff' is zero.
11391 */
11392 static int
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011393put_view(fd, wp, add_edit, flagp, current_arg_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011394 FILE *fd;
11395 win_T *wp;
11396 int add_edit; /* add ":edit" command to view */
11397 unsigned *flagp; /* vop_flags or ssop_flags */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011398 int current_arg_idx; /* current argument index of the window, use
11399 * -1 if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011400{
11401 win_T *save_curwin;
11402 int f;
11403 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011404 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011405
11406 /* Always restore cursor position for ":mksession". For ":mkview" only
11407 * when 'viewoptions' contains "cursor". */
11408 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
11409
11410 /*
11411 * Local argument list.
11412 */
11413 if (wp->w_alist == &global_alist)
11414 {
11415 if (put_line(fd, "argglobal") == FAIL)
11416 return FAIL;
11417 }
11418 else
11419 {
11420 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
11421 flagp == &vop_flags
11422 || !(*flagp & SSOP_CURDIR)
11423 || wp->w_localdir != NULL, flagp) == FAIL)
11424 return FAIL;
11425 }
11426
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011427 /* Only when part of a session: restore the argument index. Some
11428 * arguments may have been deleted, check if the index is valid. */
Bram Moolenaar51f53df2010-06-26 05:25:54 +020011429 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx < WARGCOUNT(wp)
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011430 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011431 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011432 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011433 || put_eol(fd) == FAIL)
11434 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011435 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011436 }
11437
11438 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011439 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000011440 {
11441 /*
11442 * Load the file.
11443 */
11444 if (wp->w_buffer->b_ffname != NULL
11445#ifdef FEAT_QUICKFIX
11446 && !bt_nofile(wp->w_buffer)
11447#endif
11448 )
11449 {
11450 /*
11451 * Editing a file in this buffer: use ":edit file".
11452 * This may have side effects! (e.g., compressed or network file).
11453 */
11454 if (fputs("edit ", fd) < 0
11455 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
11456 return FAIL;
11457 }
11458 else
11459 {
11460 /* No file in this buffer, just make it empty. */
11461 if (put_line(fd, "enew") == FAIL)
11462 return FAIL;
11463#ifdef FEAT_QUICKFIX
11464 if (wp->w_buffer->b_ffname != NULL)
11465 {
11466 /* The buffer does have a name, but it's not a file name. */
11467 if (fputs("file ", fd) < 0
11468 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
11469 return FAIL;
11470 }
11471#endif
11472 do_cursor = FALSE;
11473 }
11474 }
11475
11476 /*
11477 * Local mappings and abbreviations.
11478 */
11479 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
11480 && makemap(fd, wp->w_buffer) == FAIL)
11481 return FAIL;
11482
11483 /*
11484 * Local options. Need to go to the window temporarily.
11485 * Store only local values when using ":mkview" and when ":mksession" is
11486 * used and 'sessionoptions' doesn't include "options".
11487 * Some folding options are always stored when "folds" is included,
11488 * otherwise the folds would not be restored correctly.
11489 */
11490 save_curwin = curwin;
11491 curwin = wp;
11492 curbuf = curwin->w_buffer;
11493 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
11494 f = makeset(fd, OPT_LOCAL,
11495 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
11496#ifdef FEAT_FOLDING
11497 else if (*flagp & SSOP_FOLDS)
11498 f = makefoldset(fd);
11499#endif
11500 else
11501 f = OK;
11502 curwin = save_curwin;
11503 curbuf = curwin->w_buffer;
11504 if (f == FAIL)
11505 return FAIL;
11506
11507#ifdef FEAT_FOLDING
11508 /*
11509 * Save Folds when 'buftype' is empty and for help files.
11510 */
11511 if ((*flagp & SSOP_FOLDS)
11512 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000011513# ifdef FEAT_QUICKFIX
11514 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
11515# endif
11516 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000011517 {
11518 if (put_folds(fd, wp) == FAIL)
11519 return FAIL;
11520 }
11521#endif
11522
11523 /*
11524 * Set the cursor after creating folds, since that moves the cursor.
11525 */
11526 if (do_cursor)
11527 {
11528
11529 /* Restore the cursor line in the file and relatively in the
11530 * window. Don't use "G", it changes the jumplist. */
11531 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
11532 (long)wp->w_cursor.lnum,
11533 (long)(wp->w_cursor.lnum - wp->w_topline),
11534 (long)wp->w_height / 2, (long)wp->w_height) < 0
11535 || put_eol(fd) == FAIL
11536 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
11537 || put_line(fd, "exe s:l") == FAIL
11538 || put_line(fd, "normal! zt") == FAIL
11539 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
11540 || put_eol(fd) == FAIL)
11541 return FAIL;
11542 /* Restore the cursor column and left offset when not wrapping. */
11543 if (wp->w_cursor.col == 0)
11544 {
11545 if (put_line(fd, "normal! 0") == FAIL)
11546 return FAIL;
11547 }
11548 else
11549 {
11550 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
11551 {
11552 if (fprintf(fd,
11553 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011554 (long)wp->w_virtcol + 1,
11555 (long)(wp->w_virtcol - wp->w_leftcol),
Bram Moolenaar071d4272004-06-13 20:20:40 +000011556 (long)wp->w_width / 2, (long)wp->w_width) < 0
11557 || put_eol(fd) == FAIL
11558 || put_line(fd, "if s:c > 0") == FAIL
11559 || fprintf(fd,
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011560 " exe 'normal! ' . s:c . '|zs' . %ld . '|'",
11561 (long)wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011562 || put_eol(fd) == FAIL
11563 || put_line(fd, "else") == FAIL
Bram Moolenaarfdf447b2013-02-26 17:21:29 +010011564 || fprintf(fd, " normal! 0%d|", wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011565 || put_eol(fd) == FAIL
11566 || put_line(fd, "endif") == FAIL)
11567 return FAIL;
11568 }
11569 else
11570 {
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011571 if (fprintf(fd, "normal! 0%d|", wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011572 || put_eol(fd) == FAIL)
11573 return FAIL;
11574 }
11575 }
11576 }
11577
11578 /*
11579 * Local directory.
11580 */
11581 if (wp->w_localdir != NULL)
11582 {
11583 if (fputs("lcd ", fd) < 0
11584 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
11585 || put_eol(fd) == FAIL)
11586 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011587 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011588 }
11589
11590 return OK;
11591}
11592
11593/*
11594 * Write an argument list to the session file.
11595 * Returns FAIL if writing fails.
11596 */
11597 static int
11598ses_arglist(fd, cmd, gap, fullname, flagp)
11599 FILE *fd;
11600 char *cmd;
11601 garray_T *gap;
11602 int fullname; /* TRUE: use full path name */
11603 unsigned *flagp;
11604{
11605 int i;
Bram Moolenaard9462e32011-04-11 21:35:11 +020011606 char_u *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011607 char_u *s;
11608
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011609 if (fputs(cmd, fd) < 0 || put_eol(fd) == FAIL)
11610 return FAIL;
11611 if (put_line(fd, "silent! argdel *") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011612 return FAIL;
11613 for (i = 0; i < gap->ga_len; ++i)
11614 {
11615 /* NULL file names are skipped (only happens when out of memory). */
11616 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
11617 if (s != NULL)
11618 {
11619 if (fullname)
11620 {
Bram Moolenaard9462e32011-04-11 21:35:11 +020011621 buf = alloc(MAXPATHL);
11622 if (buf != NULL)
11623 {
11624 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
11625 s = buf;
11626 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011627 }
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011628 if (fputs("argadd ", fd) < 0
11629 || ses_put_fname(fd, s, flagp) == FAIL
11630 || put_eol(fd) == FAIL)
Bram Moolenaard9462e32011-04-11 21:35:11 +020011631 {
11632 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011633 return FAIL;
Bram Moolenaard9462e32011-04-11 21:35:11 +020011634 }
11635 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011636 }
11637 }
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011638 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011639}
11640
11641/*
11642 * Write a buffer name to the session file.
11643 * Also ends the line.
11644 * Returns FAIL if writing fails.
11645 */
11646 static int
11647ses_fname(fd, buf, flagp)
11648 FILE *fd;
11649 buf_T *buf;
11650 unsigned *flagp;
11651{
11652 char_u *name;
11653
11654 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011655 * the session file will be sourced.
11656 * Don't do this for ":mkview", we don't know the current directory.
11657 * Don't do this after ":lcd", we don't keep track of what the current
11658 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011659 if (buf->b_sfname != NULL
11660 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011661 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
Bram Moolenaar8d594672009-07-01 18:18:57 +000011662#ifdef FEAT_AUTOCHDIR
11663 && !p_acd
11664#endif
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011665 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011666 name = buf->b_sfname;
11667 else
11668 name = buf->b_ffname;
11669 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
11670 return FAIL;
11671 return OK;
11672}
11673
11674/*
11675 * Write a file name to the session file.
11676 * Takes care of the "slash" option in 'sessionoptions' and escapes special
11677 * characters.
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011678 * Returns FAIL if writing fails or out of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011679 */
11680 static int
11681ses_put_fname(fd, name, flagp)
11682 FILE *fd;
11683 char_u *name;
11684 unsigned *flagp;
11685{
11686 char_u *sname;
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011687 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011688 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011689
11690 sname = home_replace_save(NULL, name);
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011691 if (sname == NULL)
11692 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011693
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011694 if (*flagp & SSOP_SLASH)
11695 {
11696 /* change all backslashes to forward slashes */
11697 for (p = sname; *p != NUL; mb_ptr_adv(p))
11698 if (*p == '\\')
11699 *p = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +000011700 }
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011701
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020011702 /* escape special characters */
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011703 p = vim_strsave_fnameescape(sname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011704 vim_free(sname);
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011705 if (p == NULL)
11706 return FAIL;
11707
11708 /* write the result */
11709 if (fputs((char *)p, fd) < 0)
11710 retval = FAIL;
11711
11712 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011713 return retval;
11714}
11715
11716/*
11717 * ":loadview [nr]"
11718 */
11719 static void
11720ex_loadview(eap)
11721 exarg_T *eap;
11722{
11723 char_u *fname;
11724
11725 fname = get_view_file(*eap->arg);
11726 if (fname != NULL)
11727 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000011728 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011729 vim_free(fname);
11730 }
11731}
11732
11733/*
11734 * Get the name of the view file for the current buffer.
11735 */
11736 static char_u *
11737get_view_file(c)
11738 int c;
11739{
11740 int len = 0;
11741 char_u *p, *s;
11742 char_u *retval;
11743 char_u *sname;
11744
11745 if (curbuf->b_ffname == NULL)
11746 {
11747 EMSG(_(e_noname));
11748 return NULL;
11749 }
11750 sname = home_replace_save(NULL, curbuf->b_ffname);
11751 if (sname == NULL)
11752 return NULL;
11753
11754 /*
11755 * We want a file name without separators, because we're not going to make
11756 * a directory.
11757 * "normal" path separator -> "=+"
11758 * "=" -> "=="
11759 * ":" path separator -> "=-"
11760 */
11761 for (p = sname; *p; ++p)
11762 if (*p == '=' || vim_ispathsep(*p))
11763 ++len;
11764 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
11765 if (retval != NULL)
11766 {
11767 STRCPY(retval, p_vdir);
11768 add_pathsep(retval);
11769 s = retval + STRLEN(retval);
11770 for (p = sname; *p; ++p)
11771 {
11772 if (*p == '=')
11773 {
11774 *s++ = '=';
11775 *s++ = '=';
11776 }
11777 else if (vim_ispathsep(*p))
11778 {
11779 *s++ = '=';
Bram Moolenaare60acc12011-05-10 16:41:25 +020011780#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011781 if (*p == ':')
11782 *s++ = '-';
11783 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000011784#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000011785 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000011786 }
11787 else
11788 *s++ = *p;
11789 }
11790 *s++ = '=';
11791 *s++ = c;
11792 STRCPY(s, ".vim");
11793 }
11794
11795 vim_free(sname);
11796 return retval;
11797}
11798
11799#endif /* FEAT_SESSION */
11800
11801/*
11802 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
11803 * Return FAIL for a write error.
11804 */
11805 int
11806put_eol(fd)
11807 FILE *fd;
11808{
11809 if (
11810#ifdef USE_CRNL
11811 (
11812# ifdef MKSESSION_NL
11813 !mksession_nl &&
11814# endif
11815 (putc('\r', fd) < 0)) ||
11816#endif
11817 (putc('\n', fd) < 0))
11818 return FAIL;
11819 return OK;
11820}
11821
11822/*
11823 * Write a line to "fd".
11824 * Return FAIL for a write error.
11825 */
11826 int
11827put_line(fd, s)
11828 FILE *fd;
11829 char *s;
11830{
11831 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
11832 return FAIL;
11833 return OK;
11834}
11835
11836#ifdef FEAT_VIMINFO
11837/*
11838 * ":rviminfo" and ":wviminfo".
11839 */
11840 static void
11841ex_viminfo(eap)
11842 exarg_T *eap;
11843{
11844 char_u *save_viminfo;
11845
11846 save_viminfo = p_viminfo;
11847 if (*p_viminfo == NUL)
11848 p_viminfo = (char_u *)"'100";
11849 if (eap->cmdidx == CMD_rviminfo)
11850 {
Bram Moolenaard812df62008-11-09 12:46:09 +000011851 if (read_viminfo(eap->arg, VIF_WANT_INFO | VIF_WANT_MARKS
11852 | (eap->forceit ? VIF_FORCEIT : 0)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011853 EMSG(_("E195: Cannot open viminfo file for reading"));
11854 }
11855 else
11856 write_viminfo(eap->arg, eap->forceit);
11857 p_viminfo = save_viminfo;
11858}
11859#endif
11860
11861#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000011862/*
Bram Moolenaard9462e32011-04-11 21:35:11 +020011863 * Make a dialog message in "buff[DIALOG_MSG_SIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000011864 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000011865 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011866 void
11867dialog_msg(buff, format, fname)
11868 char_u *buff;
11869 char *format;
11870 char_u *fname;
11871{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011872 if (fname == NULL)
11873 fname = (char_u *)_("Untitled");
Bram Moolenaard9462e32011-04-11 21:35:11 +020011874 vim_snprintf((char *)buff, DIALOG_MSG_SIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011875}
11876#endif
11877
11878/*
11879 * ":behave {mswin,xterm}"
11880 */
11881 static void
11882ex_behave(eap)
11883 exarg_T *eap;
11884{
11885 if (STRCMP(eap->arg, "mswin") == 0)
11886 {
11887 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
11888 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
11889 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
11890 set_option_value((char_u *)"keymodel", 0L,
11891 (char_u *)"startsel,stopsel", 0);
11892 }
11893 else if (STRCMP(eap->arg, "xterm") == 0)
11894 {
11895 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
11896 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
11897 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
11898 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
11899 }
11900 else
11901 EMSG2(_(e_invarg2), eap->arg);
11902}
11903
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010011904#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
11905/*
11906 * Function given to ExpandGeneric() to obtain the possible arguments of the
11907 * ":behave {mswin,xterm}" command.
11908 */
11909 char_u *
11910get_behave_arg(xp, idx)
11911 expand_T *xp UNUSED;
11912 int idx;
11913{
11914 if (idx == 0)
11915 return (char_u *)"mswin";
11916 if (idx == 1)
11917 return (char_u *)"xterm";
11918 return NULL;
11919}
11920#endif
11921
Bram Moolenaar071d4272004-06-13 20:20:40 +000011922#ifdef FEAT_AUTOCMD
11923static int filetype_detect = FALSE;
11924static int filetype_plugin = FALSE;
11925static int filetype_indent = FALSE;
11926
11927/*
11928 * ":filetype [plugin] [indent] {on,off,detect}"
11929 * on: Load the filetype.vim file to install autocommands for file types.
11930 * off: Load the ftoff.vim file to remove all autocommands for file types.
11931 * plugin on: load filetype.vim and ftplugin.vim
11932 * plugin off: load ftplugof.vim
11933 * indent on: load filetype.vim and indent.vim
11934 * indent off: load indoff.vim
11935 */
11936 static void
11937ex_filetype(eap)
11938 exarg_T *eap;
11939{
11940 char_u *arg = eap->arg;
11941 int plugin = FALSE;
11942 int indent = FALSE;
11943
11944 if (*eap->arg == NUL)
11945 {
11946 /* Print current status. */
11947 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
11948 filetype_detect ? "ON" : "OFF",
11949 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
11950 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
11951 return;
11952 }
11953
11954 /* Accept "plugin" and "indent" in any order. */
11955 for (;;)
11956 {
11957 if (STRNCMP(arg, "plugin", 6) == 0)
11958 {
11959 plugin = TRUE;
11960 arg = skipwhite(arg + 6);
11961 continue;
11962 }
11963 if (STRNCMP(arg, "indent", 6) == 0)
11964 {
11965 indent = TRUE;
11966 arg = skipwhite(arg + 6);
11967 continue;
11968 }
11969 break;
11970 }
11971 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
11972 {
11973 if (*arg == 'o' || !filetype_detect)
11974 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011975 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011976 filetype_detect = TRUE;
11977 if (plugin)
11978 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011979 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011980 filetype_plugin = TRUE;
11981 }
11982 if (indent)
11983 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011984 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011985 filetype_indent = TRUE;
11986 }
11987 }
11988 if (*arg == 'd')
11989 {
11990 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000011991 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011992 }
11993 }
11994 else if (STRCMP(arg, "off") == 0)
11995 {
11996 if (plugin || indent)
11997 {
11998 if (plugin)
11999 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000012000 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012001 filetype_plugin = FALSE;
12002 }
12003 if (indent)
12004 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000012005 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012006 filetype_indent = FALSE;
12007 }
12008 }
12009 else
12010 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000012011 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012012 filetype_detect = FALSE;
12013 }
12014 }
12015 else
12016 EMSG2(_(e_invarg2), arg);
12017}
12018
12019/*
12020 * ":setfiletype {name}"
12021 */
12022 static void
12023ex_setfiletype(eap)
12024 exarg_T *eap;
12025{
12026 if (!did_filetype)
12027 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
12028}
12029#endif
12030
Bram Moolenaar071d4272004-06-13 20:20:40 +000012031 static void
12032ex_digraphs(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000012033 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012034{
12035#ifdef FEAT_DIGRAPHS
12036 if (*eap->arg != NUL)
12037 putdigraph(eap->arg);
12038 else
12039 listdigraphs();
12040#else
12041 EMSG(_("E196: No digraphs in this version"));
12042#endif
12043}
12044
12045 static void
12046ex_set(eap)
12047 exarg_T *eap;
12048{
12049 int flags = 0;
12050
12051 if (eap->cmdidx == CMD_setlocal)
12052 flags = OPT_LOCAL;
12053 else if (eap->cmdidx == CMD_setglobal)
12054 flags = OPT_GLOBAL;
12055#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
12056 if (cmdmod.browse && flags == 0)
12057 ex_options(eap);
12058 else
12059#endif
12060 (void)do_set(eap->arg, flags);
12061}
12062
12063#ifdef FEAT_SEARCH_EXTRA
12064/*
12065 * ":nohlsearch"
12066 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012067 static void
12068ex_nohlsearch(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000012069 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012070{
Bram Moolenaar8050efa2013-11-08 04:30:20 +010012071 SET_NO_HLSEARCH(TRUE);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000012072 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012073}
12074
12075/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000012076 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000012077 * Sets nextcmd to the start of the next command, if any. Also called when
12078 * skipping commands to find the next command.
12079 */
12080 static void
12081ex_match(eap)
12082 exarg_T *eap;
12083{
12084 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000012085 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012086 char_u *end;
12087 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012088 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000012089
12090 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012091 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000012092 else
12093 {
12094 EMSG(e_invcmd);
12095 return;
12096 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012097
12098 /* First clear any old pattern. */
12099 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012100 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012101
12102 if (ends_excmd(*eap->arg))
12103 end = eap->arg;
12104 else if ((STRNICMP(eap->arg, "none", 4) == 0
12105 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
12106 end = eap->arg + 4;
12107 else
12108 {
12109 p = skiptowhite(eap->arg);
12110 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012111 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012112 p = skipwhite(p);
12113 if (*p == NUL)
12114 {
12115 /* There must be two arguments. */
12116 EMSG2(_(e_invarg2), eap->arg);
12117 return;
12118 }
12119 end = skip_regexp(p + 1, *p, TRUE, NULL);
12120 if (!eap->skip)
12121 {
12122 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
12123 {
12124 eap->errmsg = e_trailing;
12125 return;
12126 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000012127 if (*end != *p)
12128 {
12129 EMSG2(_(e_invarg2), p);
12130 return;
12131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012132
12133 c = *end;
12134 *end = NUL;
Bram Moolenaar6561d522015-07-21 15:48:27 +020012135 match_add(curwin, g, p + 1, 10, id, NULL, NULL);
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012136 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012137 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012138 }
12139 }
12140 eap->nextcmd = find_nextcmd(end);
12141}
12142#endif
12143
12144#ifdef FEAT_CRYPT
12145/*
12146 * ":X": Get crypt key
12147 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012148 static void
12149ex_X(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000012150 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012151{
Bram Moolenaar3a0c9082014-11-12 15:15:42 +010012152 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020012153 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012154}
12155#endif
12156
12157#ifdef FEAT_FOLDING
12158 static void
12159ex_fold(eap)
12160 exarg_T *eap;
12161{
12162 if (foldManualAllowed(TRUE))
12163 foldCreate(eap->line1, eap->line2);
12164}
12165
12166 static void
12167ex_foldopen(eap)
12168 exarg_T *eap;
12169{
12170 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
12171 eap->forceit, FALSE);
12172}
12173
12174 static void
12175ex_folddo(eap)
12176 exarg_T *eap;
12177{
12178 linenr_T lnum;
12179
Bram Moolenaar6b1ee342014-08-06 18:17:11 +020012180#ifdef FEAT_CLIPBOARD
12181 start_global_changes();
12182#endif
12183
Bram Moolenaar071d4272004-06-13 20:20:40 +000012184 /* First set the marks for all lines closed/open. */
12185 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
12186 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
12187 ml_setmarked(lnum);
12188
12189 /* Execute the command on the marked lines. */
12190 global_exe(eap->arg);
12191 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +020012192#ifdef FEAT_CLIPBOARD
12193 end_global_changes();
12194#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012195}
12196#endif