blob: b37c6ed8cc94819cad418b467532fc39cc102833 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ex_docmd.c: functions for executing an Ex command line.
12 */
13
14#include "vim.h"
15
Bram Moolenaar071d4272004-06-13 20:20:40 +000016static int quitmore = 0;
17static int ex_pressedreturn = FALSE;
18#ifndef FEAT_PRINTER
19# define ex_hardcopy ex_ni
20#endif
21
22#ifdef FEAT_USR_CMDS
23typedef struct ucmd
24{
25 char_u *uc_name; /* The command name */
26 long_u uc_argt; /* The argument type */
27 char_u *uc_rep; /* The command's replacement string */
28 long uc_def; /* The default value for a range/count */
Bram Moolenaar071d4272004-06-13 20:20:40 +000029 int uc_compl; /* completion type */
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +010030 int uc_addr_type; /* The command's address type */
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010031# ifdef FEAT_EVAL
32 scid_T uc_scriptID; /* SID where the command was defined */
33# ifdef FEAT_CMDL_COMPL
Bram Moolenaar071d4272004-06-13 20:20:40 +000034 char_u *uc_compl_arg; /* completion argument if any */
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010035# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000036# endif
37} ucmd_T;
38
39#define UC_BUFFER 1 /* -buffer: local to current buffer */
40
Bram Moolenaar2c29bee2005-06-01 21:46:07 +000041static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43#define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
44#define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
45
46static void do_ucmd __ARGS((exarg_T *eap));
47static void ex_command __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000048static void ex_delcommand __ARGS((exarg_T *eap));
49# ifdef FEAT_CMDL_COMPL
50static char_u *get_user_command_name __ARGS((int idx));
51# endif
52
Bram Moolenaar958636c2014-10-21 20:01:58 +020053/* Wether a command index indicates a user command. */
54# define IS_USER_CMDIDX(idx) ((int)(idx) < 0)
55
Bram Moolenaar071d4272004-06-13 20:20:40 +000056#else
57# define ex_command ex_ni
58# define ex_comclear ex_ni
59# define ex_delcommand ex_ni
Bram Moolenaar958636c2014-10-21 20:01:58 +020060/* Wether a command index indicates a user command. */
61# define IS_USER_CMDIDX(idx) (FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +000062#endif
63
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010064static int compute_buffer_local_count __ARGS((int addr_type, int lnum, int local));
Bram Moolenaar071d4272004-06-13 20:20:40 +000065#ifdef FEAT_EVAL
Bram Moolenaar89d40322006-08-29 15:30:07 +000066static char_u *do_one_cmd __ARGS((char_u **, int, struct condstack *, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#else
Bram Moolenaar89d40322006-08-29 15:30:07 +000068static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000069static int if_level = 0; /* depth in :if */
70#endif
Bram Moolenaara6f4d612011-09-21 19:10:46 +020071static void append_command __ARGS((char_u *cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +000072static char_u *find_command __ARGS((exarg_T *eap, int *full));
73
74static void ex_abbreviate __ARGS((exarg_T *eap));
75static void ex_map __ARGS((exarg_T *eap));
76static void ex_unmap __ARGS((exarg_T *eap));
77static void ex_mapclear __ARGS((exarg_T *eap));
78static void ex_abclear __ARGS((exarg_T *eap));
79#ifndef FEAT_MENU
80# define ex_emenu ex_ni
81# define ex_menu ex_ni
82# define ex_menutranslate ex_ni
83#endif
84#ifdef FEAT_AUTOCMD
85static void ex_autocmd __ARGS((exarg_T *eap));
86static void ex_doautocmd __ARGS((exarg_T *eap));
87#else
88# define ex_autocmd ex_ni
89# define ex_doautocmd ex_ni
90# define ex_doautoall ex_ni
91#endif
92#ifdef FEAT_LISTCMDS
93static void ex_bunload __ARGS((exarg_T *eap));
94static void ex_buffer __ARGS((exarg_T *eap));
95static void ex_bmodified __ARGS((exarg_T *eap));
96static void ex_bnext __ARGS((exarg_T *eap));
97static void ex_bprevious __ARGS((exarg_T *eap));
98static void ex_brewind __ARGS((exarg_T *eap));
99static void ex_blast __ARGS((exarg_T *eap));
100#else
101# define ex_bunload ex_ni
102# define ex_buffer ex_ni
103# define ex_bmodified ex_ni
104# define ex_bnext ex_ni
105# define ex_bprevious ex_ni
106# define ex_brewind ex_ni
107# define ex_blast ex_ni
108# define buflist_list ex_ni
109# define ex_checktime ex_ni
110#endif
111#if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
112# define ex_buffer_all ex_ni
113#endif
114static char_u *getargcmd __ARGS((char_u **));
115static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
116static int getargopt __ARGS((exarg_T *eap));
117#ifndef FEAT_QUICKFIX
118# define ex_make ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000119# define ex_cbuffer ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120# define ex_cc ex_ni
121# define ex_cnext ex_ni
122# define ex_cfile ex_ni
123# define qf_list ex_ni
124# define qf_age ex_ni
125# define ex_helpgrep ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000126# define ex_vimgrep ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127#endif
128#if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
129# define ex_cclose ex_ni
130# define ex_copen ex_ni
131# define ex_cwindow ex_ni
132#endif
Bram Moolenaar1e015462005-09-25 22:16:38 +0000133#if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
134# define ex_cexpr ex_ni
135#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136
137static int check_more __ARGS((int, int));
Bram Moolenaarb96a7f32014-11-27 16:22:48 +0100138static linenr_T get_address __ARGS((char_u **, int addr_type, int skip, int to_other_file));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000139static void get_flags __ARGS((exarg_T *eap));
Bram Moolenaar85363ab2010-07-18 13:58:26 +0200140#if !defined(FEAT_PERL) \
141 || !defined(FEAT_PYTHON) || !defined(FEAT_PYTHON3) \
142 || !defined(FEAT_TCL) \
143 || !defined(FEAT_RUBY) \
144 || !defined(FEAT_LUA) \
145 || !defined(FEAT_MZSCHEME)
Bram Moolenaar7bb75552007-07-16 18:39:49 +0000146# define HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147static void ex_script_ni __ARGS((exarg_T *eap));
148#endif
149static char_u *invalid_range __ARGS((exarg_T *eap));
150static void correct_range __ARGS((exarg_T *eap));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000151#ifdef FEAT_QUICKFIX
152static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
155static void ex_highlight __ARGS((exarg_T *eap));
156static void ex_colorscheme __ARGS((exarg_T *eap));
157static void ex_quit __ARGS((exarg_T *eap));
158static void ex_cquit __ARGS((exarg_T *eap));
159static void ex_quit_all __ARGS((exarg_T *eap));
160#ifdef FEAT_WINDOWS
161static void ex_close __ARGS((exarg_T *eap));
Bram Moolenaarf740b292006-02-16 22:11:02 +0000162static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163static void ex_only __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164static void ex_resize __ARGS((exarg_T *eap));
165static void ex_stag __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000166static void ex_tabclose __ARGS((exarg_T *eap));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000167static void ex_tabonly __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000168static void ex_tabnext __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000169static void ex_tabmove __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000170static void ex_tabs __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171#else
172# define ex_close ex_ni
173# define ex_only ex_ni
174# define ex_all ex_ni
175# define ex_resize ex_ni
176# define ex_splitview ex_ni
177# define ex_stag ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000178# define ex_tabnext ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000179# define ex_tabmove ex_ni
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000180# define ex_tabs ex_ni
181# define ex_tabclose ex_ni
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000182# define ex_tabonly ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183#endif
184#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
185static void ex_pclose __ARGS((exarg_T *eap));
186static void ex_ptag __ARGS((exarg_T *eap));
187static void ex_pedit __ARGS((exarg_T *eap));
188#else
189# define ex_pclose ex_ni
190# define ex_ptag ex_ni
191# define ex_pedit ex_ni
192#endif
193static void ex_hide __ARGS((exarg_T *eap));
194static void ex_stop __ARGS((exarg_T *eap));
195static void ex_exit __ARGS((exarg_T *eap));
196static void ex_print __ARGS((exarg_T *eap));
197#ifdef FEAT_BYTEOFF
198static void ex_goto __ARGS((exarg_T *eap));
199#else
200# define ex_goto ex_ni
201#endif
202static void ex_shell __ARGS((exarg_T *eap));
203static void ex_preserve __ARGS((exarg_T *eap));
204static void ex_recover __ARGS((exarg_T *eap));
205#ifndef FEAT_LISTCMDS
206# define ex_argedit ex_ni
207# define ex_argadd ex_ni
208# define ex_argdelete ex_ni
209# define ex_listdo ex_ni
210#endif
211static void ex_mode __ARGS((exarg_T *eap));
212static void ex_wrongmodifier __ARGS((exarg_T *eap));
213static void ex_find __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000214static void ex_open __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215static void ex_edit __ARGS((exarg_T *eap));
216#if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
217# define ex_drop ex_ni
218#endif
219#ifndef FEAT_GUI
220# define ex_gui ex_nogui
221static void ex_nogui __ARGS((exarg_T *eap));
222#endif
223#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
224static void ex_tearoff __ARGS((exarg_T *eap));
225#else
226# define ex_tearoff ex_ni
227#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000228#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229static void ex_popup __ARGS((exarg_T *eap));
230#else
231# define ex_popup ex_ni
232#endif
233#ifndef FEAT_GUI_MSWIN
234# define ex_simalt ex_ni
235#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000236#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237# define gui_mch_find_dialog ex_ni
238# define gui_mch_replace_dialog ex_ni
239#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000240#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241# define ex_helpfind ex_ni
242#endif
243#ifndef FEAT_CSCOPE
244# define do_cscope ex_ni
245# define do_scscope ex_ni
246# define do_cstag ex_ni
247#endif
248#ifndef FEAT_SYN_HL
249# define ex_syntax ex_ni
Bram Moolenaar860cae12010-06-05 23:22:07 +0200250# define ex_ownsyntax ex_ni
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000251#endif
Bram Moolenaarf7512552013-06-06 14:55:19 +0200252#if !defined(FEAT_SYN_HL) || !defined(FEAT_PROFILE)
Bram Moolenaar8a7f5a22013-06-06 14:01:46 +0200253# define ex_syntime ex_ni
254#endif
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000255#ifndef FEAT_SPELL
Bram Moolenaarb765d632005-06-07 21:00:02 +0000256# define ex_spell ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000257# define ex_mkspell ex_ni
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000258# define ex_spelldump ex_ni
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000259# define ex_spellinfo ex_ni
Bram Moolenaara1ba8112005-06-28 23:23:32 +0000260# define ex_spellrepall ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000261#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200262#ifndef FEAT_PERSISTENT_UNDO
263# define ex_rundo ex_ni
264# define ex_wundo ex_ni
265#endif
Bram Moolenaar0ba04292010-07-14 23:23:17 +0200266#ifndef FEAT_LUA
267# define ex_lua ex_script_ni
268# define ex_luado ex_ni
269# define ex_luafile ex_ni
270#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000271#ifndef FEAT_MZSCHEME
272# define ex_mzscheme ex_script_ni
273# define ex_mzfile ex_ni
274#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275#ifndef FEAT_PERL
276# define ex_perl ex_script_ni
277# define ex_perldo ex_ni
278#endif
279#ifndef FEAT_PYTHON
280# define ex_python ex_script_ni
Bram Moolenaard620aa92013-05-17 16:40:06 +0200281# define ex_pydo ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282# define ex_pyfile ex_ni
283#endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200284#ifndef FEAT_PYTHON3
Bram Moolenaar368373e2010-07-19 20:46:22 +0200285# define ex_py3 ex_script_ni
Bram Moolenaar3dab2802013-05-15 18:28:13 +0200286# define ex_py3do ex_ni
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200287# define ex_py3file ex_ni
288#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289#ifndef FEAT_TCL
290# define ex_tcl ex_script_ni
291# define ex_tcldo ex_ni
292# define ex_tclfile ex_ni
293#endif
294#ifndef FEAT_RUBY
295# define ex_ruby ex_script_ni
296# define ex_rubydo ex_ni
297# define ex_rubyfile ex_ni
298#endif
299#ifndef FEAT_SNIFF
300# define ex_sniff ex_ni
301#endif
302#ifndef FEAT_KEYMAP
303# define ex_loadkeymap ex_ni
304#endif
305static void ex_swapname __ARGS((exarg_T *eap));
306static void ex_syncbind __ARGS((exarg_T *eap));
307static void ex_read __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308static void ex_pwd __ARGS((exarg_T *eap));
309static void ex_equal __ARGS((exarg_T *eap));
310static void ex_sleep __ARGS((exarg_T *eap));
311static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
312static void ex_winsize __ARGS((exarg_T *eap));
313#ifdef FEAT_WINDOWS
314static void ex_wincmd __ARGS((exarg_T *eap));
315#else
316# define ex_wincmd ex_ni
317#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000318#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319static void ex_winpos __ARGS((exarg_T *eap));
320#else
321# define ex_winpos ex_ni
322#endif
323static void ex_operators __ARGS((exarg_T *eap));
324static void ex_put __ARGS((exarg_T *eap));
325static void ex_copymove __ARGS((exarg_T *eap));
326static void ex_submagic __ARGS((exarg_T *eap));
327static void ex_join __ARGS((exarg_T *eap));
328static void ex_at __ARGS((exarg_T *eap));
329static void ex_bang __ARGS((exarg_T *eap));
330static void ex_undo __ARGS((exarg_T *eap));
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200331#ifdef FEAT_PERSISTENT_UNDO
332static void ex_wundo __ARGS((exarg_T *eap));
333static void ex_rundo __ARGS((exarg_T *eap));
334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335static void ex_redo __ARGS((exarg_T *eap));
Bram Moolenaarc7d89352006-03-14 22:53:34 +0000336static void ex_later __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337static void ex_redir __ARGS((exarg_T *eap));
338static void ex_redraw __ARGS((exarg_T *eap));
339static void ex_redrawstatus __ARGS((exarg_T *eap));
340static void close_redir __ARGS((void));
341static void ex_mkrc __ARGS((exarg_T *eap));
342static void ex_mark __ARGS((exarg_T *eap));
343#ifdef FEAT_USR_CMDS
344static char_u *uc_fun_cmd __ARGS((void));
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000345static char_u *find_ucmd __ARGS((exarg_T *eap, char_u *p, int *full, expand_T *xp, int *compl));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346#endif
347#ifdef FEAT_EX_EXTRA
348static void ex_normal __ARGS((exarg_T *eap));
349static void ex_startinsert __ARGS((exarg_T *eap));
350static void ex_stopinsert __ARGS((exarg_T *eap));
351#else
352# define ex_normal ex_ni
353# define ex_align ex_ni
354# define ex_retab ex_ni
355# define ex_startinsert ex_ni
356# define ex_stopinsert ex_ni
357# define ex_helptags ex_ni
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000358# define ex_sort ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359#endif
360#ifdef FEAT_FIND_ID
361static void ex_checkpath __ARGS((exarg_T *eap));
362static void ex_findpat __ARGS((exarg_T *eap));
363#else
364# define ex_findpat ex_ni
365# define ex_checkpath ex_ni
366#endif
367#if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
368static void ex_psearch __ARGS((exarg_T *eap));
369#else
370# define ex_psearch ex_ni
371#endif
372static void ex_tag __ARGS((exarg_T *eap));
373static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
374#ifndef FEAT_EVAL
375# define ex_scriptnames ex_ni
376# define ex_finish ex_ni
377# define ex_echo ex_ni
378# define ex_echohl ex_ni
379# define ex_execute ex_ni
380# define ex_call ex_ni
381# define ex_if ex_ni
382# define ex_endif ex_ni
383# define ex_else ex_ni
384# define ex_while ex_ni
385# define ex_continue ex_ni
386# define ex_break ex_ni
387# define ex_endwhile ex_ni
388# define ex_throw ex_ni
389# define ex_try ex_ni
390# define ex_catch ex_ni
391# define ex_finally ex_ni
392# define ex_endtry ex_ni
393# define ex_endfunction ex_ni
394# define ex_let ex_ni
395# define ex_unlet ex_ni
Bram Moolenaar65c1b012005-01-31 19:02:28 +0000396# define ex_lockvar ex_ni
397# define ex_unlockvar ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398# define ex_function ex_ni
399# define ex_delfunction ex_ni
400# define ex_return ex_ni
Bram Moolenaard812df62008-11-09 12:46:09 +0000401# define ex_oldfiles ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402#endif
403static char_u *arg_all __ARGS((void));
404#ifdef FEAT_SESSION
405static int makeopens __ARGS((FILE *fd, char_u *dirnow));
Bram Moolenaarf13be0d2008-01-02 14:13:10 +0000406static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp, int current_arg_idx));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407static void ex_loadview __ARGS((exarg_T *eap));
408static char_u *get_view_file __ARGS((int c));
Bram Moolenaareeefcc72007-05-01 21:21:21 +0000409static int did_lcd; /* whether ":lcd" was produced for a session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410#else
411# define ex_loadview ex_ni
412#endif
413#ifndef FEAT_EVAL
414# define ex_compiler ex_ni
415#endif
416#ifdef FEAT_VIMINFO
417static void ex_viminfo __ARGS((exarg_T *eap));
418#else
419# define ex_viminfo ex_ni
420#endif
421static void ex_behave __ARGS((exarg_T *eap));
422#ifdef FEAT_AUTOCMD
423static void ex_filetype __ARGS((exarg_T *eap));
424static void ex_setfiletype __ARGS((exarg_T *eap));
425#else
426# define ex_filetype ex_ni
427# define ex_setfiletype ex_ni
428#endif
429#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000430# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431# define ex_diffpatch ex_ni
432# define ex_diffgetput ex_ni
433# define ex_diffsplit ex_ni
434# define ex_diffthis ex_ni
435# define ex_diffupdate ex_ni
436#endif
437static void ex_digraphs __ARGS((exarg_T *eap));
438static void ex_set __ARGS((exarg_T *eap));
439#if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
440# define ex_options ex_ni
441#endif
442#ifdef FEAT_SEARCH_EXTRA
443static void ex_nohlsearch __ARGS((exarg_T *eap));
444static void ex_match __ARGS((exarg_T *eap));
445#else
446# define ex_nohlsearch ex_ni
447# define ex_match ex_ni
448#endif
449#ifdef FEAT_CRYPT
450static void ex_X __ARGS((exarg_T *eap));
451#else
452# define ex_X ex_ni
453#endif
454#ifdef FEAT_FOLDING
455static void ex_fold __ARGS((exarg_T *eap));
456static void ex_foldopen __ARGS((exarg_T *eap));
457static void ex_folddo __ARGS((exarg_T *eap));
458#else
459# define ex_fold ex_ni
460# define ex_foldopen ex_ni
461# define ex_folddo ex_ni
462#endif
463#if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
464 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
465# define ex_language ex_ni
466#endif
467#ifndef FEAT_SIGNS
468# define ex_sign ex_ni
469#endif
470#ifndef FEAT_SUN_WORKSHOP
471# define ex_wsverb ex_ni
472#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000473#ifndef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200474# define ex_nbclose ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000475# define ex_nbkey ex_ni
Bram Moolenaarb26e6322010-05-22 21:34:09 +0200476# define ex_nbstart ex_ni
Bram Moolenaar009b2592004-10-24 19:18:58 +0000477#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478
479#ifndef FEAT_EVAL
480# define ex_debug ex_ni
481# define ex_breakadd ex_ni
482# define ex_debuggreedy ex_ni
483# define ex_breakdel ex_ni
484# define ex_breaklist ex_ni
485#endif
486
487#ifndef FEAT_CMDHIST
488# define ex_history ex_ni
489#endif
490#ifndef FEAT_JUMPLIST
491# define ex_jumps ex_ni
492# define ex_changes ex_ni
493#endif
494
Bram Moolenaar05159a02005-02-26 23:04:13 +0000495#ifndef FEAT_PROFILE
496# define ex_profile ex_ni
497#endif
498
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499/*
500 * Declare cmdnames[].
501 */
502#define DO_DECLARE_EXCMD
503#include "ex_cmds.h"
504
505/*
506 * Table used to quickly search for a command, based on its first character.
507 */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +0000508static cmdidx_T cmdidxs[27] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509{
510 CMD_append,
511 CMD_buffer,
512 CMD_change,
513 CMD_delete,
514 CMD_edit,
515 CMD_file,
516 CMD_global,
517 CMD_help,
518 CMD_insert,
519 CMD_join,
520 CMD_k,
521 CMD_list,
522 CMD_move,
523 CMD_next,
524 CMD_open,
525 CMD_print,
526 CMD_quit,
527 CMD_read,
528 CMD_substitute,
529 CMD_t,
530 CMD_undo,
531 CMD_vglobal,
532 CMD_write,
533 CMD_xit,
534 CMD_yank,
535 CMD_z,
536 CMD_bang
537};
538
539static char_u dollar_command[2] = {'$', 0};
540
541
542#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000543/* Struct for storing a line inside a while/for loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544typedef struct
545{
546 char_u *line; /* command line */
547 linenr_T lnum; /* sourcing_lnum of the line */
548} wcmd_T;
549
550/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000551 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000553 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000555struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556{
557 garray_T *lines_gap; /* growarray with line info */
558 int current_line; /* last read line from growarray */
559 int repeating; /* TRUE when looping a second time */
560 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
561 char_u *(*getline) __ARGS((int, void *, int));
562 void *cookie;
563};
564
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000565static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
566static int store_loop_line __ARGS((garray_T *gap, char_u *line));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000567static void free_cmdlines __ARGS((garray_T *gap));
Bram Moolenaared203462004-06-16 11:19:22 +0000568
569/* Struct to save a few things while debugging. Used in do_cmdline() only. */
570struct dbg_stuff
571{
572 int trylevel;
573 int force_abort;
574 except_T *caught_stack;
575 char_u *vv_exception;
576 char_u *vv_throwpoint;
577 int did_emsg;
578 int got_int;
579 int did_throw;
580 int need_rethrow;
581 int check_cstack;
582 except_T *current_exception;
583};
584
585static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
586static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
587
588 static void
589save_dbg_stuff(dsp)
590 struct dbg_stuff *dsp;
591{
592 dsp->trylevel = trylevel; trylevel = 0;
593 dsp->force_abort = force_abort; force_abort = FALSE;
594 dsp->caught_stack = caught_stack; caught_stack = NULL;
595 dsp->vv_exception = v_exception(NULL);
596 dsp->vv_throwpoint = v_throwpoint(NULL);
597
598 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
599 dsp->did_emsg = did_emsg; did_emsg = FALSE;
600 dsp->got_int = got_int; got_int = FALSE;
601 dsp->did_throw = did_throw; did_throw = FALSE;
602 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
603 dsp->check_cstack = check_cstack; check_cstack = FALSE;
604 dsp->current_exception = current_exception; current_exception = NULL;
605}
606
607 static void
608restore_dbg_stuff(dsp)
609 struct dbg_stuff *dsp;
610{
611 suppress_errthrow = FALSE;
612 trylevel = dsp->trylevel;
613 force_abort = dsp->force_abort;
614 caught_stack = dsp->caught_stack;
615 (void)v_exception(dsp->vv_exception);
616 (void)v_throwpoint(dsp->vv_throwpoint);
617 did_emsg = dsp->did_emsg;
618 got_int = dsp->got_int;
619 did_throw = dsp->did_throw;
620 need_rethrow = dsp->need_rethrow;
621 check_cstack = dsp->check_cstack;
622 current_exception = dsp->current_exception;
623}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000624#endif
625
626
627/*
628 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
629 * command is given.
630 */
631 void
632do_exmode(improved)
633 int improved; /* TRUE for "improved Ex" mode */
634{
635 int save_msg_scroll;
636 int prev_msg_row;
637 linenr_T prev_line;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000638 int changedtick;
639
640 if (improved)
641 exmode_active = EXMODE_VIM;
642 else
643 exmode_active = EXMODE_NORMAL;
644 State = NORMAL;
645
646 /* When using ":global /pat/ visual" and then "Q" we return to continue
647 * the :global command. */
648 if (global_busy)
649 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650
651 save_msg_scroll = msg_scroll;
652 ++RedrawingDisabled; /* don't redisplay the window */
653 ++no_wait_return; /* don't wait for return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654#ifdef FEAT_GUI
655 /* Ignore scrollbar and mouse events in Ex mode */
656 ++hold_gui_events;
657#endif
658#ifdef FEAT_SNIFF
659 want_sniff_request = 0; /* No K_SNIFF wanted */
660#endif
661
662 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
663 while (exmode_active)
664 {
Bram Moolenaar7c626922005-02-07 22:01:03 +0000665#ifdef FEAT_EX_EXTRA
666 /* Check for a ":normal" command and no more characters left. */
667 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
668 {
669 exmode_active = FALSE;
670 break;
671 }
672#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 msg_scroll = TRUE;
674 need_wait_return = FALSE;
675 ex_pressedreturn = FALSE;
676 ex_no_reprint = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000677 changedtick = curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 prev_msg_row = msg_row;
679 prev_line = curwin->w_cursor.lnum;
680#ifdef FEAT_SNIFF
681 ProcessSniffRequests();
682#endif
683 if (improved)
684 {
685 cmdline_row = msg_row;
686 do_cmdline(NULL, getexline, NULL, 0);
687 }
688 else
689 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
690 lines_left = Rows - 1;
691
Bram Moolenaardf177f62005-02-22 08:39:57 +0000692 if ((prev_line != curwin->w_cursor.lnum
693 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000695 if (curbuf->b_ml.ml_flags & ML_EMPTY)
696 EMSG(_(e_emptybuf));
697 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000699 if (ex_pressedreturn)
700 {
701 /* go up one line, to overwrite the ":<CR>" line, so the
Bram Moolenaar81870892007-11-11 18:17:28 +0000702 * output doesn't contain empty lines. */
Bram Moolenaardf177f62005-02-22 08:39:57 +0000703 msg_row = prev_msg_row;
704 if (prev_msg_row == Rows - 1)
705 msg_row--;
706 }
707 msg_col = 0;
708 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
709 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 }
Bram Moolenaardf177f62005-02-22 08:39:57 +0000712 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
713 {
714 if (curbuf->b_ml.ml_flags & ML_EMPTY)
715 EMSG(_(e_emptybuf));
716 else
717 EMSG(_("E501: At end-of-file"));
718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 }
720
721#ifdef FEAT_GUI
722 --hold_gui_events;
723#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 --RedrawingDisabled;
725 --no_wait_return;
726 update_screen(CLEAR);
727 need_wait_return = FALSE;
728 msg_scroll = save_msg_scroll;
729}
730
731/*
732 * Execute a simple command line. Used for translated commands like "*".
733 */
734 int
735do_cmdline_cmd(cmd)
736 char_u *cmd;
737{
738 return do_cmdline(cmd, NULL, NULL,
739 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
740}
741
742/*
743 * do_cmdline(): execute one Ex command line
744 *
745 * 1. Execute "cmdline" when it is not NULL.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100746 * If "cmdline" is NULL, or more lines are needed, fgetline() is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 * 2. Split up in parts separated with '|'.
748 *
749 * This function can be called recursively!
750 *
751 * flags:
752 * DOCMD_VERBOSE - The command will be included in the error message.
753 * DOCMD_NOWAIT - Don't call wait_return() and friends.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100754 * DOCMD_REPEAT - Repeat execution until fgetline() returns NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 * DOCMD_KEYTYPED - Don't reset KeyTyped.
756 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
757 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
758 *
759 * return FAIL if cmdline could not be executed, OK otherwise
760 */
761 int
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100762do_cmdline(cmdline, fgetline, cookie, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 char_u *cmdline;
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100764 char_u *(*fgetline) __ARGS((int, void *, int));
765 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 int flags;
767{
768 char_u *next_cmdline; /* next cmd to execute */
769 char_u *cmdline_copy = NULL; /* copy of cmd line */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100770 int used_getline = FALSE; /* used "fgetline" to obtain command */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 static int recursive = 0; /* recursive depth */
772 int msg_didout_before_start = 0;
773 int count = 0; /* line number count */
774 int did_inc = FALSE; /* incremented RedrawingDisabled */
775 int retval = OK;
776#ifdef FEAT_EVAL
777 struct condstack cstack; /* conditional stack */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000778 garray_T lines_ga; /* keep lines for ":while"/":for" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 int current_line = 0; /* active line in lines_ga */
780 char_u *fname = NULL; /* function or script name */
781 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
782 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
Bram Moolenaared203462004-06-16 11:19:22 +0000783 struct dbg_stuff debug_saved; /* saved things for debug mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 int initial_trylevel;
785 struct msglist **saved_msg_list = NULL;
786 struct msglist *private_msg_list;
787
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100788 /* "fgetline" and "cookie" passed to do_one_cmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 char_u *(*cmd_getline) __ARGS((int, void *, int));
790 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000791 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000793 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794#else
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100795# define cmd_getline fgetline
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796# define cmd_cookie cookie
797#endif
798 static int call_depth = 0; /* recursiveness */
799
800#ifdef FEAT_EVAL
801 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
802 * location for storing error messages to be converted to an exception.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000803 * This ensures that the do_errthrow() call in do_one_cmd() does not
804 * combine the messages stored by an earlier invocation of do_one_cmd()
805 * with the command name of the later one. This would happen when
806 * BufWritePost autocommands are executed after a write error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 saved_msg_list = msg_list;
808 msg_list = &private_msg_list;
809 private_msg_list = NULL;
810#endif
811
812 /* It's possible to create an endless loop with ":execute", catch that
813 * here. The value of 200 allows nested function calls, ":source", etc. */
814 if (call_depth == 200)
815 {
816 EMSG(_("E169: Command too recursive"));
817#ifdef FEAT_EVAL
818 /* When converting to an exception, we do not include the command name
819 * since this is not an error of the specific command. */
820 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
821 msg_list = saved_msg_list;
822#endif
823 return FAIL;
824 }
825 ++call_depth;
826
827#ifdef FEAT_EVAL
828 cstack.cs_idx = -1;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000829 cstack.cs_looplevel = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 cstack.cs_trylevel = 0;
831 cstack.cs_emsg_silent_list = NULL;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000832 cstack.cs_lflags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
834
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100835 real_cookie = getline_cookie(fgetline, cookie);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836
837 /* Inside a function use a higher nesting level. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100838 getline_is_func = getline_equal(fgetline, cookie, get_func_line);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000839 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000840 ++ex_nesting_level;
841
842 /* Get the function or script name and the address where the next breakpoint
843 * line and the debug tick for a function or script are stored. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000844 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 {
846 fname = func_name(real_cookie);
847 breakpoint = func_breakpoint(real_cookie);
848 dbg_tick = func_dbg_tick(real_cookie);
849 }
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100850 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 {
852 fname = sourcing_name;
853 breakpoint = source_breakpoint(real_cookie);
854 dbg_tick = source_dbg_tick(real_cookie);
855 }
856
857 /*
858 * Initialize "force_abort" and "suppress_errthrow" at the top level.
859 */
860 if (!recursive)
861 {
862 force_abort = FALSE;
863 suppress_errthrow = FALSE;
864 }
865
866 /*
867 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000868 * exception handling (used when debugging). Otherwise clear it to avoid
869 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000871 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000872 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000873 else
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200874 vim_memset(&debug_saved, 0, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875
876 initial_trylevel = trylevel;
877
878 /*
879 * "did_throw" will be set to TRUE when an exception is being thrown.
880 */
881 did_throw = FALSE;
882#endif
883 /*
884 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000885 * cancel the whole command line, and any if/endif or loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 * If force_abort is set, we cancel everything.
887 */
888 did_emsg = FALSE;
889
890 /*
891 * KeyTyped is only set when calling vgetc(). Reset it here when not
892 * calling vgetc() (sourced command lines).
893 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100894 if (!(flags & DOCMD_KEYTYPED)
895 && !getline_equal(fgetline, cookie, getexline))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 KeyTyped = FALSE;
897
898 /*
899 * Continue executing command lines:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000900 * - when inside an ":if", ":while" or ":for"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 * - for multiple commands on one line, separated with '|'
902 * - when repeating until there are no more lines (for ":source")
903 */
904 next_cmdline = cmdline;
905 do
906 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000907#ifdef FEAT_EVAL
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100908 getline_is_func = getline_equal(fgetline, cookie, get_func_line);
Bram Moolenaar05159a02005-02-26 23:04:13 +0000909#endif
910
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000911 /* stop skipping cmds for an error msg after all endif/while/for */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 if (next_cmdline == NULL
913#ifdef FEAT_EVAL
914 && !force_abort
915 && cstack.cs_idx < 0
Bram Moolenaar05159a02005-02-26 23:04:13 +0000916 && !(getline_is_func && func_has_abort(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917#endif
918 )
919 did_emsg = FALSE;
920
921 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000922 * 1. If repeating a line in a loop, get a line from lines_ga.
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100923 * 2. If no line given: Get an allocated line with fgetline().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924 * 3. If a line is given: Make a copy, so we can mess with it.
925 */
926
927#ifdef FEAT_EVAL
928 /* 1. If repeating, get a previous line from lines_ga. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000929 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 {
931 /* Each '|' separated command is stored separately in lines_ga, to
932 * be able to jump to it. Don't use next_cmdline now. */
933 vim_free(cmdline_copy);
934 cmdline_copy = NULL;
935
936 /* Check if a function has returned or, unless it has an unclosed
937 * try conditional, aborted. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000938 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000940# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000941 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000942 func_line_end(real_cookie);
943# endif
944 if (func_has_ended(real_cookie))
945 {
946 retval = FAIL;
947 break;
948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000950#ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000951 else if (do_profiling == PROF_YES
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100952 && getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000953 script_line_end();
954#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955
956 /* Check if a sourced file hit a ":finish" command. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100957 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 {
959 retval = FAIL;
960 break;
961 }
962
963 /* If breakpoints have been added/deleted need to check for it. */
964 if (breakpoint != NULL && dbg_tick != NULL
965 && *dbg_tick != debug_tick)
966 {
967 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100968 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 fname, sourcing_lnum);
970 *dbg_tick = debug_tick;
971 }
972
973 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
974 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
975
976 /* Did we encounter a breakpoint? */
977 if (breakpoint != NULL && *breakpoint != 0
978 && *breakpoint <= sourcing_lnum)
979 {
980 dbg_breakpoint(fname, sourcing_lnum);
981 /* Find next breakpoint. */
982 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100983 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984 fname, sourcing_lnum);
985 *dbg_tick = debug_tick;
986 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000987# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000988 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000989 {
990 if (getline_is_func)
991 func_line_start(real_cookie);
Bram Moolenaarbf55e142010-11-16 11:32:01 +0100992 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +0000993 script_line_start();
994 }
995# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 }
997
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000998 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001000 /* Inside a while/for loop we need to store the lines and use them
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001001 * again. Pass a different "fgetline" function to do_one_cmd()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 * below, so that it stores lines in or reads them from
1003 * "lines_ga". Makes it possible to define a function inside a
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001004 * while/for loop. */
1005 cmd_getline = get_loop_line;
1006 cmd_cookie = (void *)&cmd_loop_cookie;
1007 cmd_loop_cookie.lines_gap = &lines_ga;
1008 cmd_loop_cookie.current_line = current_line;
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001009 cmd_loop_cookie.getline = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001010 cmd_loop_cookie.cookie = cookie;
1011 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 }
1013 else
1014 {
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001015 cmd_getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 cmd_cookie = cookie;
1017 }
1018#endif
1019
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001020 /* 2. If no line given, get an allocated line with fgetline(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 if (next_cmdline == NULL)
1022 {
1023 /*
1024 * Need to set msg_didout for the first line after an ":if",
1025 * otherwise the ":if" will be overwritten.
1026 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001027 if (count == 1 && getline_equal(fgetline, cookie, getexline))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 msg_didout = TRUE;
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001029 if (fgetline == NULL || (next_cmdline = fgetline(':', cookie,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030#ifdef FEAT_EVAL
1031 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
1032#else
1033 0
1034#endif
1035 )) == NULL)
1036 {
1037 /* Don't call wait_return for aborted command line. The NULL
1038 * returned for the end of a sourced file or executed function
1039 * doesn't do this. */
1040 if (KeyTyped && !(flags & DOCMD_REPEAT))
1041 need_wait_return = FALSE;
1042 retval = FAIL;
1043 break;
1044 }
1045 used_getline = TRUE;
1046
1047 /*
1048 * Keep the first typed line. Clear it when more lines are typed.
1049 */
1050 if (flags & DOCMD_KEEPLINE)
1051 {
1052 vim_free(repeat_cmdline);
1053 if (count == 0)
1054 repeat_cmdline = vim_strsave(next_cmdline);
1055 else
1056 repeat_cmdline = NULL;
1057 }
1058 }
1059
1060 /* 3. Make a copy of the command so we can mess with it. */
1061 else if (cmdline_copy == NULL)
1062 {
1063 next_cmdline = vim_strsave(next_cmdline);
1064 if (next_cmdline == NULL)
1065 {
1066 EMSG(_(e_outofmem));
1067 retval = FAIL;
1068 break;
1069 }
1070 }
1071 cmdline_copy = next_cmdline;
1072
1073#ifdef FEAT_EVAL
1074 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001075 * Save the current line when inside a ":while" or ":for", and when
1076 * the command looks like a ":while" or ":for", because we may need it
1077 * later. When there is a '|' and another command, it is stored
1078 * separately, because we need to be able to jump back to it from an
1079 * :endwhile/:endfor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001081 if (current_line == lines_ga.ga_len
1082 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001084 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 {
1086 retval = FAIL;
1087 break;
1088 }
1089 }
1090 did_endif = FALSE;
1091#endif
1092
1093 if (count++ == 0)
1094 {
1095 /*
1096 * All output from the commands is put below each other, without
1097 * waiting for a return. Don't do this when executing commands
1098 * from a script or when being called recursive (e.g. for ":e
1099 * +command file").
1100 */
1101 if (!(flags & DOCMD_NOWAIT) && !recursive)
1102 {
1103 msg_didout_before_start = msg_didout;
1104 msg_didany = FALSE; /* no output yet */
1105 msg_start();
1106 msg_scroll = TRUE; /* put messages below each other */
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001107 ++no_wait_return; /* don't wait for return until finished */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 ++RedrawingDisabled;
1109 did_inc = TRUE;
1110 }
1111 }
1112
1113 if (p_verbose >= 15 && sourcing_name != NULL)
1114 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 ++no_wait_return;
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001116 verbose_enter_scroll();
1117
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 smsg((char_u *)_("line %ld: %s"),
1119 (long)sourcing_lnum, cmdline_copy);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001120 if (msg_silent == 0)
1121 msg_puts((char_u *)"\n"); /* don't overwrite this */
1122
1123 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124 --no_wait_return;
1125 }
1126
1127 /*
1128 * 2. Execute one '|' separated command.
1129 * do_one_cmd() will return NULL if there is no trailing '|'.
1130 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1131 */
1132 ++recursive;
1133 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1134#ifdef FEAT_EVAL
1135 &cstack,
1136#endif
1137 cmd_getline, cmd_cookie);
1138 --recursive;
1139
1140#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001141 if (cmd_cookie == (void *)&cmd_loop_cookie)
1142 /* Use "current_line" from "cmd_loop_cookie", it may have been
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 * incremented when defining a function. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001144 current_line = cmd_loop_cookie.current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145#endif
1146
1147 if (next_cmdline == NULL)
1148 {
1149 vim_free(cmdline_copy);
1150 cmdline_copy = NULL;
1151#ifdef FEAT_CMDHIST
1152 /*
1153 * If the command was typed, remember it for the ':' register.
1154 * Do this AFTER executing the command to make :@: work.
1155 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001156 if (getline_equal(fgetline, cookie, getexline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 && new_last_cmdline != NULL)
1158 {
1159 vim_free(last_cmdline);
1160 last_cmdline = new_last_cmdline;
1161 new_last_cmdline = NULL;
1162 }
1163#endif
1164 }
1165 else
1166 {
1167 /* need to copy the command after the '|' to cmdline_copy, for the
1168 * next do_one_cmd() */
Bram Moolenaara7241f52008-06-24 20:39:31 +00001169 STRMOVE(cmdline_copy, next_cmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 next_cmdline = cmdline_copy;
1171 }
1172
1173
1174#ifdef FEAT_EVAL
1175 /* reset did_emsg for a function that is not aborted by an error */
1176 if (did_emsg && !force_abort
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001177 && getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 && !func_has_abort(real_cookie))
1179 did_emsg = FALSE;
1180
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001181 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 {
1183 ++current_line;
1184
1185 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001186 * An ":endwhile", ":endfor" and ":continue" is handled here.
1187 * If we were executing commands, jump back to the ":while" or
1188 * ":for".
1189 * If we were not executing commands, decrement cs_looplevel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001191 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001193 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001195 /* Jump back to the matching ":while" or ":for". Be careful
1196 * not to use a cs_line[] from an entry that isn't a ":while"
1197 * or ":for": It would make "current_line" invalid and can
1198 * cause a crash. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 if (!did_emsg && !got_int && !did_throw
1200 && cstack.cs_idx >= 0
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001201 && (cstack.cs_flags[cstack.cs_idx]
1202 & (CSF_WHILE | CSF_FOR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 && cstack.cs_line[cstack.cs_idx] >= 0
1204 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1205 {
1206 current_line = cstack.cs_line[cstack.cs_idx];
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001207 /* remember we jumped there */
1208 cstack.cs_lflags |= CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 line_breakcheck(); /* check if CTRL-C typed */
1210
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001211 /* Check for the next breakpoint at or after the ":while"
1212 * or ":for". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 if (breakpoint != NULL)
1214 {
1215 *breakpoint = dbg_find_breakpoint(
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001216 getline_equal(fgetline, cookie, getsourceline),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 fname,
1218 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1219 *dbg_tick = debug_tick;
1220 }
1221 }
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001222 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001224 /* can only get here with ":endwhile" or ":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 if (cstack.cs_idx >= 0)
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001226 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1227 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 }
1229 }
1230
1231 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001232 * For a ":while" or ":for" we need to remember the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001234 else if (cstack.cs_lflags & CSL_HAD_LOOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001236 cstack.cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1238 }
1239 }
1240
1241 /*
1242 * When not inside any ":while" loop, clear remembered lines.
1243 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001244 if (cstack.cs_looplevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 {
1246 if (lines_ga.ga_len > 0)
1247 {
1248 sourcing_lnum =
1249 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1250 free_cmdlines(&lines_ga);
1251 }
1252 current_line = 0;
1253 }
1254
1255 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001256 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1257 * being restored at the ":endtry". Reset them here and set the
1258 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1259 * This includes the case where a missing ":endif", ":endwhile" or
1260 * ":endfor" was detected by the ":finally" itself.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001262 if (cstack.cs_lflags & CSL_HAD_FINA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001264 cstack.cs_lflags &= ~CSL_HAD_FINA;
1265 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1266 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 did_throw ? (void *)current_exception : NULL);
1268 did_emsg = got_int = did_throw = FALSE;
1269 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1270 }
1271
1272 /* Update global "trylevel" for recursive calls to do_cmdline() from
1273 * within this loop. */
1274 trylevel = initial_trylevel + cstack.cs_trylevel;
1275
1276 /*
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001277 * If the outermost try conditional (across function calls and sourced
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 * files) is aborted because of an error, an interrupt, or an uncaught
1279 * exception, cancel everything. If it is left normally, reset
1280 * force_abort to get the non-EH compatible abortion behavior for
1281 * the rest of the script.
1282 */
1283 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1284 force_abort = FALSE;
1285
1286 /* Convert an interrupt to an exception if appropriate. */
1287 (void)do_intthrow(&cstack);
1288#endif /* FEAT_EVAL */
1289
1290 }
1291 /*
1292 * Continue executing command lines when:
1293 * - no CTRL-C typed, no aborting error, no exception thrown or try
1294 * conditionals need to be checked for executing finally clauses or
1295 * catching an interrupt exception
1296 * - didn't get an error message or lines are not typed
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001297 * - there is a command after '|', inside a :if, :while, :for or :try, or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 * looping for ":source" command or function call.
1299 */
1300 while (!((got_int
1301#ifdef FEAT_EVAL
1302 || (did_emsg && force_abort) || did_throw
1303#endif
1304 )
1305#ifdef FEAT_EVAL
1306 && cstack.cs_trylevel == 0
1307#endif
1308 )
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001309 && !(did_emsg
1310#ifdef FEAT_EVAL
1311 /* Keep going when inside try/catch, so that the error can be
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02001312 * deal with, except when it is a syntax error, it may cause
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001313 * the :endtry to be missed. */
1314 && (cstack.cs_trylevel == 0 || did_emsg_syntax)
1315#endif
1316 && used_getline
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001317 && (getline_equal(fgetline, cookie, getexmodeline)
1318 || getline_equal(fgetline, cookie, getexline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 && (next_cmdline != NULL
1320#ifdef FEAT_EVAL
1321 || cstack.cs_idx >= 0
1322#endif
1323 || (flags & DOCMD_REPEAT)));
1324
1325 vim_free(cmdline_copy);
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02001326 did_emsg_syntax = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327#ifdef FEAT_EVAL
1328 free_cmdlines(&lines_ga);
1329 ga_clear(&lines_ga);
1330
1331 if (cstack.cs_idx >= 0)
1332 {
1333 /*
1334 * If a sourced file or executed function ran to its end, report the
1335 * unclosed conditional.
1336 */
1337 if (!got_int && !did_throw
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001338 && ((getline_equal(fgetline, cookie, getsourceline)
1339 && !source_finished(fgetline, cookie))
1340 || (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001341 && !func_has_ended(real_cookie))))
1342 {
1343 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1344 EMSG(_(e_endtry));
1345 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1346 EMSG(_(e_endwhile));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001347 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1348 EMSG(_(e_endfor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 else
1350 EMSG(_(e_endif));
1351 }
1352
1353 /*
1354 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1355 * ":endtry" in a sourced file or executed function. If the try
1356 * conditional is in its finally clause, ignore anything pending.
1357 * If it is in a catch clause, finish the caught exception.
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001358 * Also cleanup any "cs_forinfo" structures.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 */
1360 do
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001361 {
1362 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1363
Bram Moolenaar89e5d682005-01-17 22:06:23 +00001364 if (idx >= 0)
1365 --idx; /* remove try block not in its finally clause */
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001366 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1367 &cstack.cs_looplevel);
1368 }
1369 while (cstack.cs_idx >= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 trylevel = initial_trylevel;
1371 }
1372
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001373 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1374 * lack was reported above and the error message is to be converted to an
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 * exception, do this now after rewinding the cstack. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001376 do_errthrow(&cstack, getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 ? (char_u *)"endfunction" : (char_u *)NULL);
1378
1379 if (trylevel == 0)
1380 {
1381 /*
1382 * When an exception is being thrown out of the outermost try
1383 * conditional, discard the uncaught exception, disable the conversion
1384 * of interrupts or errors to exceptions, and ensure that no more
1385 * commands are executed.
1386 */
1387 if (did_throw)
1388 {
1389 void *p = NULL;
1390 char_u *saved_sourcing_name;
1391 int saved_sourcing_lnum;
1392 struct msglist *messages = NULL, *next;
1393
1394 /*
1395 * If the uncaught exception is a user exception, report it as an
1396 * error. If it is an error exception, display the saved error
1397 * message now. For an interrupt exception, do nothing; the
1398 * interrupt message is given elsewhere.
1399 */
1400 switch (current_exception->type)
1401 {
1402 case ET_USER:
Bram Moolenaar9c13b352005-05-19 20:53:52 +00001403 vim_snprintf((char *)IObuff, IOSIZE,
1404 _("E605: Exception not caught: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 current_exception->value);
1406 p = vim_strsave(IObuff);
1407 break;
1408 case ET_ERROR:
1409 messages = current_exception->messages;
1410 current_exception->messages = NULL;
1411 break;
1412 case ET_INTERRUPT:
1413 break;
1414 default:
1415 p = vim_strsave((char_u *)_(e_internal));
1416 }
1417
1418 saved_sourcing_name = sourcing_name;
1419 saved_sourcing_lnum = sourcing_lnum;
1420 sourcing_name = current_exception->throw_name;
1421 sourcing_lnum = current_exception->throw_lnum;
1422 current_exception->throw_name = NULL;
1423
1424 discard_current_exception(); /* uses IObuff if 'verbose' */
1425 suppress_errthrow = TRUE;
1426 force_abort = TRUE;
1427
1428 if (messages != NULL)
1429 {
1430 do
1431 {
1432 next = messages->next;
1433 emsg(messages->msg);
1434 vim_free(messages->msg);
1435 vim_free(messages);
1436 messages = next;
1437 }
1438 while (messages != NULL);
1439 }
1440 else if (p != NULL)
1441 {
1442 emsg(p);
1443 vim_free(p);
1444 }
1445 vim_free(sourcing_name);
1446 sourcing_name = saved_sourcing_name;
1447 sourcing_lnum = saved_sourcing_lnum;
1448 }
1449
1450 /*
1451 * On an interrupt or an aborting error not converted to an exception,
1452 * disable the conversion of errors to exceptions. (Interrupts are not
1453 * converted any more, here.) This enables also the interrupt message
1454 * when force_abort is set and did_emsg unset in case of an interrupt
1455 * from a finally clause after an error.
1456 */
1457 else if (got_int || (did_emsg && force_abort))
1458 suppress_errthrow = TRUE;
1459 }
1460
1461 /*
1462 * The current cstack will be freed when do_cmdline() returns. An uncaught
1463 * exception will have to be rethrown in the previous cstack. If a function
1464 * has just returned or a script file was just finished and the previous
1465 * cstack belongs to the same function or, respectively, script file, it
1466 * will have to be checked for finally clauses to be executed due to the
1467 * ":return" or ":finish". This is done in do_one_cmd().
1468 */
1469 if (did_throw)
1470 need_rethrow = TRUE;
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001471 if ((getline_equal(fgetline, cookie, getsourceline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001472 && ex_nesting_level > source_level(real_cookie))
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001473 || (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 && ex_nesting_level > func_level(real_cookie) + 1))
1475 {
1476 if (!did_throw)
1477 check_cstack = TRUE;
1478 }
1479 else
1480 {
1481 /* When leaving a function, reduce nesting level. */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001482 if (getline_equal(fgetline, cookie, get_func_line))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 --ex_nesting_level;
1484 /*
1485 * Go to debug mode when returning from a function in which we are
1486 * single-stepping.
1487 */
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001488 if ((getline_equal(fgetline, cookie, getsourceline)
1489 || getline_equal(fgetline, cookie, get_func_line))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 && ex_nesting_level + 1 <= debug_break_level)
Bram Moolenaarbf55e142010-11-16 11:32:01 +01001491 do_debug(getline_equal(fgetline, cookie, getsourceline)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 ? (char_u *)_("End of sourced file")
1493 : (char_u *)_("End of function"));
1494 }
1495
1496 /*
1497 * Restore the exception environment (done after returning from the
1498 * debugger).
1499 */
1500 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +00001501 restore_dbg_stuff(&debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502
1503 msg_list = saved_msg_list;
1504#endif /* FEAT_EVAL */
1505
1506 /*
1507 * If there was too much output to fit on the command line, ask the user to
1508 * hit return before redrawing the screen. With the ":global" command we do
1509 * this only once after the command is finished.
1510 */
1511 if (did_inc)
1512 {
1513 --RedrawingDisabled;
1514 --no_wait_return;
1515 msg_scroll = FALSE;
1516
1517 /*
1518 * When just finished an ":if"-":else" which was typed, no need to
1519 * wait for hit-return. Also for an error situation.
1520 */
1521 if (retval == FAIL
1522#ifdef FEAT_EVAL
1523 || (did_endif && KeyTyped && !did_emsg)
1524#endif
1525 )
1526 {
1527 need_wait_return = FALSE;
1528 msg_didany = FALSE; /* don't wait when restarting edit */
1529 }
1530 else if (need_wait_return)
1531 {
1532 /*
1533 * The msg_start() above clears msg_didout. The wait_return we do
1534 * here should not overwrite the command that may be shown before
1535 * doing that.
1536 */
1537 msg_didout |= msg_didout_before_start;
1538 wait_return(FALSE);
1539 }
1540 }
1541
Bram Moolenaar2a942252012-11-28 23:03:07 +01001542#ifdef FEAT_EVAL
1543 did_endif = FALSE; /* in case do_cmdline used recursively */
1544#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 /*
1546 * Reset if_level, in case a sourced script file contains more ":if" than
1547 * ":endif" (could be ":if x | foo | endif").
1548 */
1549 if_level = 0;
Bram Moolenaar2e18a122012-11-28 19:10:54 +01001550#endif
Bram Moolenaard4ad0d42012-11-28 17:34:48 +01001551
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552 --call_depth;
1553 return retval;
1554}
1555
1556#ifdef FEAT_EVAL
1557/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001558 * Obtain a line when inside a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 */
1560 static char_u *
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001561get_loop_line(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 int c;
1563 void *cookie;
1564 int indent;
1565{
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001566 struct loop_cookie *cp = (struct loop_cookie *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 wcmd_T *wp;
1568 char_u *line;
1569
1570 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1571 {
1572 if (cp->repeating)
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001573 return NULL; /* trying to read past ":endwhile"/":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001575 /* First time inside the ":while"/":for": get line normally. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 if (cp->getline == NULL)
1577 line = getcmdline(c, 0L, indent);
1578 else
1579 line = cp->getline(c, cp->cookie, indent);
Bram Moolenaard68071d2006-05-02 22:08:30 +00001580 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 ++cp->current_line;
1582
1583 return line;
1584 }
1585
1586 KeyTyped = FALSE;
1587 ++cp->current_line;
1588 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1589 sourcing_lnum = wp->lnum;
1590 return vim_strsave(wp->line);
1591}
1592
1593/*
1594 * Store a line in "gap" so that a ":while" loop can execute it again.
1595 */
1596 static int
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001597store_loop_line(gap, line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 garray_T *gap;
1599 char_u *line;
1600{
1601 if (ga_grow(gap, 1) == FAIL)
1602 return FAIL;
1603 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1604 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1605 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 return OK;
1607}
1608
1609/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001610 * Free the lines stored for a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 */
1612 static void
1613free_cmdlines(gap)
1614 garray_T *gap;
1615{
1616 while (gap->ga_len > 0)
1617 {
1618 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1619 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 }
1621}
1622#endif
1623
1624/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001625 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1626 * "func". * Otherwise return TRUE when "fgetline" equals "func".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 int
Bram Moolenaar89d40322006-08-29 15:30:07 +00001629getline_equal(fgetline, cookie, func)
1630 char_u *(*fgetline) __ARGS((int, void *, int));
Bram Moolenaar78a15312009-05-15 19:33:18 +00001631 void *cookie UNUSED; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 char_u *(*func) __ARGS((int, void *, int));
1633{
1634#ifdef FEAT_EVAL
1635 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001636 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637
Bram Moolenaar89d40322006-08-29 15:30:07 +00001638 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001639 * function that's originally used to obtain the lines. This may be
1640 * nested several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001641 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001642 cp = (struct loop_cookie *)cookie;
1643 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 {
1645 gp = cp->getline;
1646 cp = cp->cookie;
1647 }
1648 return gp == func;
1649#else
Bram Moolenaar89d40322006-08-29 15:30:07 +00001650 return fgetline == func;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651#endif
1652}
1653
1654#if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1655/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001656 * If "fgetline" is get_loop_line(), return the cookie used by the original
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 * getline function. Otherwise return "cookie".
1658 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 void *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001660getline_cookie(fgetline, cookie)
Bram Moolenaar78a15312009-05-15 19:33:18 +00001661 char_u *(*fgetline) __ARGS((int, void *, int)) UNUSED;
Bram Moolenaar89d40322006-08-29 15:30:07 +00001662 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663{
1664# ifdef FEAT_EVAL
1665 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001666 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
Bram Moolenaar89d40322006-08-29 15:30:07 +00001668 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001669 * cookie that's originally used to obtain the lines. This may be nested
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 * several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001671 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001672 cp = (struct loop_cookie *)cookie;
1673 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 {
1675 gp = cp->getline;
1676 cp = cp->cookie;
1677 }
1678 return cp;
1679# else
1680 return cookie;
1681# endif
1682}
1683#endif
1684
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001685
1686/*
1687 * Helper function to apply an offset for buffer commands, i.e. ":bdelete",
1688 * ":bwipeout", etc.
1689 * Returns the buffer number.
1690 */
1691 static int
1692compute_buffer_local_count(addr_type, lnum, offset)
1693 int addr_type;
1694 int lnum;
1695 int offset;
1696{
1697 buf_T *buf;
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001698 buf_T *nextbuf;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001699 int count = offset;
1700
1701 buf = firstbuf;
1702 while (buf->b_next != NULL && buf->b_fnum < lnum)
1703 buf = buf->b_next;
1704 while (count != 0)
1705 {
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001706 count += (offset < 0) ? 1 : -1;
1707 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next;
1708 if (nextbuf == NULL)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001709 break;
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001710 buf = nextbuf;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001711 if (addr_type == ADDR_LOADED_BUFFERS)
1712 /* skip over unloaded buffers */
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001713 while (buf->b_ml.ml_mfp == NULL)
1714 {
1715 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next;
1716 if (nextbuf == NULL)
1717 break;
1718 buf = nextbuf;
1719 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001720 }
Bram Moolenaar4d84d932014-11-30 14:50:16 +01001721 /* we might have gone too far, last buffer is not loadedd */
1722 if (addr_type == ADDR_LOADED_BUFFERS)
1723 while (buf->b_ml.ml_mfp == NULL)
1724 {
1725 nextbuf = (offset >= 0) ? buf->b_prev : buf->b_next;
1726 if (nextbuf == NULL)
1727 break;
1728 buf = nextbuf;
1729 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001730 return buf->b_fnum;
1731}
1732
Bram Moolenaarf240e182014-11-27 18:33:02 +01001733#ifdef FEAT_WINDOWS
1734static int current_win_nr __ARGS((win_T *win));
1735static int current_tab_nr __ARGS((tabpage_T *tab));
1736
1737 static int
1738current_win_nr(win)
1739 win_T *win;
1740{
1741 win_T *wp;
1742 int nr = 0;
1743
1744 for (wp = firstwin; wp != NULL; wp = wp->w_next)
1745 {
1746 ++nr;
1747 if (wp == win)
1748 break;
1749 }
1750 return nr;
1751}
1752
1753 static int
1754current_tab_nr(tab)
1755 tabpage_T *tab;
1756{
1757 tabpage_T *tp;
1758 int nr = 0;
1759
1760 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
1761 {
1762 ++nr;
1763 if (tp == tab)
1764 break;
1765 }
1766 return nr;
1767}
1768
1769# define CURRENT_WIN_NR current_win_nr(curwin)
1770# define LAST_WIN_NR current_win_nr(NULL)
1771# define CURRENT_TAB_NR current_tab_nr(curtab)
1772# define LAST_TAB_NR current_tab_nr(NULL)
1773#else
1774# define CURRENT_WIN_NR 1
1775# define LAST_WIN_NR 1
1776# define CURRENT_TAB_NR 1
1777# define LAST_TAB_NR 1
1778#endif
1779
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001780
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781/*
1782 * Execute one Ex command.
1783 *
1784 * If 'sourcing' is TRUE, the command will be included in the error message.
1785 *
1786 * 1. skip comment lines and leading space
1787 * 2. handle command modifiers
Bram Moolenaar1c40a662014-11-27 16:38:11 +01001788 * 3. find the command
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001789 * 4. parse range
Bram Moolenaar1c40a662014-11-27 16:38:11 +01001790 * 5. Parse the command.
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001791 * 6. parse arguments
1792 * 7. switch on command name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793 *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001794 * Note: "fgetline" can be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001795 *
1796 * This function may be called recursively!
1797 */
1798#if (_MSC_VER == 1200)
1799/*
Bram Moolenaared203462004-06-16 11:19:22 +00001800 * Avoid optimisation bug in VC++ version 6.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 */
Bram Moolenaar281bdce2005-01-25 21:53:18 +00001802 #pragma optimize( "g", off )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803#endif
1804 static char_u *
1805do_one_cmd(cmdlinep, sourcing,
1806#ifdef FEAT_EVAL
1807 cstack,
1808#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001809 fgetline, cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 char_u **cmdlinep;
1811 int sourcing;
1812#ifdef FEAT_EVAL
1813 struct condstack *cstack;
1814#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001815 char_u *(*fgetline) __ARGS((int, void *, int));
1816 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817{
1818 char_u *p;
1819 linenr_T lnum;
1820 long n;
1821 char_u *errormsg = NULL; /* error message */
1822 exarg_T ea; /* Ex command arguments */
1823 long verbose_save = -1;
Bram Moolenaar8e258a42009-07-09 13:55:43 +00001824 int save_msg_scroll = msg_scroll;
1825 int save_msg_silent = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 int did_esilent = 0;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001827#ifdef HAVE_SANDBOX
1828 int did_sandbox = FALSE;
1829#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 cmdmod_T save_cmdmod;
1831 int ni; /* set when Not Implemented */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001832 char_u *cmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833
1834 vim_memset(&ea, 0, sizeof(ea));
1835 ea.line1 = 1;
1836 ea.line2 = 1;
1837#ifdef FEAT_EVAL
1838 ++ex_nesting_level;
1839#endif
1840
Bram Moolenaar21691f82012-12-05 19:13:18 +01001841 /* When the last file has not been edited :q has to be typed twice. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 if (quitmore
1843#ifdef FEAT_EVAL
1844 /* avoid that a function call in 'statusline' does this */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001845 && !getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01001846#endif
1847#ifdef FEAT_AUTOCMD
Bram Moolenaar21691f82012-12-05 19:13:18 +01001848 /* avoid that an autocommand, e.g. QuitPre, does this */
1849 && !getline_equal(fgetline, cookie, getnextac)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850#endif
1851 )
1852 --quitmore;
1853
1854 /*
1855 * Reset browse, confirm, etc.. They are restored when returning, for
1856 * recursive calls.
1857 */
1858 save_cmdmod = cmdmod;
1859 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1860
Bram Moolenaarcbb37ad2006-08-16 15:04:21 +00001861 /* "#!anything" is handled like a comment. */
1862 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1863 goto doend;
1864
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 /*
1866 * Repeat until no more command modifiers are found.
1867 */
1868 ea.cmd = *cmdlinep;
1869 for (;;)
1870 {
1871/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001872 * 1. Skip comment lines and leading white space and colons.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 */
1874 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1875 ++ea.cmd;
1876
1877 /* in ex mode, an empty line works like :+ */
1878 if (*ea.cmd == NUL && exmode_active
Bram Moolenaar89d40322006-08-29 15:30:07 +00001879 && (getline_equal(fgetline, cookie, getexmodeline)
1880 || getline_equal(fgetline, cookie, getexline))
Bram Moolenaardf177f62005-02-22 08:39:57 +00001881 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 {
1883 ea.cmd = (char_u *)"+";
1884 ex_pressedreturn = TRUE;
1885 }
1886
1887 /* ignore comment and empty lines */
Bram Moolenaarf998c042007-11-20 11:31:26 +00001888 if (*ea.cmd == '"')
1889 goto doend;
1890 if (*ea.cmd == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001891 {
1892 ex_pressedreturn = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895
1896/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01001897 * 2. Handle command modifiers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 */
1899 p = ea.cmd;
1900 if (VIM_ISDIGIT(*ea.cmd))
1901 p = skipwhite(skipdigits(ea.cmd));
1902 switch (*p)
1903 {
1904 /* When adding an entry, also modify cmd_exists(). */
1905 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1906 break;
1907#ifdef FEAT_WINDOWS
1908 cmdmod.split |= WSP_ABOVE;
1909#endif
1910 continue;
1911
1912 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1913 {
1914#ifdef FEAT_WINDOWS
1915 cmdmod.split |= WSP_BELOW;
1916#endif
1917 continue;
1918 }
1919 if (checkforcmd(&ea.cmd, "browse", 3))
1920 {
Bram Moolenaard812df62008-11-09 12:46:09 +00001921#ifdef FEAT_BROWSE_CMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 cmdmod.browse = TRUE;
1923#endif
1924 continue;
1925 }
1926 if (!checkforcmd(&ea.cmd, "botright", 2))
1927 break;
1928#ifdef FEAT_WINDOWS
1929 cmdmod.split |= WSP_BOT;
1930#endif
1931 continue;
1932
1933 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1934 break;
1935#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1936 cmdmod.confirm = TRUE;
1937#endif
1938 continue;
1939
1940 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1941 {
1942 cmdmod.keepmarks = TRUE;
1943 continue;
1944 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001945 if (checkforcmd(&ea.cmd, "keepalt", 5))
1946 {
1947 cmdmod.keepalt = TRUE;
1948 continue;
1949 }
Bram Moolenaara939e432013-11-09 05:30:26 +01001950 if (checkforcmd(&ea.cmd, "keeppatterns", 5))
1951 {
1952 cmdmod.keeppatterns = TRUE;
1953 continue;
1954 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1956 break;
1957 cmdmod.keepjumps = TRUE;
1958 continue;
1959
1960 /* ":hide" and ":hide | cmd" are not modifiers */
1961 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1962 || *p == NUL || ends_excmd(*p))
1963 break;
1964 ea.cmd = p;
1965 cmdmod.hide = TRUE;
1966 continue;
1967
1968 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1969 {
1970 cmdmod.lockmarks = TRUE;
1971 continue;
1972 }
1973
1974 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1975 break;
1976#ifdef FEAT_WINDOWS
1977 cmdmod.split |= WSP_ABOVE;
1978#endif
1979 continue;
1980
Bram Moolenaar5803ae62014-03-23 16:04:02 +01001981 case 'n': if (checkforcmd(&ea.cmd, "noautocmd", 3))
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001982 {
Bram Moolenaar5803ae62014-03-23 16:04:02 +01001983#ifdef FEAT_AUTOCMD
1984 if (cmdmod.save_ei == NULL)
1985 {
1986 /* Set 'eventignore' to "all". Restore the
1987 * existing option value later. */
1988 cmdmod.save_ei = vim_strsave(p_ei);
1989 set_string_option_direct((char_u *)"ei", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001990 (char_u *)"all", OPT_FREE, SID_NONE);
Bram Moolenaar5803ae62014-03-23 16:04:02 +01001991 }
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001992#endif
Bram Moolenaar5803ae62014-03-23 16:04:02 +01001993 continue;
1994 }
1995 if (!checkforcmd(&ea.cmd, "noswapfile", 6))
1996 break;
1997 cmdmod.noswapfile = TRUE;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001998 continue;
1999
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
2001 break;
2002#ifdef FEAT_WINDOWS
2003 cmdmod.split |= WSP_BELOW;
2004#endif
2005 continue;
2006
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002007 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
2008 {
2009#ifdef HAVE_SANDBOX
2010 if (!did_sandbox)
2011 ++sandbox;
2012 did_sandbox = TRUE;
2013#endif
2014 continue;
2015 }
2016 if (!checkforcmd(&ea.cmd, "silent", 3))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 break;
Bram Moolenaar8e258a42009-07-09 13:55:43 +00002018 if (save_msg_silent == -1)
2019 save_msg_silent = msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 ++msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
2022 {
2023 /* ":silent!", but not "silent !cmd" */
2024 ea.cmd = skipwhite(ea.cmd + 1);
2025 ++emsg_silent;
2026 ++did_esilent;
2027 }
2028 continue;
2029
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002030 case 't': if (checkforcmd(&p, "tab", 3))
2031 {
2032#ifdef FEAT_WINDOWS
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002033 if (vim_isdigit(*ea.cmd))
2034 cmdmod.tab = atoi((char *)ea.cmd) + 1;
2035 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00002036 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002037 ea.cmd = p;
2038#endif
2039 continue;
2040 }
2041 if (!checkforcmd(&ea.cmd, "topleft", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 break;
2043#ifdef FEAT_WINDOWS
2044 cmdmod.split |= WSP_TOP;
2045#endif
2046 continue;
2047
Bram Moolenaar8e258a42009-07-09 13:55:43 +00002048 case 'u': if (!checkforcmd(&ea.cmd, "unsilent", 3))
2049 break;
2050 if (save_msg_silent == -1)
2051 save_msg_silent = msg_silent;
2052 msg_silent = 0;
2053 continue;
2054
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
2056 {
2057#ifdef FEAT_VERTSPLIT
2058 cmdmod.split |= WSP_VERT;
2059#endif
2060 continue;
2061 }
2062 if (!checkforcmd(&p, "verbose", 4))
2063 break;
2064 if (verbose_save < 0)
2065 verbose_save = p_verbose;
Bram Moolenaared203462004-06-16 11:19:22 +00002066 if (vim_isdigit(*ea.cmd))
2067 p_verbose = atoi((char *)ea.cmd);
2068 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 p_verbose = 1;
2070 ea.cmd = p;
2071 continue;
2072 }
2073 break;
2074 }
2075
2076#ifdef FEAT_EVAL
2077 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
2078 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
2079#else
2080 ea.skip = (if_level > 0);
2081#endif
2082
2083#ifdef FEAT_EVAL
Bram Moolenaar05159a02005-02-26 23:04:13 +00002084# ifdef FEAT_PROFILE
2085 /* Count this line for profiling if ea.skip is FALSE. */
Bram Moolenaar371d5402006-03-20 21:47:49 +00002086 if (do_profiling == PROF_YES && !ea.skip)
Bram Moolenaar05159a02005-02-26 23:04:13 +00002087 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002088 if (getline_equal(fgetline, cookie, get_func_line))
2089 func_line_exec(getline_cookie(fgetline, cookie));
2090 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +00002091 script_line_exec();
2092 }
2093#endif
2094
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 /* May go to debug mode. If this happens and the ">quit" debug command is
2096 * used, throw an interrupt exception and skip the next command. */
2097 dbg_check_breakpoint(&ea);
2098 if (!ea.skip && got_int)
2099 {
2100 ea.skip = TRUE;
2101 (void)do_intthrow(cstack);
2102 }
2103#endif
2104
2105/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002106 * 3. Skip over the range to find the command. Let "p" point to after it.
2107 *
2108 * We need the command to know what kind of range it uses.
2109 */
2110 cmd = ea.cmd;
2111 ea.cmd = skip_range(ea.cmd, NULL);
2112 if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
2113 ea.cmd = skipwhite(ea.cmd + 1);
2114 p = find_command(&ea, NULL);
2115
2116/*
2117 * 4. parse a range specifier of the form: addr [,addr] [;addr] ..
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 *
2119 * where 'addr' is:
2120 *
2121 * % (entire file)
2122 * $ [+-NUM]
2123 * 'x [+-NUM] (where x denotes a currently defined mark)
2124 * . [+-NUM]
2125 * [+-NUM]..
2126 * NUM
2127 *
2128 * The ea.cmd pointer is updated to point to the first character following the
2129 * range spec. If an initial address is found, but no second, the upper bound
2130 * is equal to the lower.
2131 */
2132
Bram Moolenaarf8a447c2014-11-30 22:51:06 +01002133 if (ea.cmdidx != CMD_SIZE
2134#ifdef FEAT_USR_CMDS
2135 && ea.cmdidx != CMD_USER
Bram Moolenaarabe382c2015-01-07 13:15:45 +01002136 && ea.cmdidx != CMD_USER_BUF
Bram Moolenaarf8a447c2014-11-30 22:51:06 +01002137#endif
2138 )
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002139 ea.addr_type = cmdnames[(int)ea.cmdidx].cmd_addr_type;
2140 else
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002141#ifdef FEAT_USR_CMDS
Bram Moolenaarabe382c2015-01-07 13:15:45 +01002142 if (ea.cmdidx != CMD_USER && ea.cmdidx != CMD_USER_BUF)
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002143#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002144 ea.addr_type = ADDR_LINES;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002145 /* ea.addr_type for user commands is set by find_ucmd */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002146 ea.cmd = cmd;
2147
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148 /* repeat for all ',' or ';' separated addresses */
2149 for (;;)
2150 {
2151 ea.line1 = ea.line2;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002152 switch (ea.addr_type)
2153 {
2154 case ADDR_LINES:
2155 /* default is current line number */
2156 ea.line2 = curwin->w_cursor.lnum;
2157 break;
2158 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01002159 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002160 ea.line2 = lnum;
2161 break;
2162 case ADDR_ARGUMENTS:
2163 ea.line2 = curwin->w_arg_idx + 1;
2164 break;
2165 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002166 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002167 ea.line2 = curbuf->b_fnum;
2168 break;
2169 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01002170 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002171 ea.line2 = lnum;
2172 break;
2173 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 ea.cmd = skipwhite(ea.cmd);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002175 lnum = get_address(&ea.cmd, ea.addr_type, ea.skip, ea.addr_count == 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 if (ea.cmd == NULL) /* error detected */
2177 goto doend;
2178 if (lnum == MAXLNUM)
2179 {
2180 if (*ea.cmd == '%') /* '%' - all lines */
2181 {
Bram Moolenaar4d84d932014-11-30 14:50:16 +01002182 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 ++ea.cmd;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002184 switch (ea.addr_type)
2185 {
2186 case ADDR_LINES:
2187 ea.line1 = 1;
2188 ea.line2 = curbuf->b_ml.ml_line_count;
2189 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002190 case ADDR_LOADED_BUFFERS:
Bram Moolenaar4d84d932014-11-30 14:50:16 +01002191 buf = firstbuf;
2192 while (buf->b_next != NULL && buf->b_ml.ml_mfp == NULL)
2193 buf = buf->b_next;
2194 ea.line1 = buf->b_fnum;
2195 buf = lastbuf;
2196 while (buf->b_prev != NULL && buf->b_ml.ml_mfp == NULL)
2197 buf = buf->b_prev;
2198 ea.line2 = buf->b_fnum;
2199 break;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002200 case ADDR_BUFFERS:
Bram Moolenaar4d84d932014-11-30 14:50:16 +01002201 ea.line1 = firstbuf->b_fnum;
2202 ea.line2 = lastbuf->b_fnum;
2203 break;
2204 case ADDR_WINDOWS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002205 case ADDR_TABS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002206 if (IS_USER_CMDIDX(ea.cmdidx))
2207 {
2208 ea.line1 = 1;
2209 ea.line2 = ea.addr_type == ADDR_WINDOWS
2210 ? LAST_WIN_NR : LAST_TAB_NR;
2211 }
2212 else
2213 {
2214 /* there is no Vim command which uses '%' and
2215 * ADDR_WINDOWS or ADDR_TABS */
2216 errormsg = (char_u *)_(e_invrange);
2217 goto doend;
2218 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002219 break;
2220 case ADDR_ARGUMENTS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002221 if (ARGCOUNT == 0)
2222 ea.line1 = ea.line2 = 0;
2223 else
2224 {
2225 ea.line1 = 1;
2226 ea.line2 = ARGCOUNT;
2227 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002228 break;
2229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 ++ea.addr_count;
2231 }
2232 /* '*' - visual area */
2233 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
2234 {
2235 pos_T *fp;
2236
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002237 if (ea.addr_type != ADDR_LINES)
2238 {
2239 errormsg = (char_u *)_(e_invrange);
2240 goto doend;
2241 }
2242
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 ++ea.cmd;
2244 if (!ea.skip)
2245 {
2246 fp = getmark('<', FALSE);
2247 if (check_mark(fp) == FAIL)
2248 goto doend;
2249 ea.line1 = fp->lnum;
2250 fp = getmark('>', FALSE);
2251 if (check_mark(fp) == FAIL)
2252 goto doend;
2253 ea.line2 = fp->lnum;
2254 ++ea.addr_count;
2255 }
2256 }
2257 }
2258 else
2259 ea.line2 = lnum;
2260 ea.addr_count++;
2261
2262 if (*ea.cmd == ';')
2263 {
2264 if (!ea.skip)
2265 curwin->w_cursor.lnum = ea.line2;
2266 }
2267 else if (*ea.cmd != ',')
2268 break;
2269 ++ea.cmd;
2270 }
2271
2272 /* One address given: set start and end lines */
2273 if (ea.addr_count == 1)
2274 {
2275 ea.line1 = ea.line2;
2276 /* ... but only implicit: really no address given */
2277 if (lnum == MAXLNUM)
2278 ea.addr_count = 0;
2279 }
2280
2281 /* Don't leave the cursor on an illegal line (caused by ';') */
2282 check_cursor_lnum();
2283
2284/*
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002285 * 5. Parse the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002286 */
2287
2288 /*
2289 * Skip ':' and any white space
2290 */
2291 ea.cmd = skipwhite(ea.cmd);
2292 while (*ea.cmd == ':')
2293 ea.cmd = skipwhite(ea.cmd + 1);
2294
2295 /*
2296 * If we got a line, but no command, then go to the line.
2297 * If we find a '|' or '\n' we set ea.nextcmd.
2298 */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01002299 if (*ea.cmd == NUL || *ea.cmd == '"'
2300 || (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 {
2302 /*
2303 * strange vi behaviour:
2304 * ":3" jumps to line 3
2305 * ":3|..." prints line 3
2306 * ":|" prints current line
2307 */
2308 if (ea.skip) /* skip this if inside :if */
2309 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002310 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 {
2312 ea.cmdidx = CMD_print;
2313 ea.argt = RANGE+COUNT+TRLBAR;
2314 if ((errormsg = invalid_range(&ea)) == NULL)
2315 {
2316 correct_range(&ea);
2317 ex_print(&ea);
2318 }
2319 }
2320 else if (ea.addr_count != 0)
2321 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002322 if (ea.line2 > curbuf->b_ml.ml_line_count)
2323 {
2324 /* With '-' in 'cpoptions' a line number past the file is an
2325 * error, otherwise put it at the end of the file. */
2326 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2327 ea.line2 = -1;
2328 else
2329 ea.line2 = curbuf->b_ml.ml_line_count;
2330 }
2331
2332 if (ea.line2 < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002333 errormsg = (char_u *)_(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 else
2335 {
2336 if (ea.line2 == 0)
2337 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338 else
2339 curwin->w_cursor.lnum = ea.line2;
2340 beginline(BL_SOL | BL_FIX);
2341 }
2342 }
2343 goto doend;
2344 }
2345
Bram Moolenaard5005162014-08-22 23:05:54 +02002346#ifdef FEAT_AUTOCMD
2347 /* If this looks like an undefined user command and there are CmdUndefined
2348 * autocommands defined, trigger the matching autocommands. */
2349 if (p != NULL && ea.cmdidx == CMD_SIZE && !ea.skip
2350 && ASCII_ISUPPER(*ea.cmd)
2351 && has_cmdundefined())
2352 {
Bram Moolenaard5005162014-08-22 23:05:54 +02002353 int ret;
2354
Bram Moolenaar5a31b462014-08-23 14:16:20 +02002355 p = ea.cmd;
Bram Moolenaard5005162014-08-22 23:05:54 +02002356 while (ASCII_ISALNUM(*p))
2357 ++p;
Bram Moolenaar120f4a82014-09-09 12:22:06 +02002358 p = vim_strnsave(ea.cmd, (int)(p - ea.cmd));
Bram Moolenaard5005162014-08-22 23:05:54 +02002359 ret = apply_autocmds(EVENT_CMDUNDEFINED, p, p, TRUE, NULL);
2360 vim_free(p);
2361 if (ret && !aborting())
2362 p = find_command(&ea, NULL);
2363 }
2364#endif
2365
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366#ifdef FEAT_USR_CMDS
2367 if (p == NULL)
2368 {
2369 if (!ea.skip)
2370 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2371 goto doend;
2372 }
2373 /* Check for wrong commands. */
2374 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2375 {
2376 errormsg = uc_fun_cmd();
2377 goto doend;
2378 }
2379#endif
2380 if (ea.cmdidx == CMD_SIZE)
2381 {
2382 if (!ea.skip)
2383 {
2384 STRCPY(IObuff, _("E492: Not an editor command"));
2385 if (!sourcing)
Bram Moolenaara6f4d612011-09-21 19:10:46 +02002386 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 errormsg = IObuff;
Bram Moolenaar00b8ae02012-08-23 18:43:10 +02002388 did_emsg_syntax = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 }
2390 goto doend;
2391 }
2392
Bram Moolenaar958636c2014-10-21 20:01:58 +02002393 ni = (!IS_USER_CMDIDX(ea.cmdidx)
2394 && (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00002395#ifdef HAVE_EX_SCRIPT_NI
2396 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2397#endif
2398 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399
2400#ifndef FEAT_EVAL
2401 /*
2402 * When the expression evaluation is disabled, recognize the ":if" and
2403 * ":endif" commands and ignore everything in between it.
2404 */
2405 if (ea.cmdidx == CMD_if)
2406 ++if_level;
2407 if (if_level)
2408 {
2409 if (ea.cmdidx == CMD_endif)
2410 --if_level;
2411 goto doend;
2412 }
2413
2414#endif
2415
Bram Moolenaar196b3b02008-06-20 16:51:41 +00002416 /* forced commands */
2417 if (*p == '!' && ea.cmdidx != CMD_substitute
2418 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 {
2420 ++p;
2421 ea.forceit = TRUE;
2422 }
2423 else
2424 ea.forceit = FALSE;
2425
2426/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01002427 * 6. Parse arguments.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02002429 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002430 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431
2432 if (!ea.skip)
2433 {
2434#ifdef HAVE_SANDBOX
2435 if (sandbox != 0 && !(ea.argt & SBOXOK))
2436 {
2437 /* Command not allowed in sandbox. */
2438 errormsg = (char_u *)_(e_sandbox);
2439 goto doend;
2440 }
2441#endif
2442 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2443 {
2444 /* Command not allowed in non-'modifiable' buffer */
2445 errormsg = (char_u *)_(e_modifiable);
2446 goto doend;
2447 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002448
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002449 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar958636c2014-10-21 20:01:58 +02002450 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002452 /* Command not allowed when editing the command line. */
2453#ifdef FEAT_CMDWIN
2454 if (cmdwin_type != 0)
2455 errormsg = (char_u *)_(e_cmdwin);
2456 else
2457#endif
2458 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 goto doend;
2460 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002461#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002462 /* Disallow editing another buffer when "curbuf_lock" is set.
2463 * Do allow ":edit" (check for argument later).
2464 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002465 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002466 && ea.cmdidx != CMD_edit
2467 && ea.cmdidx != CMD_checktime
Bram Moolenaar958636c2014-10-21 20:01:58 +02002468 && !IS_USER_CMDIDX(ea.cmdidx)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002469 && curbuf_locked())
2470 goto doend;
2471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472
2473 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2474 {
2475 /* no range allowed */
2476 errormsg = (char_u *)_(e_norange);
2477 goto doend;
2478 }
2479 }
2480
2481 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2482 {
2483 errormsg = (char_u *)_(e_nobang);
2484 goto doend;
2485 }
2486
2487 /*
2488 * Don't complain about the range if it is not used
2489 * (could happen if line_count is accidentally set to 0).
2490 */
2491 if (!ea.skip && !ni)
2492 {
2493 /*
2494 * If the range is backwards, ask for confirmation and, if given, swap
2495 * ea.line1 & ea.line2 so it's forwards again.
2496 * When global command is busy, don't ask, will fail below.
2497 */
2498 if (!global_busy && ea.line1 > ea.line2)
2499 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002500 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002502 if (sourcing || exmode_active)
2503 {
2504 errormsg = (char_u *)_("E493: Backwards range given");
2505 goto doend;
2506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507 if (ask_yesno((char_u *)
2508 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002509 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 }
2511 lnum = ea.line1;
2512 ea.line1 = ea.line2;
2513 ea.line2 = lnum;
2514 }
2515 if ((errormsg = invalid_range(&ea)) != NULL)
2516 goto doend;
2517 }
2518
2519 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2520 ea.line2 = 1;
2521
2522 correct_range(&ea);
2523
2524#ifdef FEAT_FOLDING
2525 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2526 {
2527 /* Put the first line at the start of a closed fold, put the last line
2528 * at the end of a closed fold. */
2529 (void)hasFolding(ea.line1, &ea.line1, NULL);
2530 (void)hasFolding(ea.line2, NULL, &ea.line2);
2531 }
2532#endif
2533
2534#ifdef FEAT_QUICKFIX
2535 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002536 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 * option here, so things like % get expanded.
2538 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002539 p = replace_makeprg(&ea, p, cmdlinep);
2540 if (p == NULL)
2541 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542#endif
2543
2544 /*
2545 * Skip to start of argument.
2546 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2547 */
2548 if (ea.cmdidx == CMD_bang)
2549 ea.arg = p;
2550 else
2551 ea.arg = skipwhite(p);
2552
2553 /*
2554 * Check for "++opt=val" argument.
2555 * Must be first, allow ":w ++enc=utf8 !cmd"
2556 */
2557 if (ea.argt & ARGOPT)
2558 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2559 if (getargopt(&ea) == FAIL && !ni)
2560 {
2561 errormsg = (char_u *)_(e_invarg);
2562 goto doend;
2563 }
2564
2565 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2566 {
2567 if (*ea.arg == '>') /* append */
2568 {
2569 if (*++ea.arg != '>') /* typed wrong */
2570 {
2571 errormsg = (char_u *)_("E494: Use w or w>>");
2572 goto doend;
2573 }
2574 ea.arg = skipwhite(ea.arg + 1);
2575 ea.append = TRUE;
2576 }
2577 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2578 {
2579 ++ea.arg;
2580 ea.usefilter = TRUE;
2581 }
2582 }
2583
2584 if (ea.cmdidx == CMD_read)
2585 {
2586 if (ea.forceit)
2587 {
2588 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2589 ea.forceit = FALSE;
2590 }
2591 else if (*ea.arg == '!') /* :r !filter */
2592 {
2593 ++ea.arg;
2594 ea.usefilter = TRUE;
2595 }
2596 }
2597
2598 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2599 {
2600 ea.amount = 1;
2601 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2602 {
2603 ++ea.arg;
2604 ++ea.amount;
2605 }
2606 ea.arg = skipwhite(ea.arg);
2607 }
2608
2609 /*
2610 * Check for "+command" argument, before checking for next command.
2611 * Don't do this for ":read !cmd" and ":write !cmd".
2612 */
2613 if ((ea.argt & EDITCMD) && !ea.usefilter)
2614 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2615
2616 /*
2617 * Check for '|' to separate commands and '"' to start comments.
2618 * Don't do this for ":read !cmd" and ":write !cmd".
2619 */
2620 if ((ea.argt & TRLBAR) && !ea.usefilter)
2621 separate_nextcmd(&ea);
2622
2623 /*
2624 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002625 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2626 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002628 else if (ea.cmdidx == CMD_bang
2629 || ea.cmdidx == CMD_global
2630 || ea.cmdidx == CMD_vglobal
2631 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 {
2633 for (p = ea.arg; *p; ++p)
2634 {
2635 /* Remove one backslash before a newline, so that it's possible to
2636 * pass a newline to the shell and also a newline that is preceded
2637 * with a backslash. This makes it impossible to end a shell
2638 * command in a backslash, but that doesn't appear useful.
2639 * Halving the number of backslashes is incompatible with previous
2640 * versions. */
2641 if (*p == '\\' && p[1] == '\n')
Bram Moolenaara7241f52008-06-24 20:39:31 +00002642 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 else if (*p == '\n')
2644 {
2645 ea.nextcmd = p + 1;
2646 *p = NUL;
2647 break;
2648 }
2649 }
2650 }
2651
2652 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2653 {
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002654 buf_T *buf;
2655
Bram Moolenaar071d4272004-06-13 20:20:40 +00002656 ea.line1 = 1;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01002657 switch (ea.addr_type)
2658 {
2659 case ADDR_LINES:
2660 ea.line2 = curbuf->b_ml.ml_line_count;
2661 break;
2662 case ADDR_LOADED_BUFFERS:
2663 buf = firstbuf;
2664 while (buf->b_next != NULL && buf->b_ml.ml_mfp == NULL)
2665 buf = buf->b_next;
2666 ea.line1 = buf->b_fnum;
2667 buf = lastbuf;
2668 while (buf->b_prev != NULL && buf->b_ml.ml_mfp == NULL)
2669 buf = buf->b_prev;
2670 ea.line2 = buf->b_fnum;
2671 break;
2672 case ADDR_BUFFERS:
2673 ea.line1 = firstbuf->b_fnum;
2674 ea.line2 = lastbuf->b_fnum;
2675 break;
2676 case ADDR_WINDOWS:
2677 ea.line2 = LAST_WIN_NR;
2678 break;
2679 case ADDR_TABS:
2680 ea.line2 = LAST_TAB_NR;
2681 break;
2682 case ADDR_ARGUMENTS:
2683 if (ARGCOUNT == 0)
2684 ea.line1 = ea.line2 = 0;
2685 else
2686 ea.line2 = ARGCOUNT;
2687 break;
2688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 }
2690
2691 /* accept numbered register only when no count allowed (:put) */
2692 if ( (ea.argt & REGSTR)
2693 && *ea.arg != NUL
Bram Moolenaar958636c2014-10-21 20:01:58 +02002694 /* Do not allow register = for user commands */
2695 && (!IS_USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2697 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002698#ifndef FEAT_CLIPBOARD
2699 /* check these explicitly for a more specific error message */
2700 if (*ea.arg == '*' || *ea.arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701 {
Bram Moolenaar85de2062011-05-05 14:26:41 +02002702 errormsg = (char_u *)_(e_invalidreg);
2703 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 }
2705#endif
Bram Moolenaar958636c2014-10-21 20:01:58 +02002706 if (valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2707 && !IS_USER_CMDIDX(ea.cmdidx))))
Bram Moolenaar85de2062011-05-05 14:26:41 +02002708 {
2709 ea.regname = *ea.arg++;
2710#ifdef FEAT_EVAL
2711 /* for '=' register: accept the rest of the line as an expression */
2712 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2713 {
2714 set_expr_line(vim_strsave(ea.arg));
2715 ea.arg += STRLEN(ea.arg);
2716 }
2717#endif
2718 ea.arg = skipwhite(ea.arg);
2719 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 }
2721
2722 /*
2723 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2724 * count, it's a buffer name.
2725 */
2726 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2727 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2728 || vim_iswhite(*p)))
2729 {
2730 n = getdigits(&ea.arg);
2731 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002732 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 {
2734 errormsg = (char_u *)_(e_zerocount);
2735 goto doend;
2736 }
2737 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2738 {
2739 ea.line2 = n;
2740 if (ea.addr_count == 0)
2741 ea.addr_count = 1;
2742 }
2743 else
2744 {
2745 ea.line1 = ea.line2;
2746 ea.line2 += n - 1;
2747 ++ea.addr_count;
2748 /*
2749 * Be vi compatible: no error message for out of range.
2750 */
2751 if (ea.line2 > curbuf->b_ml.ml_line_count)
2752 ea.line2 = curbuf->b_ml.ml_line_count;
2753 }
2754 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002755
2756 /*
2757 * Check for flags: 'l', 'p' and '#'.
2758 */
2759 if (ea.argt & EXFLAGS)
2760 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002762 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002763 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 {
2765 errormsg = (char_u *)_(e_trailing);
2766 goto doend;
2767 }
2768
2769 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2770 {
2771 errormsg = (char_u *)_(e_argreq);
2772 goto doend;
2773 }
2774
2775#ifdef FEAT_EVAL
2776 /*
2777 * Skip the command when it's not going to be executed.
2778 * The commands like :if, :endif, etc. always need to be executed.
2779 * Also make an exception for commands that handle a trailing command
2780 * themselves.
2781 */
2782 if (ea.skip)
2783 {
2784 switch (ea.cmdidx)
2785 {
2786 /* commands that need evaluation */
2787 case CMD_while:
2788 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002789 case CMD_for:
2790 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 case CMD_if:
2792 case CMD_elseif:
2793 case CMD_else:
2794 case CMD_endif:
2795 case CMD_try:
2796 case CMD_catch:
2797 case CMD_finally:
2798 case CMD_endtry:
2799 case CMD_function:
2800 break;
2801
2802 /* Commands that handle '|' themselves. Check: A command should
2803 * either have the TRLBAR flag, appear in this list or appear in
2804 * the list at ":help :bar". */
2805 case CMD_aboveleft:
2806 case CMD_and:
2807 case CMD_belowright:
2808 case CMD_botright:
2809 case CMD_browse:
2810 case CMD_call:
2811 case CMD_confirm:
2812 case CMD_delfunction:
2813 case CMD_djump:
2814 case CMD_dlist:
2815 case CMD_dsearch:
2816 case CMD_dsplit:
2817 case CMD_echo:
2818 case CMD_echoerr:
2819 case CMD_echomsg:
2820 case CMD_echon:
2821 case CMD_execute:
2822 case CMD_help:
2823 case CMD_hide:
2824 case CMD_ijump:
2825 case CMD_ilist:
2826 case CMD_isearch:
2827 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002828 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 case CMD_keepjumps:
2830 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01002831 case CMD_keeppatterns:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002832 case CMD_leftabove:
2833 case CMD_let:
2834 case CMD_lockmarks:
Bram Moolenaar0ba04292010-07-14 23:23:17 +02002835 case CMD_lua:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002837 case CMD_mzscheme:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01002838 case CMD_noautocmd:
2839 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 case CMD_perl:
2841 case CMD_psearch:
2842 case CMD_python:
Bram Moolenaar368373e2010-07-19 20:46:22 +02002843 case CMD_py3:
Bram Moolenaarb6590522010-07-21 16:00:43 +02002844 case CMD_python3:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 case CMD_return:
2846 case CMD_rightbelow:
2847 case CMD_ruby:
2848 case CMD_silent:
2849 case CMD_smagic:
2850 case CMD_snomagic:
2851 case CMD_substitute:
2852 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002853 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 case CMD_tcl:
2855 case CMD_throw:
2856 case CMD_tilde:
2857 case CMD_topleft:
2858 case CMD_unlet:
2859 case CMD_verbose:
2860 case CMD_vertical:
Bram Moolenaar12bde492011-06-13 01:19:56 +02002861 case CMD_wincmd:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002862 break;
2863
2864 default: goto doend;
2865 }
2866 }
2867#endif
2868
2869 if (ea.argt & XFILE)
2870 {
2871 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2872 goto doend;
2873 }
2874
2875#ifdef FEAT_LISTCMDS
2876 /*
2877 * Accept buffer name. Cannot be used at the same time with a buffer
2878 * number. Don't do this for a user command.
2879 */
2880 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
Bram Moolenaar958636c2014-10-21 20:01:58 +02002881 && !IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 {
2883 /*
2884 * :bdelete, :bwipeout and :bunload take several arguments, separated
2885 * by spaces: find next space (skipping over escaped characters).
2886 * The others take one argument: ignore trailing spaces.
2887 */
2888 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2889 || ea.cmdidx == CMD_bunload)
2890 p = skiptowhite_esc(ea.arg);
2891 else
2892 {
2893 p = ea.arg + STRLEN(ea.arg);
2894 while (p > ea.arg && vim_iswhite(p[-1]))
2895 --p;
2896 }
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01002897 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0,
2898 FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899 if (ea.line2 < 0) /* failed */
2900 goto doend;
2901 ea.addr_count = 1;
2902 ea.arg = skipwhite(p);
2903 }
2904#endif
2905
2906/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01002907 * 7. Switch on command name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 *
2909 * The "ea" structure holds the arguments that can be used.
2910 */
2911 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002912 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 ea.cookie = cookie;
2914#ifdef FEAT_EVAL
2915 ea.cstack = cstack;
2916#endif
2917
2918#ifdef FEAT_USR_CMDS
Bram Moolenaar958636c2014-10-21 20:01:58 +02002919 if (IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 {
2921 /*
2922 * Execute a user-defined command.
2923 */
2924 do_ucmd(&ea);
2925 }
2926 else
2927#endif
2928 {
2929 /*
2930 * Call the function to execute the command.
2931 */
2932 ea.errmsg = NULL;
2933 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2934 if (ea.errmsg != NULL)
2935 errormsg = (char_u *)_(ea.errmsg);
2936 }
2937
2938#ifdef FEAT_EVAL
2939 /*
2940 * If the command just executed called do_cmdline(), any throw or ":return"
2941 * or ":finish" encountered there must also check the cstack of the still
2942 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2943 * exception, or reanimate a returned function or finished script file and
2944 * return or finish it again.
2945 */
2946 if (need_rethrow)
2947 do_throw(cstack);
2948 else if (check_cstack)
2949 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002950 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002952 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 && current_func_returned())
2954 do_return(&ea, TRUE, FALSE, NULL);
2955 }
2956 need_rethrow = check_cstack = FALSE;
2957#endif
2958
2959doend:
2960 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2961 curwin->w_cursor.lnum = 1;
2962
2963 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2964 {
2965 if (sourcing)
2966 {
2967 if (errormsg != IObuff)
2968 {
2969 STRCPY(IObuff, errormsg);
2970 errormsg = IObuff;
2971 }
Bram Moolenaara6f4d612011-09-21 19:10:46 +02002972 append_command(*cmdlinep);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 }
2974 emsg(errormsg);
2975 }
2976#ifdef FEAT_EVAL
2977 do_errthrow(cstack,
Bram Moolenaar958636c2014-10-21 20:01:58 +02002978 (ea.cmdidx != CMD_SIZE && !IS_USER_CMDIDX(ea.cmdidx))
2979 ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980#endif
2981
2982 if (verbose_save >= 0)
2983 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002984#ifdef FEAT_AUTOCMD
2985 if (cmdmod.save_ei != NULL)
2986 {
2987 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002988 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2989 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002990 free_string_option(cmdmod.save_ei);
2991 }
2992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993
2994 cmdmod = save_cmdmod;
2995
Bram Moolenaar8e258a42009-07-09 13:55:43 +00002996 if (save_msg_silent != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 {
2998 /* messages could be enabled for a serious error, need to check if the
2999 * counters don't become negative */
Bram Moolenaarbecf4282009-09-30 11:24:36 +00003000 if (!did_emsg || msg_silent > save_msg_silent)
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003001 msg_silent = save_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 emsg_silent -= did_esilent;
3003 if (emsg_silent < 0)
3004 emsg_silent = 0;
3005 /* Restore msg_scroll, it's set by file I/O commands, even when no
3006 * message is actually displayed. */
3007 msg_scroll = save_msg_scroll;
Bram Moolenaar77ab2802009-04-22 12:44:48 +00003008
3009 /* "silent reg" or "silent echo x" inside "redir" leaves msg_col
3010 * somewhere in the line. Put it back in the first column. */
3011 if (redirecting())
3012 msg_col = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 }
3014
Bram Moolenaar7171abe2004-10-11 10:06:20 +00003015#ifdef HAVE_SANDBOX
3016 if (did_sandbox)
3017 --sandbox;
3018#endif
3019
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
3021 ea.nextcmd = NULL;
3022
3023#ifdef FEAT_EVAL
3024 --ex_nesting_level;
3025#endif
3026
3027 return ea.nextcmd;
3028}
3029#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00003030 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031#endif
3032
3033/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003034 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 * If there is a match advance "pp" to the argument and return TRUE.
3036 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003037 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00003039 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 char *cmd; /* name of command */
3041 int len; /* required length */
3042{
3043 int i;
3044
3045 for (i = 0; cmd[i] != NUL; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003046 if (((char_u *)cmd)[i] != (*pp)[i])
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 break;
3048 if (i >= len && !isalpha((*pp)[i]))
3049 {
3050 *pp = skipwhite(*pp + i);
3051 return TRUE;
3052 }
3053 return FALSE;
3054}
3055
3056/*
Bram Moolenaara6f4d612011-09-21 19:10:46 +02003057 * Append "cmd" to the error message in IObuff.
3058 * Takes care of limiting the length and handling 0xa0, which would be
3059 * invisible otherwise.
3060 */
3061 static void
3062append_command(cmd)
3063 char_u *cmd;
3064{
3065 char_u *s = cmd;
3066 char_u *d;
3067
3068 STRCAT(IObuff, ": ");
3069 d = IObuff + STRLEN(IObuff);
3070 while (*s != NUL && d - IObuff < IOSIZE - 7)
3071 {
3072 if (
3073#ifdef FEAT_MBYTE
3074 enc_utf8 ? (s[0] == 0xc2 && s[1] == 0xa0) :
3075#endif
3076 *s == 0xa0)
3077 {
3078 s +=
3079#ifdef FEAT_MBYTE
3080 enc_utf8 ? 2 :
3081#endif
3082 1;
3083 STRCPY(d, "<a0>");
3084 d += 4;
3085 }
3086 else
3087 MB_COPY_CHAR(s, d);
3088 }
3089 *d = NUL;
3090}
3091
3092/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003094 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003096 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 * Returns NULL for an ambiguous user command.
3098 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 static char_u *
3100find_command(eap, full)
3101 exarg_T *eap;
Bram Moolenaar78a15312009-05-15 19:33:18 +00003102 int *full UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003103{
3104 int len;
3105 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003106 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107
3108 /*
3109 * Isolate the command and search for it in the command table.
Bram Moolenaar81870892007-11-11 18:17:28 +00003110 * Exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 * - the 'k' command can directly be followed by any character.
3112 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3113 * but :sre[wind] is another command, as are :scrip[tnames],
3114 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00003115 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116 */
3117 p = eap->cmd;
3118 if (*p == 'k')
3119 {
3120 eap->cmdidx = CMD_k;
3121 ++p;
3122 }
3123 else if (p[0] == 's'
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003124 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
3125 && p[3] != 'i' && p[4] != 'p')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 || p[1] == 'g'
3127 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
3128 || p[1] == 'I'
3129 || (p[1] == 'r' && p[2] != 'e')))
3130 {
3131 eap->cmdidx = CMD_substitute;
3132 ++p;
3133 }
3134 else
3135 {
3136 while (ASCII_ISALPHA(*p))
3137 ++p;
Bram Moolenaarb6590522010-07-21 16:00:43 +02003138 /* for python 3.x support ":py3", ":python3", ":py3file", etc. */
Bram Moolenaar55d5c032010-07-17 23:52:29 +02003139 if (eap->cmd[0] == 'p' && eap->cmd[1] == 'y')
Bram Moolenaarb6590522010-07-21 16:00:43 +02003140 while (ASCII_ISALNUM(*p))
3141 ++p;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +02003142
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 /* check for non-alpha command */
3144 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3145 ++p;
3146 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003147 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
3148 {
3149 /* Check for ":dl", ":dell", etc. to ":deletel": that's
3150 * :delete with the 'l' flag. Same for 'p'. */
3151 for (i = 0; i < len; ++i)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00003152 if (eap->cmd[i] != ((char_u *)"delete")[i])
Bram Moolenaardf177f62005-02-22 08:39:57 +00003153 break;
3154 if (i == len - 1)
3155 {
3156 --len;
3157 if (p[-1] == 'l')
3158 eap->flags |= EXFLAG_LIST;
3159 else
3160 eap->flags |= EXFLAG_PRINT;
3161 }
3162 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163
3164 if (ASCII_ISLOWER(*eap->cmd))
3165 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
3166 else
3167 eap->cmdidx = cmdidxs[26];
3168
3169 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
3170 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
3171 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
3172 (size_t)len) == 0)
3173 {
3174#ifdef FEAT_EVAL
3175 if (full != NULL
3176 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
3177 *full = TRUE;
3178#endif
3179 break;
3180 }
3181
3182#ifdef FEAT_USR_CMDS
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01003183 /* Look for a user defined command as a last resort. Let ":Print" be
3184 * overruled by a user defined command. */
3185 if ((eap->cmdidx == CMD_SIZE || eap->cmdidx == CMD_Print)
3186 && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003188 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 while (ASCII_ISALNUM(*p))
3190 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003191 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 }
3193#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003194 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 eap->cmdidx = CMD_SIZE;
3196 }
3197
3198 return p;
3199}
3200
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003201#ifdef FEAT_USR_CMDS
3202/*
3203 * Search for a user command that matches "eap->cmd".
3204 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
3205 * Return a pointer to just after the command.
3206 * Return NULL if there is no matching command.
3207 */
3208 static char_u *
3209find_ucmd(eap, p, full, xp, compl)
3210 exarg_T *eap;
3211 char_u *p; /* end of the command (possibly including count) */
3212 int *full; /* set to TRUE for a full match */
3213 expand_T *xp; /* used for completion, NULL otherwise */
3214 int *compl; /* completion flags or NULL */
3215{
3216 int len = (int)(p - eap->cmd);
3217 int j, k, matchlen = 0;
3218 ucmd_T *uc;
3219 int found = FALSE;
3220 int possible = FALSE;
3221 char_u *cp, *np; /* Point into typed cmd and test name */
3222 garray_T *gap;
3223 int amb_local = FALSE; /* Found ambiguous buffer-local command,
3224 only full match global is accepted. */
3225
3226 /*
3227 * Look for buffer-local user commands first, then global ones.
3228 */
3229 gap = &curbuf->b_ucmds;
3230 for (;;)
3231 {
3232 for (j = 0; j < gap->ga_len; ++j)
3233 {
3234 uc = USER_CMD_GA(gap, j);
3235 cp = eap->cmd;
3236 np = uc->uc_name;
3237 k = 0;
3238 while (k < len && *np != NUL && *cp++ == *np++)
3239 k++;
3240 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
3241 {
3242 /* If finding a second match, the command is ambiguous. But
3243 * not if a buffer-local command wasn't a full match and a
3244 * global command is a full match. */
3245 if (k == len && found && *np != NUL)
3246 {
3247 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003248 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003249 amb_local = TRUE;
3250 }
3251
3252 if (!found || (k == len && *np == NUL))
3253 {
3254 /* If we matched up to a digit, then there could
3255 * be another command including the digit that we
3256 * should use instead.
3257 */
3258 if (k == len)
3259 found = TRUE;
3260 else
3261 possible = TRUE;
3262
3263 if (gap == &ucmds)
3264 eap->cmdidx = CMD_USER;
3265 else
3266 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003267 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003268 eap->useridx = j;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003269 eap->addr_type = uc->uc_addr_type;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003270
3271# ifdef FEAT_CMDL_COMPL
3272 if (compl != NULL)
3273 *compl = uc->uc_compl;
3274# ifdef FEAT_EVAL
3275 if (xp != NULL)
3276 {
3277 xp->xp_arg = uc->uc_compl_arg;
3278 xp->xp_scriptID = uc->uc_scriptID;
3279 }
3280# endif
3281# endif
3282 /* Do not search for further abbreviations
3283 * if this is an exact match. */
3284 matchlen = k;
3285 if (k == len && *np == NUL)
3286 {
3287 if (full != NULL)
3288 *full = TRUE;
3289 amb_local = FALSE;
3290 break;
3291 }
3292 }
3293 }
3294 }
3295
3296 /* Stop if we found a full match or searched all. */
3297 if (j < gap->ga_len || gap == &ucmds)
3298 break;
3299 gap = &ucmds;
3300 }
3301
3302 /* Only found ambiguous matches. */
3303 if (amb_local)
3304 {
3305 if (xp != NULL)
3306 xp->xp_context = EXPAND_UNSUCCESSFUL;
3307 return NULL;
3308 }
3309
3310 /* The match we found may be followed immediately by a number. Move "p"
3311 * back to point to it. */
3312 if (found || possible)
3313 return p + (matchlen - len);
3314 return p;
3315}
3316#endif
3317
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003319static struct cmdmod
3320{
3321 char *name;
3322 int minlen;
3323 int has_count; /* :123verbose :3tab */
3324} cmdmods[] = {
3325 {"aboveleft", 3, FALSE},
3326 {"belowright", 3, FALSE},
3327 {"botright", 2, FALSE},
3328 {"browse", 3, FALSE},
3329 {"confirm", 4, FALSE},
3330 {"hide", 3, FALSE},
3331 {"keepalt", 5, FALSE},
3332 {"keepjumps", 5, FALSE},
3333 {"keepmarks", 3, FALSE},
Bram Moolenaara939e432013-11-09 05:30:26 +01003334 {"keeppatterns", 5, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003335 {"leftabove", 5, FALSE},
3336 {"lockmarks", 3, FALSE},
Bram Moolenaarca9f9582008-09-18 10:44:28 +00003337 {"noautocmd", 3, FALSE},
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003338 {"noswapfile", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003339 {"rightbelow", 6, FALSE},
3340 {"sandbox", 3, FALSE},
3341 {"silent", 3, FALSE},
3342 {"tab", 3, TRUE},
3343 {"topleft", 2, FALSE},
Bram Moolenaar8e258a42009-07-09 13:55:43 +00003344 {"unsilent", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00003345 {"verbose", 4, TRUE},
3346 {"vertical", 4, FALSE},
3347};
3348
3349/*
3350 * Return length of a command modifier (including optional count).
3351 * Return zero when it's not a modifier.
3352 */
3353 int
3354modifier_len(cmd)
3355 char_u *cmd;
3356{
3357 int i, j;
3358 char_u *p = cmd;
3359
3360 if (VIM_ISDIGIT(*cmd))
3361 p = skipwhite(skipdigits(cmd));
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003362 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaared53fb92007-11-24 20:50:24 +00003363 {
3364 for (j = 0; p[j] != NUL; ++j)
3365 if (p[j] != cmdmods[i].name[j])
3366 break;
Bram Moolenaar2d473ab2013-06-12 17:12:24 +02003367 if (!ASCII_ISALPHA(p[j]) && j >= cmdmods[i].minlen
Bram Moolenaared53fb92007-11-24 20:50:24 +00003368 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003369 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003370 }
3371 return 0;
3372}
3373
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374/*
3375 * Return > 0 if an Ex command "name" exists.
3376 * Return 2 if there is an exact match.
3377 * Return 3 if there is an ambiguous match.
3378 */
3379 int
3380cmd_exists(name)
3381 char_u *name;
3382{
3383 exarg_T ea;
3384 int full = FALSE;
3385 int i;
3386 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003387 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388
3389 /* Check command modifiers. */
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00003390 for (i = 0; i < (int)(sizeof(cmdmods) / sizeof(struct cmdmod)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 {
3392 for (j = 0; name[j] != NUL; ++j)
3393 if (name[j] != cmdmods[i].name[j])
3394 break;
3395 if (name[j] == NUL && j >= cmdmods[i].minlen)
3396 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3397 }
3398
Bram Moolenaara9587612006-05-04 21:47:50 +00003399 /* Check built-in commands and user defined commands.
3400 * For ":2match" and ":3match" we need to skip the number. */
3401 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003403 p = find_command(&ea, &full);
3404 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003406 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3407 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003408 if (*skipwhite(p) != NUL)
3409 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3411}
3412#endif
3413
3414/*
3415 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3416 * we don't need/want deleted. Maybe this could be done better if we didn't
3417 * repeat all this stuff. The only problem is that they may not stay
3418 * perfectly compatible with each other, but then the command line syntax
3419 * probably won't change that much -- webb.
3420 */
3421 char_u *
3422set_one_cmd_context(xp, buff)
3423 expand_T *xp;
3424 char_u *buff; /* buffer for command string */
3425{
3426 char_u *p;
3427 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003428 int len = 0;
3429 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3431 int compl = EXPAND_NOTHING;
3432#endif
3433#ifdef FEAT_CMDL_COMPL
3434 int delim;
3435#endif
3436 int forceit = FALSE;
3437 int usefilter = FALSE; /* filter instead of file name */
3438
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003439 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 xp->xp_pattern = buff;
3441 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003442 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443
3444/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003445 * 1. skip comment lines and leading space, colons or bars
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 */
3447 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3448 ;
3449 xp->xp_pattern = cmd;
3450
3451 if (*cmd == NUL)
3452 return NULL;
3453 if (*cmd == '"') /* ignore comment lines */
3454 {
3455 xp->xp_context = EXPAND_NOTHING;
3456 return NULL;
3457 }
3458
3459/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003460 * 3. Skip over the range to find the command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 */
3462 cmd = skip_range(cmd, &xp->xp_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 xp->xp_pattern = cmd;
3464 if (*cmd == NUL)
3465 return NULL;
3466 if (*cmd == '"')
3467 {
3468 xp->xp_context = EXPAND_NOTHING;
3469 return NULL;
3470 }
3471
3472 if (*cmd == '|' || *cmd == '\n')
3473 return cmd + 1; /* There's another command */
3474
3475 /*
3476 * Isolate the command and search for it in the command table.
3477 * Exceptions:
3478 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003479 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3481 */
3482 if (*cmd == 'k' && cmd[1] != 'e')
3483 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003484 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 p = cmd + 1;
3486 }
3487 else
3488 {
3489 p = cmd;
3490 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3491 ++p;
3492 /* check for non-alpha command */
3493 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3494 ++p;
Bram Moolenaar9f5d6002013-06-02 19:22:13 +02003495 /* for python 3.x: ":py3*" commands completion */
3496 if (cmd[0] == 'p' && cmd[1] == 'y' && p == cmd + 2 && *p == '3')
Bram Moolenaar893b2d72013-12-11 17:44:38 +01003497 {
Bram Moolenaar9f5d6002013-06-02 19:22:13 +02003498 ++p;
Bram Moolenaar893b2d72013-12-11 17:44:38 +01003499 while (ASCII_ISALPHA(*p) || *p == '*')
3500 ++p;
3501 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003502 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003504 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 {
3506 xp->xp_context = EXPAND_UNSUCCESSFUL;
3507 return NULL;
3508 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003509 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01003510 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3511 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd,
3512 (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003513 break;
3514
3515#ifdef FEAT_USR_CMDS
3516 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3518 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519#endif
3520 }
3521
3522 /*
3523 * If the cursor is touching the command, and it ends in an alpha-numeric
3524 * character, complete the command name.
3525 */
3526 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3527 return NULL;
3528
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003529 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530 {
3531 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3532 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003533 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534 p = cmd + 1;
3535 }
3536#ifdef FEAT_USR_CMDS
3537 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3538 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003539 ea.cmd = cmd;
3540 p = find_ucmd(&ea, p, NULL, xp,
3541# if defined(FEAT_CMDL_COMPL)
3542 &compl
3543# else
3544 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003546 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003547 if (p == NULL)
3548 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003549 }
3550#endif
3551 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003552 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 {
3554 /* Not still touching the command and it was an illegal one */
3555 xp->xp_context = EXPAND_UNSUCCESSFUL;
3556 return NULL;
3557 }
3558
3559 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3560
3561 if (*p == '!') /* forced commands */
3562 {
3563 forceit = TRUE;
3564 ++p;
3565 }
3566
3567/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003568 * 6. parse arguments
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 */
Bram Moolenaar958636c2014-10-21 20:01:58 +02003570 if (!IS_USER_CMDIDX(ea.cmdidx))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003571 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572
3573 arg = skipwhite(p);
3574
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003575 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 {
3577 if (*arg == '>') /* append */
3578 {
3579 if (*++arg == '>')
3580 ++arg;
3581 arg = skipwhite(arg);
3582 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003583 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 {
3585 ++arg;
3586 usefilter = TRUE;
3587 }
3588 }
3589
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003590 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591 {
3592 usefilter = forceit; /* :r! filter if forced */
3593 if (*arg == '!') /* :r !filter */
3594 {
3595 ++arg;
3596 usefilter = TRUE;
3597 }
3598 }
3599
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003600 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601 {
3602 while (*arg == *cmd) /* allow any number of '>' or '<' */
3603 ++arg;
3604 arg = skipwhite(arg);
3605 }
3606
3607 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003608 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 {
3610 /* Check if we're in the +command */
3611 p = arg + 1;
3612 arg = skip_cmd_arg(arg, FALSE);
3613
3614 /* Still touching the command after '+'? */
3615 if (*arg == NUL)
3616 return p;
3617
3618 /* Skip space(s) after +command to get to the real argument */
3619 arg = skipwhite(arg);
3620 }
3621
3622 /*
3623 * Check for '|' to separate commands and '"' to start comments.
3624 * Don't do this for ":read !cmd" and ":write !cmd".
3625 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003626 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 {
3628 p = arg;
3629 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003630 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 p += 2;
3632 while (*p)
3633 {
3634 if (*p == Ctrl_V)
3635 {
3636 if (p[1] != NUL)
3637 ++p;
3638 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003639 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 || *p == '|' || *p == '\n')
3641 {
3642 if (*(p - 1) != '\\')
3643 {
3644 if (*p == '|' || *p == '\n')
3645 return p + 1;
3646 return NULL; /* It's a comment */
3647 }
3648 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003649 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 }
3651 }
3652
3653 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003654 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 vim_strchr((char_u *)"|\"", *arg) == NULL)
3656 return NULL;
3657
3658 /* Find start of last argument (argument just before cursor): */
Bram Moolenaar848f8762012-07-25 17:22:23 +02003659 p = buff;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 xp->xp_pattern = p;
Bram Moolenaar09168a72012-08-02 21:24:42 +02003661 len = (int)STRLEN(buff);
Bram Moolenaar848f8762012-07-25 17:22:23 +02003662 while (*p && p < buff + len)
3663 {
3664 if (*p == ' ' || *p == TAB)
3665 {
3666 /* argument starts after a space */
3667 xp->xp_pattern = ++p;
3668 }
3669 else
3670 {
3671 if (*p == '\\' && *(p + 1) != NUL)
3672 ++p; /* skip over escaped character */
3673 mb_ptr_adv(p);
3674 }
3675 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003677 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003679 int c;
3680 int in_quote = FALSE;
3681 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682
3683 /*
3684 * Allow spaces within back-quotes to count as part of the argument
3685 * being expanded.
3686 */
3687 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003688 p = xp->xp_pattern;
3689 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003691#ifdef FEAT_MBYTE
3692 if (has_mbyte)
3693 c = mb_ptr2char(p);
3694 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003696 c = *p;
3697 if (c == '\\' && p[1] != NUL)
3698 ++p;
3699 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 {
3701 if (!in_quote)
3702 {
3703 xp->xp_pattern = p;
3704 bow = p + 1;
3705 }
3706 in_quote = !in_quote;
3707 }
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003708 /* An argument can contain just about everything, except
3709 * characters that end the command and white space. */
3710 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003711#ifdef SPACE_IN_FILENAME
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003712 && (!(ea.argt & NOSPC) || usefilter)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003713#endif
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003714 ))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003715 {
Bram Moolenaarcf5a5b82008-02-26 20:30:12 +00003716 len = 0; /* avoid getting stuck when space is in 'isfname' */
Bram Moolenaar6529c102007-08-18 15:47:34 +00003717 while (*p != NUL)
3718 {
3719#ifdef FEAT_MBYTE
3720 if (has_mbyte)
3721 c = mb_ptr2char(p);
3722 else
3723#endif
3724 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003725 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003726 break;
3727#ifdef FEAT_MBYTE
3728 if (has_mbyte)
3729 len = (*mb_ptr2len)(p);
3730 else
3731#endif
3732 len = 1;
3733 mb_ptr_adv(p);
3734 }
3735 if (in_quote)
3736 bow = p;
3737 else
3738 xp->xp_pattern = p;
3739 p -= len;
3740 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003741 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 }
3743
3744 /*
3745 * If we are still inside the quotes, and we passed a space, just
3746 * expand from there.
3747 */
3748 if (bow != NULL && in_quote)
3749 xp->xp_pattern = bow;
3750 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003751
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003752 /* For a shell command more chars need to be escaped. */
3753 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003754 {
Bram Moolenaarc0cba4d2010-08-07 17:07:21 +02003755#ifndef BACKSLASH_IN_FILENAME
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003756 xp->xp_shell = TRUE;
Bram Moolenaarc0cba4d2010-08-07 17:07:21 +02003757#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003758 /* When still after the command name expand executables. */
3759 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003760 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762
3763 /* Check for environment variable */
3764 if (*xp->xp_pattern == '$'
3765#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3766 || *xp->xp_pattern == '%'
3767#endif
3768 )
3769 {
3770 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3771 if (!vim_isIDc(*p))
3772 break;
3773 if (*p == NUL)
3774 {
3775 xp->xp_context = EXPAND_ENV_VARS;
3776 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003777#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3778 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003779 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003780 compl = EXPAND_ENV_VARS;
3781#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 }
3783 }
Bram Moolenaar24305862012-08-15 14:05:05 +02003784#if defined(FEAT_CMDL_COMPL)
3785 /* Check for user names */
3786 if (*xp->xp_pattern == '~')
3787 {
3788 for (p = xp->xp_pattern + 1; *p != NUL && *p != '/'; ++p)
3789 ;
3790 /* Complete ~user only if it partially matches a user name.
3791 * A full match ~user<Tab> will be replaced by user's home
3792 * directory i.e. something like ~user<Tab> -> /home/user/ */
3793 if (*p == NUL && p > xp->xp_pattern + 1
3794 && match_user(xp->xp_pattern + 1) == 1)
3795 {
3796 xp->xp_context = EXPAND_USER;
3797 ++xp->xp_pattern;
3798 }
3799 }
3800#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 }
3802
3803/*
Bram Moolenaar1c40a662014-11-27 16:38:11 +01003804 * 6. Switch on command name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003806 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003807 {
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003808 case CMD_find:
3809 case CMD_sfind:
3810 case CMD_tabfind:
Bram Moolenaarc24b6972010-08-16 22:34:29 +02003811 if (xp->xp_context == EXPAND_FILES)
3812 xp->xp_context = EXPAND_FILES_IN_PATH;
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003813 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 case CMD_cd:
3815 case CMD_chdir:
3816 case CMD_lcd:
3817 case CMD_lchdir:
3818 if (xp->xp_context == EXPAND_FILES)
3819 xp->xp_context = EXPAND_DIRECTORIES;
3820 break;
3821 case CMD_help:
3822 xp->xp_context = EXPAND_HELP;
3823 xp->xp_pattern = arg;
3824 break;
3825
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003826 /* Command modifiers: return the argument.
3827 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003829 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 case CMD_belowright:
3831 case CMD_botright:
3832 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003833 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003835 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003836 case CMD_folddoclosed:
3837 case CMD_folddoopen:
3838 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003839 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 case CMD_keepjumps:
3841 case CMD_keepmarks:
Bram Moolenaara939e432013-11-09 05:30:26 +01003842 case CMD_keeppatterns:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843 case CMD_leftabove:
3844 case CMD_lockmarks:
Bram Moolenaar5803ae62014-03-23 16:04:02 +01003845 case CMD_noautocmd:
3846 case CMD_noswapfile:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003848 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003850 case CMD_tab:
Bram Moolenaar70baa402013-06-16 16:14:03 +02003851 case CMD_tabdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003852 case CMD_topleft:
3853 case CMD_verbose:
3854 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003855 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003856 return arg;
3857
Bram Moolenaar4f688582007-07-24 12:34:30 +00003858#ifdef FEAT_CMDL_COMPL
3859# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860 case CMD_match:
3861 if (*arg == NUL || !ends_excmd(*arg))
3862 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003863 /* also complete "None" */
3864 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 arg = skipwhite(skiptowhite(arg));
3866 if (*arg != NUL)
3867 {
3868 xp->xp_context = EXPAND_NOTHING;
3869 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3870 }
3871 }
3872 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003873# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874
Bram Moolenaar071d4272004-06-13 20:20:40 +00003875/*
3876 * All completion for the +cmdline_compl feature goes here.
3877 */
3878
3879# ifdef FEAT_USR_CMDS
3880 case CMD_command:
3881 /* Check for attributes */
3882 while (*arg == '-')
3883 {
3884 arg++; /* Skip "-" */
3885 p = skiptowhite(arg);
3886 if (*p == NUL)
3887 {
3888 /* Cursor is still in the attribute */
3889 p = vim_strchr(arg, '=');
3890 if (p == NULL)
3891 {
3892 /* No "=", so complete attribute names */
3893 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3894 xp->xp_pattern = arg;
3895 return NULL;
3896 }
3897
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003898 /* For the -complete, -nargs and -addr attributes, we complete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 * their arguments as well.
3900 */
3901 if (STRNICMP(arg, "complete", p - arg) == 0)
3902 {
3903 xp->xp_context = EXPAND_USER_COMPLETE;
3904 xp->xp_pattern = p + 1;
3905 return NULL;
3906 }
3907 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3908 {
3909 xp->xp_context = EXPAND_USER_NARGS;
3910 xp->xp_pattern = p + 1;
3911 return NULL;
3912 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01003913 else if (STRNICMP(arg, "addr", p - arg) == 0)
3914 {
3915 xp->xp_context = EXPAND_USER_ADDR_TYPE;
3916 xp->xp_pattern = p + 1;
3917 return NULL;
3918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919 return NULL;
3920 }
3921 arg = skipwhite(p);
3922 }
3923
3924 /* After the attributes comes the new command name */
3925 p = skiptowhite(arg);
3926 if (*p == NUL)
3927 {
3928 xp->xp_context = EXPAND_USER_COMMANDS;
3929 xp->xp_pattern = arg;
3930 break;
3931 }
3932
3933 /* And finally comes a normal command */
3934 return skipwhite(p);
3935
3936 case CMD_delcommand:
3937 xp->xp_context = EXPAND_USER_COMMANDS;
3938 xp->xp_pattern = arg;
3939 break;
3940# endif
3941
3942 case CMD_global:
3943 case CMD_vglobal:
3944 delim = *arg; /* get the delimiter */
3945 if (delim)
3946 ++arg; /* skip delimiter if there is one */
3947
3948 while (arg[0] != NUL && arg[0] != delim)
3949 {
3950 if (arg[0] == '\\' && arg[1] != NUL)
3951 ++arg;
3952 ++arg;
3953 }
3954 if (arg[0] != NUL)
3955 return arg + 1;
3956 break;
3957 case CMD_and:
3958 case CMD_substitute:
3959 delim = *arg;
3960 if (delim)
3961 {
3962 /* skip "from" part */
3963 ++arg;
3964 arg = skip_regexp(arg, delim, p_magic, NULL);
3965 }
3966 /* skip "to" part */
3967 while (arg[0] != NUL && arg[0] != delim)
3968 {
3969 if (arg[0] == '\\' && arg[1] != NUL)
3970 ++arg;
3971 ++arg;
3972 }
3973 if (arg[0] != NUL) /* skip delimiter */
3974 ++arg;
3975 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3976 ++arg;
3977 if (arg[0] != NUL)
3978 return arg;
3979 break;
3980 case CMD_isearch:
3981 case CMD_dsearch:
3982 case CMD_ilist:
3983 case CMD_dlist:
3984 case CMD_ijump:
3985 case CMD_psearch:
3986 case CMD_djump:
3987 case CMD_isplit:
3988 case CMD_dsplit:
3989 arg = skipwhite(skipdigits(arg)); /* skip count */
3990 if (*arg == '/') /* Match regexp, not just whole words */
3991 {
3992 for (++arg; *arg && *arg != '/'; arg++)
3993 if (*arg == '\\' && arg[1] != NUL)
3994 arg++;
3995 if (*arg)
3996 {
3997 arg = skipwhite(arg + 1);
3998
3999 /* Check for trailing illegal characters */
4000 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
4001 xp->xp_context = EXPAND_NOTHING;
4002 else
4003 return arg;
4004 }
4005 }
4006 break;
4007#ifdef FEAT_AUTOCMD
4008 case CMD_autocmd:
4009 return set_context_in_autocmd(xp, arg, FALSE);
4010
4011 case CMD_doautocmd:
Bram Moolenaar73a9d7b2008-11-06 16:16:44 +00004012 case CMD_doautoall:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 return set_context_in_autocmd(xp, arg, TRUE);
4014#endif
4015 case CMD_set:
4016 set_context_in_set_cmd(xp, arg, 0);
4017 break;
4018 case CMD_setglobal:
4019 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
4020 break;
4021 case CMD_setlocal:
4022 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
4023 break;
4024 case CMD_tag:
4025 case CMD_stag:
4026 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00004027 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 case CMD_tselect:
4029 case CMD_stselect:
4030 case CMD_ptselect:
4031 case CMD_tjump:
4032 case CMD_stjump:
4033 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00004034 if (*p_wop != NUL)
4035 xp->xp_context = EXPAND_TAGS_LISTFILES;
4036 else
4037 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038 xp->xp_pattern = arg;
4039 break;
4040 case CMD_augroup:
4041 xp->xp_context = EXPAND_AUGROUP;
4042 xp->xp_pattern = arg;
4043 break;
4044#ifdef FEAT_SYN_HL
4045 case CMD_syntax:
4046 set_context_in_syntax_cmd(xp, arg);
4047 break;
4048#endif
4049#ifdef FEAT_EVAL
4050 case CMD_let:
4051 case CMD_if:
4052 case CMD_elseif:
4053 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00004054 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004055 case CMD_echo:
4056 case CMD_echon:
4057 case CMD_execute:
4058 case CMD_echomsg:
4059 case CMD_echoerr:
4060 case CMD_call:
4061 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004062 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 break;
4064
4065 case CMD_unlet:
4066 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
4067 arg = xp->xp_pattern + 1;
4068 xp->xp_context = EXPAND_USER_VARS;
4069 xp->xp_pattern = arg;
4070 break;
4071
4072 case CMD_function:
4073 case CMD_delfunction:
4074 xp->xp_context = EXPAND_USER_FUNC;
4075 xp->xp_pattern = arg;
4076 break;
4077
4078 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00004079 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004080 break;
4081#endif
4082 case CMD_highlight:
4083 set_context_in_highlight_cmd(xp, arg);
4084 break;
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004085#ifdef FEAT_CSCOPE
4086 case CMD_cscope:
Bram Moolenaar7bfef802009-04-22 14:25:01 +00004087 case CMD_lcscope:
4088 case CMD_scscope:
4089 set_context_in_cscope_cmd(xp, arg, ea.cmdidx);
Bram Moolenaarf4580d82009-03-18 11:52:53 +00004090 break;
4091#endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00004092#ifdef FEAT_SIGNS
4093 case CMD_sign:
4094 set_context_in_sign_cmd(xp, arg);
4095 break;
4096#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097#ifdef FEAT_LISTCMDS
4098 case CMD_bdelete:
4099 case CMD_bwipeout:
4100 case CMD_bunload:
4101 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
4102 arg = xp->xp_pattern + 1;
4103 /*FALLTHROUGH*/
4104 case CMD_buffer:
4105 case CMD_sbuffer:
4106 case CMD_checktime:
4107 xp->xp_context = EXPAND_BUFFERS;
4108 xp->xp_pattern = arg;
4109 break;
4110#endif
4111#ifdef FEAT_USR_CMDS
4112 case CMD_USER:
4113 case CMD_USER_BUF:
4114 if (compl != EXPAND_NOTHING)
4115 {
4116 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00004117 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004118 {
4119# ifdef FEAT_MENU
4120 if (compl == EXPAND_MENUS)
4121 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
4122# endif
4123 if (compl == EXPAND_COMMANDS)
4124 return arg;
4125 if (compl == EXPAND_MAPPINGS)
4126 return set_context_in_map_cmd(xp, (char_u *)"map",
4127 arg, forceit, FALSE, FALSE, CMD_map);
Bram Moolenaar848f8762012-07-25 17:22:23 +02004128 /* Find start of last argument. */
4129 p = arg;
4130 while (*p)
4131 {
4132 if (*p == ' ')
Bram Moolenaar848f8762012-07-25 17:22:23 +02004133 /* argument starts after a space */
4134 arg = p + 1;
Bram Moolenaara07c8312012-07-27 21:12:07 +02004135 else if (*p == '\\' && *(p + 1) != NUL)
4136 ++p; /* skip over escaped character */
4137 mb_ptr_adv(p);
Bram Moolenaar848f8762012-07-25 17:22:23 +02004138 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004139 xp->xp_pattern = arg;
4140 }
4141 xp->xp_context = compl;
4142 }
4143 break;
4144#endif
4145 case CMD_map: case CMD_noremap:
4146 case CMD_nmap: case CMD_nnoremap:
4147 case CMD_vmap: case CMD_vnoremap:
4148 case CMD_omap: case CMD_onoremap:
4149 case CMD_imap: case CMD_inoremap:
4150 case CMD_cmap: case CMD_cnoremap:
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004151 case CMD_lmap: case CMD_lnoremap:
Bram Moolenaar09bb33d2013-05-07 05:18:20 +02004152 case CMD_smap: case CMD_snoremap:
4153 case CMD_xmap: case CMD_xnoremap:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004155 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 case CMD_unmap:
4157 case CMD_nunmap:
4158 case CMD_vunmap:
4159 case CMD_ounmap:
4160 case CMD_iunmap:
4161 case CMD_cunmap:
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004162 case CMD_lunmap:
Bram Moolenaar09bb33d2013-05-07 05:18:20 +02004163 case CMD_sunmap:
4164 case CMD_xunmap:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004166 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004167 case CMD_abbreviate: case CMD_noreabbrev:
4168 case CMD_cabbrev: case CMD_cnoreabbrev:
4169 case CMD_iabbrev: case CMD_inoreabbrev:
4170 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004171 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172 case CMD_unabbreviate:
4173 case CMD_cunabbrev:
4174 case CMD_iunabbrev:
4175 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar22b306f2010-07-25 13:50:33 +02004176 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177#ifdef FEAT_MENU
4178 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
4179 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
4180 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
4181 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
4182 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
4183 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
4184 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
4185 case CMD_tmenu: case CMD_tunmenu:
4186 case CMD_popup: case CMD_tearoff: case CMD_emenu:
4187 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
4188#endif
4189
4190 case CMD_colorscheme:
4191 xp->xp_context = EXPAND_COLORS;
4192 xp->xp_pattern = arg;
4193 break;
4194
4195 case CMD_compiler:
4196 xp->xp_context = EXPAND_COMPILER;
4197 xp->xp_pattern = arg;
4198 break;
4199
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004200 case CMD_ownsyntax:
Bram Moolenaar1587a1e2010-07-29 20:59:59 +02004201 xp->xp_context = EXPAND_OWNSYNTAX;
4202 xp->xp_pattern = arg;
4203 break;
4204
4205 case CMD_setfiletype:
Bram Moolenaar883f5d02010-06-21 06:24:34 +02004206 xp->xp_context = EXPAND_FILETYPE;
4207 xp->xp_pattern = arg;
4208 break;
4209
Bram Moolenaar071d4272004-06-13 20:20:40 +00004210#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
4211 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
4212 case CMD_language:
Bram Moolenaara660dc82011-05-25 12:51:22 +02004213 p = skiptowhite(arg);
4214 if (*p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 {
4216 xp->xp_context = EXPAND_LANGUAGE;
4217 xp->xp_pattern = arg;
4218 }
4219 else
Bram Moolenaara660dc82011-05-25 12:51:22 +02004220 {
4221 if ( STRNCMP(arg, "messages", p - arg) == 0
4222 || STRNCMP(arg, "ctype", p - arg) == 0
4223 || STRNCMP(arg, "time", p - arg) == 0)
4224 {
4225 xp->xp_context = EXPAND_LOCALES;
4226 xp->xp_pattern = skipwhite(p);
4227 }
4228 else
4229 xp->xp_context = EXPAND_NOTHING;
4230 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 break;
4232#endif
Bram Moolenaarf86f26c2010-02-03 15:14:22 +01004233#if defined(FEAT_PROFILE)
4234 case CMD_profile:
4235 set_context_in_profile_cmd(xp, arg);
4236 break;
4237#endif
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004238 case CMD_behave:
4239 xp->xp_context = EXPAND_BEHAVE;
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004240 xp->xp_pattern = arg;
Bram Moolenaar42b4dda2010-03-02 15:56:05 +01004241 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004243#if defined(FEAT_CMDHIST)
4244 case CMD_history:
4245 xp->xp_context = EXPAND_HISTORY;
4246 xp->xp_pattern = arg;
4247 break;
4248#endif
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02004249#if defined(FEAT_PROFILE)
4250 case CMD_syntime:
4251 xp->xp_context = EXPAND_SYNTIME;
4252 xp->xp_pattern = arg;
4253 break;
4254#endif
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02004255
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256#endif /* FEAT_CMDL_COMPL */
4257
4258 default:
4259 break;
4260 }
4261 return NULL;
4262}
4263
4264/*
4265 * skip a range specifier of the form: addr [,addr] [;addr] ..
4266 *
4267 * Backslashed delimiters after / or ? will be skipped, and commands will
4268 * not be expanded between /'s and ?'s or after "'".
4269 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00004270 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271 * Returns the "cmd" pointer advanced to beyond the range.
4272 */
4273 char_u *
4274skip_range(cmd, ctx)
4275 char_u *cmd;
4276 int *ctx; /* pointer to xp_context or NULL */
4277{
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004278 unsigned delim;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279
Bram Moolenaardf177f62005-02-22 08:39:57 +00004280 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 {
4282 if (*cmd == '\'')
4283 {
4284 if (*++cmd == NUL && ctx != NULL)
4285 *ctx = EXPAND_NOTHING;
4286 }
4287 else if (*cmd == '/' || *cmd == '?')
4288 {
4289 delim = *cmd++;
4290 while (*cmd != NUL && *cmd != delim)
4291 if (*cmd++ == '\\' && *cmd != NUL)
4292 ++cmd;
4293 if (*cmd == NUL && ctx != NULL)
4294 *ctx = EXPAND_NOTHING;
4295 }
4296 if (*cmd != NUL)
4297 ++cmd;
4298 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004299
4300 /* Skip ":" and white space. */
4301 while (*cmd == ':')
4302 cmd = skipwhite(cmd + 1);
4303
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 return cmd;
4305}
4306
4307/*
4308 * get a single EX address
4309 *
4310 * Set ptr to the next character after the part that was interpreted.
4311 * Set ptr to NULL when an error is encountered.
4312 *
4313 * Return MAXLNUM when no Ex address was found.
4314 */
4315 static linenr_T
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004316get_address(ptr, addr_type, skip, to_other_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317 char_u **ptr;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004318 int addr_type; /* flag: one of ADDR_LINES, ... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 int skip; /* only skip the address, don't use it */
4320 int to_other_file; /* flag: may jump to other file */
4321{
4322 int c;
4323 int i;
4324 long n;
4325 char_u *cmd;
4326 pos_T pos;
4327 pos_T *fp;
4328 linenr_T lnum;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004329 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330
4331 cmd = skipwhite(*ptr);
4332 lnum = MAXLNUM;
4333 do
4334 {
4335 switch (*cmd)
4336 {
4337 case '.': /* '.' - Cursor position */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004338 ++cmd;
4339 switch (addr_type)
4340 {
4341 case ADDR_LINES:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342 lnum = curwin->w_cursor.lnum;
4343 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004344 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004345 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004346 break;
4347 case ADDR_ARGUMENTS:
4348 lnum = curwin->w_arg_idx + 1;
4349 break;
4350 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004351 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004352 lnum = curbuf->b_fnum;
4353 break;
4354 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004355 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004356 break;
4357 }
4358 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359
4360 case '$': /* '$' - last line */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004361 ++cmd;
4362 switch (addr_type)
4363 {
4364 case ADDR_LINES:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004365 lnum = curbuf->b_ml.ml_line_count;
4366 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004367 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004368 lnum = LAST_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004369 break;
4370 case ADDR_ARGUMENTS:
4371 lnum = ARGCOUNT;
4372 break;
4373 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004374 buf = lastbuf;
4375 while (buf->b_ml.ml_mfp == NULL)
4376 {
4377 if (buf->b_prev == NULL)
4378 break;
4379 buf = buf->b_prev;
4380 }
4381 lnum = buf->b_fnum;
4382 break;
4383 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004384 lnum = lastbuf->b_fnum;
4385 break;
4386 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004387 lnum = LAST_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004388 break;
4389 }
4390 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391
4392 case '\'': /* ''' - mark */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004393 if (*++cmd == NUL)
4394 {
4395 cmd = NULL;
4396 goto error;
4397 }
4398 if (addr_type != ADDR_LINES)
4399 {
4400 EMSG(_(e_invaddr));
4401 goto error;
4402 }
4403 if (skip)
4404 ++cmd;
4405 else
4406 {
4407 /* Only accept a mark in another file when it is
4408 * used by itself: ":'M". */
4409 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
4410 ++cmd;
4411 if (fp == (pos_T *)-1)
4412 /* Jumped to another file. */
4413 lnum = curwin->w_cursor.lnum;
4414 else
4415 {
4416 if (check_mark(fp) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 {
4418 cmd = NULL;
4419 goto error;
4420 }
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004421 lnum = fp->lnum;
4422 }
4423 }
4424 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425
4426 case '/':
4427 case '?': /* '/' or '?' - search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004428 c = *cmd++;
4429 if (addr_type != ADDR_LINES)
4430 {
4431 EMSG(_(e_invaddr));
4432 goto error;
4433 }
4434 if (skip) /* skip "/pat/" */
4435 {
4436 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
4437 if (*cmd == c)
4438 ++cmd;
4439 }
4440 else
4441 {
4442 pos = curwin->w_cursor; /* save curwin->w_cursor */
4443 /*
4444 * When '/' or '?' follows another address, start
4445 * from there.
4446 */
4447 if (lnum != MAXLNUM)
4448 curwin->w_cursor.lnum = lnum;
4449 /*
4450 * Start a forward search at the end of the line.
4451 * Start a backward search at the start of the line.
4452 * This makes sure we never match in the current
4453 * line, and can match anywhere in the
4454 * next/previous line.
4455 */
4456 if (c == '/')
4457 curwin->w_cursor.col = MAXCOL;
4458 else
4459 curwin->w_cursor.col = 0;
4460 searchcmdlen = 0;
4461 if (!do_search(NULL, c, cmd, 1L,
4462 SEARCH_HIS | SEARCH_MSG, NULL))
4463 {
4464 curwin->w_cursor = pos;
4465 cmd = NULL;
4466 goto error;
4467 }
4468 lnum = curwin->w_cursor.lnum;
4469 curwin->w_cursor = pos;
4470 /* adjust command string pointer */
4471 cmd += searchcmdlen;
4472 }
4473 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474
4475 case '\\': /* "\?", "\/" or "\&", repeat search */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004476 ++cmd;
4477 if (addr_type != ADDR_LINES)
4478 {
4479 EMSG(_(e_invaddr));
4480 goto error;
4481 }
4482 if (*cmd == '&')
4483 i = RE_SUBST;
4484 else if (*cmd == '?' || *cmd == '/')
4485 i = RE_SEARCH;
4486 else
4487 {
4488 EMSG(_(e_backslash));
4489 cmd = NULL;
4490 goto error;
4491 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004493 if (!skip)
4494 {
4495 /*
4496 * When search follows another address, start from
4497 * there.
4498 */
4499 if (lnum != MAXLNUM)
4500 pos.lnum = lnum;
4501 else
4502 pos.lnum = curwin->w_cursor.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004504 /*
4505 * Start the search just like for the above
4506 * do_search().
4507 */
4508 if (*cmd != '?')
4509 pos.col = MAXCOL;
4510 else
4511 pos.col = 0;
4512 if (searchit(curwin, curbuf, &pos,
4513 *cmd == '?' ? BACKWARD : FORWARD,
4514 (char_u *)"", 1L, SEARCH_MSG,
4515 i, (linenr_T)0, NULL) != FAIL)
4516 lnum = pos.lnum;
4517 else
4518 {
4519 cmd = NULL;
4520 goto error;
4521 }
4522 }
4523 ++cmd;
4524 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525
4526 default:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004527 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
4528 lnum = getdigits(&cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 }
4530
4531 for (;;)
4532 {
4533 cmd = skipwhite(cmd);
4534 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4535 break;
4536
4537 if (lnum == MAXLNUM)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004538 {
4539 switch (addr_type)
4540 {
4541 case ADDR_LINES:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004542 /* "+1" is same as ".+1" */
4543 lnum = curwin->w_cursor.lnum;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004544 break;
4545 case ADDR_WINDOWS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004546 lnum = CURRENT_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004547 break;
4548 case ADDR_ARGUMENTS:
4549 lnum = curwin->w_arg_idx + 1;
4550 break;
4551 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004552 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004553 lnum = curbuf->b_fnum;
4554 break;
4555 case ADDR_TABS:
Bram Moolenaarf240e182014-11-27 18:33:02 +01004556 lnum = CURRENT_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004557 break;
4558 }
4559 }
4560
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 if (VIM_ISDIGIT(*cmd))
4562 i = '+'; /* "number" is same as "+number" */
4563 else
4564 i = *cmd++;
4565 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4566 n = 1;
4567 else
4568 n = getdigits(&cmd);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004569 if (addr_type == ADDR_LOADED_BUFFERS
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004570 || addr_type == ADDR_BUFFERS)
Bram Moolenaar4d84d932014-11-30 14:50:16 +01004571 lnum = compute_buffer_local_count(addr_type, lnum, (i == '-') ? -1 * n : n);
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004572 else if (i == '-')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 lnum -= n;
4574 else
4575 lnum += n;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004576
4577 switch (addr_type)
4578 {
4579 case ADDR_LINES:
4580 break;
4581 case ADDR_ARGUMENTS:
4582 if (lnum < 0)
4583 lnum = 0;
4584 else if (lnum >= ARGCOUNT)
4585 lnum = ARGCOUNT;
4586 break;
4587 case ADDR_TABS:
4588 if (lnum < 0)
4589 {
4590 lnum = 0;
4591 break;
4592 }
Bram Moolenaar4d84d932014-11-30 14:50:16 +01004593 if (lnum >= LAST_TAB_NR)
4594 lnum = LAST_TAB_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004595 break;
4596 case ADDR_WINDOWS:
4597 if (lnum < 0)
4598 {
4599 lnum = 0;
4600 break;
4601 }
Bram Moolenaar4d84d932014-11-30 14:50:16 +01004602 if (lnum >= LAST_WIN_NR)
4603 lnum = LAST_WIN_NR;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004604 break;
4605 case ADDR_LOADED_BUFFERS:
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01004606 case ADDR_BUFFERS:
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01004607 if (lnum < firstbuf->b_fnum)
4608 {
4609 lnum = firstbuf->b_fnum;
4610 break;
4611 }
4612 if (lnum > lastbuf->b_fnum)
4613 lnum = lastbuf->b_fnum;
4614 break;
4615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 }
4617 } while (*cmd == '/' || *cmd == '?');
4618
4619error:
4620 *ptr = cmd;
4621 return lnum;
4622}
4623
4624/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004625 * Get flags from an Ex command argument.
4626 */
4627 static void
4628get_flags(eap)
4629 exarg_T *eap;
4630{
4631 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4632 {
4633 if (*eap->arg == 'l')
4634 eap->flags |= EXFLAG_LIST;
4635 else if (*eap->arg == 'p')
4636 eap->flags |= EXFLAG_PRINT;
4637 else
4638 eap->flags |= EXFLAG_NR;
4639 eap->arg = skipwhite(eap->arg + 1);
4640 }
4641}
4642
4643/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 * Function called for command which is Not Implemented. NI!
4645 */
4646 void
4647ex_ni(eap)
4648 exarg_T *eap;
4649{
4650 if (!eap->skip)
4651 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4652}
4653
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004654#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655/*
4656 * Function called for script command which is Not Implemented. NI!
4657 * Skips over ":perl <<EOF" constructs.
4658 */
4659 static void
4660ex_script_ni(eap)
4661 exarg_T *eap;
4662{
4663 if (!eap->skip)
4664 ex_ni(eap);
4665 else
4666 vim_free(script_get(eap, eap->arg));
4667}
4668#endif
4669
4670/*
4671 * Check range in Ex command for validity.
4672 * Return NULL when valid, error message when invalid.
4673 */
4674 static char_u *
4675invalid_range(eap)
4676 exarg_T *eap;
4677{
4678 if ( eap->line1 < 0
4679 || eap->line2 < 0
4680 || eap->line1 > eap->line2
4681 || ((eap->argt & RANGE)
4682 && !(eap->argt & NOTADR)
4683 && eap->line2 > curbuf->b_ml.ml_line_count
4684#ifdef FEAT_DIFF
4685 + (eap->cmdidx == CMD_diffget)
4686#endif
4687 ))
4688 return (char_u *)_(e_invrange);
4689 return NULL;
4690}
4691
4692/*
4693 * Correct the range for zero line number, if required.
4694 */
4695 static void
4696correct_range(eap)
4697 exarg_T *eap;
4698{
4699 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4700 {
4701 if (eap->line1 == 0)
4702 eap->line1 = 1;
4703 if (eap->line2 == 0)
4704 eap->line2 = 1;
4705 }
4706}
4707
Bram Moolenaar748bf032005-02-02 23:04:36 +00004708#ifdef FEAT_QUICKFIX
4709static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4710
4711/*
4712 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4713 * pattern. Otherwise return eap->arg.
4714 */
4715 static char_u *
4716skip_grep_pat(eap)
4717 exarg_T *eap;
4718{
4719 char_u *p = eap->arg;
4720
Bram Moolenaara37420f2006-02-04 22:37:47 +00004721 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4722 || eap->cmdidx == CMD_vimgrepadd
4723 || eap->cmdidx == CMD_lvimgrepadd
4724 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004725 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004726 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004727 if (p == NULL)
4728 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004729 }
4730 return p;
4731}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004732
4733/*
4734 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4735 * in the command line, so that things like % get expanded.
4736 */
4737 static char_u *
4738replace_makeprg(eap, p, cmdlinep)
4739 exarg_T *eap;
4740 char_u *p;
4741 char_u **cmdlinep;
4742{
4743 char_u *new_cmdline;
4744 char_u *program;
4745 char_u *pos;
4746 char_u *ptr;
4747 int len;
4748 int i;
4749
4750 /*
4751 * Don't do it when ":vimgrep" is used for ":grep".
4752 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004753 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4754 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4755 || eap->cmdidx == CMD_grepadd
4756 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004757 && !grep_internal(eap->cmdidx))
4758 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004759 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4760 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004761 {
4762 if (*curbuf->b_p_gp == NUL)
4763 program = p_gp;
4764 else
4765 program = curbuf->b_p_gp;
4766 }
4767 else
4768 {
4769 if (*curbuf->b_p_mp == NUL)
4770 program = p_mp;
4771 else
4772 program = curbuf->b_p_mp;
4773 }
4774
4775 p = skipwhite(p);
4776
4777 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4778 {
4779 /* replace $* by given arguments */
4780 i = 1;
4781 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4782 ++i;
4783 len = (int)STRLEN(p);
4784 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4785 if (new_cmdline == NULL)
4786 return NULL; /* out of memory */
4787 ptr = new_cmdline;
4788 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4789 {
4790 i = (int)(pos - program);
4791 STRNCPY(ptr, program, i);
4792 STRCPY(ptr += i, p);
4793 ptr += len;
4794 program = pos + 2;
4795 }
4796 STRCPY(ptr, program);
4797 }
4798 else
4799 {
4800 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4801 if (new_cmdline == NULL)
4802 return NULL; /* out of memory */
4803 STRCPY(new_cmdline, program);
4804 STRCAT(new_cmdline, " ");
4805 STRCAT(new_cmdline, p);
4806 }
4807 msg_make(p);
4808
4809 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4810 vim_free(*cmdlinep);
4811 *cmdlinep = new_cmdline;
4812 p = new_cmdline;
4813 }
4814 return p;
4815}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004816#endif
4817
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818/*
4819 * Expand file name in Ex command argument.
4820 * Return FAIL for failure, OK otherwise.
4821 */
4822 int
4823expand_filename(eap, cmdlinep, errormsgp)
4824 exarg_T *eap;
4825 char_u **cmdlinep;
4826 char_u **errormsgp;
4827{
4828 int has_wildcards; /* need to expand wildcards */
4829 char_u *repl;
4830 int srclen;
4831 char_u *p;
4832 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004833 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834
Bram Moolenaar748bf032005-02-02 23:04:36 +00004835#ifdef FEAT_QUICKFIX
4836 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4837 p = skip_grep_pat(eap);
4838#else
4839 p = eap->arg;
4840#endif
4841
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 /*
4843 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4844 * the file name contains a wildcard it should not cause expanding.
4845 * (it will be expanded anyway if there is a wildcard before replacing).
4846 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004847 has_wildcards = mch_has_wildcard(p);
4848 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004850#ifdef FEAT_EVAL
4851 /* Skip over `=expr`, wildcards in it are not expanded. */
4852 if (p[0] == '`' && p[1] == '=')
4853 {
4854 p += 2;
4855 (void)skip_expr(&p);
4856 if (*p == '`')
4857 ++p;
4858 continue;
4859 }
4860#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 /*
4862 * Quick check if this cannot be the start of a special string.
4863 * Also removes backslash before '%', '#' and '<'.
4864 */
4865 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4866 {
4867 ++p;
4868 continue;
4869 }
4870
4871 /*
4872 * Try to find a match at this position.
4873 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004874 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4875 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 if (*errormsgp != NULL) /* error detected */
4877 return FAIL;
4878 if (repl == NULL) /* no match found */
4879 {
4880 p += srclen;
4881 continue;
4882 }
4883
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004884 /* Wildcards won't be expanded below, the replacement is taken
4885 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4886 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4887 {
4888 char_u *l = repl;
4889
4890 repl = expand_env_save(repl);
4891 vim_free(l);
4892 }
4893
Bram Moolenaar63b92542007-03-27 14:57:09 +00004894 /* Need to escape white space et al. with a backslash.
4895 * Don't do this for:
4896 * - replacement that already has been escaped: "##"
4897 * - shell commands (may have to use quotes instead).
4898 * - non-unix systems when there is a single argument (spaces don't
4899 * separate arguments then).
4900 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004902 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 && eap->cmdidx != CMD_bang
4904 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004905 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004907 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004909 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910#ifndef UNIX
4911 && !(eap->argt & NOSPC)
4912#endif
4913 )
4914 {
4915 char_u *l;
4916#ifdef BACKSLASH_IN_FILENAME
4917 /* Don't escape a backslash here, because rem_backslash() doesn't
4918 * remove it later. */
4919 static char_u *nobslash = (char_u *)" \t\"|";
4920# define ESCAPE_CHARS nobslash
4921#else
4922# define ESCAPE_CHARS escape_chars
4923#endif
4924
4925 for (l = repl; *l; ++l)
4926 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4927 {
4928 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4929 if (l != NULL)
4930 {
4931 vim_free(repl);
4932 repl = l;
4933 }
4934 break;
4935 }
4936 }
4937
4938 /* For a shell command a '!' must be escaped. */
4939 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar31b7d382014-04-01 18:54:48 +02004940 && vim_strpbrk(repl, (char_u *)"!") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
4942 char_u *l;
4943
Bram Moolenaar31b7d382014-04-01 18:54:48 +02004944 l = vim_strsave_escaped(repl, (char_u *)"!");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 if (l != NULL)
4946 {
4947 vim_free(repl);
4948 repl = l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 }
4950 }
4951
4952 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4953 vim_free(repl);
4954 if (p == NULL)
4955 return FAIL;
4956 }
4957
4958 /*
4959 * One file argument: Expand wildcards.
4960 * Don't do this with ":r !command" or ":w !command".
4961 */
4962 if ((eap->argt & NOSPC) && !eap->usefilter)
4963 {
4964 /*
4965 * May do this twice:
4966 * 1. Replace environment variables.
4967 * 2. Replace any other wildcards, remove backslashes.
4968 */
4969 for (n = 1; n <= 2; ++n)
4970 {
4971 if (n == 2)
4972 {
4973#ifdef UNIX
4974 /*
4975 * Only for Unix we check for more than one file name.
4976 * For other systems spaces are considered to be part
4977 * of the file name.
4978 * Only check here if there is no wildcard, otherwise
4979 * ExpandOne() will check for errors. This allows
4980 * ":e `ls ve*.c`" on Unix.
4981 */
4982 if (!has_wildcards)
4983 for (p = eap->arg; *p; ++p)
4984 {
4985 /* skip escaped characters */
4986 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4987 ++p;
4988 else if (vim_iswhite(*p))
4989 {
4990 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4991 return FAIL;
4992 }
4993 }
4994#endif
4995
4996 /*
4997 * Halve the number of backslashes (this is Vi compatible).
4998 * For Unix and OS/2, when wildcards are expanded, this is
4999 * done by ExpandOne() below.
5000 */
5001#if defined(UNIX) || defined(OS2)
5002 if (!has_wildcards)
5003#endif
5004 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 }
5006
5007 if (has_wildcards)
5008 {
5009 if (n == 1)
5010 {
5011 /*
5012 * First loop: May expand environment variables. This
5013 * can be done much faster with expand_env() than with
5014 * something else (e.g., calling a shell).
5015 * After expanding environment variables, check again
5016 * if there are still wildcards present.
5017 */
5018 if (vim_strchr(eap->arg, '$') != NULL
5019 || vim_strchr(eap->arg, '~') != NULL)
5020 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00005021 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00005022 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 has_wildcards = mch_has_wildcard(NameBuff);
5024 p = NameBuff;
5025 }
5026 else
5027 p = NULL;
5028 }
5029 else /* n == 2 */
5030 {
5031 expand_T xpc;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005032 int options = WILD_LIST_NOTFOUND|WILD_ADD_SLASH;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033
5034 ExpandInit(&xpc);
5035 xpc.xp_context = EXPAND_FILES;
Bram Moolenaar94950a92010-12-02 16:01:29 +01005036 if (p_wic)
5037 options += WILD_ICASE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 p = ExpandOne(&xpc, eap->arg, NULL,
Bram Moolenaar94950a92010-12-02 16:01:29 +01005039 options, WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 if (p == NULL)
5041 return FAIL;
5042 }
5043 if (p != NULL)
5044 {
5045 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
5046 p, cmdlinep);
5047 if (n == 2) /* p came from ExpandOne() */
5048 vim_free(p);
5049 }
5050 }
5051 }
5052 }
5053 return OK;
5054}
5055
5056/*
5057 * Replace part of the command line, keeping eap->cmd, eap->arg and
5058 * eap->nextcmd correct.
5059 * "src" points to the part that is to be replaced, of length "srclen".
5060 * "repl" is the replacement string.
5061 * Returns a pointer to the character after the replaced string.
5062 * Returns NULL for failure.
5063 */
5064 static char_u *
5065repl_cmdline(eap, src, srclen, repl, cmdlinep)
5066 exarg_T *eap;
5067 char_u *src;
5068 int srclen;
5069 char_u *repl;
5070 char_u **cmdlinep;
5071{
5072 int len;
5073 int i;
5074 char_u *new_cmdline;
5075
5076 /*
5077 * The new command line is build in new_cmdline[].
5078 * First allocate it.
5079 * Careful: a "+cmd" argument may have been NUL terminated.
5080 */
5081 len = (int)STRLEN(repl);
5082 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005083 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
5085 if ((new_cmdline = alloc((unsigned)i)) == NULL)
5086 return NULL; /* out of memory! */
5087
5088 /*
5089 * Copy the stuff before the expanded part.
5090 * Copy the expanded stuff.
5091 * Copy what came after the expanded part.
5092 * Copy the next commands, if there are any.
5093 */
5094 i = (int)(src - *cmdlinep); /* length of part before match */
5095 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00005096
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 mch_memmove(new_cmdline + i, repl, (size_t)len);
5098 i += len; /* remember the end of the string */
5099 STRCPY(new_cmdline + i, src + srclen);
5100 src = new_cmdline + i; /* remember where to continue */
5101
Bram Moolenaare1438bb2006-03-01 22:01:55 +00005102 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 {
5104 i = (int)STRLEN(new_cmdline) + 1;
5105 STRCPY(new_cmdline + i, eap->nextcmd);
5106 eap->nextcmd = new_cmdline + i;
5107 }
5108 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
5109 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
5110 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
5111 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
5112 vim_free(*cmdlinep);
5113 *cmdlinep = new_cmdline;
5114
5115 return src;
5116}
5117
5118/*
5119 * Check for '|' to separate commands and '"' to start comments.
5120 */
5121 void
5122separate_nextcmd(eap)
5123 exarg_T *eap;
5124{
5125 char_u *p;
5126
Bram Moolenaar86b68352004-12-27 21:59:20 +00005127#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00005128 p = skip_grep_pat(eap);
5129#else
5130 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00005131#endif
5132
5133 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 {
5135 if (*p == Ctrl_V)
5136 {
5137 if (eap->argt & (USECTRLV | XFILE))
5138 ++p; /* skip CTRL-V and next char */
5139 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00005140 /* remove CTRL-V and skip next char */
Bram Moolenaara7241f52008-06-24 20:39:31 +00005141 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 if (*p == NUL) /* stop at NUL after CTRL-V */
5143 break;
5144 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005145
5146#ifdef FEAT_EVAL
5147 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005148 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005149 {
5150 p += 2;
5151 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005152 }
5153#endif
5154
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 /* Check for '"': start of comment or '|': next command */
5156 /* :@" and :*" do not start a comment!
5157 * :redir @" doesn't either. */
5158 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
5159 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
5160 || p != eap->arg)
5161 && (eap->cmdidx != CMD_redir
5162 || p != eap->arg + 1 || p[-1] != '@'))
5163 || *p == '|' || *p == '\n')
5164 {
5165 /*
5166 * We remove the '\' before the '|', unless USECTRLV is used
5167 * AND 'b' is present in 'cpoptions'.
5168 */
5169 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
5170 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
5171 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00005172 STRMOVE(p - 1, p); /* remove the '\' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 --p;
5174 }
5175 else
5176 {
5177 eap->nextcmd = check_nextcmd(p);
5178 *p = NUL;
5179 break;
5180 }
5181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005182 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00005183
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
5185 del_trailing_spaces(eap->arg);
5186}
5187
5188/*
5189 * get + command from ex argument
5190 */
5191 static char_u *
5192getargcmd(argp)
5193 char_u **argp;
5194{
5195 char_u *arg = *argp;
5196 char_u *command = NULL;
5197
5198 if (*arg == '+') /* +[command] */
5199 {
5200 ++arg;
Bram Moolenaar3e451592014-04-02 14:22:05 +02005201 if (vim_isspace(*arg) || *arg == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 command = dollar_command;
5203 else
5204 {
5205 command = arg;
5206 arg = skip_cmd_arg(command, TRUE);
5207 if (*arg != NUL)
5208 *arg++ = NUL; /* terminate command with NUL */
5209 }
5210
5211 arg = skipwhite(arg); /* skip over spaces */
5212 *argp = arg;
5213 }
5214 return command;
5215}
5216
5217/*
5218 * Find end of "+command" argument. Skip over "\ " and "\\".
5219 */
5220 static char_u *
5221skip_cmd_arg(p, rembs)
5222 char_u *p;
5223 int rembs; /* TRUE to halve the number of backslashes */
5224{
5225 while (*p && !vim_isspace(*p))
5226 {
5227 if (*p == '\\' && p[1] != NUL)
5228 {
5229 if (rembs)
Bram Moolenaara7241f52008-06-24 20:39:31 +00005230 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 else
5232 ++p;
5233 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005234 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 }
5236 return p;
5237}
5238
5239/*
5240 * Get "++opt=arg" argument.
5241 * Return FAIL or OK.
5242 */
5243 static int
5244getargopt(eap)
5245 exarg_T *eap;
5246{
5247 char_u *arg = eap->arg + 2;
5248 int *pp = NULL;
5249#ifdef FEAT_MBYTE
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005250 int bad_char_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251 char_u *p;
5252#endif
5253
5254 /* ":edit ++[no]bin[ary] file" */
5255 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
5256 {
5257 if (*arg == 'n')
5258 {
5259 arg += 2;
5260 eap->force_bin = FORCE_NOBIN;
5261 }
5262 else
5263 eap->force_bin = FORCE_BIN;
5264 if (!checkforcmd(&arg, "binary", 3))
5265 return FAIL;
5266 eap->arg = skipwhite(arg);
5267 return OK;
5268 }
5269
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005270 /* ":read ++edit file" */
5271 if (STRNCMP(arg, "edit", 4) == 0)
5272 {
5273 eap->read_edit = TRUE;
5274 eap->arg = skipwhite(arg + 4);
5275 return OK;
5276 }
5277
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 if (STRNCMP(arg, "ff", 2) == 0)
5279 {
5280 arg += 2;
5281 pp = &eap->force_ff;
5282 }
5283 else if (STRNCMP(arg, "fileformat", 10) == 0)
5284 {
5285 arg += 10;
5286 pp = &eap->force_ff;
5287 }
5288#ifdef FEAT_MBYTE
5289 else if (STRNCMP(arg, "enc", 3) == 0)
5290 {
Bram Moolenaarb38e9ab2011-12-14 14:49:45 +01005291 if (STRNCMP(arg, "encoding", 8) == 0)
5292 arg += 8;
5293 else
5294 arg += 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 pp = &eap->force_enc;
5296 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005297 else if (STRNCMP(arg, "bad", 3) == 0)
5298 {
5299 arg += 3;
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005300 pp = &bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005301 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005302#endif
5303
5304 if (pp == NULL || *arg != '=')
5305 return FAIL;
5306
5307 ++arg;
5308 *pp = (int)(arg - eap->cmd);
5309 arg = skip_cmd_arg(arg, FALSE);
5310 eap->arg = skipwhite(arg);
5311 *arg = NUL;
5312
5313#ifdef FEAT_MBYTE
5314 if (pp == &eap->force_ff)
5315 {
5316#endif
5317 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
5318 return FAIL;
5319#ifdef FEAT_MBYTE
5320 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005321 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 {
5323 /* Make 'fileencoding' lower case. */
5324 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
5325 *p = TOLOWER_ASC(*p);
5326 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005327 else
5328 {
5329 /* Check ++bad= argument. Must be a single-byte character, "keep" or
5330 * "drop". */
Bram Moolenaar34b4daf2010-05-16 13:26:25 +02005331 p = eap->cmd + bad_char_idx;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00005332 if (STRICMP(p, "keep") == 0)
5333 eap->bad_char = BAD_KEEP;
5334 else if (STRICMP(p, "drop") == 0)
5335 eap->bad_char = BAD_DROP;
5336 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
5337 eap->bad_char = *p;
5338 else
5339 return FAIL;
5340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005341#endif
5342
5343 return OK;
5344}
5345
5346/*
5347 * ":abbreviate" and friends.
5348 */
5349 static void
5350ex_abbreviate(eap)
5351 exarg_T *eap;
5352{
5353 do_exmap(eap, TRUE); /* almost the same as mapping */
5354}
5355
5356/*
5357 * ":map" and friends.
5358 */
5359 static void
5360ex_map(eap)
5361 exarg_T *eap;
5362{
5363 /*
5364 * If we are sourcing .exrc or .vimrc in current directory we
5365 * print the mappings for security reasons.
5366 */
5367 if (secure)
5368 {
5369 secure = 2;
5370 msg_outtrans(eap->cmd);
5371 msg_putchar('\n');
5372 }
5373 do_exmap(eap, FALSE);
5374}
5375
5376/*
5377 * ":unmap" and friends.
5378 */
5379 static void
5380ex_unmap(eap)
5381 exarg_T *eap;
5382{
5383 do_exmap(eap, FALSE);
5384}
5385
5386/*
5387 * ":mapclear" and friends.
5388 */
5389 static void
5390ex_mapclear(eap)
5391 exarg_T *eap;
5392{
5393 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
5394}
5395
5396/*
5397 * ":abclear" and friends.
5398 */
5399 static void
5400ex_abclear(eap)
5401 exarg_T *eap;
5402{
5403 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
5404}
5405
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005406#if defined(FEAT_AUTOCMD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 static void
5408ex_autocmd(eap)
5409 exarg_T *eap;
5410{
5411 /*
5412 * Disallow auto commands from .exrc and .vimrc in current
5413 * directory for security reasons.
5414 */
5415 if (secure)
5416 {
5417 secure = 2;
5418 eap->errmsg = e_curdir;
5419 }
5420 else if (eap->cmdidx == CMD_autocmd)
5421 do_autocmd(eap->arg, eap->forceit);
5422 else
5423 do_augroup(eap->arg, eap->forceit);
5424}
5425
5426/*
5427 * ":doautocmd": Apply the automatic commands to the current buffer.
5428 */
5429 static void
5430ex_doautocmd(eap)
5431 exarg_T *eap;
5432{
Bram Moolenaar60542ac2012-02-12 20:14:01 +01005433 char_u *arg = eap->arg;
5434 int call_do_modelines = check_nomodeline(&arg);
5435
5436 (void)do_doautocmd(arg, TRUE);
5437 if (call_do_modelines) /* Only when there is no <nomodeline>. */
5438 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005439}
5440#endif
5441
5442#ifdef FEAT_LISTCMDS
5443/*
5444 * :[N]bunload[!] [N] [bufname] unload buffer
5445 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
5446 * :[N]bwipeout[!] [N] [bufname] delete buffer really
5447 */
5448 static void
5449ex_bunload(eap)
5450 exarg_T *eap;
5451{
5452 eap->errmsg = do_bufdel(
5453 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
5454 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
5455 : DOBUF_UNLOAD, eap->arg,
5456 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
5457}
5458
5459/*
5460 * :[N]buffer [N] to buffer N
5461 * :[N]sbuffer [N] to buffer N
5462 */
5463 static void
5464ex_buffer(eap)
5465 exarg_T *eap;
5466{
5467 if (*eap->arg)
5468 eap->errmsg = e_trailing;
5469 else
5470 {
5471 if (eap->addr_count == 0) /* default is current buffer */
5472 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
5473 else
5474 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005475 if (eap->do_ecmd_cmd != NULL)
5476 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 }
5478}
5479
5480/*
5481 * :[N]bmodified [N] to next mod. buffer
5482 * :[N]sbmodified [N] to next mod. buffer
5483 */
5484 static void
5485ex_bmodified(eap)
5486 exarg_T *eap;
5487{
5488 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005489 if (eap->do_ecmd_cmd != NULL)
5490 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005491}
5492
5493/*
5494 * :[N]bnext [N] to next buffer
5495 * :[N]sbnext [N] split and to next buffer
5496 */
5497 static void
5498ex_bnext(eap)
5499 exarg_T *eap;
5500{
5501 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005502 if (eap->do_ecmd_cmd != NULL)
5503 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504}
5505
5506/*
5507 * :[N]bNext [N] to previous buffer
5508 * :[N]bprevious [N] to previous buffer
5509 * :[N]sbNext [N] split and to previous buffer
5510 * :[N]sbprevious [N] split and to previous buffer
5511 */
5512 static void
5513ex_bprevious(eap)
5514 exarg_T *eap;
5515{
5516 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005517 if (eap->do_ecmd_cmd != NULL)
5518 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519}
5520
5521/*
5522 * :brewind to first buffer
5523 * :bfirst to first buffer
5524 * :sbrewind split and to first buffer
5525 * :sbfirst split and to first buffer
5526 */
5527 static void
5528ex_brewind(eap)
5529 exarg_T *eap;
5530{
5531 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005532 if (eap->do_ecmd_cmd != NULL)
5533 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534}
5535
5536/*
5537 * :blast to last buffer
5538 * :sblast split and to last buffer
5539 */
5540 static void
5541ex_blast(eap)
5542 exarg_T *eap;
5543{
5544 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
Bram Moolenaar9c8d9e12014-09-19 20:07:26 +02005545 if (eap->do_ecmd_cmd != NULL)
5546 do_cmdline_cmd(eap->do_ecmd_cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547}
5548#endif
5549
5550 int
5551ends_excmd(c)
5552 int c;
5553{
5554 return (c == NUL || c == '|' || c == '"' || c == '\n');
5555}
5556
5557#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
5558 || defined(PROTO)
5559/*
5560 * Return the next command, after the first '|' or '\n'.
5561 * Return NULL if not found.
5562 */
5563 char_u *
5564find_nextcmd(p)
5565 char_u *p;
5566{
5567 while (*p != '|' && *p != '\n')
5568 {
5569 if (*p == NUL)
5570 return NULL;
5571 ++p;
5572 }
5573 return (p + 1);
5574}
5575#endif
5576
5577/*
5578 * Check if *p is a separator between Ex commands.
5579 * Return NULL if it isn't, (p + 1) if it is.
5580 */
5581 char_u *
5582check_nextcmd(p)
5583 char_u *p;
5584{
5585 p = skipwhite(p);
5586 if (*p == '|' || *p == '\n')
5587 return (p + 1);
5588 else
5589 return NULL;
5590}
5591
5592/*
5593 * - if there are more files to edit
5594 * - and this is the last window
5595 * - and forceit not used
5596 * - and not repeated twice on a row
5597 * return FAIL and give error message if 'message' TRUE
5598 * return OK otherwise
5599 */
5600 static int
5601check_more(message, forceit)
5602 int message; /* when FALSE check only, no messages */
5603 int forceit;
5604{
5605 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5606
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005607 if (!forceit && only_one_window()
5608 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 {
5610 if (message)
5611 {
5612#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5613 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5614 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02005615 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616
5617 if (n == 1)
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02005618 vim_strncpy(buff,
5619 (char_u *)_("1 more file to edit. Quit anyway?"),
Bram Moolenaard9462e32011-04-11 21:35:11 +02005620 DIALOG_MSG_SIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 else
Bram Moolenaard9462e32011-04-11 21:35:11 +02005622 vim_snprintf((char *)buff, DIALOG_MSG_SIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005623 _("%d more files to edit. Quit anyway?"), n);
5624 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5625 return OK;
5626 return FAIL;
5627 }
5628#endif
5629 if (n == 1)
5630 EMSG(_("E173: 1 more file to edit"));
5631 else
5632 EMSGN(_("E173: %ld more files to edit"), n);
5633 quitmore = 2; /* next try to quit is allowed */
5634 }
5635 return FAIL;
5636 }
5637 return OK;
5638}
5639
5640#ifdef FEAT_CMDL_COMPL
5641/*
5642 * Function given to ExpandGeneric() to obtain the list of command names.
5643 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644 char_u *
5645get_command_name(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00005646 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647 int idx;
5648{
5649 if (idx >= (int)CMD_SIZE)
5650# ifdef FEAT_USR_CMDS
5651 return get_user_command_name(idx);
5652# else
5653 return NULL;
5654# endif
5655 return cmdnames[idx].cmd_name;
5656}
5657#endif
5658
5659#if defined(FEAT_USR_CMDS) || defined(PROTO)
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005660static 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 +00005661static void uc_list __ARGS((char_u *name, size_t name_len));
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005662static 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 +00005663static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5664static 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));
5665
5666 static int
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005667uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, addr_type, force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005668 char_u *name;
5669 size_t name_len;
5670 char_u *rep;
5671 long argt;
5672 long def;
5673 int flags;
5674 int compl;
5675 char_u *compl_arg;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005676 int addr_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 int force;
5678{
5679 ucmd_T *cmd = NULL;
5680 char_u *p;
5681 int i;
5682 int cmp = 1;
5683 char_u *rep_buf = NULL;
5684 garray_T *gap;
5685
Bram Moolenaar9c102382006-05-03 21:26:49 +00005686 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 if (rep_buf == NULL)
5688 {
5689 /* Can't replace termcodes - try using the string as is */
5690 rep_buf = vim_strsave(rep);
5691
5692 /* Give up if out of memory */
5693 if (rep_buf == NULL)
5694 return FAIL;
5695 }
5696
5697 /* get address of growarray: global or in curbuf */
5698 if (flags & UC_BUFFER)
5699 {
5700 gap = &curbuf->b_ucmds;
5701 if (gap->ga_itemsize == 0)
5702 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5703 }
5704 else
5705 gap = &ucmds;
5706
5707 /* Search for the command in the already defined commands. */
5708 for (i = 0; i < gap->ga_len; ++i)
5709 {
5710 size_t len;
5711
5712 cmd = USER_CMD_GA(gap, i);
5713 len = STRLEN(cmd->uc_name);
5714 cmp = STRNCMP(name, cmd->uc_name, name_len);
5715 if (cmp == 0)
5716 {
5717 if (name_len < len)
5718 cmp = -1;
5719 else if (name_len > len)
5720 cmp = 1;
5721 }
5722
5723 if (cmp == 0)
5724 {
5725 if (!force)
5726 {
5727 EMSG(_("E174: Command already exists: add ! to replace it"));
5728 goto fail;
5729 }
5730
5731 vim_free(cmd->uc_rep);
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00005732 cmd->uc_rep = NULL;
5733#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5734 vim_free(cmd->uc_compl_arg);
5735 cmd->uc_compl_arg = NULL;
5736#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737 break;
5738 }
5739
5740 /* Stop as soon as we pass the name to add */
5741 if (cmp < 0)
5742 break;
5743 }
5744
5745 /* Extend the array unless we're replacing an existing command */
5746 if (cmp != 0)
5747 {
5748 if (ga_grow(gap, 1) != OK)
5749 goto fail;
5750 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5751 goto fail;
5752
5753 cmd = USER_CMD_GA(gap, i);
5754 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5755
5756 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757
5758 cmd->uc_name = p;
5759 }
5760
5761 cmd->uc_rep = rep_buf;
5762 cmd->uc_argt = argt;
5763 cmd->uc_def = def;
5764 cmd->uc_compl = compl;
5765#ifdef FEAT_EVAL
5766 cmd->uc_scriptID = current_SID;
5767# ifdef FEAT_CMDL_COMPL
5768 cmd->uc_compl_arg = compl_arg;
5769# endif
5770#endif
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005771 cmd->uc_addr_type = addr_type;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772
5773 return OK;
5774
5775fail:
5776 vim_free(rep_buf);
5777#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5778 vim_free(compl_arg);
5779#endif
5780 return FAIL;
5781}
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005782#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005784#if defined(FEAT_USR_CMDS)
5785static struct
5786{
5787 int expand;
5788 char *name;
5789} addr_type_complete[] =
5790{
5791 {ADDR_ARGUMENTS, "arguments"},
5792 {ADDR_LINES, "lines"},
5793 {ADDR_LOADED_BUFFERS, "loaded_buffers"},
5794 {ADDR_TABS, "tabs"},
5795 {ADDR_BUFFERS, "buffers"},
5796 {ADDR_WINDOWS, "windows"},
5797 {-1, NULL}
5798};
5799#endif
5800
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005801#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802/*
5803 * List of names for completion for ":command" with the EXPAND_ flag.
5804 * Must be alphabetical for completion.
5805 */
5806static struct
5807{
5808 int expand;
5809 char *name;
5810} command_complete[] =
5811{
5812 {EXPAND_AUGROUP, "augroup"},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005813 {EXPAND_BEHAVE, "behave"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814 {EXPAND_BUFFERS, "buffer"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005815 {EXPAND_COLORS, "color"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 {EXPAND_COMMANDS, "command"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005817 {EXPAND_COMPILER, "compiler"},
Bram Moolenaarf4580d82009-03-18 11:52:53 +00005818#if defined(FEAT_CSCOPE)
5819 {EXPAND_CSCOPE, "cscope"},
5820#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5822 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005823 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824#endif
5825 {EXPAND_DIRECTORIES, "dir"},
5826 {EXPAND_ENV_VARS, "environment"},
5827 {EXPAND_EVENTS, "event"},
5828 {EXPAND_EXPRESSION, "expression"},
5829 {EXPAND_FILES, "file"},
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005830 {EXPAND_FILES_IN_PATH, "file_in_path"},
Bram Moolenaara26559b2010-07-31 14:59:19 +02005831 {EXPAND_FILETYPE, "filetype"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005832 {EXPAND_FUNCTIONS, "function"},
5833 {EXPAND_HELP, "help"},
5834 {EXPAND_HIGHLIGHT, "highlight"},
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005835#if defined(FEAT_CMDHIST)
5836 {EXPAND_HISTORY, "history"},
5837#endif
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005838#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
Bram Moolenaar5ae636b2012-04-30 18:48:53 +02005839 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
Bram Moolenaare9edd7f2011-07-20 16:37:24 +02005840 {EXPAND_LOCALES, "locale"},
5841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842 {EXPAND_MAPPINGS, "mapping"},
5843 {EXPAND_MENUS, "menu"},
Bram Moolenaara26559b2010-07-31 14:59:19 +02005844 {EXPAND_OWNSYNTAX, "syntax"},
Bram Moolenaarcd9c4622013-06-08 15:24:48 +02005845#if defined(FEAT_PROFILE)
5846 {EXPAND_SYNTIME, "syntime"},
5847#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005849 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar3c65e312009-04-29 16:47:23 +00005850#if defined(FEAT_SIGNS)
5851 {EXPAND_SIGN, "sign"},
5852#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 {EXPAND_TAGS, "tag"},
5854 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
Bram Moolenaar24305862012-08-15 14:05:05 +02005855 {EXPAND_USER, "user"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 {EXPAND_USER_VARS, "var"},
5857 {0, NULL}
5858};
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005859#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01005861#if defined(FEAT_USR_CMDS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862 static void
5863uc_list(name, name_len)
5864 char_u *name;
5865 size_t name_len;
5866{
5867 int i, j;
5868 int found = FALSE;
5869 ucmd_T *cmd;
5870 int len;
5871 long a;
5872 garray_T *gap;
5873
5874 gap = &curbuf->b_ucmds;
5875 for (;;)
5876 {
5877 for (i = 0; i < gap->ga_len; ++i)
5878 {
5879 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005880 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881
5882 /* Skip commands which don't match the requested prefix */
5883 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5884 continue;
5885
5886 /* Put out the title first time */
5887 if (!found)
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005888 MSG_PUTS_TITLE(_("\n Name Args Address Complete Definition"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 found = TRUE;
5890 msg_putchar('\n');
5891 if (got_int)
5892 break;
5893
5894 /* Special cases */
5895 msg_putchar(a & BANG ? '!' : ' ');
5896 msg_putchar(a & REGSTR ? '"' : ' ');
5897 msg_putchar(gap != &ucmds ? 'b' : ' ');
5898 msg_putchar(' ');
5899
5900 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5901 len = (int)STRLEN(cmd->uc_name) + 4;
5902
5903 do {
5904 msg_putchar(' ');
5905 ++len;
5906 } while (len < 16);
5907
5908 len = 0;
5909
5910 /* Arguments */
5911 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5912 {
5913 case 0: IObuff[len++] = '0'; break;
5914 case (EXTRA): IObuff[len++] = '*'; break;
5915 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5916 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5917 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5918 }
5919
5920 do {
5921 IObuff[len++] = ' ';
5922 } while (len < 5);
5923
5924 /* Range */
5925 if (a & (RANGE|COUNT))
5926 {
5927 if (a & COUNT)
5928 {
5929 /* -count=N */
5930 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5931 len += (int)STRLEN(IObuff + len);
5932 }
5933 else if (a & DFLALL)
5934 IObuff[len++] = '%';
5935 else if (cmd->uc_def >= 0)
5936 {
5937 /* -range=N */
5938 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5939 len += (int)STRLEN(IObuff + len);
5940 }
5941 else
5942 IObuff[len++] = '.';
5943 }
5944
5945 do {
5946 IObuff[len++] = ' ';
5947 } while (len < 11);
5948
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005949 /* Address Type */
5950 for (j = 0; addr_type_complete[j].expand != -1; ++j)
5951 if (addr_type_complete[j].expand != ADDR_LINES
5952 && addr_type_complete[j].expand == cmd->uc_addr_type)
5953 {
5954 STRCPY(IObuff + len, addr_type_complete[j].name);
5955 len += (int)STRLEN(IObuff + len);
5956 break;
5957 }
5958
5959 do {
5960 IObuff[len++] = ' ';
5961 } while (len < 21);
5962
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963 /* Completion */
5964 for (j = 0; command_complete[j].expand != 0; ++j)
5965 if (command_complete[j].expand == cmd->uc_compl)
5966 {
5967 STRCPY(IObuff + len, command_complete[j].name);
5968 len += (int)STRLEN(IObuff + len);
5969 break;
5970 }
5971
5972 do {
5973 IObuff[len++] = ' ';
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01005974 } while (len < 35);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975
5976 IObuff[len] = '\0';
5977 msg_outtrans(IObuff);
5978
5979 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005980#ifdef FEAT_EVAL
5981 if (p_verbose > 0)
5982 last_set_msg(cmd->uc_scriptID);
5983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005984 out_flush();
5985 ui_breakcheck();
5986 if (got_int)
5987 break;
5988 }
5989 if (gap == &ucmds || i < gap->ga_len)
5990 break;
5991 gap = &ucmds;
5992 }
5993
5994 if (!found)
5995 MSG(_("No user-defined commands found"));
5996}
5997
5998 static char_u *
5999uc_fun_cmd()
6000{
6001 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
6002 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
6003 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
6004 0xb9, 0x7f, 0};
6005 int i;
6006
6007 for (i = 0; fcmd[i]; ++i)
6008 IObuff[i] = fcmd[i] - 0x40;
6009 IObuff[i] = 0;
6010 return IObuff;
6011}
6012
6013 static int
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006014uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg, addr_type_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 char_u *attr;
6016 size_t len;
6017 long *argt;
6018 long *def;
6019 int *flags;
6020 int *compl;
6021 char_u **compl_arg;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006022 int *addr_type_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023{
6024 char_u *p;
6025
6026 if (len == 0)
6027 {
6028 EMSG(_("E175: No attribute specified"));
6029 return FAIL;
6030 }
6031
6032 /* First, try the simple attributes (no arguments) */
6033 if (STRNICMP(attr, "bang", len) == 0)
6034 *argt |= BANG;
6035 else if (STRNICMP(attr, "buffer", len) == 0)
6036 *flags |= UC_BUFFER;
6037 else if (STRNICMP(attr, "register", len) == 0)
6038 *argt |= REGSTR;
6039 else if (STRNICMP(attr, "bar", len) == 0)
6040 *argt |= TRLBAR;
6041 else
6042 {
6043 int i;
6044 char_u *val = NULL;
6045 size_t vallen = 0;
6046 size_t attrlen = len;
6047
6048 /* Look for the attribute name - which is the part before any '=' */
6049 for (i = 0; i < (int)len; ++i)
6050 {
6051 if (attr[i] == '=')
6052 {
6053 val = &attr[i + 1];
6054 vallen = len - i - 1;
6055 attrlen = i;
6056 break;
6057 }
6058 }
6059
6060 if (STRNICMP(attr, "nargs", attrlen) == 0)
6061 {
6062 if (vallen == 1)
6063 {
6064 if (*val == '0')
6065 /* Do nothing - this is the default */;
6066 else if (*val == '1')
6067 *argt |= (EXTRA | NOSPC | NEEDARG);
6068 else if (*val == '*')
6069 *argt |= EXTRA;
6070 else if (*val == '?')
6071 *argt |= (EXTRA | NOSPC);
6072 else if (*val == '+')
6073 *argt |= (EXTRA | NEEDARG);
6074 else
6075 goto wrong_nargs;
6076 }
6077 else
6078 {
6079wrong_nargs:
6080 EMSG(_("E176: Invalid number of arguments"));
6081 return FAIL;
6082 }
6083 }
6084 else if (STRNICMP(attr, "range", attrlen) == 0)
6085 {
6086 *argt |= RANGE;
6087 if (vallen == 1 && *val == '%')
6088 *argt |= DFLALL;
6089 else if (val != NULL)
6090 {
6091 p = val;
6092 if (*def >= 0)
6093 {
6094two_count:
6095 EMSG(_("E177: Count cannot be specified twice"));
6096 return FAIL;
6097 }
6098
6099 *def = getdigits(&p);
6100 *argt |= (ZEROR | NOTADR);
6101
6102 if (p != val + vallen || vallen == 0)
6103 {
6104invalid_count:
6105 EMSG(_("E178: Invalid default value for count"));
6106 return FAIL;
6107 }
6108 }
6109 }
6110 else if (STRNICMP(attr, "count", attrlen) == 0)
6111 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00006112 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113
6114 if (val != NULL)
6115 {
6116 p = val;
6117 if (*def >= 0)
6118 goto two_count;
6119
6120 *def = getdigits(&p);
6121
6122 if (p != val + vallen)
6123 goto invalid_count;
6124 }
6125
6126 if (*def < 0)
6127 *def = 0;
6128 }
6129 else if (STRNICMP(attr, "complete", attrlen) == 0)
6130 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006131 if (val == NULL)
6132 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006133 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 return FAIL;
6135 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006136
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006137 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
6138 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006139 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140 }
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006141 else if (STRNICMP(attr, "addr", attrlen) == 0)
6142 {
6143 *argt |= RANGE;
6144 if (val == NULL)
6145 {
6146 EMSG(_("E179: argument required for -addr"));
6147 return FAIL;
6148 }
6149 if (parse_addr_type_arg(val, (int)vallen, argt, addr_type_arg)
6150 == FAIL)
6151 return FAIL;
6152 if (addr_type_arg != ADDR_LINES)
6153 *argt |= (ZEROR | NOTADR) ;
6154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 else
6156 {
6157 char_u ch = attr[len];
6158 attr[len] = '\0';
6159 EMSG2(_("E181: Invalid attribute: %s"), attr);
6160 attr[len] = ch;
6161 return FAIL;
6162 }
6163 }
6164
6165 return OK;
6166}
6167
Bram Moolenaara850a712009-01-28 14:42:59 +00006168/*
6169 * ":command ..."
6170 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 static void
6172ex_command(eap)
6173 exarg_T *eap;
6174{
6175 char_u *name;
6176 char_u *end;
6177 char_u *p;
6178 long argt = 0;
6179 long def = -1;
6180 int flags = 0;
6181 int compl = EXPAND_NOTHING;
6182 char_u *compl_arg = NULL;
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006183 int addr_type_arg = ADDR_LINES;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184 int has_attr = (eap->arg[0] == '-');
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006185 int name_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186
6187 p = eap->arg;
6188
6189 /* Check for attributes */
6190 while (*p == '-')
6191 {
6192 ++p;
6193 end = skiptowhite(p);
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006194 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg, &addr_type_arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195 == FAIL)
6196 return;
6197 p = skipwhite(end);
6198 }
6199
6200 /* Get the name (if any) and skip to the following argument */
6201 name = p;
6202 if (ASCII_ISALPHA(*p))
6203 while (ASCII_ISALNUM(*p))
6204 ++p;
6205 if (!ends_excmd(*p) && !vim_iswhite(*p))
6206 {
6207 EMSG(_("E182: Invalid command name"));
6208 return;
6209 }
6210 end = p;
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006211 name_len = (int)(end - name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212
6213 /* If there is nothing after the name, and no attributes were specified,
6214 * we are listing commands
6215 */
6216 p = skipwhite(end);
6217 if (!has_attr && ends_excmd(*p))
6218 {
6219 uc_list(name, end - name);
6220 }
6221 else if (!ASCII_ISUPPER(*name))
6222 {
6223 EMSG(_("E183: User defined commands must start with an uppercase letter"));
6224 return;
6225 }
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +01006226 else if ((name_len == 1 && *name == 'X')
6227 || (name_len <= 4
6228 && STRNCMP(name, "Next", name_len > 4 ? 4 : name_len) == 0))
6229 {
6230 EMSG(_("E841: Reserved name, cannot be used for user defined command"));
6231 return;
6232 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 else
6234 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006235 addr_type_arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236}
6237
6238/*
6239 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006240 * Clear all user commands, global and for current buffer.
6241 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00006242 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243ex_comclear(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006244 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245{
6246 uc_clear(&ucmds);
6247 uc_clear(&curbuf->b_ucmds);
6248}
6249
6250/*
6251 * Clear all user commands for "gap".
6252 */
6253 void
6254uc_clear(gap)
6255 garray_T *gap;
6256{
6257 int i;
6258 ucmd_T *cmd;
6259
6260 for (i = 0; i < gap->ga_len; ++i)
6261 {
6262 cmd = USER_CMD_GA(gap, i);
6263 vim_free(cmd->uc_name);
6264 vim_free(cmd->uc_rep);
6265# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6266 vim_free(cmd->uc_compl_arg);
6267# endif
6268 }
6269 ga_clear(gap);
6270}
6271
6272 static void
6273ex_delcommand(eap)
6274 exarg_T *eap;
6275{
6276 int i = 0;
6277 ucmd_T *cmd = NULL;
6278 int cmp = -1;
6279 garray_T *gap;
6280
6281 gap = &curbuf->b_ucmds;
6282 for (;;)
6283 {
6284 for (i = 0; i < gap->ga_len; ++i)
6285 {
6286 cmd = USER_CMD_GA(gap, i);
6287 cmp = STRCMP(eap->arg, cmd->uc_name);
6288 if (cmp <= 0)
6289 break;
6290 }
6291 if (gap == &ucmds || cmp == 0)
6292 break;
6293 gap = &ucmds;
6294 }
6295
6296 if (cmp != 0)
6297 {
6298 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
6299 return;
6300 }
6301
6302 vim_free(cmd->uc_name);
6303 vim_free(cmd->uc_rep);
6304# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6305 vim_free(cmd->uc_compl_arg);
6306# endif
6307
6308 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309
6310 if (i < gap->ga_len)
6311 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
6312}
6313
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006314/*
6315 * split and quote args for <f-args>
6316 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 static char_u *
6318uc_split_args(arg, lenp)
6319 char_u *arg;
6320 size_t *lenp;
6321{
6322 char_u *buf;
6323 char_u *p;
6324 char_u *q;
6325 int len;
6326
6327 /* Precalculate length */
6328 p = arg;
6329 len = 2; /* Initial and final quotes */
6330
6331 while (*p)
6332 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006333 if (p[0] == '\\' && p[1] == '\\')
6334 {
6335 len += 2;
6336 p += 2;
6337 }
6338 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006339 {
6340 len += 1;
6341 p += 2;
6342 }
6343 else if (*p == '\\' || *p == '"')
6344 {
6345 len += 2;
6346 p += 1;
6347 }
6348 else if (vim_iswhite(*p))
6349 {
6350 p = skipwhite(p);
6351 if (*p == NUL)
6352 break;
6353 len += 3; /* "," */
6354 }
6355 else
6356 {
Bram Moolenaardfef1542012-07-10 19:25:10 +02006357#ifdef FEAT_MBYTE
6358 int charlen = (*mb_ptr2len)(p);
6359 len += charlen;
6360 p += charlen;
6361#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 ++len;
6363 ++p;
Bram Moolenaardfef1542012-07-10 19:25:10 +02006364#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365 }
6366 }
6367
6368 buf = alloc(len + 1);
6369 if (buf == NULL)
6370 {
6371 *lenp = 0;
6372 return buf;
6373 }
6374
6375 p = arg;
6376 q = buf;
6377 *q++ = '"';
6378 while (*p)
6379 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006380 if (p[0] == '\\' && p[1] == '\\')
6381 {
6382 *q++ = '\\';
6383 *q++ = '\\';
6384 p += 2;
6385 }
6386 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387 {
6388 *q++ = p[1];
6389 p += 2;
6390 }
6391 else if (*p == '\\' || *p == '"')
6392 {
6393 *q++ = '\\';
6394 *q++ = *p++;
6395 }
6396 else if (vim_iswhite(*p))
6397 {
6398 p = skipwhite(p);
6399 if (*p == NUL)
6400 break;
6401 *q++ = '"';
6402 *q++ = ',';
6403 *q++ = '"';
6404 }
6405 else
6406 {
Bram Moolenaardfef1542012-07-10 19:25:10 +02006407 MB_COPY_CHAR(p, q);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 }
6409 }
6410 *q++ = '"';
6411 *q = 0;
6412
6413 *lenp = len;
6414 return buf;
6415}
6416
6417/*
6418 * Check for a <> code in a user command.
6419 * "code" points to the '<'. "len" the length of the <> (inclusive).
6420 * "buf" is where the result is to be added.
6421 * "split_buf" points to a buffer used for splitting, caller should free it.
6422 * "split_len" is the length of what "split_buf" contains.
6423 * Returns the length of the replacement, which has been added to "buf".
6424 * Returns -1 if there was no match, and only the "<" has been copied.
6425 */
6426 static size_t
6427uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
6428 char_u *code;
6429 size_t len;
6430 char_u *buf;
6431 ucmd_T *cmd; /* the user command we're expanding */
6432 exarg_T *eap; /* ex arguments */
6433 char_u **split_buf;
6434 size_t *split_len;
6435{
6436 size_t result = 0;
6437 char_u *p = code + 1;
6438 size_t l = len - 2;
6439 int quote = 0;
6440 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
6441 ct_LT, ct_NONE } type = ct_NONE;
6442
6443 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
6444 {
6445 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
6446 p += 2;
6447 l -= 2;
6448 }
6449
Bram Moolenaar371d5402006-03-20 21:47:49 +00006450 ++l;
6451 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006453 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006455 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006457 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006458 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006459 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006461 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006462 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006463 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006464 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00006465 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466 type = ct_REGISTER;
6467
6468 switch (type)
6469 {
6470 case ct_ARGS:
6471 /* Simple case first */
6472 if (*eap->arg == NUL)
6473 {
6474 if (quote == 1)
6475 {
6476 result = 2;
6477 if (buf != NULL)
6478 STRCPY(buf, "''");
6479 }
6480 else
6481 result = 0;
6482 break;
6483 }
6484
6485 /* When specified there is a single argument don't split it.
6486 * Works for ":Cmd %" when % is "a b c". */
6487 if ((eap->argt & NOSPC) && quote == 2)
6488 quote = 1;
6489
6490 switch (quote)
6491 {
6492 case 0: /* No quoting, no splitting */
6493 result = STRLEN(eap->arg);
6494 if (buf != NULL)
6495 STRCPY(buf, eap->arg);
6496 break;
6497 case 1: /* Quote, but don't split */
6498 result = STRLEN(eap->arg) + 2;
6499 for (p = eap->arg; *p; ++p)
6500 {
Bram Moolenaar7d550fb2012-01-26 20:41:26 +01006501#ifdef FEAT_MBYTE
6502 if (enc_dbcs != 0 && (*mb_ptr2len)(p) == 2)
6503 /* DBCS can contain \ in a trail byte, skip the
6504 * double-byte character. */
6505 ++p;
6506 else
6507#endif
6508 if (*p == '\\' || *p == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509 ++result;
6510 }
6511
6512 if (buf != NULL)
6513 {
6514 *buf++ = '"';
6515 for (p = eap->arg; *p; ++p)
6516 {
Bram Moolenaar7d550fb2012-01-26 20:41:26 +01006517#ifdef FEAT_MBYTE
6518 if (enc_dbcs != 0 && (*mb_ptr2len)(p) == 2)
6519 /* DBCS can contain \ in a trail byte, copy the
6520 * double-byte character to avoid escaping. */
6521 *buf++ = *p++;
6522 else
6523#endif
6524 if (*p == '\\' || *p == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525 *buf++ = '\\';
6526 *buf++ = *p;
6527 }
6528 *buf = '"';
6529 }
6530
6531 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00006532 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533 /* This is hard, so only do it once, and cache the result */
6534 if (*split_buf == NULL)
6535 *split_buf = uc_split_args(eap->arg, split_len);
6536
6537 result = *split_len;
6538 if (buf != NULL && result != 0)
6539 STRCPY(buf, *split_buf);
6540
6541 break;
6542 }
6543 break;
6544
6545 case ct_BANG:
6546 result = eap->forceit ? 1 : 0;
6547 if (quote)
6548 result += 2;
6549 if (buf != NULL)
6550 {
6551 if (quote)
6552 *buf++ = '"';
6553 if (eap->forceit)
6554 *buf++ = '!';
6555 if (quote)
6556 *buf = '"';
6557 }
6558 break;
6559
6560 case ct_LINE1:
6561 case ct_LINE2:
6562 case ct_COUNT:
6563 {
6564 char num_buf[20];
6565 long num = (type == ct_LINE1) ? eap->line1 :
6566 (type == ct_LINE2) ? eap->line2 :
6567 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
6568 size_t num_len;
6569
6570 sprintf(num_buf, "%ld", num);
6571 num_len = STRLEN(num_buf);
6572 result = num_len;
6573
6574 if (quote)
6575 result += 2;
6576
6577 if (buf != NULL)
6578 {
6579 if (quote)
6580 *buf++ = '"';
6581 STRCPY(buf, num_buf);
6582 buf += num_len;
6583 if (quote)
6584 *buf = '"';
6585 }
6586
6587 break;
6588 }
6589
6590 case ct_REGISTER:
6591 result = eap->regname ? 1 : 0;
6592 if (quote)
6593 result += 2;
6594 if (buf != NULL)
6595 {
6596 if (quote)
6597 *buf++ = '\'';
6598 if (eap->regname)
6599 *buf++ = eap->regname;
6600 if (quote)
6601 *buf = '\'';
6602 }
6603 break;
6604
6605 case ct_LT:
6606 result = 1;
6607 if (buf != NULL)
6608 *buf = '<';
6609 break;
6610
6611 default:
6612 /* Not recognized: just copy the '<' and return -1. */
6613 result = (size_t)-1;
6614 if (buf != NULL)
6615 *buf = '<';
6616 break;
6617 }
6618
6619 return result;
6620}
6621
6622 static void
6623do_ucmd(eap)
6624 exarg_T *eap;
6625{
6626 char_u *buf;
6627 char_u *p;
6628 char_u *q;
6629
6630 char_u *start;
Bram Moolenaar25648a52009-02-21 19:37:46 +00006631 char_u *end = NULL;
Bram Moolenaara850a712009-01-28 14:42:59 +00006632 char_u *ksp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006633 size_t len, totlen;
6634
6635 size_t split_len = 0;
6636 char_u *split_buf = NULL;
6637 ucmd_T *cmd;
6638#ifdef FEAT_EVAL
6639 scid_T save_current_SID = current_SID;
6640#endif
6641
6642 if (eap->cmdidx == CMD_USER)
6643 cmd = USER_CMD(eap->useridx);
6644 else
6645 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
6646
6647 /*
6648 * Replace <> in the command by the arguments.
Bram Moolenaara850a712009-01-28 14:42:59 +00006649 * First round: "buf" is NULL, compute length, allocate "buf".
6650 * Second round: copy result into "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 */
6652 buf = NULL;
6653 for (;;)
6654 {
Bram Moolenaara850a712009-01-28 14:42:59 +00006655 p = cmd->uc_rep; /* source */
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00006656 q = buf; /* destination */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657 totlen = 0;
Bram Moolenaara850a712009-01-28 14:42:59 +00006658
6659 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660 {
Bram Moolenaara850a712009-01-28 14:42:59 +00006661 start = vim_strchr(p, '<');
6662 if (start != NULL)
6663 end = vim_strchr(start + 1, '>');
6664 if (buf != NULL)
6665 {
Bram Moolenaarf63c49d2011-03-03 15:54:50 +01006666 for (ksp = p; *ksp != NUL && *ksp != K_SPECIAL; ++ksp)
6667 ;
6668 if (*ksp == K_SPECIAL
6669 && (start == NULL || ksp < start || end == NULL)
Bram Moolenaara850a712009-01-28 14:42:59 +00006670 && ((ksp[1] == KS_SPECIAL && ksp[2] == KE_FILLER)
6671# ifdef FEAT_GUI
6672 || (ksp[1] == KS_EXTRA && ksp[2] == (int)KE_CSI)
6673# endif
6674 ))
6675 {
Bram Moolenaarf63c49d2011-03-03 15:54:50 +01006676 /* K_SPECIAL has been put in the buffer as K_SPECIAL
Bram Moolenaara850a712009-01-28 14:42:59 +00006677 * KS_SPECIAL KE_FILLER, like for mappings, but
6678 * do_cmdline() doesn't handle that, so convert it back.
6679 * Also change K_SPECIAL KS_EXTRA KE_CSI into CSI. */
6680 len = ksp - p;
6681 if (len > 0)
6682 {
6683 mch_memmove(q, p, len);
6684 q += len;
6685 }
6686 *q++ = ksp[1] == KS_SPECIAL ? K_SPECIAL : CSI;
6687 p = ksp + 3;
6688 continue;
6689 }
6690 }
6691
6692 /* break if there no <item> is found */
6693 if (start == NULL || end == NULL)
6694 break;
6695
Bram Moolenaar071d4272004-06-13 20:20:40 +00006696 /* Include the '>' */
6697 ++end;
6698
6699 /* Take everything up to the '<' */
6700 len = start - p;
6701 if (buf == NULL)
6702 totlen += len;
6703 else
6704 {
6705 mch_memmove(q, p, len);
6706 q += len;
6707 }
6708
6709 len = uc_check_code(start, end - start, q, cmd, eap,
6710 &split_buf, &split_len);
6711 if (len == (size_t)-1)
6712 {
6713 /* no match, continue after '<' */
6714 p = start + 1;
6715 len = 1;
6716 }
6717 else
6718 p = end;
6719 if (buf == NULL)
6720 totlen += len;
6721 else
6722 q += len;
6723 }
6724 if (buf != NULL) /* second time here, finished */
6725 {
6726 STRCPY(q, p);
6727 break;
6728 }
6729
6730 totlen += STRLEN(p); /* Add on the trailing characters */
6731 buf = alloc((unsigned)(totlen + 1));
6732 if (buf == NULL)
6733 {
6734 vim_free(split_buf);
6735 return;
6736 }
6737 }
6738
6739#ifdef FEAT_EVAL
6740 current_SID = cmd->uc_scriptID;
6741#endif
6742 (void)do_cmdline(buf, eap->getline, eap->cookie,
6743 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
6744#ifdef FEAT_EVAL
6745 current_SID = save_current_SID;
6746#endif
6747 vim_free(buf);
6748 vim_free(split_buf);
6749}
6750
6751# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
6752 static char_u *
6753get_user_command_name(idx)
6754 int idx;
6755{
6756 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6757}
6758
6759/*
6760 * Function given to ExpandGeneric() to obtain the list of user command names.
6761 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 char_u *
6763get_user_commands(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006764 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006765 int idx;
6766{
6767 if (idx < curbuf->b_ucmds.ga_len)
6768 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6769 idx -= curbuf->b_ucmds.ga_len;
6770 if (idx < ucmds.ga_len)
6771 return USER_CMD(idx)->uc_name;
6772 return NULL;
6773}
6774
6775/*
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006776 * Function given to ExpandGeneric() to obtain the list of user address type names.
6777 */
6778 char_u *
6779get_user_cmd_addr_type(xp, idx)
6780 expand_T *xp UNUSED;
6781 int idx;
6782{
6783 return (char_u *)addr_type_complete[idx].name;
6784}
6785
6786/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006787 * Function given to ExpandGeneric() to obtain the list of user command
6788 * attributes.
6789 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006790 char_u *
6791get_user_cmd_flags(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006792 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793 int idx;
6794{
6795 static char *user_cmd_flags[] =
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006796 {"addr", "bang", "bar", "buffer", "complete",
6797 "count", "nargs", "range", "register"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00006799 if (idx >= (int)(sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006800 return NULL;
6801 return (char_u *)user_cmd_flags[idx];
6802}
6803
6804/*
6805 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6806 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807 char_u *
6808get_user_cmd_nargs(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006809 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006810 int idx;
6811{
6812 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6813
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00006814 if (idx >= (int)(sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0])))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815 return NULL;
6816 return (char_u *)user_cmd_nargs[idx];
6817}
6818
6819/*
6820 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6821 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006822 char_u *
6823get_user_cmd_complete(xp, idx)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006824 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825 int idx;
6826{
6827 return (char_u *)command_complete[idx].name;
6828}
6829# endif /* FEAT_CMDL_COMPL */
6830
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +01006831/*
6832 * Parse address type argument
6833 */
6834 int
6835parse_addr_type_arg(value, vallen, argt, addr_type_arg)
6836 char_u *value;
6837 int vallen;
6838 long *argt;
6839 int *addr_type_arg;
6840{
6841 int i, a, b;
6842 for (i = 0; addr_type_complete[i].expand != -1; ++i)
6843 {
6844 a = (int)STRLEN(addr_type_complete[i].name) == vallen;
6845 b = STRNCMP(value, addr_type_complete[i].name, vallen) == 0;
6846 if (a && b)
6847 {
6848 *addr_type_arg = addr_type_complete[i].expand;
6849 break;
6850 }
6851 }
6852
6853 if (addr_type_complete[i].expand == -1)
6854 {
6855 char_u *err = value;
6856 for (i=0; err[i] == NUL || !vim_iswhite(err[i]); i++);
6857 err[i] = NUL;
6858 EMSG2(_("E180: Invalid address type value: %s"), err);
6859 return FAIL;
6860 }
6861
6862 if (*addr_type_arg != ADDR_LINES)
6863 *argt |= NOTADR;
6864
6865 return OK;
6866}
6867
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868#endif /* FEAT_USR_CMDS */
6869
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006870#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6871/*
6872 * Parse a completion argument "value[vallen]".
6873 * The detected completion goes in "*complp", argument type in "*argt".
6874 * When there is an argument, for function and user defined completion, it's
6875 * copied to allocated memory and stored in "*compl_arg".
6876 * Returns FAIL if something is wrong.
6877 */
6878 int
6879parse_compl_arg(value, vallen, complp, argt, compl_arg)
6880 char_u *value;
6881 int vallen;
6882 int *complp;
6883 long *argt;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006884 char_u **compl_arg UNUSED;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006885{
6886 char_u *arg = NULL;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006887# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006888 size_t arglen = 0;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006889# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006890 int i;
6891 int valend = vallen;
6892
6893 /* Look for any argument part - which is the part after any ',' */
6894 for (i = 0; i < vallen; ++i)
6895 {
6896 if (value[i] == ',')
6897 {
6898 arg = &value[i + 1];
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006899# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006900 arglen = vallen - i - 1;
Bram Moolenaarb2c5a5a2013-02-14 22:11:39 +01006901# endif
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006902 valend = i;
6903 break;
6904 }
6905 }
6906
6907 for (i = 0; command_complete[i].expand != 0; ++i)
6908 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006909 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006910 && STRNCMP(value, command_complete[i].name, valend) == 0)
6911 {
6912 *complp = command_complete[i].expand;
6913 if (command_complete[i].expand == EXPAND_BUFFERS)
6914 *argt |= BUFNAME;
6915 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6916 || command_complete[i].expand == EXPAND_FILES)
6917 *argt |= XFILE;
6918 break;
6919 }
6920 }
6921
6922 if (command_complete[i].expand == 0)
6923 {
6924 EMSG2(_("E180: Invalid complete value: %s"), value);
6925 return FAIL;
6926 }
6927
6928# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6929 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6930 && arg != NULL)
6931# else
6932 if (arg != NULL)
6933# endif
6934 {
6935 EMSG(_("E468: Completion argument only allowed for custom completion"));
6936 return FAIL;
6937 }
6938
6939# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6940 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6941 && arg == NULL)
6942 {
6943 EMSG(_("E467: Custom completion requires a function argument"));
6944 return FAIL;
6945 }
6946
6947 if (arg != NULL)
6948 *compl_arg = vim_strnsave(arg, (int)arglen);
6949# endif
6950 return OK;
6951}
6952#endif
6953
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954 static void
6955ex_colorscheme(eap)
6956 exarg_T *eap;
6957{
Bram Moolenaare6850792010-05-14 15:28:44 +02006958 if (*eap->arg == NUL)
6959 {
6960#ifdef FEAT_EVAL
6961 char_u *expr = vim_strsave((char_u *)"g:colors_name");
6962 char_u *p = NULL;
6963
6964 if (expr != NULL)
6965 {
6966 ++emsg_off;
6967 p = eval_to_string(expr, NULL, FALSE);
6968 --emsg_off;
6969 vim_free(expr);
6970 }
6971 if (p != NULL)
6972 {
6973 MSG(p);
6974 vim_free(p);
6975 }
6976 else
6977 MSG("default");
6978#else
6979 MSG(_("unknown"));
6980#endif
6981 }
6982 else if (load_colors(eap->arg) == FAIL)
Bram Moolenaarbe1e9e92012-09-18 16:47:07 +02006983 EMSG2(_("E185: Cannot find color scheme '%s'"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984}
6985
6986 static void
6987ex_highlight(eap)
6988 exarg_T *eap;
6989{
6990 if (*eap->arg == NUL && eap->cmd[2] == '!')
6991 MSG(_("Greetings, Vim user!"));
6992 do_highlight(eap->arg, eap->forceit, FALSE);
6993}
6994
6995
6996/*
6997 * Call this function if we thought we were going to exit, but we won't
6998 * (because of an error). May need to restore the terminal mode.
6999 */
7000 void
7001not_exiting()
7002{
7003 exiting = FALSE;
7004 settmode(TMODE_RAW);
7005}
7006
7007/*
Bram Moolenaarf240e182014-11-27 18:33:02 +01007008 * ":quit": quit current window, quit Vim if the last window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 */
7010 static void
7011ex_quit(eap)
7012 exarg_T *eap;
7013{
Bram Moolenaarf240e182014-11-27 18:33:02 +01007014#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007015 win_T *wp;
Bram Moolenaarf240e182014-11-27 18:33:02 +01007016#endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007017
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018#ifdef FEAT_CMDWIN
7019 if (cmdwin_type != 0)
7020 {
7021 cmdwin_result = Ctrl_C;
7022 return;
7023 }
7024#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007025 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007026 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007027 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007028 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007029 return;
7030 }
Bram Moolenaarf240e182014-11-27 18:33:02 +01007031#ifdef FEAT_WINDOWS
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007032 if (eap->addr_count > 0)
7033 {
Bram Moolenaarf240e182014-11-27 18:33:02 +01007034 int wnr = eap->line2;
7035
7036 for (wp = firstwin; wp->w_next != NULL; wp = wp->w_next)
7037 if (--wnr <= 0)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007038 break;
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007039 }
7040 else
Bram Moolenaarf240e182014-11-27 18:33:02 +01007041#endif
7042#if defined(FEAT_WINDOWS) || defined(FEAT_AUTOCMD)
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007043 wp = curwin;
Bram Moolenaarf240e182014-11-27 18:33:02 +01007044#endif
7045
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007046#ifdef FEAT_AUTOCMD
Bram Moolenaar3b53dfb2012-06-06 18:03:07 +02007047 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007048 /* Refuse to quit when locked or when the buffer in the last window is
Bram Moolenaar362ce482012-06-06 19:02:45 +02007049 * being closed (can only happen in autocommands). */
Bram Moolenaarf240e182014-11-27 18:33:02 +01007050 if (curbuf_locked() || (wp->w_buffer->b_nwindows == 1
7051 && wp->w_buffer->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007052 return;
7053#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054
7055#ifdef FEAT_NETBEANS_INTG
7056 netbeansForcedQuit = eap->forceit;
7057#endif
7058
7059 /*
7060 * If there are more files or windows we won't exit.
7061 */
7062 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
7063 exiting = TRUE;
7064 if ((!P_HID(curbuf)
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007065 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
7066 | (eap->forceit ? CCGD_FORCEIT : 0)
7067 | CCGD_EXCMD))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068 || check_more(TRUE, eap->forceit) == FAIL
7069 || (only_one_window() && check_changed_any(eap->forceit)))
7070 {
7071 not_exiting();
7072 }
7073 else
7074 {
7075#ifdef FEAT_WINDOWS
7076 if (only_one_window()) /* quit last window */
7077#endif
7078 getout(0);
7079#ifdef FEAT_WINDOWS
7080# ifdef FEAT_GUI
7081 need_mouse_correct = TRUE;
7082# endif
7083 /* close window; may free buffer */
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007084 win_close(wp, !P_HID(wp->w_buffer) || eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085#endif
7086 }
7087}
7088
7089/*
7090 * ":cquit".
7091 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092 static void
7093ex_cquit(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007094 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095{
7096 getout(1); /* this does not always pass on the exit code to the Manx
7097 compiler. why? */
7098}
7099
7100/*
7101 * ":qall": try to quit all windows
7102 */
7103 static void
7104ex_quit_all(eap)
7105 exarg_T *eap;
7106{
7107# ifdef FEAT_CMDWIN
7108 if (cmdwin_type != 0)
7109 {
7110 if (eap->forceit)
7111 cmdwin_result = K_XF1; /* ex_window() takes care of this */
7112 else
7113 cmdwin_result = K_XF2;
7114 return;
7115 }
7116# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007117
7118 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007119 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007120 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007121 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007122 return;
7123 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007124#ifdef FEAT_AUTOCMD
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007125 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
7126 /* Refuse to quit when locked or when the buffer in the last window is
7127 * being closed (can only happen in autocommands). */
7128 if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007129 return;
7130#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007131
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132 exiting = TRUE;
7133 if (eap->forceit || !check_changed_any(FALSE))
7134 getout(0);
7135 not_exiting();
7136}
7137
Bram Moolenaard9967712006-03-11 21:18:15 +00007138#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007139/*
7140 * ":close": close current window, unless it is the last one
7141 */
7142 static void
7143ex_close(eap)
7144 exarg_T *eap;
7145{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007146 win_T *win;
7147 int winnr = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148# ifdef FEAT_CMDWIN
7149 if (cmdwin_type != 0)
Bram Moolenaar9bd1a7e2011-05-19 14:50:54 +02007150 cmdwin_result = Ctrl_C;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007151 else
7152# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007153 if (!text_locked()
7154#ifdef FEAT_AUTOCMD
7155 && !curbuf_locked()
7156#endif
7157 )
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007158 {
7159 if (eap->addr_count == 0)
7160 ex_win_close(eap->forceit, curwin, NULL);
7161 else {
7162 for (win = firstwin; win != NULL; win = win->w_next)
7163 {
7164 winnr++;
7165 if (winnr == eap->line2)
7166 break;
7167 }
7168 if (win == NULL)
7169 win = lastwin;
7170 ex_win_close(eap->forceit, win, NULL);
7171 }
7172 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173}
7174
Bram Moolenaard9967712006-03-11 21:18:15 +00007175# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007176/*
7177 * ":pclose": Close any preview window.
7178 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007180ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007182{
7183 win_T *win;
7184
7185 for (win = firstwin; win != NULL; win = win->w_next)
7186 if (win->w_p_pvw)
7187 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007188 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007189 break;
7190 }
7191}
Bram Moolenaard9967712006-03-11 21:18:15 +00007192# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007193
Bram Moolenaarf740b292006-02-16 22:11:02 +00007194/*
7195 * Close window "win" and take care of handling closing the last window for a
7196 * modified buffer.
7197 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007198 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00007199ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007200 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007202 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007203{
7204 int need_hide;
7205 buf_T *buf = win->w_buffer;
7206
7207 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007208 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209 {
Bram Moolenaard9967712006-03-11 21:18:15 +00007210# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211 if ((p_confirm || cmdmod.confirm) && p_write)
7212 {
7213 dialog_changed(buf, FALSE);
7214 if (buf_valid(buf) && bufIsChanged(buf))
7215 return;
7216 need_hide = FALSE;
7217 }
7218 else
Bram Moolenaard9967712006-03-11 21:18:15 +00007219# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007220 {
7221 EMSG(_(e_nowrtmsg));
7222 return;
7223 }
7224 }
7225
Bram Moolenaard9967712006-03-11 21:18:15 +00007226# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007227 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00007228# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00007229
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00007231 if (tp == NULL)
7232 win_close(win, !need_hide && !P_HID(buf));
7233 else
7234 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007235}
7236
Bram Moolenaar071d4272004-06-13 20:20:40 +00007237/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00007238 * ":tabclose": close current tab page, unless it is the last one.
7239 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007240 */
7241 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007242ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007243 exarg_T *eap;
7244{
Bram Moolenaarf740b292006-02-16 22:11:02 +00007245 tabpage_T *tp;
7246
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007247# ifdef FEAT_CMDWIN
7248 if (cmdwin_type != 0)
7249 cmdwin_result = K_IGNORE;
7250 else
7251# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00007252 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007253 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00007254 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007255 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007256 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007257 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00007258 tp = find_tabpage((int)eap->line2);
7259 if (tp == NULL)
7260 {
7261 beep_flush();
7262 return;
7263 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007264 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00007265 {
7266 tabpage_close_other(tp, eap->forceit);
7267 return;
7268 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007269 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007270 if (!text_locked()
7271#ifdef FEAT_AUTOCMD
7272 && !curbuf_locked()
7273#endif
7274 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00007275 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007277}
7278
7279/*
7280 * ":tabonly": close all tab pages except the current one
7281 */
7282 static void
7283ex_tabonly(eap)
7284 exarg_T *eap;
7285{
7286 tabpage_T *tp;
7287 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007288
7289# ifdef FEAT_CMDWIN
7290 if (cmdwin_type != 0)
7291 cmdwin_result = K_IGNORE;
7292 else
7293# endif
7294 if (first_tabpage->tp_next == NULL)
7295 MSG(_("Already only one tab page"));
7296 else
7297 {
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007298 if (eap->addr_count > 0)
7299 goto_tabpage(eap->line2);
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007300 /* Repeat this up to a 1000 times, because autocommands may mess
7301 * up the lists. */
7302 for (done = 0; done < 1000; ++done)
7303 {
7304 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
7305 if (tp->tp_topframe != topframe)
7306 {
7307 tabpage_close_other(tp, eap->forceit);
7308 /* if we failed to close it quit */
7309 if (valid_tabpage(tp))
7310 done = 1000;
7311 /* start over, "tp" is now invalid */
7312 break;
7313 }
7314 if (first_tabpage->tp_next == NULL)
7315 break;
7316 }
7317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007318}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007319
7320/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00007321 * Close the current tab page.
7322 */
7323 void
7324tabpage_close(forceit)
7325 int forceit;
7326{
7327 /* First close all the windows but the current one. If that worked then
7328 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007329 if (lastwin != firstwin)
7330 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007331 if (lastwin == firstwin)
7332 ex_win_close(forceit, curwin, NULL);
7333# ifdef FEAT_GUI
7334 need_mouse_correct = TRUE;
7335# endif
7336}
7337
7338/*
7339 * Close tab page "tp", which is not the current tab page.
7340 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007341 * Also takes care of the tab pages line disappearing when closing the
7342 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00007343 */
7344 void
7345tabpage_close_other(tp, forceit)
7346 tabpage_T *tp;
7347 int forceit;
7348{
7349 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007350 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007351 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00007352
7353 /* Limit to 1000 windows, autocommands may add a window while we close
7354 * one. OK, so I'm paranoid... */
7355 while (++done < 1000)
7356 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007357 wp = tp->tp_firstwin;
7358 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00007359
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007360 /* Autocommands may delete the tab page under our fingers and we may
7361 * fail to close a window with a modified buffer. */
7362 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00007363 break;
7364 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007365
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007366 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00007367 if (h != tabline_height())
7368 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00007369}
7370
7371/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007372 * ":only".
7373 */
7374 static void
7375ex_only(eap)
7376 exarg_T *eap;
7377{
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007378 win_T *wp;
7379 int wnr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380# ifdef FEAT_GUI
7381 need_mouse_correct = TRUE;
7382# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007383 if (eap->addr_count > 0)
7384 {
7385 wnr = eap->line2;
7386 for (wp = firstwin; --wnr > 0; )
7387 {
7388 if (wp->w_next == NULL)
7389 break;
7390 else
7391 wp = wp->w_next;
7392 }
7393 win_goto(wp);
7394 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007395 close_others(TRUE, eap->forceit);
7396}
7397
7398/*
7399 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00007400 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007401 */
Bram Moolenaard9967712006-03-11 21:18:15 +00007402 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403ex_all(eap)
7404 exarg_T *eap;
7405{
7406 if (eap->addr_count == 0)
7407 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00007408 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409}
7410#endif /* FEAT_WINDOWS */
7411
7412 static void
7413ex_hide(eap)
7414 exarg_T *eap;
7415{
7416 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
7417 eap->errmsg = e_invarg;
7418 else
7419 {
7420 /* ":hide" or ":hide | cmd": hide current window */
7421 eap->nextcmd = check_nextcmd(eap->arg);
7422#ifdef FEAT_WINDOWS
7423 if (!eap->skip)
7424 {
7425# ifdef FEAT_GUI
7426 need_mouse_correct = TRUE;
7427# endif
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007428 if (eap->addr_count == 0)
7429 win_close(curwin, FALSE); /* don't free buffer */
Bram Moolenaarf240e182014-11-27 18:33:02 +01007430 else
7431 {
7432 int winnr = 0;
7433 win_T *win;
7434
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01007435 for (win = firstwin; win != NULL; win = win->w_next)
7436 {
7437 winnr++;
7438 if (winnr == eap->line2)
7439 break;
7440 }
7441 if (win == NULL)
7442 win = lastwin;
7443 win_close(win, FALSE);
7444 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007445 }
7446#endif
7447 }
7448}
7449
7450/*
7451 * ":stop" and ":suspend": Suspend Vim.
7452 */
7453 static void
7454ex_stop(eap)
7455 exarg_T *eap;
7456{
7457 /*
7458 * Disallow suspending for "rvim".
7459 */
7460 if (!check_restricted()
7461#ifdef WIN3264
7462 /*
7463 * Check if external commands are allowed now.
7464 */
7465 && can_end_termcap_mode(TRUE)
7466#endif
7467 )
7468 {
7469 if (!eap->forceit)
7470 autowrite_all();
7471 windgoto((int)Rows - 1, 0);
7472 out_char('\n');
7473 out_flush();
7474 stoptermcap();
7475 out_flush(); /* needed for SUN to restore xterm buffer */
7476#ifdef FEAT_TITLE
7477 mch_restore_title(3); /* restore window titles */
7478#endif
7479 ui_suspend(); /* call machine specific function */
7480#ifdef FEAT_TITLE
7481 maketitle();
7482 resettitle(); /* force updating the title */
7483#endif
7484 starttermcap();
7485 scroll_start(); /* scroll screen before redrawing */
7486 redraw_later_clear();
7487 shell_resized(); /* may have resized window */
7488 }
7489}
7490
7491/*
7492 * ":exit", ":xit" and ":wq": Write file and exit Vim.
7493 */
7494 static void
7495ex_exit(eap)
7496 exarg_T *eap;
7497{
7498#ifdef FEAT_CMDWIN
7499 if (cmdwin_type != 0)
7500 {
7501 cmdwin_result = Ctrl_C;
7502 return;
7503 }
7504#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007505 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007506 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007507 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007508 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007509 return;
7510 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007511#ifdef FEAT_AUTOCMD
Bram Moolenaar4f8301f2013-03-13 18:30:43 +01007512 apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
7513 /* Refuse to quit when locked or when the buffer in the last window is
7514 * being closed (can only happen in autocommands). */
7515 if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007516 return;
7517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007518
7519 /*
7520 * if more files or windows we won't exit
7521 */
7522 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
7523 exiting = TRUE;
7524 if ( ((eap->cmdidx == CMD_wq
7525 || curbufIsChanged())
7526 && do_write(eap) == FAIL)
7527 || check_more(TRUE, eap->forceit) == FAIL
7528 || (only_one_window() && check_changed_any(eap->forceit)))
7529 {
7530 not_exiting();
7531 }
7532 else
7533 {
7534#ifdef FEAT_WINDOWS
7535 if (only_one_window()) /* quit last window, exit Vim */
7536#endif
7537 getout(0);
7538#ifdef FEAT_WINDOWS
7539# ifdef FEAT_GUI
7540 need_mouse_correct = TRUE;
7541# endif
Bram Moolenaar1a4a75c2013-07-28 16:03:06 +02007542 /* Quit current window, may free the buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543 win_close(curwin, !P_HID(curwin->w_buffer));
7544#endif
7545 }
7546}
7547
7548/*
7549 * ":print", ":list", ":number".
7550 */
7551 static void
7552ex_print(eap)
7553 exarg_T *eap;
7554{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007555 if (curbuf->b_ml.ml_flags & ML_EMPTY)
7556 EMSG(_(e_emptybuf));
7557 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007559 for ( ;!got_int; ui_breakcheck())
7560 {
7561 print_line(eap->line1,
7562 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
7563 || (eap->flags & EXFLAG_NR)),
7564 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
7565 if (++eap->line1 > eap->line2)
7566 break;
7567 out_flush(); /* show one line at a time */
7568 }
7569 setpcmark();
7570 /* put cursor at last line */
7571 curwin->w_cursor.lnum = eap->line2;
7572 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007573 }
7574
Bram Moolenaar071d4272004-06-13 20:20:40 +00007575 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007576}
7577
7578#ifdef FEAT_BYTEOFF
7579 static void
7580ex_goto(eap)
7581 exarg_T *eap;
7582{
7583 goto_byte(eap->line2);
7584}
7585#endif
7586
7587/*
7588 * ":shell".
7589 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007590 static void
7591ex_shell(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007592 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007593{
7594 do_shell(NULL, 0);
7595}
7596
7597#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
7598 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00007599 || defined(FEAT_GUI_MSWIN) \
7600 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00007601 || defined(PROTO)
7602
7603/*
7604 * Handle a file drop. The code is here because a drop is *nearly* like an
7605 * :args command, but not quite (we have a list of exact filenames, so we
7606 * don't want to (a) parse a command line, or (b) expand wildcards. So the
7607 * code is very similar to :args and hence needs access to a lot of the static
7608 * functions in this file.
7609 *
7610 * The list should be allocated using alloc(), as should each item in the
7611 * list. This function takes over responsibility for freeing the list.
7612 *
Bram Moolenaar81870892007-11-11 18:17:28 +00007613 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00007614 * FreeWild(), which does a series of vim_free() calls, unless the two defines
7615 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
7616 * routine _fnexplodefree() is used. This may cause problems, but as the drop
7617 * file functionality is (currently) not in EMX this is not presently a
7618 * problem.
7619 */
7620 void
7621handle_drop(filec, filev, split)
7622 int filec; /* the number of files dropped */
7623 char_u **filev; /* the list of files dropped */
7624 int split; /* force splitting the window */
7625{
7626 exarg_T ea;
7627 int save_msg_scroll = msg_scroll;
7628
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00007629 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00007630 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007631 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007632#ifdef FEAT_AUTOCMD
7633 if (curbuf_locked())
7634 return;
7635#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00007636 /* When the screen is being updated we should not change buffers and
7637 * windows structures, it may cause freed memory to be used. */
7638 if (updating_screen)
7639 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007640
7641 /* Check whether the current buffer is changed. If so, we will need
7642 * to split the current window or data could be lost.
7643 * We don't need to check if the 'hidden' option is set, as in this
7644 * case the buffer won't be lost.
7645 */
7646 if (!P_HID(curbuf) && !split)
7647 {
7648 ++emsg_off;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007649 split = check_changed(curbuf, CCGD_AW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007650 --emsg_off;
7651 }
7652 if (split)
7653 {
7654# ifdef FEAT_WINDOWS
7655 if (win_split(0, 0) == FAIL)
7656 return;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02007657 RESET_BINDING(curwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007658
7659 /* When splitting the window, create a new alist. Otherwise the
7660 * existing one is overwritten. */
7661 alist_unlink(curwin->w_alist);
7662 alist_new();
7663# else
7664 return; /* can't split, always fail */
7665# endif
7666 }
7667
7668 /*
7669 * Set up the new argument list.
7670 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00007671 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007672
7673 /*
7674 * Move to the first file.
7675 */
7676 /* Fake up a minimal "next" command for do_argfile() */
7677 vim_memset(&ea, 0, sizeof(ea));
7678 ea.cmd = (char_u *)"next";
7679 do_argfile(&ea, 0);
7680
7681 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
7682 * mode that is not needed here. */
7683 need_start_insertmode = FALSE;
7684
7685 /* Restore msg_scroll, otherwise a following command may cause scrolling
7686 * unexpectedly. The screen will be redrawn by the caller, thus
7687 * msg_scroll being set by displaying a message is irrelevant. */
7688 msg_scroll = save_msg_scroll;
7689}
7690#endif
7691
Bram Moolenaar071d4272004-06-13 20:20:40 +00007692/*
7693 * Clear an argument list: free all file names and reset it to zero entries.
7694 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007695 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007696alist_clear(al)
7697 alist_T *al;
7698{
7699 while (--al->al_ga.ga_len >= 0)
7700 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
7701 ga_clear(&al->al_ga);
7702}
7703
7704/*
7705 * Init an argument list.
7706 */
7707 void
7708alist_init(al)
7709 alist_T *al;
7710{
7711 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
7712}
7713
7714#if defined(FEAT_WINDOWS) || defined(PROTO)
7715
7716/*
7717 * Remove a reference from an argument list.
7718 * Ignored when the argument list is the global one.
7719 * If the argument list is no longer used by any window, free it.
7720 */
7721 void
7722alist_unlink(al)
7723 alist_T *al;
7724{
7725 if (al != &global_alist && --al->al_refcount <= 0)
7726 {
7727 alist_clear(al);
7728 vim_free(al);
7729 }
7730}
7731
7732# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
7733/*
7734 * Create a new argument list and use it for the current window.
7735 */
7736 void
7737alist_new()
7738{
7739 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
7740 if (curwin->w_alist == NULL)
7741 {
7742 curwin->w_alist = &global_alist;
7743 ++global_alist.al_refcount;
7744 }
7745 else
7746 {
7747 curwin->w_alist->al_refcount = 1;
Bram Moolenaar2d1fe052014-05-28 18:22:57 +02007748 curwin->w_alist->id = ++max_alist_id;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007749 alist_init(curwin->w_alist);
7750 }
7751}
7752# endif
7753#endif
7754
7755#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
7756/*
7757 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00007758 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
7759 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007760 */
7761 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00007762alist_expand(fnum_list, fnum_len)
7763 int *fnum_list;
7764 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007765{
7766 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007767 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007768 char_u **new_arg_files;
7769 int new_arg_file_count;
7770 char_u *save_p_su = p_su;
7771 int i;
7772
7773 /* Don't use 'suffixes' here. This should work like the shell did the
7774 * expansion. Also, the vimrc file isn't read yet, thus the user
7775 * can't set the options. */
7776 p_su = empty_option;
7777 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
7778 if (old_arg_files != NULL)
7779 {
7780 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00007781 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
7782 old_arg_count = GARGCOUNT;
7783 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007784 &new_arg_file_count, &new_arg_files,
Bram Moolenaarb5609832011-07-20 15:04:58 +02007785 EW_FILE|EW_NOTFOUND|EW_ADDSLASH|EW_NOERROR) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00007786 && new_arg_file_count > 0)
7787 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00007788 alist_set(&global_alist, new_arg_file_count, new_arg_files,
7789 TRUE, fnum_list, fnum_len);
7790 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007792 }
7793 p_su = save_p_su;
7794}
7795#endif
7796
7797/*
7798 * Set the argument list for the current window.
7799 * Takes over the allocated files[] and the allocated fnames in it.
7800 */
7801 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00007802alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007803 alist_T *al;
7804 int count;
7805 char_u **files;
7806 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00007807 int *fnum_list;
7808 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007809{
7810 int i;
7811
7812 alist_clear(al);
7813 if (ga_grow(&al->al_ga, count) == OK)
7814 {
7815 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007816 {
7817 if (got_int)
7818 {
7819 /* When adding many buffers this can take a long time. Allow
7820 * interrupting here. */
7821 while (i < count)
7822 vim_free(files[i++]);
7823 break;
7824 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00007825
7826 /* May set buffer name of a buffer previously used for the
7827 * argument list, so that it's re-used by alist_add. */
7828 if (fnum_list != NULL && i < fnum_len)
7829 buf_set_name(fnum_list[i], files[i]);
7830
Bram Moolenaar071d4272004-06-13 20:20:40 +00007831 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00007832 ui_breakcheck();
7833 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007834 vim_free(files);
7835 }
7836 else
7837 FreeWild(count, files);
7838#ifdef FEAT_WINDOWS
7839 if (al == &global_alist)
7840#endif
7841 arg_had_last = FALSE;
7842}
7843
7844/*
7845 * Add file "fname" to argument list "al".
7846 * "fname" must have been allocated and "al" must have been checked for room.
7847 */
7848 void
7849alist_add(al, fname, set_fnum)
7850 alist_T *al;
7851 char_u *fname;
7852 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
7853{
7854 if (fname == NULL) /* don't add NULL file names */
7855 return;
7856#ifdef BACKSLASH_IN_FILENAME
7857 slash_adjust(fname);
7858#endif
7859 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
7860 if (set_fnum > 0)
7861 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
7862 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
7863 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007864}
7865
7866#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7867/*
7868 * Adjust slashes in file names. Called after 'shellslash' was set.
7869 */
7870 void
7871alist_slash_adjust()
7872{
7873 int i;
7874# ifdef FEAT_WINDOWS
7875 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00007876 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007877# endif
7878
7879 for (i = 0; i < GARGCOUNT; ++i)
7880 if (GARGLIST[i].ae_fname != NULL)
7881 slash_adjust(GARGLIST[i].ae_fname);
7882# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00007883 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007884 if (wp->w_alist != &global_alist)
7885 for (i = 0; i < WARGCOUNT(wp); ++i)
7886 if (WARGLIST(wp)[i].ae_fname != NULL)
7887 slash_adjust(WARGLIST(wp)[i].ae_fname);
7888# endif
7889}
7890#endif
7891
7892/*
7893 * ":preserve".
7894 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007895 static void
7896ex_preserve(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00007897 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007898{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00007899 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007900 ml_preserve(curbuf, TRUE);
7901}
7902
7903/*
7904 * ":recover".
7905 */
7906 static void
7907ex_recover(eap)
7908 exarg_T *eap;
7909{
7910 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7911 recoverymode = TRUE;
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007912 if (!check_changed(curbuf, (p_awa ? CCGD_AW : 0)
7913 | CCGD_MULTWIN
7914 | (eap->forceit ? CCGD_FORCEIT : 0)
7915 | CCGD_EXCMD)
7916
Bram Moolenaar071d4272004-06-13 20:20:40 +00007917 && (*eap->arg == NUL
7918 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7919 ml_recover();
7920 recoverymode = FALSE;
7921}
7922
7923/*
7924 * Command modifier used in a wrong way.
7925 */
7926 static void
7927ex_wrongmodifier(eap)
7928 exarg_T *eap;
7929{
7930 eap->errmsg = e_invcmd;
7931}
7932
7933#ifdef FEAT_WINDOWS
7934/*
7935 * :sview [+command] file split window with new file, read-only
7936 * :split [[+command] file] split window with current or new file
7937 * :vsplit [[+command] file] split window vertically with current or new file
7938 * :new [[+command] file] split window with no or new file
7939 * :vnew [[+command] file] split vertically window with no or new file
7940 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007941 *
7942 * :tabedit open new Tab page with empty window
7943 * :tabedit [+command] file open new Tab page and edit "file"
7944 * :tabnew [[+command] file] just like :tabedit
7945 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007946 */
7947 void
7948ex_splitview(eap)
7949 exarg_T *eap;
7950{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007951 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007952# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007953 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007954# endif
7955# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007956 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007957# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007958
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007959# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007960 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7961 {
7962 ex_ni(eap);
7963 return;
7964 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007965# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007966
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007967# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007968 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007969# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007971# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007972 /* A ":split" in the quickfix window works like ":new". Don't want two
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007973 * quickfix windows. But it's OK when doing ":tab split". */
7974 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007975 {
7976 if (eap->cmdidx == CMD_split)
7977 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007978# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007979 if (eap->cmdidx == CMD_vsplit)
7980 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007981# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007982 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007983# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007984
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007985# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007986 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007987 {
7988 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7989 FNAME_MESS, TRUE, curbuf->b_ffname);
7990 if (fname == NULL)
7991 goto theend;
7992 eap->arg = fname;
7993 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007994# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007995 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007996# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007997# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007998# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007999 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008000# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00008001 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008002# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008003 && eap->cmdidx != CMD_new)
8004 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008005# ifdef FEAT_AUTOCMD
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008006 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008007# ifdef FEAT_GUI
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008008 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008009# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008010 au_has_group((char_u *)"FileExplorer"))
8011 {
8012 /* No browsing supported but we do have the file explorer:
8013 * Edit the directory. */
8014 if (*eap->arg == NUL || !mch_isdir(eap->arg))
8015 eap->arg = (char_u *)".";
8016 }
8017 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00008018# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008019 {
8020 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00008021 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008022 if (fname == NULL)
8023 goto theend;
8024 eap->arg = fname;
8025 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008026 }
8027 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008028# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008029
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008030 /*
8031 * Either open new tab page or split the window.
8032 */
8033 if (eap->cmdidx == CMD_tabedit
8034 || eap->cmdidx == CMD_tabfind
8035 || eap->cmdidx == CMD_tabnew)
8036 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00008037 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
8038 : eap->addr_count == 0 ? 0
8039 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008040 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00008041 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008042
8043 /* set the alternate buffer for the window we came from */
8044 if (curwin != old_curwin
8045 && win_valid(old_curwin)
8046 && old_curwin->w_buffer != curbuf
8047 && !cmdmod.keepalt)
8048 old_curwin->w_alt_fnum = curbuf->b_fnum;
8049 }
8050 }
8051 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008052 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
8053 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008054# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00008055 /* Reset 'scrollbind' when editing another file, but keep it when
8056 * doing ":split" without arguments. */
8057 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008058# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008059 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008061 )
Bram Moolenaar3368ea22010-09-21 16:56:35 +02008062 {
8063 RESET_BINDING(curwin);
8064 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008065 else
8066 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008067# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008068 do_exedit(eap, old_curwin);
8069 }
8070
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008071# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00008072 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008073# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008074
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008075# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076theend:
8077 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008078# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008079}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008080
8081/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008082 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008083 */
8084 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008085tabpage_new()
8086{
8087 exarg_T ea;
8088
8089 vim_memset(&ea, 0, sizeof(ea));
8090 ea.cmdidx = CMD_tabnew;
8091 ea.cmd = (char_u *)"tabn";
8092 ea.arg = (char_u *)"";
8093 ex_splitview(&ea);
8094}
8095
8096/*
8097 * :tabnext command
8098 */
8099 static void
8100ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008101 exarg_T *eap;
8102{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00008103 switch (eap->cmdidx)
8104 {
8105 case CMD_tabfirst:
8106 case CMD_tabrewind:
8107 goto_tabpage(1);
8108 break;
8109 case CMD_tablast:
8110 goto_tabpage(9999);
8111 break;
8112 case CMD_tabprevious:
8113 case CMD_tabNext:
8114 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
8115 break;
8116 default: /* CMD_tabnext */
8117 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
8118 break;
8119 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008120}
8121
8122/*
8123 * :tabmove command
8124 */
8125 static void
8126ex_tabmove(eap)
8127 exarg_T *eap;
8128{
Bram Moolenaar8cb8dca2012-07-06 18:27:39 +02008129 int tab_number = 9999;
8130
8131 if (eap->arg && *eap->arg != NUL)
8132 {
8133 char_u *p = eap->arg;
8134 int relative = 0; /* argument +N/-N means: move N places to the
8135 * right/left relative to the current position. */
8136
8137 if (*eap->arg == '-')
8138 {
8139 relative = -1;
8140 p = eap->arg + 1;
8141 }
8142 else if (*eap->arg == '+')
8143 {
8144 relative = 1;
8145 p = eap->arg + 1;
8146 }
8147 else
8148 p = eap->arg;
8149
8150 if (p == skipdigits(p))
8151 {
8152 /* No numbers as argument. */
8153 eap->errmsg = e_invarg;
8154 return;
8155 }
8156
8157 tab_number = getdigits(&p);
8158 if (relative != 0)
8159 tab_number = tab_number * relative + tabpage_index(curtab) - 1;;
8160 }
8161 else if (eap->addr_count != 0)
8162 tab_number = eap->line2;
8163
8164 tabpage_move(tab_number);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008165}
8166
8167/*
8168 * :tabs command: List tabs and their contents.
8169 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008170 static void
8171ex_tabs(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008172 exarg_T *eap UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008173{
8174 tabpage_T *tp;
8175 win_T *wp;
8176 int tabcount = 1;
8177
8178 msg_start();
8179 msg_scroll = TRUE;
8180 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
8181 {
8182 msg_putchar('\n');
8183 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
8184 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
8185 out_flush(); /* output one line at a time */
8186 ui_breakcheck();
8187
Bram Moolenaar030f0df2006-02-21 22:02:53 +00008188 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008189 wp = firstwin;
8190 else
8191 wp = tp->tp_firstwin;
8192 for ( ; wp != NULL && !got_int; wp = wp->w_next)
8193 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00008194 msg_putchar('\n');
8195 msg_putchar(wp == curwin ? '>' : ' ');
8196 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00008197 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
8198 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008199 if (buf_spname(wp->w_buffer) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02008200 vim_strncpy(IObuff, buf_spname(wp->w_buffer), IOSIZE - 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00008201 else
8202 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
8203 IObuff, IOSIZE, TRUE);
8204 msg_outtrans(IObuff);
8205 out_flush(); /* output one line at a time */
8206 ui_breakcheck();
8207 }
8208 }
8209}
8210
8211#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008212
8213/*
8214 * ":mode": Set screen mode.
8215 * If no argument given, just get the screen size and redraw.
8216 */
8217 static void
8218ex_mode(eap)
8219 exarg_T *eap;
8220{
8221 if (*eap->arg == NUL)
8222 shell_resized();
8223 else
8224 mch_screenmode(eap->arg);
8225}
8226
8227#ifdef FEAT_WINDOWS
8228/*
8229 * ":resize".
8230 * set, increment or decrement current window height
8231 */
8232 static void
8233ex_resize(eap)
8234 exarg_T *eap;
8235{
8236 int n;
8237 win_T *wp = curwin;
8238
8239 if (eap->addr_count > 0)
8240 {
8241 n = eap->line2;
8242 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
8243 ;
8244 }
8245
8246#ifdef FEAT_GUI
8247 need_mouse_correct = TRUE;
8248#endif
8249 n = atol((char *)eap->arg);
8250#ifdef FEAT_VERTSPLIT
8251 if (cmdmod.split & WSP_VERT)
8252 {
8253 if (*eap->arg == '-' || *eap->arg == '+')
8254 n += W_WIDTH(curwin);
8255 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
8256 n = 9999;
8257 win_setwidth_win((int)n, wp);
8258 }
8259 else
8260#endif
8261 {
8262 if (*eap->arg == '-' || *eap->arg == '+')
8263 n += curwin->w_height;
8264 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
8265 n = 9999;
8266 win_setheight_win((int)n, wp);
8267 }
8268}
8269#endif
8270
8271/*
8272 * ":find [+command] <file>" command.
8273 */
8274 static void
8275ex_find(eap)
8276 exarg_T *eap;
8277{
8278#ifdef FEAT_SEARCHPATH
8279 char_u *fname;
8280 int count;
8281
8282 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
8283 TRUE, curbuf->b_ffname);
8284 if (eap->addr_count > 0)
8285 {
8286 /* Repeat finding the file "count" times. This matters when it
8287 * appears several times in the path. */
8288 count = eap->line2;
8289 while (fname != NULL && --count > 0)
8290 {
8291 vim_free(fname);
8292 fname = find_file_in_path(NULL, 0, FNAME_MESS,
8293 FALSE, curbuf->b_ffname);
8294 }
8295 }
8296
8297 if (fname != NULL)
8298 {
8299 eap->arg = fname;
8300#endif
8301 do_exedit(eap, NULL);
8302#ifdef FEAT_SEARCHPATH
8303 vim_free(fname);
8304 }
8305#endif
8306}
8307
8308/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00008309 * ":open" simulation: for now just work like ":visual".
8310 */
8311 static void
8312ex_open(eap)
8313 exarg_T *eap;
8314{
8315 regmatch_T regmatch;
8316 char_u *p;
8317
8318 curwin->w_cursor.lnum = eap->line2;
8319 beginline(BL_SOL | BL_FIX);
8320 if (*eap->arg == '/')
8321 {
8322 /* ":open /pattern/": put cursor in column found with pattern */
8323 ++eap->arg;
8324 p = skip_regexp(eap->arg, '/', p_magic, NULL);
8325 *p = NUL;
8326 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
8327 if (regmatch.regprog != NULL)
8328 {
8329 regmatch.rm_ic = p_ic;
8330 p = ml_get_curline();
8331 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008332 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008333 else
8334 EMSG(_(e_nomatch));
Bram Moolenaar473de612013-06-08 18:19:48 +02008335 vim_regfree(regmatch.regprog);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008336 }
8337 /* Move to the NUL, ignore any other arguments. */
8338 eap->arg += STRLEN(eap->arg);
8339 }
8340 check_cursor();
8341
8342 eap->cmdidx = CMD_visual;
8343 do_exedit(eap, NULL);
8344}
8345
8346/*
8347 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008348 */
8349 static void
8350ex_edit(eap)
8351 exarg_T *eap;
8352{
8353 do_exedit(eap, NULL);
8354}
8355
8356/*
8357 * ":edit <file>" command and alikes.
8358 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008359 void
8360do_exedit(eap, old_curwin)
8361 exarg_T *eap;
8362 win_T *old_curwin; /* curwin before doing a split or NULL */
8363{
8364 int n;
8365#ifdef FEAT_WINDOWS
8366 int need_hide;
8367#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008368 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008369
8370 /*
8371 * ":vi" command ends Ex mode.
8372 */
8373 if (exmode_active && (eap->cmdidx == CMD_visual
8374 || eap->cmdidx == CMD_view))
8375 {
8376 exmode_active = FALSE;
8377 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008378 {
8379 /* Special case: ":global/pat/visual\NLvi-commands" */
8380 if (global_busy)
8381 {
8382 int rd = RedrawingDisabled;
8383 int nwr = no_wait_return;
8384 int ms = msg_scroll;
8385#ifdef FEAT_GUI
8386 int he = hold_gui_events;
8387#endif
8388
8389 if (eap->nextcmd != NULL)
8390 {
8391 stuffReadbuff(eap->nextcmd);
8392 eap->nextcmd = NULL;
8393 }
8394
8395 if (exmode_was != EXMODE_VIM)
8396 settmode(TMODE_RAW);
8397 RedrawingDisabled = 0;
8398 no_wait_return = 0;
8399 need_wait_return = FALSE;
8400 msg_scroll = 0;
8401#ifdef FEAT_GUI
8402 hold_gui_events = 0;
8403#endif
8404 must_redraw = CLEAR;
8405
8406 main_loop(FALSE, TRUE);
8407
8408 RedrawingDisabled = rd;
8409 no_wait_return = nwr;
8410 msg_scroll = ms;
8411#ifdef FEAT_GUI
8412 hold_gui_events = he;
8413#endif
8414 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008415 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008416 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008417 }
8418
8419 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008420 || eap->cmdidx == CMD_tabnew
8421 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00008422#ifdef FEAT_VERTSPLIT
8423 || eap->cmdidx == CMD_vnew
8424#endif
8425 ) && *eap->arg == NUL)
8426 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00008427 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008428 setpcmark();
8429 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00008430 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0),
8431 old_curwin == NULL ? curwin : NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008432 }
8433 else if ((eap->cmdidx != CMD_split
8434#ifdef FEAT_VERTSPLIT
8435 && eap->cmdidx != CMD_vsplit
8436#endif
8437 )
8438 || *eap->arg != NUL
8439#ifdef FEAT_BROWSE
8440 || cmdmod.browse
8441#endif
8442 )
8443 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00008444#ifdef FEAT_AUTOCMD
8445 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
8446 * can bring us here, others are stopped earlier. */
8447 if (*eap->arg != NUL && curbuf_locked())
8448 return;
8449#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008450 n = readonlymode;
8451 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
8452 readonlymode = TRUE;
8453 else if (eap->cmdidx == CMD_enew)
8454 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
8455 empty buffer */
8456 setpcmark();
8457 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
8458 NULL, eap,
8459 /* ":edit" goes to first line if Vi compatible */
8460 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
8461 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
8462 ? ECMD_ONE : eap->do_ecmd_lnum,
8463 (P_HID(curbuf) ? ECMD_HIDE : 0)
8464 + (eap->forceit ? ECMD_FORCEIT : 0)
Bram Moolenaar7b449342014-03-25 13:03:48 +01008465 /* after a split we can use an existing buffer */
8466 + (old_curwin != NULL ? ECMD_OLDBUF : 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008467#ifdef FEAT_LISTCMDS
8468 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
8469#endif
Bram Moolenaar701f7af2008-11-15 13:12:07 +00008470 , old_curwin == NULL ? curwin : NULL) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008471 {
8472 /* Editing the file failed. If the window was split, close it. */
8473#ifdef FEAT_WINDOWS
8474 if (old_curwin != NULL)
8475 {
8476 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
8477 if (!need_hide || P_HID(curbuf))
8478 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00008479# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8480 cleanup_T cs;
8481
8482 /* Reset the error/interrupt/exception state here so that
8483 * aborting() returns FALSE when closing a window. */
8484 enter_cleanup(&cs);
8485# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008486# ifdef FEAT_GUI
8487 need_mouse_correct = TRUE;
8488# endif
8489 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00008490
8491# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8492 /* Restore the error/interrupt/exception state if not
8493 * discarded by a new aborting error, interrupt, or
8494 * uncaught exception. */
8495 leave_cleanup(&cs);
8496# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008497 }
8498 }
8499#endif
8500 }
8501 else if (readonlymode && curbuf->b_nwindows == 1)
8502 {
8503 /* When editing an already visited buffer, 'readonly' won't be set
8504 * but the previous value is kept. With ":view" and ":sview" we
8505 * want the file to be readonly, except when another window is
8506 * editing the same buffer. */
8507 curbuf->b_p_ro = TRUE;
8508 }
8509 readonlymode = n;
8510 }
8511 else
8512 {
8513 if (eap->do_ecmd_cmd != NULL)
8514 do_cmdline_cmd(eap->do_ecmd_cmd);
8515#ifdef FEAT_TITLE
8516 n = curwin->w_arg_idx_invalid;
8517#endif
8518 check_arg_idx(curwin);
8519#ifdef FEAT_TITLE
8520 if (n != curwin->w_arg_idx_invalid)
8521 maketitle();
8522#endif
8523 }
8524
8525#ifdef FEAT_WINDOWS
8526 /*
8527 * if ":split file" worked, set alternate file name in old window to new
8528 * file
8529 */
8530 if (old_curwin != NULL
8531 && *eap->arg != NUL
8532 && curwin != old_curwin
8533 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00008534 && old_curwin->w_buffer != curbuf
8535 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008536 old_curwin->w_alt_fnum = curbuf->b_fnum;
8537#endif
8538
8539 ex_no_reprint = TRUE;
8540}
8541
8542#ifndef FEAT_GUI
8543/*
8544 * ":gui" and ":gvim" when there is no GUI.
8545 */
8546 static void
8547ex_nogui(eap)
8548 exarg_T *eap;
8549{
8550 eap->errmsg = e_nogvim;
8551}
8552#endif
8553
8554#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
8555 static void
8556ex_tearoff(eap)
8557 exarg_T *eap;
8558{
8559 gui_make_tearoff(eap->arg);
8560}
8561#endif
8562
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008563#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008564 static void
8565ex_popup(eap)
8566 exarg_T *eap;
8567{
Bram Moolenaar97409f12005-07-08 22:17:29 +00008568 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008569}
8570#endif
8571
Bram Moolenaar071d4272004-06-13 20:20:40 +00008572 static void
8573ex_swapname(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008574 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008575{
8576 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
8577 MSG(_("No swap file"));
8578 else
8579 msg(curbuf->b_ml.ml_mfp->mf_fname);
8580}
8581
8582/*
8583 * ":syncbind" forces all 'scrollbind' windows to have the same relative
8584 * offset.
8585 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
8586 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008587 static void
8588ex_syncbind(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008589 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008590{
8591#ifdef FEAT_SCROLLBIND
8592 win_T *wp;
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008593 win_T *save_curwin = curwin;
8594 buf_T *save_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008595 long topline;
8596 long y;
8597 linenr_T old_linenr = curwin->w_cursor.lnum;
8598
8599 setpcmark();
8600
8601 /*
8602 * determine max topline
8603 */
8604 if (curwin->w_p_scb)
8605 {
8606 topline = curwin->w_topline;
8607 for (wp = firstwin; wp; wp = wp->w_next)
8608 {
8609 if (wp->w_p_scb && wp->w_buffer)
8610 {
8611 y = wp->w_buffer->b_ml.ml_line_count - p_so;
8612 if (topline > y)
8613 topline = y;
8614 }
8615 }
8616 if (topline < 1)
8617 topline = 1;
8618 }
8619 else
8620 {
8621 topline = 1;
8622 }
8623
8624
8625 /*
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008626 * Set all scrollbind windows to the same topline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008627 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008628 for (curwin = firstwin; curwin; curwin = curwin->w_next)
8629 {
8630 if (curwin->w_p_scb)
8631 {
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008632 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008633 y = topline - curwin->w_topline;
8634 if (y > 0)
8635 scrollup(y, TRUE);
8636 else
8637 scrolldown(-y, TRUE);
8638 curwin->w_scbind_pos = topline;
8639 redraw_later(VALID);
8640 cursor_correct();
8641#ifdef FEAT_WINDOWS
8642 curwin->w_redr_status = TRUE;
8643#endif
8644 }
8645 }
Bram Moolenaardedd1b02013-12-14 13:06:17 +01008646 curwin = save_curwin;
8647 curbuf = save_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008648 if (curwin->w_p_scb)
8649 {
8650 did_syncbind = TRUE;
8651 checkpcmark();
8652 if (old_linenr != curwin->w_cursor.lnum)
8653 {
8654 char_u ctrl_o[2];
8655
8656 ctrl_o[0] = Ctrl_O;
8657 ctrl_o[1] = 0;
8658 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
8659 }
8660 }
8661#endif
8662}
8663
8664
8665 static void
8666ex_read(eap)
8667 exarg_T *eap;
8668{
Bram Moolenaardf177f62005-02-22 08:39:57 +00008669 int i;
8670 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
8671 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008672
8673 if (eap->usefilter) /* :r!cmd */
8674 do_bang(1, eap, FALSE, FALSE, TRUE);
8675 else
8676 {
8677 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
8678 return;
8679
8680#ifdef FEAT_BROWSE
8681 if (cmdmod.browse)
8682 {
8683 char_u *browseFile;
8684
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008685 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008686 NULL, NULL, NULL, curbuf);
8687 if (browseFile != NULL)
8688 {
8689 i = readfile(browseFile, NULL,
8690 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8691 vim_free(browseFile);
8692 }
8693 else
8694 i = OK;
8695 }
8696 else
8697#endif
8698 if (*eap->arg == NUL)
8699 {
8700 if (check_fname() == FAIL) /* check for no file name */
8701 return;
8702 i = readfile(curbuf->b_ffname, curbuf->b_fname,
8703 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8704 }
8705 else
8706 {
8707 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
8708 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
8709 i = readfile(eap->arg, NULL,
8710 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
8711
8712 }
8713 if (i == FAIL)
8714 {
8715#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
8716 if (!aborting())
8717#endif
8718 EMSG2(_(e_notopen), eap->arg);
8719 }
8720 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008721 {
8722 if (empty && exmode_active)
8723 {
8724 /* Delete the empty line that remains. Historically ex does
8725 * this but vi doesn't. */
8726 if (eap->line2 == 0)
8727 lnum = curbuf->b_ml.ml_line_count;
8728 else
8729 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008730 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008731 {
8732 ml_delete(lnum, FALSE);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008733 if (curwin->w_cursor.lnum > 1
8734 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008735 --curwin->w_cursor.lnum;
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00008736 deleted_lines_mark(lnum, 1L);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008737 }
8738 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008739 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008740 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008741 }
8742}
8743
Bram Moolenaarea408852005-06-25 22:49:46 +00008744static char_u *prev_dir = NULL;
8745
8746#if defined(EXITFREE) || defined(PROTO)
8747 void
8748free_cd_dir()
8749{
8750 vim_free(prev_dir);
Bram Moolenaara0174af2008-01-02 20:08:25 +00008751 prev_dir = NULL;
Bram Moolenaar60f39ae2009-03-11 14:10:38 +00008752
8753 vim_free(globaldir);
8754 globaldir = NULL;
Bram Moolenaarea408852005-06-25 22:49:46 +00008755}
8756#endif
8757
Bram Moolenaarf4258302013-06-02 18:20:17 +02008758/*
8759 * Deal with the side effects of changing the current directory.
8760 * When "local" is TRUE then this was after an ":lcd" command.
8761 */
8762 void
8763post_chdir(local)
8764 int local;
8765{
8766 vim_free(curwin->w_localdir);
Bram Moolenaarbd2dc342014-01-10 15:53:13 +01008767 curwin->w_localdir = NULL;
Bram Moolenaarf4258302013-06-02 18:20:17 +02008768 if (local)
8769 {
8770 /* If still in global directory, need to remember current
8771 * directory as global directory. */
8772 if (globaldir == NULL && prev_dir != NULL)
8773 globaldir = vim_strsave(prev_dir);
8774 /* Remember this local directory for the window. */
8775 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8776 curwin->w_localdir = vim_strsave(NameBuff);
8777 }
8778 else
8779 {
8780 /* We are now in the global directory, no need to remember its
8781 * name. */
8782 vim_free(globaldir);
8783 globaldir = NULL;
Bram Moolenaarf4258302013-06-02 18:20:17 +02008784 }
8785
8786 shorten_fnames(TRUE);
8787}
8788
Bram Moolenaarea408852005-06-25 22:49:46 +00008789
Bram Moolenaar071d4272004-06-13 20:20:40 +00008790/*
8791 * ":cd", ":lcd", ":chdir" and ":lchdir".
8792 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00008793 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00008794ex_cd(eap)
8795 exarg_T *eap;
8796{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008797 char_u *new_dir;
8798 char_u *tofree;
8799
8800 new_dir = eap->arg;
8801#if !defined(UNIX) && !defined(VMS)
8802 /* for non-UNIX ":cd" means: print current directory */
8803 if (*new_dir == NUL)
8804 ex_pwd(NULL);
8805 else
8806#endif
8807 {
Bram Moolenaar8e8fe9b2009-03-11 14:37:32 +00008808#ifdef FEAT_AUTOCMD
8809 if (allbuf_locked())
8810 return;
8811#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008812 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
8813 && !eap->forceit)
8814 {
Bram Moolenaar81870892007-11-11 18:17:28 +00008815 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00008816 return;
8817 }
8818
Bram Moolenaar071d4272004-06-13 20:20:40 +00008819 /* ":cd -": Change to previous directory */
8820 if (STRCMP(new_dir, "-") == 0)
8821 {
8822 if (prev_dir == NULL)
8823 {
8824 EMSG(_("E186: No previous directory"));
8825 return;
8826 }
8827 new_dir = prev_dir;
8828 }
8829
8830 /* Save current directory for next ":cd -" */
8831 tofree = prev_dir;
8832 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8833 prev_dir = vim_strsave(NameBuff);
8834 else
8835 prev_dir = NULL;
8836
8837#if defined(UNIX) || defined(VMS)
8838 /* for UNIX ":cd" means: go to home directory */
8839 if (*new_dir == NUL)
8840 {
8841 /* use NameBuff for home directory name */
8842# ifdef VMS
8843 char_u *p;
8844
8845 p = mch_getenv((char_u *)"SYS$LOGIN");
8846 if (p == NULL || *p == NUL) /* empty is the same as not set */
8847 NameBuff[0] = NUL;
8848 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00008849 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008850# else
8851 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
8852# endif
8853 new_dir = NameBuff;
8854 }
8855#endif
8856 if (new_dir == NULL || vim_chdir(new_dir))
8857 EMSG(_(e_failed));
8858 else
8859 {
Bram Moolenaarf4258302013-06-02 18:20:17 +02008860 post_chdir(eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008861
8862 /* Echo the new current directory if the command was typed. */
Bram Moolenaarfcfbc672009-07-09 18:13:49 +00008863 if (KeyTyped || p_verbose >= 5)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008864 ex_pwd(eap);
8865 }
8866 vim_free(tofree);
8867 }
8868}
8869
8870/*
8871 * ":pwd".
8872 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008873 static void
8874ex_pwd(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008875 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008876{
8877 if (mch_dirname(NameBuff, MAXPATHL) == OK)
8878 {
8879#ifdef BACKSLASH_IN_FILENAME
8880 slash_adjust(NameBuff);
8881#endif
8882 msg(NameBuff);
8883 }
8884 else
8885 EMSG(_("E187: Unknown"));
8886}
8887
8888/*
8889 * ":=".
8890 */
8891 static void
8892ex_equal(eap)
8893 exarg_T *eap;
8894{
8895 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008896 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008897}
8898
8899 static void
8900ex_sleep(eap)
8901 exarg_T *eap;
8902{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008903 int n;
8904 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008905
8906 if (cursor_valid())
8907 {
8908 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
8909 if (n >= 0)
Bram Moolenaar10395d82014-02-05 22:46:52 +01008910 windgoto((int)n, W_WINCOL(curwin) + curwin->w_wcol);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008911 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00008912
8913 len = eap->line2;
8914 switch (*eap->arg)
8915 {
8916 case 'm': break;
8917 case NUL: len *= 1000L; break;
8918 default: EMSG2(_(e_invarg2), eap->arg); return;
8919 }
8920 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008921}
8922
8923/*
8924 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
8925 */
8926 void
8927do_sleep(msec)
8928 long msec;
8929{
8930 long done;
8931
8932 cursor_on();
8933 out_flush();
8934 for (done = 0; !got_int && done < msec; done += 1000L)
8935 {
8936 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
8937 ui_breakcheck();
Bram Moolenaare3cc6d42011-10-20 21:58:34 +02008938#ifdef FEAT_NETBEANS_INTG
8939 /* Process the netbeans messages that may have been received in the
8940 * call to ui_breakcheck() when the GUI is in use. This may occur when
8941 * running a test case. */
8942 netbeans_parse_messages();
8943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008944 }
8945}
8946
8947 static void
8948do_exmap(eap, isabbrev)
8949 exarg_T *eap;
8950 int isabbrev;
8951{
8952 int mode;
8953 char_u *cmdp;
8954
8955 cmdp = eap->cmd;
8956 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
8957
8958 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
8959 eap->arg, mode, isabbrev))
8960 {
8961 case 1: EMSG(_(e_invarg));
8962 break;
8963 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
8964 break;
8965 }
8966}
8967
8968/*
8969 * ":winsize" command (obsolete).
8970 */
8971 static void
8972ex_winsize(eap)
8973 exarg_T *eap;
8974{
8975 int w, h;
8976 char_u *arg = eap->arg;
8977 char_u *p;
8978
8979 w = getdigits(&arg);
8980 arg = skipwhite(arg);
8981 p = arg;
8982 h = getdigits(&arg);
8983 if (*p != NUL && *arg == NUL)
8984 set_shellsize(w, h, TRUE);
8985 else
8986 EMSG(_("E465: :winsize requires two number arguments"));
8987}
8988
8989#ifdef FEAT_WINDOWS
8990 static void
8991ex_wincmd(eap)
8992 exarg_T *eap;
8993{
8994 int xchar = NUL;
8995 char_u *p;
8996
8997 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8998 {
8999 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
9000 if (eap->arg[1] == NUL)
9001 {
9002 EMSG(_(e_invarg));
9003 return;
9004 }
9005 xchar = eap->arg[1];
9006 p = eap->arg + 2;
9007 }
9008 else
9009 p = eap->arg + 1;
9010
9011 eap->nextcmd = check_nextcmd(p);
9012 p = skipwhite(p);
9013 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
9014 EMSG(_(e_invarg));
Bram Moolenaar12bde492011-06-13 01:19:56 +02009015 else if (!eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009016 {
9017 /* Pass flags on for ":vertical wincmd ]". */
9018 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009019 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009020 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
9021 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009022 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009023 }
9024}
9025#endif
9026
Bram Moolenaar843ee412004-06-30 16:16:41 +00009027#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009028/*
9029 * ":winpos".
9030 */
9031 static void
9032ex_winpos(eap)
9033 exarg_T *eap;
9034{
9035 int x, y;
9036 char_u *arg = eap->arg;
9037 char_u *p;
9038
9039 if (*arg == NUL)
9040 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00009041# if defined(FEAT_GUI) || defined(MSWIN)
9042# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00009043 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00009044# else
9045 if (mch_get_winpos(&x, &y) != FAIL)
9046# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009047 {
9048 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
9049 msg(IObuff);
9050 }
9051 else
9052# endif
9053 EMSG(_("E188: Obtaining window position not implemented for this platform"));
9054 }
9055 else
9056 {
9057 x = getdigits(&arg);
9058 arg = skipwhite(arg);
9059 p = arg;
9060 y = getdigits(&arg);
9061 if (*p == NUL || *arg != NUL)
9062 {
9063 EMSG(_("E466: :winpos requires two number arguments"));
9064 return;
9065 }
9066# ifdef FEAT_GUI
9067 if (gui.in_use)
9068 gui_mch_set_winpos(x, y);
9069 else if (gui.starting)
9070 {
9071 /* Remember the coordinates for when the window is opened. */
9072 gui_win_x = x;
9073 gui_win_y = y;
9074 }
9075# ifdef HAVE_TGETENT
9076 else
9077# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00009078# else
9079# ifdef MSWIN
9080 mch_set_winpos(x, y);
9081# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009082# endif
9083# ifdef HAVE_TGETENT
9084 if (*T_CWP)
9085 term_set_winpos(x, y);
9086# endif
9087 }
9088}
9089#endif
9090
9091/*
9092 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
9093 */
9094 static void
9095ex_operators(eap)
9096 exarg_T *eap;
9097{
9098 oparg_T oa;
9099
9100 clear_oparg(&oa);
9101 oa.regname = eap->regname;
9102 oa.start.lnum = eap->line1;
9103 oa.end.lnum = eap->line2;
9104 oa.line_count = eap->line2 - eap->line1 + 1;
9105 oa.motion_type = MLINE;
9106#ifdef FEAT_VIRTUALEDIT
9107 virtual_op = FALSE;
9108#endif
9109 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
9110 {
9111 setpcmark();
9112 curwin->w_cursor.lnum = eap->line1;
9113 beginline(BL_SOL | BL_FIX);
9114 }
9115
Bram Moolenaard07c6e12013-11-21 14:21:40 +01009116 if (VIsual_active)
9117 end_visual_mode();
Bram Moolenaard07c6e12013-11-21 14:21:40 +01009118
Bram Moolenaar071d4272004-06-13 20:20:40 +00009119 switch (eap->cmdidx)
9120 {
9121 case CMD_delete:
9122 oa.op_type = OP_DELETE;
9123 op_delete(&oa);
9124 break;
9125
9126 case CMD_yank:
9127 oa.op_type = OP_YANK;
9128 (void)op_yank(&oa, FALSE, TRUE);
9129 break;
9130
9131 default: /* CMD_rshift or CMD_lshift */
Bram Moolenaar6e707362013-06-14 19:15:58 +02009132 if (
Bram Moolenaar071d4272004-06-13 20:20:40 +00009133#ifdef FEAT_RIGHTLEFT
Bram Moolenaar6e707362013-06-14 19:15:58 +02009134 (eap->cmdidx == CMD_rshift) ^ curwin->w_p_rl
9135#else
9136 eap->cmdidx == CMD_rshift
Bram Moolenaar071d4272004-06-13 20:20:40 +00009137#endif
Bram Moolenaar6e707362013-06-14 19:15:58 +02009138 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00009139 oa.op_type = OP_RSHIFT;
9140 else
9141 oa.op_type = OP_LSHIFT;
9142 op_shift(&oa, FALSE, eap->amount);
9143 break;
9144 }
9145#ifdef FEAT_VIRTUALEDIT
9146 virtual_op = MAYBE;
9147#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00009148 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009149}
9150
9151/*
9152 * ":put".
9153 */
9154 static void
9155ex_put(eap)
9156 exarg_T *eap;
9157{
9158 /* ":0put" works like ":1put!". */
9159 if (eap->line2 == 0)
9160 {
9161 eap->line2 = 1;
9162 eap->forceit = TRUE;
9163 }
9164 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009165 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
9166 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009167}
9168
9169/*
9170 * Handle ":copy" and ":move".
9171 */
9172 static void
9173ex_copymove(eap)
9174 exarg_T *eap;
9175{
9176 long n;
9177
Bram Moolenaarb96a7f32014-11-27 16:22:48 +01009178 n = get_address(&eap->arg, eap->addr_type, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009179 if (eap->arg == NULL) /* error detected */
9180 {
9181 eap->nextcmd = NULL;
9182 return;
9183 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00009184 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009185
9186 /*
9187 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
9188 */
9189 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
9190 {
9191 EMSG(_(e_invaddr));
9192 return;
9193 }
9194
9195 if (eap->cmdidx == CMD_move)
9196 {
9197 if (do_move(eap->line1, eap->line2, n) == FAIL)
9198 return;
9199 }
9200 else
9201 ex_copy(eap->line1, eap->line2, n);
9202 u_clearline();
9203 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009204 ex_may_print(eap);
9205}
9206
9207/*
9208 * Print the current line if flags were given to the Ex command.
9209 */
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02009210 void
Bram Moolenaardf177f62005-02-22 08:39:57 +00009211ex_may_print(eap)
9212 exarg_T *eap;
9213{
9214 if (eap->flags != 0)
9215 {
9216 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
9217 (eap->flags & EXFLAG_LIST));
9218 ex_no_reprint = TRUE;
9219 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009220}
9221
9222/*
9223 * ":smagic" and ":snomagic".
9224 */
9225 static void
9226ex_submagic(eap)
9227 exarg_T *eap;
9228{
9229 int magic_save = p_magic;
9230
9231 p_magic = (eap->cmdidx == CMD_smagic);
9232 do_sub(eap);
9233 p_magic = magic_save;
9234}
9235
9236/*
9237 * ":join".
9238 */
9239 static void
9240ex_join(eap)
9241 exarg_T *eap;
9242{
9243 curwin->w_cursor.lnum = eap->line1;
9244 if (eap->line1 == eap->line2)
9245 {
9246 if (eap->addr_count >= 2) /* :2,2join does nothing */
9247 return;
9248 if (eap->line2 == curbuf->b_ml.ml_line_count)
9249 {
9250 beep_flush();
9251 return;
9252 }
9253 ++eap->line2;
9254 }
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02009255 (void)do_join(eap->line2 - eap->line1 + 1, !eap->forceit, TRUE, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009256 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009257 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009258}
9259
9260/*
9261 * ":[addr]@r" or ":[addr]*r": execute register
9262 */
9263 static void
9264ex_at(eap)
9265 exarg_T *eap;
9266{
9267 int c;
Bram Moolenaar60462872009-11-03 11:40:19 +00009268 int prev_len = typebuf.tb_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009269
9270 curwin->w_cursor.lnum = eap->line2;
9271
9272#ifdef USE_ON_FLY_SCROLL
9273 dont_scroll = TRUE; /* disallow scrolling here */
9274#endif
9275
9276 /* get the register name. No name means to use the previous one */
9277 c = *eap->arg;
9278 if (c == NUL || (c == '*' && *eap->cmd == '*'))
9279 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00009280 /* Put the register in the typeahead buffer with the "silent" flag. */
9281 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
9282 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00009283 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009284 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00009285 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009286 else
9287 {
9288 int save_efr = exec_from_reg;
9289
9290 exec_from_reg = TRUE;
9291
9292 /*
9293 * Execute from the typeahead buffer.
Bram Moolenaar60462872009-11-03 11:40:19 +00009294 * Continue until the stuff buffer is empty and all added characters
9295 * have been consumed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009296 */
Bram Moolenaar60462872009-11-03 11:40:19 +00009297 while (!stuff_empty() || typebuf.tb_len > prev_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009298 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
9299
9300 exec_from_reg = save_efr;
9301 }
9302}
9303
9304/*
9305 * ":!".
9306 */
9307 static void
9308ex_bang(eap)
9309 exarg_T *eap;
9310{
9311 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
9312}
9313
9314/*
9315 * ":undo".
9316 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009317 static void
9318ex_undo(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009319 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009320{
Bram Moolenaard3667a22006-03-16 21:35:52 +00009321 if (eap->addr_count == 1) /* :undo 123 */
Bram Moolenaar730cde92010-06-27 05:18:54 +02009322 undo_time(eap->line2, FALSE, FALSE, TRUE);
Bram Moolenaard3667a22006-03-16 21:35:52 +00009323 else
9324 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009325}
9326
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009327#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar6df6f472010-07-18 18:04:50 +02009328 static void
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009329ex_wundo(eap)
9330 exarg_T *eap;
9331{
9332 char_u hash[UNDO_HASH_SIZE];
9333
9334 u_compute_hash(hash);
9335 u_write_undo(eap->arg, eap->forceit, curbuf, hash);
9336}
9337
Bram Moolenaar6df6f472010-07-18 18:04:50 +02009338 static void
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009339ex_rundo(eap)
9340 exarg_T *eap;
9341{
9342 char_u hash[UNDO_HASH_SIZE];
9343
9344 u_compute_hash(hash);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02009345 u_read_undo(eap->arg, hash, NULL);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02009346}
9347#endif
9348
Bram Moolenaar071d4272004-06-13 20:20:40 +00009349/*
9350 * ":redo".
9351 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009352 static void
9353ex_redo(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009354 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009355{
9356 u_redo(1);
9357}
9358
9359/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009360 * ":earlier" and ":later".
9361 */
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009362 static void
9363ex_later(eap)
9364 exarg_T *eap;
9365{
9366 long count = 0;
9367 int sec = FALSE;
Bram Moolenaar730cde92010-06-27 05:18:54 +02009368 int file = FALSE;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009369 char_u *p = eap->arg;
9370
9371 if (*p == NUL)
9372 count = 1;
9373 else if (isdigit(*p))
9374 {
9375 count = getdigits(&p);
9376 switch (*p)
9377 {
9378 case 's': ++p; sec = TRUE; break;
9379 case 'm': ++p; sec = TRUE; count *= 60; break;
9380 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
Bram Moolenaar730cde92010-06-27 05:18:54 +02009381 case 'd': ++p; sec = TRUE; count *= 24 * 60 * 60; break;
9382 case 'f': ++p; file = TRUE; break;
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009383 }
9384 }
9385
9386 if (*p != NUL)
9387 EMSG2(_(e_invarg2), eap->arg);
9388 else
Bram Moolenaar730cde92010-06-27 05:18:54 +02009389 undo_time(eap->cmdidx == CMD_earlier ? -count : count,
9390 sec, file, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00009391}
9392
9393/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009394 * ":redir": start/stop redirection.
9395 */
9396 static void
9397ex_redir(eap)
9398 exarg_T *eap;
9399{
9400 char *mode;
9401 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00009402 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009403
9404 if (STRICMP(eap->arg, "END") == 0)
9405 close_redir();
9406 else
9407 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009408 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009409 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009410 ++arg;
9411 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009412 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009413 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009414 mode = "a";
9415 }
9416 else
9417 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00009418 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009419
9420 close_redir();
9421
9422 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00009423 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009424 if (fname == NULL)
9425 return;
9426#ifdef FEAT_BROWSE
9427 if (cmdmod.browse)
9428 {
9429 char_u *browseFile;
9430
Bram Moolenaar7171abe2004-10-11 10:06:20 +00009431 browseFile = do_browse(BROWSE_SAVE,
9432 (char_u *)_("Save Redirection"),
9433 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009434 if (browseFile == NULL)
9435 return; /* operation cancelled */
9436 vim_free(fname);
9437 fname = browseFile;
9438 eap->forceit = TRUE; /* since dialog already asked */
9439 }
9440#endif
9441
9442 redir_fd = open_exfile(fname, eap->forceit, mode);
9443 vim_free(fname);
9444 }
9445#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00009446 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009447 {
9448 /* redirect to a register a-z (resp. A-Z for appending) */
9449 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00009450 ++arg;
9451 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009452# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00009453 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00009454 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00009455# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00009456 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009457 {
Bram Moolenaarca472992005-01-21 11:46:23 +00009458 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009459 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00009460 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009461 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009462 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00009463 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00009464 if (*arg == '>')
9465 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00009466 /* Make register empty when not using @A-@Z and the
9467 * command is valid. */
9468 if (*arg == NUL && !isupper(redir_reg))
9469 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009470 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00009471 }
9472 if (*arg != NUL)
9473 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00009474 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00009475 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00009476 }
9477 }
9478 else if (*arg == '=' && arg[1] == '>')
9479 {
9480 int append;
9481
9482 /* redirect to a variable */
9483 close_redir();
9484 arg += 2;
9485
9486 if (*arg == '>')
9487 {
9488 ++arg;
9489 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009490 }
9491 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00009492 append = FALSE;
9493
9494 if (var_redir_start(skipwhite(arg), append) == OK)
9495 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009496 }
9497#endif
9498
9499 /* TODO: redirect to a buffer */
9500
Bram Moolenaar071d4272004-06-13 20:20:40 +00009501 else
Bram Moolenaarca472992005-01-21 11:46:23 +00009502 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009503 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00009504
9505 /* Make sure redirection is not off. Can happen for cmdline completion
9506 * that indirectly invokes a command to catch its output. */
9507 if (redir_fd != NULL
9508#ifdef FEAT_EVAL
9509 || redir_reg || redir_vname
9510#endif
9511 )
9512 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009513}
9514
9515/*
9516 * ":redraw": force redraw
9517 */
9518 static void
9519ex_redraw(eap)
9520 exarg_T *eap;
9521{
9522 int r = RedrawingDisabled;
9523 int p = p_lz;
9524
9525 RedrawingDisabled = 0;
9526 p_lz = FALSE;
9527 update_topline();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009528 update_screen(eap->forceit ? CLEAR : VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009529#ifdef FEAT_TITLE
9530 if (need_maketitle)
9531 maketitle();
9532#endif
9533 RedrawingDisabled = r;
9534 p_lz = p;
9535
9536 /* Reset msg_didout, so that a message that's there is overwritten. */
9537 msg_didout = FALSE;
9538 msg_col = 0;
9539
Bram Moolenaar56667a52013-07-17 11:54:28 +02009540 /* No need to wait after an intentional redraw. */
9541 need_wait_return = FALSE;
9542
Bram Moolenaar071d4272004-06-13 20:20:40 +00009543 out_flush();
9544}
9545
9546/*
9547 * ":redrawstatus": force redraw of status line(s)
9548 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009549 static void
9550ex_redrawstatus(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +00009551 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009552{
9553#if defined(FEAT_WINDOWS)
9554 int r = RedrawingDisabled;
9555 int p = p_lz;
9556
9557 RedrawingDisabled = 0;
9558 p_lz = FALSE;
9559 if (eap->forceit)
9560 status_redraw_all();
9561 else
9562 status_redraw_curbuf();
Bram Moolenaarf7ff6e82014-03-23 15:13:05 +01009563 update_screen(VIsual_active ? INVERTED : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009564 RedrawingDisabled = r;
9565 p_lz = p;
9566 out_flush();
9567#endif
9568}
9569
9570 static void
9571close_redir()
9572{
9573 if (redir_fd != NULL)
9574 {
9575 fclose(redir_fd);
9576 redir_fd = NULL;
9577 }
9578#ifdef FEAT_EVAL
9579 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009580 if (redir_vname)
9581 {
9582 var_redir_stop();
9583 redir_vname = 0;
9584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009585#endif
9586}
9587
9588#if defined(FEAT_SESSION) && defined(USE_CRNL)
9589# define MKSESSION_NL
9590static int mksession_nl = FALSE; /* use NL only in put_eol() */
9591#endif
9592
9593/*
9594 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
9595 */
9596 static void
9597ex_mkrc(eap)
9598 exarg_T *eap;
9599{
9600 FILE *fd;
9601 int failed = FALSE;
9602 char_u *fname;
9603#ifdef FEAT_BROWSE
9604 char_u *browseFile = NULL;
9605#endif
9606#ifdef FEAT_SESSION
9607 int view_session = FALSE;
9608 int using_vdir = FALSE; /* using 'viewdir'? */
9609 char_u *viewFile = NULL;
9610 unsigned *flagp;
9611#endif
9612
9613 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
9614 {
9615#ifdef FEAT_SESSION
9616 view_session = TRUE;
9617#else
9618 ex_ni(eap);
9619 return;
9620#endif
9621 }
9622
9623#ifdef FEAT_SESSION
Bram Moolenaar8d594672009-07-01 18:18:57 +00009624 /* Use the short file name until ":lcd" is used. We also don't use the
9625 * short file name when 'acd' is set, that is checked later. */
Bram Moolenaareeefcc72007-05-01 21:21:21 +00009626 did_lcd = FALSE;
9627
Bram Moolenaar071d4272004-06-13 20:20:40 +00009628 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
9629 if (eap->cmdidx == CMD_mkview
9630 && (*eap->arg == NUL
9631 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
9632 {
9633 eap->forceit = TRUE;
9634 fname = get_view_file(*eap->arg);
9635 if (fname == NULL)
9636 return;
9637 viewFile = fname;
9638 using_vdir = TRUE;
9639 }
9640 else
9641#endif
9642 if (*eap->arg != NUL)
9643 fname = eap->arg;
9644 else if (eap->cmdidx == CMD_mkvimrc)
9645 fname = (char_u *)VIMRC_FILE;
9646#ifdef FEAT_SESSION
9647 else if (eap->cmdidx == CMD_mksession)
9648 fname = (char_u *)SESSION_FILE;
9649#endif
9650 else
9651 fname = (char_u *)EXRC_FILE;
9652
9653#ifdef FEAT_BROWSE
9654 if (cmdmod.browse)
9655 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00009656 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009657# ifdef FEAT_SESSION
9658 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
9659 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
9660# endif
9661 (char_u *)_("Save Setup"),
9662 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
9663 if (browseFile == NULL)
9664 goto theend;
9665 fname = browseFile;
9666 eap->forceit = TRUE; /* since dialog already asked */
9667 }
9668#endif
9669
9670#if defined(FEAT_SESSION) && defined(vim_mkdir)
9671 /* When using 'viewdir' may have to create the directory. */
9672 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00009673 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009674#endif
9675
9676 fd = open_exfile(fname, eap->forceit, WRITEBIN);
9677 if (fd != NULL)
9678 {
9679#ifdef FEAT_SESSION
9680 if (eap->cmdidx == CMD_mkview)
9681 flagp = &vop_flags;
9682 else
9683 flagp = &ssop_flags;
9684#endif
9685
9686#ifdef MKSESSION_NL
9687 /* "unix" in 'sessionoptions': use NL line separator */
9688 if (view_session && (*flagp & SSOP_UNIX))
9689 mksession_nl = TRUE;
9690#endif
9691
9692 /* Write the version command for :mkvimrc */
9693 if (eap->cmdidx == CMD_mkvimrc)
9694 (void)put_line(fd, "version 6.0");
9695
9696#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009697 if (eap->cmdidx == CMD_mksession)
9698 {
9699 if (put_line(fd, "let SessionLoad = 1") == FAIL)
9700 failed = TRUE;
9701 }
9702
Bram Moolenaar071d4272004-06-13 20:20:40 +00009703 if (eap->cmdidx != CMD_mkview)
9704#endif
9705 {
9706 /* Write setting 'compatible' first, because it has side effects.
9707 * For that same reason only do it when needed. */
9708 if (p_cp)
9709 (void)put_line(fd, "if !&cp | set cp | endif");
9710 else
9711 (void)put_line(fd, "if &cp | set nocp | endif");
9712 }
9713
9714#ifdef FEAT_SESSION
9715 if (!view_session
9716 || (eap->cmdidx == CMD_mksession
9717 && (*flagp & SSOP_OPTIONS)))
9718#endif
9719 failed |= (makemap(fd, NULL) == FAIL
9720 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
9721
9722#ifdef FEAT_SESSION
9723 if (!failed && view_session)
9724 {
9725 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
9726 failed = TRUE;
9727 if (eap->cmdidx == CMD_mksession)
9728 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02009729 char_u *dirnow; /* current directory */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009730
Bram Moolenaard9462e32011-04-11 21:35:11 +02009731 dirnow = alloc(MAXPATHL);
9732 if (dirnow == NULL)
9733 failed = TRUE;
9734 else
9735 {
9736 /*
9737 * Change to session file's dir.
9738 */
9739 if (mch_dirname(dirnow, MAXPATHL) == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +00009740 || mch_chdir((char *)dirnow) != 0)
Bram Moolenaard9462e32011-04-11 21:35:11 +02009741 *dirnow = NUL;
9742 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
9743 {
9744 if (vim_chdirfile(fname) == OK)
9745 shorten_fnames(TRUE);
9746 }
9747 else if (*dirnow != NUL
9748 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
9749 {
9750 if (mch_chdir((char *)globaldir) == 0)
9751 shorten_fnames(TRUE);
9752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009753
Bram Moolenaard9462e32011-04-11 21:35:11 +02009754 failed |= (makeopens(fd, dirnow) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009755
Bram Moolenaard9462e32011-04-11 21:35:11 +02009756 /* restore original dir */
9757 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009758 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
Bram Moolenaard9462e32011-04-11 21:35:11 +02009759 {
9760 if (mch_chdir((char *)dirnow) != 0)
9761 EMSG(_(e_prev_dir));
9762 shorten_fnames(TRUE);
9763 }
9764 vim_free(dirnow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009765 }
9766 }
9767 else
9768 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009769 failed |= (put_view(fd, curwin, !using_vdir, flagp,
9770 -1) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009771 }
9772 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
9773 == FAIL)
9774 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009775 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
9776 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00009777 if (eap->cmdidx == CMD_mksession)
9778 {
9779 if (put_line(fd, "unlet SessionLoad") == FAIL)
9780 failed = TRUE;
9781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009782 }
9783#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00009784 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
9785 failed = TRUE;
9786
Bram Moolenaar071d4272004-06-13 20:20:40 +00009787 failed |= fclose(fd);
9788
9789 if (failed)
9790 EMSG(_(e_write));
9791#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
9792 else if (eap->cmdidx == CMD_mksession)
9793 {
9794 /* successful session write - set this_session var */
Bram Moolenaard9462e32011-04-11 21:35:11 +02009795 char_u *tbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009796
Bram Moolenaard9462e32011-04-11 21:35:11 +02009797 tbuf = alloc(MAXPATHL);
9798 if (tbuf != NULL)
9799 {
9800 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
9801 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
9802 vim_free(tbuf);
9803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009804 }
9805#endif
9806#ifdef MKSESSION_NL
9807 mksession_nl = FALSE;
9808#endif
9809 }
9810
9811#ifdef FEAT_BROWSE
9812theend:
9813 vim_free(browseFile);
9814#endif
9815#ifdef FEAT_SESSION
9816 vim_free(viewFile);
9817#endif
9818}
9819
Bram Moolenaardf177f62005-02-22 08:39:57 +00009820#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
9821 || defined(PROTO)
9822 int
9823vim_mkdir_emsg(name, prot)
9824 char_u *name;
Bram Moolenaar78a15312009-05-15 19:33:18 +00009825 int prot UNUSED;
Bram Moolenaardf177f62005-02-22 08:39:57 +00009826{
9827 if (vim_mkdir(name, prot) != 0)
9828 {
9829 EMSG2(_("E739: Cannot create directory: %s"), name);
9830 return FAIL;
9831 }
9832 return OK;
9833}
9834#endif
9835
Bram Moolenaar071d4272004-06-13 20:20:40 +00009836/*
9837 * Open a file for writing for an Ex command, with some checks.
9838 * Return file descriptor, or NULL on failure.
9839 */
9840 FILE *
9841open_exfile(fname, forceit, mode)
9842 char_u *fname;
9843 int forceit;
9844 char *mode; /* "w" for create new file or "a" for append */
9845{
9846 FILE *fd;
9847
9848#ifdef UNIX
9849 /* with Unix it is possible to open a directory */
9850 if (mch_isdir(fname))
9851 {
9852 EMSG2(_(e_isadir2), fname);
9853 return NULL;
9854 }
9855#endif
9856 if (!forceit && *mode != 'a' && vim_fexists(fname))
9857 {
9858 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
9859 return NULL;
9860 }
9861
9862 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
9863 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
9864
9865 return fd;
9866}
9867
9868/*
9869 * ":mark" and ":k".
9870 */
9871 static void
9872ex_mark(eap)
9873 exarg_T *eap;
9874{
9875 pos_T pos;
9876
9877 if (*eap->arg == NUL) /* No argument? */
9878 EMSG(_(e_argreq));
9879 else if (eap->arg[1] != NUL) /* more than one character? */
9880 EMSG(_(e_trailing));
9881 else
9882 {
9883 pos = curwin->w_cursor; /* save curwin->w_cursor */
9884 curwin->w_cursor.lnum = eap->line2;
9885 beginline(BL_WHITE | BL_FIX);
9886 if (setmark(*eap->arg) == FAIL) /* set mark */
9887 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
9888 curwin->w_cursor = pos; /* restore curwin->w_cursor */
9889 }
9890}
9891
9892/*
9893 * Update w_topline, w_leftcol and the cursor position.
9894 */
9895 void
9896update_topline_cursor()
9897{
9898 check_cursor(); /* put cursor on valid line */
9899 update_topline();
9900 if (!curwin->w_p_wrap)
9901 validate_cursor();
9902 update_curswant();
9903}
9904
9905#ifdef FEAT_EX_EXTRA
9906/*
9907 * ":normal[!] {commands}": Execute normal mode commands.
9908 */
9909 static void
9910ex_normal(eap)
9911 exarg_T *eap;
9912{
Bram Moolenaar071d4272004-06-13 20:20:40 +00009913 int save_msg_scroll = msg_scroll;
9914 int save_restart_edit = restart_edit;
9915 int save_msg_didout = msg_didout;
9916 int save_State = State;
9917 tasave_T tabuf;
9918 int save_insertmode = p_im;
9919 int save_finish_op = finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +00009920 int save_opcount = opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009921#ifdef FEAT_MBYTE
9922 char_u *arg = NULL;
9923 int l;
9924 char_u *p;
9925#endif
9926
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00009927 if (ex_normal_lock > 0)
9928 {
9929 EMSG(_(e_secure));
9930 return;
9931 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009932 if (ex_normal_busy >= p_mmd)
9933 {
9934 EMSG(_("E192: Recursive use of :normal too deep"));
9935 return;
9936 }
9937 ++ex_normal_busy;
9938
9939 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
9940 restart_edit = 0; /* don't go to Insert mode */
9941 p_im = FALSE; /* don't use 'insertmode' */
9942
9943#ifdef FEAT_MBYTE
9944 /*
9945 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
9946 * this for the K_SPECIAL leading byte, otherwise special keys will not
9947 * work.
9948 */
9949 if (has_mbyte)
9950 {
9951 int len = 0;
9952
9953 /* Count the number of characters to be escaped. */
9954 for (p = eap->arg; *p != NUL; ++p)
9955 {
9956# ifdef FEAT_GUI
9957 if (*p == CSI) /* leadbyte CSI */
9958 len += 2;
9959# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009960 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009961 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
9962# ifdef FEAT_GUI
9963 || *p == CSI
9964# endif
9965 )
9966 len += 2;
9967 }
9968 if (len > 0)
9969 {
9970 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
9971 if (arg != NULL)
9972 {
9973 len = 0;
9974 for (p = eap->arg; *p != NUL; ++p)
9975 {
9976 arg[len++] = *p;
9977# ifdef FEAT_GUI
9978 if (*p == CSI)
9979 {
9980 arg[len++] = KS_EXTRA;
9981 arg[len++] = (int)KE_CSI;
9982 }
9983# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009984 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009985 {
9986 arg[len++] = *++p;
9987 if (*p == K_SPECIAL)
9988 {
9989 arg[len++] = KS_SPECIAL;
9990 arg[len++] = KE_FILLER;
9991 }
9992# ifdef FEAT_GUI
9993 else if (*p == CSI)
9994 {
9995 arg[len++] = KS_EXTRA;
9996 arg[len++] = (int)KE_CSI;
9997 }
9998# endif
9999 }
10000 arg[len] = NUL;
10001 }
10002 }
10003 }
10004 }
10005#endif
10006
10007 /*
10008 * Save the current typeahead. This is required to allow using ":normal"
10009 * from an event handler and makes sure we don't hang when the argument
10010 * ends with half a command.
10011 */
10012 save_typeahead(&tabuf);
10013 if (tabuf.typebuf_valid)
10014 {
10015 /*
10016 * Repeat the :normal command for each line in the range. When no
10017 * range given, execute it just once, without positioning the cursor
10018 * first.
10019 */
10020 do
10021 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010022 if (eap->addr_count != 0)
10023 {
10024 curwin->w_cursor.lnum = eap->line1++;
10025 curwin->w_cursor.col = 0;
10026 }
10027
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010028 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +000010029#ifdef FEAT_MBYTE
10030 arg != NULL ? arg :
10031#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010032 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010033 }
10034 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
10035 }
10036
10037 /* Might not return to the main loop when in an event handler. */
10038 update_topline_cursor();
10039
10040 /* Restore the previous typeahead. */
10041 restore_typeahead(&tabuf);
10042
10043 --ex_normal_busy;
10044 msg_scroll = save_msg_scroll;
10045 restart_edit = save_restart_edit;
10046 p_im = save_insertmode;
10047 finish_op = save_finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +000010048 opcount = save_opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010049 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
10050
10051 /* Restore the state (needed when called from a function executed for
Bram Moolenaareda73602014-11-05 09:53:23 +010010052 * 'indentexpr'). Update the mouse and cursor, they may have changed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010053 State = save_State;
Bram Moolenaareda73602014-11-05 09:53:23 +010010054#ifdef FEAT_MOUSE
10055 setmouse();
10056#endif
10057#ifdef CURSOR_SHAPE
10058 ui_cursor_shape(); /* may show different cursor shape */
10059#endif
10060
Bram Moolenaar071d4272004-06-13 20:20:40 +000010061#ifdef FEAT_MBYTE
10062 vim_free(arg);
10063#endif
10064}
10065
10066/*
Bram Moolenaar64969662005-12-14 21:59:55 +000010067 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010068 */
10069 static void
10070ex_startinsert(eap)
10071 exarg_T *eap;
10072{
Bram Moolenaarfd371682005-01-14 21:42:54 +000010073 if (eap->forceit)
10074 {
10075 coladvance((colnr_T)MAXCOL);
10076 curwin->w_curswant = MAXCOL;
10077 curwin->w_set_curswant = FALSE;
10078 }
10079
Bram Moolenaara40c5002005-01-09 21:16:21 +000010080 /* Ignore the command when already in Insert mode. Inserting an
10081 * expression register that invokes a function can do this. */
10082 if (State & INSERT)
10083 return;
10084
Bram Moolenaar64969662005-12-14 21:59:55 +000010085 if (eap->cmdidx == CMD_startinsert)
10086 restart_edit = 'a';
10087 else if (eap->cmdidx == CMD_startreplace)
10088 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010089 else
Bram Moolenaar64969662005-12-14 21:59:55 +000010090 restart_edit = 'V';
10091
10092 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010093 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +000010094 if (eap->cmdidx == CMD_startinsert)
10095 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010096 curwin->w_curswant = 0; /* avoid MAXCOL */
10097 }
10098}
10099
10100/*
10101 * ":stopinsert"
10102 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010103 static void
10104ex_stopinsert(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010105 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010106{
10107 restart_edit = 0;
10108 stop_insert_mode = TRUE;
10109}
10110#endif
10111
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010112#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
10113/*
10114 * Execute normal mode command "cmd".
10115 * "remap" can be REMAP_NONE or REMAP_YES.
10116 */
10117 void
10118exec_normal_cmd(cmd, remap, silent)
10119 char_u *cmd;
10120 int remap;
10121 int silent;
10122{
10123 oparg_T oa;
10124
10125 /*
10126 * Stuff the argument into the typeahead buffer.
10127 * Execute normal_cmd() until there is no typeahead left.
10128 */
10129 clear_oparg(&oa);
10130 finish_op = FALSE;
10131 ins_typebuf(cmd, remap, 0, TRUE, silent);
10132 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
10133 && !got_int)
10134 {
10135 update_topline_cursor();
Bram Moolenaar48ac02c2011-01-17 19:50:06 +010010136 normal_cmd(&oa, TRUE); /* execute a Normal mode cmd */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010137 }
10138}
10139#endif
10140
Bram Moolenaar071d4272004-06-13 20:20:40 +000010141#ifdef FEAT_FIND_ID
10142 static void
10143ex_checkpath(eap)
10144 exarg_T *eap;
10145{
10146 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
10147 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
10148 (linenr_T)1, (linenr_T)MAXLNUM);
10149}
10150
10151#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
10152/*
10153 * ":psearch"
10154 */
10155 static void
10156ex_psearch(eap)
10157 exarg_T *eap;
10158{
10159 g_do_tagpreview = p_pvh;
10160 ex_findpat(eap);
10161 g_do_tagpreview = 0;
10162}
10163#endif
10164
10165 static void
10166ex_findpat(eap)
10167 exarg_T *eap;
10168{
10169 int whole = TRUE;
10170 long n;
10171 char_u *p;
10172 int action;
10173
10174 switch (cmdnames[eap->cmdidx].cmd_name[2])
10175 {
10176 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
10177 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
10178 action = ACTION_GOTO;
10179 else
10180 action = ACTION_SHOW;
10181 break;
10182 case 'i': /* ":ilist" and ":dlist" */
10183 action = ACTION_SHOW_ALL;
10184 break;
10185 case 'u': /* ":ijump" and ":djump" */
10186 action = ACTION_GOTO;
10187 break;
10188 default: /* ":isplit" and ":dsplit" */
10189 action = ACTION_SPLIT;
10190 break;
10191 }
10192
10193 n = 1;
10194 if (vim_isdigit(*eap->arg)) /* get count */
10195 {
10196 n = getdigits(&eap->arg);
10197 eap->arg = skipwhite(eap->arg);
10198 }
10199 if (*eap->arg == '/') /* Match regexp, not just whole words */
10200 {
10201 whole = FALSE;
10202 ++eap->arg;
10203 p = skip_regexp(eap->arg, '/', p_magic, NULL);
10204 if (*p)
10205 {
10206 *p++ = NUL;
10207 p = skipwhite(p);
10208
10209 /* Check for trailing illegal characters */
10210 if (!ends_excmd(*p))
10211 eap->errmsg = e_trailing;
10212 else
10213 eap->nextcmd = check_nextcmd(p);
10214 }
10215 }
10216 if (!eap->skip)
10217 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
10218 whole, !eap->forceit,
10219 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
10220 n, action, eap->line1, eap->line2);
10221}
10222#endif
10223
10224#ifdef FEAT_WINDOWS
10225
10226# ifdef FEAT_QUICKFIX
10227/*
10228 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
10229 */
10230 static void
10231ex_ptag(eap)
10232 exarg_T *eap;
10233{
Bram Moolenaara3e7b1f2010-11-10 19:00:01 +010010234 g_do_tagpreview = p_pvh; /* will be reset to 0 in ex_tag_cmd() */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010235 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
10236}
10237
10238/*
10239 * ":pedit"
10240 */
10241 static void
10242ex_pedit(eap)
10243 exarg_T *eap;
10244{
10245 win_T *curwin_save = curwin;
10246
10247 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +000010248 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010249 keep_help_flag = curwin_save->w_buffer->b_help;
10250 do_exedit(eap, NULL);
10251 keep_help_flag = FALSE;
10252 if (curwin != curwin_save && win_valid(curwin_save))
10253 {
10254 /* Return cursor to where we were */
10255 validate_cursor();
10256 redraw_later(VALID);
10257 win_enter(curwin_save, TRUE);
10258 }
10259 g_do_tagpreview = 0;
10260}
10261# endif
10262
10263/*
10264 * ":stag", ":stselect" and ":stjump".
10265 */
10266 static void
10267ex_stag(eap)
10268 exarg_T *eap;
10269{
10270 postponed_split = -1;
10271 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +000010272 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010273 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
10274 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +000010275 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010276}
10277#endif
10278
10279/*
10280 * ":tag", ":tselect", ":tjump", ":tnext", etc.
10281 */
10282 static void
10283ex_tag(eap)
10284 exarg_T *eap;
10285{
10286 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
10287}
10288
10289 static void
10290ex_tag_cmd(eap, name)
10291 exarg_T *eap;
10292 char_u *name;
10293{
10294 int cmd;
10295
10296 switch (name[1])
10297 {
10298 case 'j': cmd = DT_JUMP; /* ":tjump" */
10299 break;
10300 case 's': cmd = DT_SELECT; /* ":tselect" */
10301 break;
10302 case 'p': cmd = DT_PREV; /* ":tprevious" */
10303 break;
10304 case 'N': cmd = DT_PREV; /* ":tNext" */
10305 break;
10306 case 'n': cmd = DT_NEXT; /* ":tnext" */
10307 break;
10308 case 'o': cmd = DT_POP; /* ":pop" */
10309 break;
10310 case 'f': /* ":tfirst" */
10311 case 'r': cmd = DT_FIRST; /* ":trewind" */
10312 break;
10313 case 'l': cmd = DT_LAST; /* ":tlast" */
10314 break;
10315 default: /* ":tag" */
10316#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +000010317 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010318 {
10319 do_cstag(eap);
10320 return;
10321 }
10322#endif
10323 cmd = DT_TAG;
10324 break;
10325 }
10326
Bram Moolenaarb8a7b562006-02-01 21:47:16 +000010327 if (name[0] == 'l')
10328 {
10329#ifndef FEAT_QUICKFIX
10330 ex_ni(eap);
10331 return;
10332#else
10333 cmd = DT_LTAG;
10334#endif
10335 }
10336
Bram Moolenaar071d4272004-06-13 20:20:40 +000010337 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
10338 eap->forceit, TRUE);
10339}
10340
10341/*
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010342 * Check "str" for starting with a special cmdline variable.
10343 * If found return one of the SPEC_ values and set "*usedlen" to the length of
10344 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
10345 */
10346 int
10347find_cmdline_var(src, usedlen)
10348 char_u *src;
10349 int *usedlen;
10350{
10351 int len;
10352 int i;
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +000010353 static char *(spec_str[]) = {
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010354 "%",
10355#define SPEC_PERC 0
10356 "#",
10357#define SPEC_HASH 1
10358 "<cword>", /* cursor word */
10359#define SPEC_CWORD 2
10360 "<cWORD>", /* cursor WORD */
10361#define SPEC_CCWORD 3
10362 "<cfile>", /* cursor path name */
10363#define SPEC_CFILE 4
10364 "<sfile>", /* ":so" file name */
10365#define SPEC_SFILE 5
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010366 "<slnum>", /* ":so" file line number */
10367#define SPEC_SLNUM 6
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010368#ifdef FEAT_AUTOCMD
10369 "<afile>", /* autocommand file name */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010370# define SPEC_AFILE 7
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010371 "<abuf>", /* autocommand buffer number */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010372# define SPEC_ABUF 8
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010373 "<amatch>", /* autocommand match name */
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010374# define SPEC_AMATCH 9
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010375#endif
10376#ifdef FEAT_CLIENTSERVER
10377 "<client>"
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010378# ifdef FEAT_AUTOCMD
10379# define SPEC_CLIENT 10
10380# else
10381# define SPEC_CLIENT 7
10382# endif
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010383#endif
10384 };
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010385
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000010386 for (i = 0; i < (int)(sizeof(spec_str) / sizeof(char *)); ++i)
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010387 {
10388 len = (int)STRLEN(spec_str[i]);
10389 if (STRNCMP(src, spec_str[i], len) == 0)
10390 {
10391 *usedlen = len;
10392 return i;
10393 }
10394 }
10395 return -1;
10396}
10397
10398/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010399 * Evaluate cmdline variables.
10400 *
10401 * change '%' to curbuf->b_ffname
10402 * '#' to curwin->w_altfile
10403 * '<cword>' to word under the cursor
10404 * '<cWORD>' to WORD under the cursor
10405 * '<cfile>' to path name under the cursor
10406 * '<sfile>' to sourced file name
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010407 * '<slnum>' to sourced file line number
Bram Moolenaar071d4272004-06-13 20:20:40 +000010408 * '<afile>' to file name for autocommand
10409 * '<abuf>' to buffer number for autocommand
10410 * '<amatch>' to matching name for autocommand
10411 *
10412 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
10413 * "" for error without a message) and NULL is returned.
10414 * Returns an allocated string if a valid match was found.
10415 * Returns NULL if no match was found. "usedlen" then still contains the
10416 * number of characters to skip.
10417 */
10418 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +000010419eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010420 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010421 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010422 int *usedlen; /* characters after src that are used */
10423 linenr_T *lnump; /* line number for :e command, or NULL */
10424 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010425 int *escaped; /* return value has escaped white space (can
10426 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010427{
10428 int i;
10429 char_u *s;
10430 char_u *result;
10431 char_u *resultbuf = NULL;
10432 int resultlen;
10433 buf_T *buf;
10434 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
10435 int spec_idx;
10436#ifdef FEAT_MODIFY_FNAME
10437 int skip_mod = FALSE;
10438#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010439 char_u strbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +000010440
10441 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +000010442 if (escaped != NULL)
10443 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010444
10445 /*
10446 * Check if there is something to do.
10447 */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000010448 spec_idx = find_cmdline_var(src, usedlen);
10449 if (spec_idx < 0) /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010450 {
10451 *usedlen = 1;
10452 return NULL;
10453 }
10454
10455 /*
10456 * Skip when preceded with a backslash "\%" and "\#".
10457 * Note: In "\\%" the % is also not recognized!
10458 */
10459 if (src > srcstart && src[-1] == '\\')
10460 {
10461 *usedlen = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +000010462 STRMOVE(src - 1, src); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010463 return NULL;
10464 }
10465
10466 /*
10467 * word or WORD under cursor
10468 */
10469 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
10470 {
10471 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
10472 (FIND_IDENT|FIND_STRING) : FIND_STRING);
10473 if (resultlen == 0)
10474 {
10475 *errormsg = (char_u *)"";
10476 return NULL;
10477 }
10478 }
10479
10480 /*
10481 * '#': Alternate file name
10482 * '%': Current file name
10483 * File name under the cursor
10484 * File name for autocommand
10485 * and following modifiers
10486 */
10487 else
10488 {
10489 switch (spec_idx)
10490 {
10491 case SPEC_PERC: /* '%': current file */
10492 if (curbuf->b_fname == NULL)
10493 {
10494 result = (char_u *)"";
10495 valid = 0; /* Must have ":p:h" to be valid */
10496 }
10497 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010498 result = curbuf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010499 break;
10500
10501 case SPEC_HASH: /* '#' or "#99": alternate file */
10502 if (src[1] == '#') /* "##": the argument list */
10503 {
10504 result = arg_all();
10505 resultbuf = result;
10506 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +000010507 if (escaped != NULL)
10508 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010509#ifdef FEAT_MODIFY_FNAME
10510 skip_mod = TRUE;
10511#endif
10512 break;
10513 }
10514 s = src + 1;
Bram Moolenaard812df62008-11-09 12:46:09 +000010515 if (*s == '<') /* "#<99" uses v:oldfiles */
10516 ++s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010517 i = (int)getdigits(&s);
10518 *usedlen = (int)(s - src); /* length of what we expand */
10519
Bram Moolenaard812df62008-11-09 12:46:09 +000010520 if (src[1] == '<')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010521 {
Bram Moolenaard812df62008-11-09 12:46:09 +000010522 if (*usedlen < 2)
10523 {
10524 /* Should we give an error message for #<text? */
10525 *usedlen = 1;
10526 return NULL;
10527 }
10528#ifdef FEAT_EVAL
10529 result = list_find_str(get_vim_var_list(VV_OLDFILES),
10530 (long)i);
10531 if (result == NULL)
10532 {
10533 *errormsg = (char_u *)"";
10534 return NULL;
10535 }
10536#else
10537 *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
Bram Moolenaar071d4272004-06-13 20:20:40 +000010538 return NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +000010539#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010540 }
10541 else
Bram Moolenaard812df62008-11-09 12:46:09 +000010542 {
10543 buf = buflist_findnr(i);
10544 if (buf == NULL)
10545 {
10546 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
10547 return NULL;
10548 }
10549 if (lnump != NULL)
10550 *lnump = ECMD_LAST;
10551 if (buf->b_fname == NULL)
10552 {
10553 result = (char_u *)"";
10554 valid = 0; /* Must have ":p:h" to be valid */
10555 }
10556 else
10557 result = buf->b_fname;
10558 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010559 break;
10560
10561#ifdef FEAT_SEARCHPATH
10562 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +000010563 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010564 if (result == NULL)
10565 {
10566 *errormsg = (char_u *)"";
10567 return NULL;
10568 }
10569 resultbuf = result; /* remember allocated string */
10570 break;
10571#endif
10572
10573#ifdef FEAT_AUTOCMD
10574 case SPEC_AFILE: /* file name for autocommand */
10575 result = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +000010576 if (result != NULL && !autocmd_fname_full)
10577 {
10578 /* Still need to turn the fname into a full path. It is
10579 * postponed to avoid a delay when <afile> is not used. */
10580 autocmd_fname_full = TRUE;
10581 result = FullName_save(autocmd_fname, FALSE);
10582 vim_free(autocmd_fname);
10583 autocmd_fname = result;
10584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010585 if (result == NULL)
10586 {
10587 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
10588 return NULL;
10589 }
Bram Moolenaara0174af2008-01-02 20:08:25 +000010590 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010591 break;
10592
10593 case SPEC_ABUF: /* buffer number for autocommand */
10594 if (autocmd_bufnr <= 0)
10595 {
10596 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
10597 return NULL;
10598 }
10599 sprintf((char *)strbuf, "%d", autocmd_bufnr);
10600 result = strbuf;
10601 break;
10602
10603 case SPEC_AMATCH: /* match name for autocommand */
10604 result = autocmd_match;
10605 if (result == NULL)
10606 {
10607 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
10608 return NULL;
10609 }
10610 break;
10611
10612#endif
10613 case SPEC_SFILE: /* file name for ":so" command */
10614 result = sourcing_name;
10615 if (result == NULL)
10616 {
10617 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
10618 return NULL;
10619 }
10620 break;
Bram Moolenaar4dbbff52010-11-24 15:50:59 +010010621 case SPEC_SLNUM: /* line in file for ":so" command */
10622 if (sourcing_name == NULL || sourcing_lnum == 0)
10623 {
10624 *errormsg = (char_u *)_("E842: no line number to use for \"<slnum>\"");
10625 return NULL;
10626 }
10627 sprintf((char *)strbuf, "%ld", (long)sourcing_lnum);
10628 result = strbuf;
10629 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010630#if defined(FEAT_CLIENTSERVER)
10631 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000010632 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
10633 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010634 result = strbuf;
10635 break;
10636#endif
10637 }
10638
10639 resultlen = (int)STRLEN(result); /* length of new string */
10640 if (src[*usedlen] == '<') /* remove the file name extension */
10641 {
10642 ++*usedlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010643 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010644 resultlen = (int)(s - result);
10645 }
10646#ifdef FEAT_MODIFY_FNAME
10647 else if (!skip_mod)
10648 {
10649 valid |= modify_fname(src, usedlen, &result, &resultbuf,
10650 &resultlen);
10651 if (result == NULL)
10652 {
10653 *errormsg = (char_u *)"";
10654 return NULL;
10655 }
10656 }
10657#endif
10658 }
10659
10660 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
10661 {
10662 if (valid != VALID_HEAD + VALID_PATH)
10663 /* xgettext:no-c-format */
10664 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
10665 else
10666 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
10667 result = NULL;
10668 }
10669 else
10670 result = vim_strnsave(result, resultlen);
10671 vim_free(resultbuf);
10672 return result;
10673}
10674
10675/*
10676 * Concatenate all files in the argument list, separated by spaces, and return
10677 * it in one allocated string.
10678 * Spaces and backslashes in the file names are escaped with a backslash.
10679 * Returns NULL when out of memory.
10680 */
10681 static char_u *
10682arg_all()
10683{
10684 int len;
10685 int idx;
10686 char_u *retval = NULL;
10687 char_u *p;
10688
10689 /*
10690 * Do this loop two times:
10691 * first time: compute the total length
10692 * second time: concatenate the names
10693 */
10694 for (;;)
10695 {
10696 len = 0;
10697 for (idx = 0; idx < ARGCOUNT; ++idx)
10698 {
10699 p = alist_name(&ARGLIST[idx]);
10700 if (p != NULL)
10701 {
10702 if (len > 0)
10703 {
10704 /* insert a space in between names */
10705 if (retval != NULL)
10706 retval[len] = ' ';
10707 ++len;
10708 }
10709 for ( ; *p != NUL; ++p)
10710 {
10711 if (*p == ' ' || *p == '\\')
10712 {
10713 /* insert a backslash */
10714 if (retval != NULL)
10715 retval[len] = '\\';
10716 ++len;
10717 }
10718 if (retval != NULL)
10719 retval[len] = *p;
10720 ++len;
10721 }
10722 }
10723 }
10724
10725 /* second time: break here */
10726 if (retval != NULL)
10727 {
10728 retval[len] = NUL;
10729 break;
10730 }
10731
10732 /* allocate memory */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000010733 retval = alloc((unsigned)len + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010734 if (retval == NULL)
10735 break;
10736 }
10737
10738 return retval;
10739}
10740
10741#if defined(FEAT_AUTOCMD) || defined(PROTO)
10742/*
10743 * Expand the <sfile> string in "arg".
10744 *
10745 * Returns an allocated string, or NULL for any error.
10746 */
10747 char_u *
10748expand_sfile(arg)
10749 char_u *arg;
10750{
10751 char_u *errormsg;
10752 int len;
10753 char_u *result;
10754 char_u *newres;
10755 char_u *repl;
10756 int srclen;
10757 char_u *p;
10758
10759 result = vim_strsave(arg);
10760 if (result == NULL)
10761 return NULL;
10762
10763 for (p = result; *p; )
10764 {
10765 if (STRNCMP(p, "<sfile>", 7) != 0)
10766 ++p;
10767 else
10768 {
10769 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +000010770 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010771 if (errormsg != NULL)
10772 {
10773 if (*errormsg)
10774 emsg(errormsg);
10775 vim_free(result);
10776 return NULL;
10777 }
10778 if (repl == NULL) /* no match (cannot happen) */
10779 {
10780 p += srclen;
10781 continue;
10782 }
10783 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
10784 newres = alloc(len);
10785 if (newres == NULL)
10786 {
10787 vim_free(repl);
10788 vim_free(result);
10789 return NULL;
10790 }
10791 mch_memmove(newres, result, (size_t)(p - result));
10792 STRCPY(newres + (p - result), repl);
10793 len = (int)STRLEN(newres);
10794 STRCAT(newres, p + srclen);
10795 vim_free(repl);
10796 vim_free(result);
10797 result = newres;
10798 p = newres + len; /* continue after the match */
10799 }
10800 }
10801
10802 return result;
10803}
10804#endif
10805
10806#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010807static int ses_winsizes __ARGS((FILE *fd, int restore_size,
10808 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010809static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
10810static frame_T *ses_skipframe __ARGS((frame_T *fr));
10811static int ses_do_frame __ARGS((frame_T *fr));
10812static int ses_do_win __ARGS((win_T *wp));
10813static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
10814static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
10815static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
10816
10817/*
10818 * Write openfile commands for the current buffers to an .exrc file.
10819 * Return FAIL on error, OK otherwise.
10820 */
10821 static int
10822makeopens(fd, dirnow)
10823 FILE *fd;
10824 char_u *dirnow; /* Current directory name */
10825{
10826 buf_T *buf;
10827 int only_save_windows = TRUE;
10828 int nr;
10829 int cnr = 1;
10830 int restore_size = TRUE;
10831 win_T *wp;
10832 char_u *sname;
10833 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000010834 int tabnr;
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020010835 int restore_stal = FALSE;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010836 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010837 frame_T *tab_topframe;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010838 int cur_arg_idx = 0;
Bram Moolenaar383c6f52008-01-04 15:01:07 +000010839 int next_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010840
10841 if (ssop_flags & SSOP_BUFFERS)
10842 only_save_windows = FALSE; /* Save ALL buffers */
10843
10844 /*
10845 * Begin by setting the this_session variable, and then other
10846 * sessionable variables.
10847 */
10848#ifdef FEAT_EVAL
10849 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
10850 return FAIL;
10851 if (ssop_flags & SSOP_GLOBALS)
10852 if (store_session_globals(fd) == FAIL)
10853 return FAIL;
10854#endif
10855
10856 /*
10857 * Close all windows but one.
10858 */
10859 if (put_line(fd, "silent only") == FAIL)
10860 return FAIL;
10861
10862 /*
10863 * Now a :cd command to the session directory or the current directory
10864 */
10865 if (ssop_flags & SSOP_SESDIR)
10866 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010867 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
10868 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010869 return FAIL;
10870 }
10871 else if (ssop_flags & SSOP_CURDIR)
10872 {
10873 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
10874 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010875 || fputs("cd ", fd) < 0
10876 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
10877 || put_eol(fd) == FAIL)
10878 {
10879 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010880 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000010881 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010882 vim_free(sname);
10883 }
10884
10885 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010886 * If there is an empty, unnamed buffer we will wipe it out later.
10887 * Remember the buffer number.
10888 */
10889 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
10890 return FAIL;
10891 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
10892 return FAIL;
10893 if (put_line(fd, "endif") == FAIL)
10894 return FAIL;
10895
10896 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010897 * Now save the current files, current buffer first.
10898 */
10899 if (put_line(fd, "set shortmess=aoO") == FAIL)
10900 return FAIL;
10901
10902 /* Now put the other buffers into the buffer list */
10903 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
10904 {
10905 if (!(only_save_windows && buf->b_nwindows == 0)
10906 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
10907 && buf->b_fname != NULL
10908 && buf->b_p_bl)
10909 {
10910 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
10911 : buf->b_wininfo->wi_fpos.lnum) < 0
10912 || ses_fname(fd, buf, &ssop_flags) == FAIL)
10913 return FAIL;
10914 }
10915 }
10916
10917 /* the global argument list */
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010010918 if (ses_arglist(fd, "argglobal", &global_alist.al_ga,
Bram Moolenaar071d4272004-06-13 20:20:40 +000010919 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
10920 return FAIL;
10921
10922 if (ssop_flags & SSOP_RESIZE)
10923 {
10924 /* Note: after the restore we still check it worked!*/
10925 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
10926 || put_eol(fd) == FAIL)
10927 return FAIL;
10928 }
10929
10930#ifdef FEAT_GUI
10931 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
10932 {
10933 int x, y;
10934
10935 if (gui_mch_get_winpos(&x, &y) == OK)
10936 {
10937 /* Note: after the restore we still check it worked!*/
10938 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
10939 return FAIL;
10940 }
10941 }
10942#endif
10943
10944 /*
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020010945 * When there are two or more tabpages and 'showtabline' is 1 the tabline
10946 * will be displayed when creating the next tab. That resizes the windows
10947 * in the first tab, which may cause problems. Set 'showtabline' to 2
10948 * temporarily to avoid that.
10949 */
10950 if (p_stal == 1 && first_tabpage->tp_next != NULL)
10951 {
10952 if (put_line(fd, "set stal=2") == FAIL)
10953 return FAIL;
10954 restore_stal = TRUE;
10955 }
10956
10957 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000010958 * May repeat putting Windows for each tab, when "tabpages" is in
10959 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010960 * Don't use goto_tabpage(), it may change directory and trigger
10961 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010962 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010963 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010964 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +000010965 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010966 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010967 int need_tabnew = FALSE;
10968
Bram Moolenaar18144c82006-04-12 21:52:12 +000010969 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010970 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010971 tabpage_T *tp = find_tabpage(tabnr);
10972
10973 if (tp == NULL)
10974 break; /* done all tab pages */
10975 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010976 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010977 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010978 tab_topframe = topframe;
10979 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010980 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010981 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010982 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010983 tab_topframe = tp->tp_topframe;
10984 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010985 if (tabnr > 1)
10986 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010987 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010988
Bram Moolenaar18144c82006-04-12 21:52:12 +000010989 /*
10990 * Before creating the window layout, try loading one file. If this
10991 * is aborted we don't end up with a number of useless windows.
10992 * This may have side effects! (e.g., compressed or network file).
10993 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010994 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010995 {
10996 if (ses_do_win(wp)
10997 && wp->w_buffer->b_ffname != NULL
10998 && !wp->w_buffer->b_help
10999#ifdef FEAT_QUICKFIX
11000 && !bt_nofile(wp->w_buffer)
11001#endif
11002 )
11003 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011004 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +000011005 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
11006 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011007 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011008 if (!wp->w_arg_idx_invalid)
11009 edited_win = wp;
11010 break;
11011 }
11012 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011013
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011014 /* If no file got edited create an empty tab page. */
11015 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
11016 return FAIL;
11017
Bram Moolenaar18144c82006-04-12 21:52:12 +000011018 /*
11019 * Save current window layout.
11020 */
11021 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011022 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000011023 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011024 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011025 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
11026 return FAIL;
11027 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
11028 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011029
Bram Moolenaar18144c82006-04-12 21:52:12 +000011030 /*
11031 * Check if window sizes can be restored (no windows omitted).
11032 * Remember the window number of the current window after restoring.
11033 */
11034 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011035 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +000011036 {
11037 if (ses_do_win(wp))
11038 ++nr;
11039 else
11040 restore_size = FALSE;
11041 if (curwin == wp)
11042 cnr = nr;
11043 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011044
Bram Moolenaar18144c82006-04-12 21:52:12 +000011045 /* Go to the first window. */
11046 if (put_line(fd, "wincmd t") == FAIL)
11047 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000011048
Bram Moolenaar18144c82006-04-12 21:52:12 +000011049 /*
11050 * If more than one window, see if sizes can be restored.
11051 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
11052 * resized when moving between windows.
11053 * Do this before restoring the view, so that the topline and the
11054 * cursor can be set. This is done again below.
11055 */
11056 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
11057 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011058 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011059 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011060
Bram Moolenaar18144c82006-04-12 21:52:12 +000011061 /*
11062 * Restore the view of the window (options, file, cursor, etc.).
11063 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011064 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011065 {
11066 if (!ses_do_win(wp))
11067 continue;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011068 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
11069 cur_arg_idx) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011070 return FAIL;
11071 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
11072 return FAIL;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011073 next_arg_idx = wp->w_arg_idx;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011074 }
11075
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011076 /* The argument index in the first tab page is zero, need to set it in
11077 * each window. For further tab pages it's the window where we do
11078 * "tabedit". */
11079 cur_arg_idx = next_arg_idx;
11080
Bram Moolenaar18144c82006-04-12 21:52:12 +000011081 /*
11082 * Restore cursor to the current window if it's not the first one.
11083 */
11084 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
11085 || put_eol(fd) == FAIL))
11086 return FAIL;
11087
11088 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000011089 * Restore window sizes again after jumping around in windows, because
11090 * the current window has a minimum size while others may not.
11091 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011092 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000011093 return FAIL;
11094
Bram Moolenaar18144c82006-04-12 21:52:12 +000011095 /* Don't continue in another tab page when doing only the current one
11096 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011097 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +000011098 break;
11099 }
11100
11101 if (ssop_flags & SSOP_TABPAGES)
11102 {
Bram Moolenaar18144c82006-04-12 21:52:12 +000011103 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
11104 || put_eol(fd) == FAIL)
11105 return FAIL;
11106 }
Bram Moolenaar04ad7fe2014-05-07 21:14:47 +020011107 if (restore_stal && put_line(fd, "set stal=1") == FAIL)
11108 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000011109
Bram Moolenaar9c102382006-05-03 21:26:49 +000011110 /*
11111 * Wipe out an empty unnamed buffer we started in.
11112 */
11113 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
11114 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +000011115 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +000011116 return FAIL;
11117 if (put_line(fd, "endif") == FAIL)
11118 return FAIL;
11119 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
11120 return FAIL;
11121
11122 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
11123 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
11124 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
11125 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011126
11127 /*
11128 * Lastly, execute the x.vim file if it exists.
11129 */
11130 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
11131 || put_line(fd, "if file_readable(s:sx)") == FAIL
Bram Moolenaar42ba1262008-12-09 10:18:03 +000011132 || put_line(fd, " exe \"source \" . fnameescape(s:sx)") == FAIL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011133 || put_line(fd, "endif") == FAIL)
11134 return FAIL;
11135
11136 return OK;
11137}
11138
11139 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011140ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011141 FILE *fd;
11142 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011143 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011144{
11145 int n = 0;
11146 win_T *wp;
11147
11148 if (restore_size && (ssop_flags & SSOP_WINSIZE))
11149 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000011150 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011151 {
11152 if (!ses_do_win(wp))
11153 continue;
11154 ++n;
11155
11156 /* restore height when not full height */
11157 if (wp->w_height + wp->w_status_height < topframe->fr_height
11158 && (fprintf(fd,
11159 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
11160 n, (long)wp->w_height, Rows / 2, Rows) < 0
11161 || put_eol(fd) == FAIL))
11162 return FAIL;
11163
11164 /* restore width when not full width */
11165 if (wp->w_width < Columns && (fprintf(fd,
11166 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
11167 n, (long)wp->w_width, Columns / 2, Columns) < 0
11168 || put_eol(fd) == FAIL))
11169 return FAIL;
11170 }
11171 }
11172 else
11173 {
11174 /* Just equalise window sizes */
11175 if (put_line(fd, "wincmd =") == FAIL)
11176 return FAIL;
11177 }
11178 return OK;
11179}
11180
11181/*
11182 * Write commands to "fd" to recursively create windows for frame "fr",
11183 * horizontally and vertically split.
11184 * After the commands the last window in the frame is the current window.
11185 * Returns FAIL when writing the commands to "fd" fails.
11186 */
11187 static int
11188ses_win_rec(fd, fr)
11189 FILE *fd;
11190 frame_T *fr;
11191{
11192 frame_T *frc;
11193 int count = 0;
11194
11195 if (fr->fr_layout != FR_LEAF)
11196 {
11197 /* Find first frame that's not skipped and then create a window for
11198 * each following one (first frame is already there). */
11199 frc = ses_skipframe(fr->fr_child);
11200 if (frc != NULL)
11201 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
11202 {
11203 /* Make window as big as possible so that we have lots of room
11204 * to split. */
11205 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
11206 || put_line(fd, fr->fr_layout == FR_COL
11207 ? "split" : "vsplit") == FAIL)
11208 return FAIL;
11209 ++count;
11210 }
11211
11212 /* Go back to the first window. */
11213 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
11214 ? "%dwincmd k" : "%dwincmd h", count) < 0
11215 || put_eol(fd) == FAIL))
11216 return FAIL;
11217
11218 /* Recursively create frames/windows in each window of this column or
11219 * row. */
11220 frc = ses_skipframe(fr->fr_child);
11221 while (frc != NULL)
11222 {
11223 ses_win_rec(fd, frc);
11224 frc = ses_skipframe(frc->fr_next);
11225 /* Go to next window. */
11226 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
11227 return FAIL;
11228 }
11229 }
11230 return OK;
11231}
11232
11233/*
11234 * Skip frames that don't contain windows we want to save in the Session.
11235 * Returns NULL when there none.
11236 */
11237 static frame_T *
11238ses_skipframe(fr)
11239 frame_T *fr;
11240{
11241 frame_T *frc;
11242
11243 for (frc = fr; frc != NULL; frc = frc->fr_next)
11244 if (ses_do_frame(frc))
11245 break;
11246 return frc;
11247}
11248
11249/*
11250 * Return TRUE if frame "fr" has a window somewhere that we want to save in
11251 * the Session.
11252 */
11253 static int
11254ses_do_frame(fr)
11255 frame_T *fr;
11256{
11257 frame_T *frc;
11258
11259 if (fr->fr_layout == FR_LEAF)
11260 return ses_do_win(fr->fr_win);
11261 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
11262 if (ses_do_frame(frc))
11263 return TRUE;
11264 return FALSE;
11265}
11266
11267/*
11268 * Return non-zero if window "wp" is to be stored in the Session.
11269 */
11270 static int
11271ses_do_win(wp)
11272 win_T *wp;
11273{
11274 if (wp->w_buffer->b_fname == NULL
11275#ifdef FEAT_QUICKFIX
11276 /* When 'buftype' is "nofile" can't restore the window contents. */
11277 || bt_nofile(wp->w_buffer)
11278#endif
11279 )
11280 return (ssop_flags & SSOP_BLANK);
11281 if (wp->w_buffer->b_help)
11282 return (ssop_flags & SSOP_HELP);
11283 return TRUE;
11284}
11285
11286/*
11287 * Write commands to "fd" to restore the view of a window.
11288 * Caller must make sure 'scrolloff' is zero.
11289 */
11290 static int
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011291put_view(fd, wp, add_edit, flagp, current_arg_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011292 FILE *fd;
11293 win_T *wp;
11294 int add_edit; /* add ":edit" command to view */
11295 unsigned *flagp; /* vop_flags or ssop_flags */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011296 int current_arg_idx; /* current argument index of the window, use
11297 * -1 if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011298{
11299 win_T *save_curwin;
11300 int f;
11301 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011302 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011303
11304 /* Always restore cursor position for ":mksession". For ":mkview" only
11305 * when 'viewoptions' contains "cursor". */
11306 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
11307
11308 /*
11309 * Local argument list.
11310 */
11311 if (wp->w_alist == &global_alist)
11312 {
11313 if (put_line(fd, "argglobal") == FAIL)
11314 return FAIL;
11315 }
11316 else
11317 {
11318 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
11319 flagp == &vop_flags
11320 || !(*flagp & SSOP_CURDIR)
11321 || wp->w_localdir != NULL, flagp) == FAIL)
11322 return FAIL;
11323 }
11324
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011325 /* Only when part of a session: restore the argument index. Some
11326 * arguments may have been deleted, check if the index is valid. */
Bram Moolenaar51f53df2010-06-26 05:25:54 +020011327 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx < WARGCOUNT(wp)
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011328 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011329 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000011330 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011331 || put_eol(fd) == FAIL)
11332 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011333 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011334 }
11335
11336 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000011337 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000011338 {
11339 /*
11340 * Load the file.
11341 */
11342 if (wp->w_buffer->b_ffname != NULL
11343#ifdef FEAT_QUICKFIX
11344 && !bt_nofile(wp->w_buffer)
11345#endif
11346 )
11347 {
11348 /*
11349 * Editing a file in this buffer: use ":edit file".
11350 * This may have side effects! (e.g., compressed or network file).
11351 */
11352 if (fputs("edit ", fd) < 0
11353 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
11354 return FAIL;
11355 }
11356 else
11357 {
11358 /* No file in this buffer, just make it empty. */
11359 if (put_line(fd, "enew") == FAIL)
11360 return FAIL;
11361#ifdef FEAT_QUICKFIX
11362 if (wp->w_buffer->b_ffname != NULL)
11363 {
11364 /* The buffer does have a name, but it's not a file name. */
11365 if (fputs("file ", fd) < 0
11366 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
11367 return FAIL;
11368 }
11369#endif
11370 do_cursor = FALSE;
11371 }
11372 }
11373
11374 /*
11375 * Local mappings and abbreviations.
11376 */
11377 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
11378 && makemap(fd, wp->w_buffer) == FAIL)
11379 return FAIL;
11380
11381 /*
11382 * Local options. Need to go to the window temporarily.
11383 * Store only local values when using ":mkview" and when ":mksession" is
11384 * used and 'sessionoptions' doesn't include "options".
11385 * Some folding options are always stored when "folds" is included,
11386 * otherwise the folds would not be restored correctly.
11387 */
11388 save_curwin = curwin;
11389 curwin = wp;
11390 curbuf = curwin->w_buffer;
11391 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
11392 f = makeset(fd, OPT_LOCAL,
11393 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
11394#ifdef FEAT_FOLDING
11395 else if (*flagp & SSOP_FOLDS)
11396 f = makefoldset(fd);
11397#endif
11398 else
11399 f = OK;
11400 curwin = save_curwin;
11401 curbuf = curwin->w_buffer;
11402 if (f == FAIL)
11403 return FAIL;
11404
11405#ifdef FEAT_FOLDING
11406 /*
11407 * Save Folds when 'buftype' is empty and for help files.
11408 */
11409 if ((*flagp & SSOP_FOLDS)
11410 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000011411# ifdef FEAT_QUICKFIX
11412 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
11413# endif
11414 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000011415 {
11416 if (put_folds(fd, wp) == FAIL)
11417 return FAIL;
11418 }
11419#endif
11420
11421 /*
11422 * Set the cursor after creating folds, since that moves the cursor.
11423 */
11424 if (do_cursor)
11425 {
11426
11427 /* Restore the cursor line in the file and relatively in the
11428 * window. Don't use "G", it changes the jumplist. */
11429 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
11430 (long)wp->w_cursor.lnum,
11431 (long)(wp->w_cursor.lnum - wp->w_topline),
11432 (long)wp->w_height / 2, (long)wp->w_height) < 0
11433 || put_eol(fd) == FAIL
11434 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
11435 || put_line(fd, "exe s:l") == FAIL
11436 || put_line(fd, "normal! zt") == FAIL
11437 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
11438 || put_eol(fd) == FAIL)
11439 return FAIL;
11440 /* Restore the cursor column and left offset when not wrapping. */
11441 if (wp->w_cursor.col == 0)
11442 {
11443 if (put_line(fd, "normal! 0") == FAIL)
11444 return FAIL;
11445 }
11446 else
11447 {
11448 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
11449 {
11450 if (fprintf(fd,
11451 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011452 (long)wp->w_virtcol + 1,
11453 (long)(wp->w_virtcol - wp->w_leftcol),
Bram Moolenaar071d4272004-06-13 20:20:40 +000011454 (long)wp->w_width / 2, (long)wp->w_width) < 0
11455 || put_eol(fd) == FAIL
11456 || put_line(fd, "if s:c > 0") == FAIL
11457 || fprintf(fd,
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011458 " exe 'normal! ' . s:c . '|zs' . %ld . '|'",
11459 (long)wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011460 || put_eol(fd) == FAIL
11461 || put_line(fd, "else") == FAIL
Bram Moolenaarfdf447b2013-02-26 17:21:29 +010011462 || fprintf(fd, " normal! 0%d|", wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011463 || put_eol(fd) == FAIL
11464 || put_line(fd, "endif") == FAIL)
11465 return FAIL;
11466 }
11467 else
11468 {
Bram Moolenaar558ddad2013-02-20 19:26:29 +010011469 if (fprintf(fd, "normal! 0%d|", wp->w_virtcol + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000011470 || put_eol(fd) == FAIL)
11471 return FAIL;
11472 }
11473 }
11474 }
11475
11476 /*
11477 * Local directory.
11478 */
11479 if (wp->w_localdir != NULL)
11480 {
11481 if (fputs("lcd ", fd) < 0
11482 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
11483 || put_eol(fd) == FAIL)
11484 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011485 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011486 }
11487
11488 return OK;
11489}
11490
11491/*
11492 * Write an argument list to the session file.
11493 * Returns FAIL if writing fails.
11494 */
11495 static int
11496ses_arglist(fd, cmd, gap, fullname, flagp)
11497 FILE *fd;
11498 char *cmd;
11499 garray_T *gap;
11500 int fullname; /* TRUE: use full path name */
11501 unsigned *flagp;
11502{
11503 int i;
Bram Moolenaard9462e32011-04-11 21:35:11 +020011504 char_u *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011505 char_u *s;
11506
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011507 if (fputs(cmd, fd) < 0 || put_eol(fd) == FAIL)
11508 return FAIL;
11509 if (put_line(fd, "silent! argdel *") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011510 return FAIL;
11511 for (i = 0; i < gap->ga_len; ++i)
11512 {
11513 /* NULL file names are skipped (only happens when out of memory). */
11514 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
11515 if (s != NULL)
11516 {
11517 if (fullname)
11518 {
Bram Moolenaard9462e32011-04-11 21:35:11 +020011519 buf = alloc(MAXPATHL);
11520 if (buf != NULL)
11521 {
11522 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
11523 s = buf;
11524 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011525 }
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011526 if (fputs("argadd ", fd) < 0
11527 || ses_put_fname(fd, s, flagp) == FAIL
11528 || put_eol(fd) == FAIL)
Bram Moolenaard9462e32011-04-11 21:35:11 +020011529 {
11530 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011531 return FAIL;
Bram Moolenaard9462e32011-04-11 21:35:11 +020011532 }
11533 vim_free(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011534 }
11535 }
Bram Moolenaarf0bdd2f2014-03-12 21:28:26 +010011536 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011537}
11538
11539/*
11540 * Write a buffer name to the session file.
11541 * Also ends the line.
11542 * Returns FAIL if writing fails.
11543 */
11544 static int
11545ses_fname(fd, buf, flagp)
11546 FILE *fd;
11547 buf_T *buf;
11548 unsigned *flagp;
11549{
11550 char_u *name;
11551
11552 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011553 * the session file will be sourced.
11554 * Don't do this for ":mkview", we don't know the current directory.
11555 * Don't do this after ":lcd", we don't keep track of what the current
11556 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011557 if (buf->b_sfname != NULL
11558 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011559 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
Bram Moolenaar8d594672009-07-01 18:18:57 +000011560#ifdef FEAT_AUTOCHDIR
11561 && !p_acd
11562#endif
Bram Moolenaareeefcc72007-05-01 21:21:21 +000011563 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011564 name = buf->b_sfname;
11565 else
11566 name = buf->b_ffname;
11567 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
11568 return FAIL;
11569 return OK;
11570}
11571
11572/*
11573 * Write a file name to the session file.
11574 * Takes care of the "slash" option in 'sessionoptions' and escapes special
11575 * characters.
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011576 * Returns FAIL if writing fails or out of memory.
Bram Moolenaar071d4272004-06-13 20:20:40 +000011577 */
11578 static int
11579ses_put_fname(fd, name, flagp)
11580 FILE *fd;
11581 char_u *name;
11582 unsigned *flagp;
11583{
11584 char_u *sname;
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011585 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011586 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011587
11588 sname = home_replace_save(NULL, name);
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011589 if (sname == NULL)
11590 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011591
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011592 if (*flagp & SSOP_SLASH)
11593 {
11594 /* change all backslashes to forward slashes */
11595 for (p = sname; *p != NUL; mb_ptr_adv(p))
11596 if (*p == '\\')
11597 *p = '/';
Bram Moolenaar071d4272004-06-13 20:20:40 +000011598 }
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011599
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020011600 /* escape special characters */
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011601 p = vim_strsave_fnameescape(sname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011602 vim_free(sname);
Bram Moolenaar78f74a92010-10-13 17:50:07 +020011603 if (p == NULL)
11604 return FAIL;
11605
11606 /* write the result */
11607 if (fputs((char *)p, fd) < 0)
11608 retval = FAIL;
11609
11610 vim_free(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011611 return retval;
11612}
11613
11614/*
11615 * ":loadview [nr]"
11616 */
11617 static void
11618ex_loadview(eap)
11619 exarg_T *eap;
11620{
11621 char_u *fname;
11622
11623 fname = get_view_file(*eap->arg);
11624 if (fname != NULL)
11625 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000011626 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011627 vim_free(fname);
11628 }
11629}
11630
11631/*
11632 * Get the name of the view file for the current buffer.
11633 */
11634 static char_u *
11635get_view_file(c)
11636 int c;
11637{
11638 int len = 0;
11639 char_u *p, *s;
11640 char_u *retval;
11641 char_u *sname;
11642
11643 if (curbuf->b_ffname == NULL)
11644 {
11645 EMSG(_(e_noname));
11646 return NULL;
11647 }
11648 sname = home_replace_save(NULL, curbuf->b_ffname);
11649 if (sname == NULL)
11650 return NULL;
11651
11652 /*
11653 * We want a file name without separators, because we're not going to make
11654 * a directory.
11655 * "normal" path separator -> "=+"
11656 * "=" -> "=="
11657 * ":" path separator -> "=-"
11658 */
11659 for (p = sname; *p; ++p)
11660 if (*p == '=' || vim_ispathsep(*p))
11661 ++len;
11662 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
11663 if (retval != NULL)
11664 {
11665 STRCPY(retval, p_vdir);
11666 add_pathsep(retval);
11667 s = retval + STRLEN(retval);
11668 for (p = sname; *p; ++p)
11669 {
11670 if (*p == '=')
11671 {
11672 *s++ = '=';
11673 *s++ = '=';
11674 }
11675 else if (vim_ispathsep(*p))
11676 {
11677 *s++ = '=';
Bram Moolenaare60acc12011-05-10 16:41:25 +020011678#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011679 if (*p == ':')
11680 *s++ = '-';
11681 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000011682#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000011683 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000011684 }
11685 else
11686 *s++ = *p;
11687 }
11688 *s++ = '=';
11689 *s++ = c;
11690 STRCPY(s, ".vim");
11691 }
11692
11693 vim_free(sname);
11694 return retval;
11695}
11696
11697#endif /* FEAT_SESSION */
11698
11699/*
11700 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
11701 * Return FAIL for a write error.
11702 */
11703 int
11704put_eol(fd)
11705 FILE *fd;
11706{
11707 if (
11708#ifdef USE_CRNL
11709 (
11710# ifdef MKSESSION_NL
11711 !mksession_nl &&
11712# endif
11713 (putc('\r', fd) < 0)) ||
11714#endif
11715 (putc('\n', fd) < 0))
11716 return FAIL;
11717 return OK;
11718}
11719
11720/*
11721 * Write a line to "fd".
11722 * Return FAIL for a write error.
11723 */
11724 int
11725put_line(fd, s)
11726 FILE *fd;
11727 char *s;
11728{
11729 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
11730 return FAIL;
11731 return OK;
11732}
11733
11734#ifdef FEAT_VIMINFO
11735/*
11736 * ":rviminfo" and ":wviminfo".
11737 */
11738 static void
11739ex_viminfo(eap)
11740 exarg_T *eap;
11741{
11742 char_u *save_viminfo;
11743
11744 save_viminfo = p_viminfo;
11745 if (*p_viminfo == NUL)
11746 p_viminfo = (char_u *)"'100";
11747 if (eap->cmdidx == CMD_rviminfo)
11748 {
Bram Moolenaard812df62008-11-09 12:46:09 +000011749 if (read_viminfo(eap->arg, VIF_WANT_INFO | VIF_WANT_MARKS
11750 | (eap->forceit ? VIF_FORCEIT : 0)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011751 EMSG(_("E195: Cannot open viminfo file for reading"));
11752 }
11753 else
11754 write_viminfo(eap->arg, eap->forceit);
11755 p_viminfo = save_viminfo;
11756}
11757#endif
11758
11759#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000011760/*
Bram Moolenaard9462e32011-04-11 21:35:11 +020011761 * Make a dialog message in "buff[DIALOG_MSG_SIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000011762 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000011763 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011764 void
11765dialog_msg(buff, format, fname)
11766 char_u *buff;
11767 char *format;
11768 char_u *fname;
11769{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011770 if (fname == NULL)
11771 fname = (char_u *)_("Untitled");
Bram Moolenaard9462e32011-04-11 21:35:11 +020011772 vim_snprintf((char *)buff, DIALOG_MSG_SIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011773}
11774#endif
11775
11776/*
11777 * ":behave {mswin,xterm}"
11778 */
11779 static void
11780ex_behave(eap)
11781 exarg_T *eap;
11782{
11783 if (STRCMP(eap->arg, "mswin") == 0)
11784 {
11785 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
11786 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
11787 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
11788 set_option_value((char_u *)"keymodel", 0L,
11789 (char_u *)"startsel,stopsel", 0);
11790 }
11791 else if (STRCMP(eap->arg, "xterm") == 0)
11792 {
11793 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
11794 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
11795 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
11796 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
11797 }
11798 else
11799 EMSG2(_(e_invarg2), eap->arg);
11800}
11801
Bram Moolenaar42b4dda2010-03-02 15:56:05 +010011802#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
11803/*
11804 * Function given to ExpandGeneric() to obtain the possible arguments of the
11805 * ":behave {mswin,xterm}" command.
11806 */
11807 char_u *
11808get_behave_arg(xp, idx)
11809 expand_T *xp UNUSED;
11810 int idx;
11811{
11812 if (idx == 0)
11813 return (char_u *)"mswin";
11814 if (idx == 1)
11815 return (char_u *)"xterm";
11816 return NULL;
11817}
11818#endif
11819
Bram Moolenaar071d4272004-06-13 20:20:40 +000011820#ifdef FEAT_AUTOCMD
11821static int filetype_detect = FALSE;
11822static int filetype_plugin = FALSE;
11823static int filetype_indent = FALSE;
11824
11825/*
11826 * ":filetype [plugin] [indent] {on,off,detect}"
11827 * on: Load the filetype.vim file to install autocommands for file types.
11828 * off: Load the ftoff.vim file to remove all autocommands for file types.
11829 * plugin on: load filetype.vim and ftplugin.vim
11830 * plugin off: load ftplugof.vim
11831 * indent on: load filetype.vim and indent.vim
11832 * indent off: load indoff.vim
11833 */
11834 static void
11835ex_filetype(eap)
11836 exarg_T *eap;
11837{
11838 char_u *arg = eap->arg;
11839 int plugin = FALSE;
11840 int indent = FALSE;
11841
11842 if (*eap->arg == NUL)
11843 {
11844 /* Print current status. */
11845 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
11846 filetype_detect ? "ON" : "OFF",
11847 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
11848 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
11849 return;
11850 }
11851
11852 /* Accept "plugin" and "indent" in any order. */
11853 for (;;)
11854 {
11855 if (STRNCMP(arg, "plugin", 6) == 0)
11856 {
11857 plugin = TRUE;
11858 arg = skipwhite(arg + 6);
11859 continue;
11860 }
11861 if (STRNCMP(arg, "indent", 6) == 0)
11862 {
11863 indent = TRUE;
11864 arg = skipwhite(arg + 6);
11865 continue;
11866 }
11867 break;
11868 }
11869 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
11870 {
11871 if (*arg == 'o' || !filetype_detect)
11872 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011873 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011874 filetype_detect = TRUE;
11875 if (plugin)
11876 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011877 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011878 filetype_plugin = TRUE;
11879 }
11880 if (indent)
11881 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011882 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011883 filetype_indent = TRUE;
11884 }
11885 }
11886 if (*arg == 'd')
11887 {
11888 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000011889 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011890 }
11891 }
11892 else if (STRCMP(arg, "off") == 0)
11893 {
11894 if (plugin || indent)
11895 {
11896 if (plugin)
11897 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011898 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011899 filetype_plugin = FALSE;
11900 }
11901 if (indent)
11902 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011903 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011904 filetype_indent = FALSE;
11905 }
11906 }
11907 else
11908 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000011909 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011910 filetype_detect = FALSE;
11911 }
11912 }
11913 else
11914 EMSG2(_(e_invarg2), arg);
11915}
11916
11917/*
11918 * ":setfiletype {name}"
11919 */
11920 static void
11921ex_setfiletype(eap)
11922 exarg_T *eap;
11923{
11924 if (!did_filetype)
11925 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
11926}
11927#endif
11928
Bram Moolenaar071d4272004-06-13 20:20:40 +000011929 static void
11930ex_digraphs(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000011931 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011932{
11933#ifdef FEAT_DIGRAPHS
11934 if (*eap->arg != NUL)
11935 putdigraph(eap->arg);
11936 else
11937 listdigraphs();
11938#else
11939 EMSG(_("E196: No digraphs in this version"));
11940#endif
11941}
11942
11943 static void
11944ex_set(eap)
11945 exarg_T *eap;
11946{
11947 int flags = 0;
11948
11949 if (eap->cmdidx == CMD_setlocal)
11950 flags = OPT_LOCAL;
11951 else if (eap->cmdidx == CMD_setglobal)
11952 flags = OPT_GLOBAL;
11953#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
11954 if (cmdmod.browse && flags == 0)
11955 ex_options(eap);
11956 else
11957#endif
11958 (void)do_set(eap->arg, flags);
11959}
11960
11961#ifdef FEAT_SEARCH_EXTRA
11962/*
11963 * ":nohlsearch"
11964 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011965 static void
11966ex_nohlsearch(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000011967 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011968{
Bram Moolenaar8050efa2013-11-08 04:30:20 +010011969 SET_NO_HLSEARCH(TRUE);
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000011970 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011971}
11972
11973/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000011974 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000011975 * Sets nextcmd to the start of the next command, if any. Also called when
11976 * skipping commands to find the next command.
11977 */
11978 static void
11979ex_match(eap)
11980 exarg_T *eap;
11981{
11982 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000011983 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011984 char_u *end;
11985 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011986 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000011987
11988 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011989 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000011990 else
11991 {
11992 EMSG(e_invcmd);
11993 return;
11994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011995
11996 /* First clear any old pattern. */
11997 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011998 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011999
12000 if (ends_excmd(*eap->arg))
12001 end = eap->arg;
12002 else if ((STRNICMP(eap->arg, "none", 4) == 0
12003 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
12004 end = eap->arg + 4;
12005 else
12006 {
12007 p = skiptowhite(eap->arg);
12008 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012009 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012010 p = skipwhite(p);
12011 if (*p == NUL)
12012 {
12013 /* There must be two arguments. */
12014 EMSG2(_(e_invarg2), eap->arg);
12015 return;
12016 }
12017 end = skip_regexp(p + 1, *p, TRUE, NULL);
12018 if (!eap->skip)
12019 {
12020 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
12021 {
12022 eap->errmsg = e_trailing;
12023 return;
12024 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000012025 if (*end != *p)
12026 {
12027 EMSG2(_(e_invarg2), p);
12028 return;
12029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012030
12031 c = *end;
12032 *end = NUL;
Bram Moolenaarb3414592014-06-17 17:48:32 +020012033 match_add(curwin, g, p + 1, 10, id, NULL);
Bram Moolenaar6ee10162007-07-26 20:58:42 +000012034 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012035 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012036 }
12037 }
12038 eap->nextcmd = find_nextcmd(end);
12039}
12040#endif
12041
12042#ifdef FEAT_CRYPT
12043/*
12044 * ":X": Get crypt key
12045 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012046 static void
12047ex_X(eap)
Bram Moolenaar78a15312009-05-15 19:33:18 +000012048 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012049{
Bram Moolenaar3a0c9082014-11-12 15:15:42 +010012050 crypt_check_current_method();
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020012051 (void)crypt_get_key(TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012052}
12053#endif
12054
12055#ifdef FEAT_FOLDING
12056 static void
12057ex_fold(eap)
12058 exarg_T *eap;
12059{
12060 if (foldManualAllowed(TRUE))
12061 foldCreate(eap->line1, eap->line2);
12062}
12063
12064 static void
12065ex_foldopen(eap)
12066 exarg_T *eap;
12067{
12068 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
12069 eap->forceit, FALSE);
12070}
12071
12072 static void
12073ex_folddo(eap)
12074 exarg_T *eap;
12075{
12076 linenr_T lnum;
12077
Bram Moolenaar6b1ee342014-08-06 18:17:11 +020012078#ifdef FEAT_CLIPBOARD
12079 start_global_changes();
12080#endif
12081
Bram Moolenaar071d4272004-06-13 20:20:40 +000012082 /* First set the marks for all lines closed/open. */
12083 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
12084 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
12085 ml_setmarked(lnum);
12086
12087 /* Execute the command on the marked lines. */
12088 global_exe(eap->arg);
12089 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar6b1ee342014-08-06 18:17:11 +020012090#ifdef FEAT_CLIPBOARD
12091 end_global_changes();
12092#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012093}
12094#endif