blob: 701354ee070a0de90ce292574131229f3ca10c8f [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
16#ifdef HAVE_FCNTL_H
17# include <fcntl.h> /* for chdir() */
18#endif
19
20static int quitmore = 0;
21static int ex_pressedreturn = FALSE;
22#ifndef FEAT_PRINTER
23# define ex_hardcopy ex_ni
24#endif
25
26#ifdef FEAT_USR_CMDS
27typedef struct ucmd
28{
29 char_u *uc_name; /* The command name */
30 long_u uc_argt; /* The argument type */
31 char_u *uc_rep; /* The command's replacement string */
32 long uc_def; /* The default value for a range/count */
33 scid_T uc_scriptID; /* SID where the command was defined */
34 int uc_compl; /* completion type */
35# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
36 char_u *uc_compl_arg; /* completion argument if any */
37# endif
38} ucmd_T;
39
40#define UC_BUFFER 1 /* -buffer: local to current buffer */
41
Bram Moolenaar2c29bee2005-06-01 21:46:07 +000042static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +000043
44#define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
45#define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
46
47static void do_ucmd __ARGS((exarg_T *eap));
48static void ex_command __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000049static void ex_delcommand __ARGS((exarg_T *eap));
50# ifdef FEAT_CMDL_COMPL
51static char_u *get_user_command_name __ARGS((int idx));
52# endif
53
54#else
55# define ex_command ex_ni
56# define ex_comclear ex_ni
57# define ex_delcommand ex_ni
58#endif
59
60#ifdef FEAT_EVAL
Bram Moolenaar89d40322006-08-29 15:30:07 +000061static 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 +000062#else
Bram Moolenaar89d40322006-08-29 15:30:07 +000063static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000064static int if_level = 0; /* depth in :if */
65#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000066static char_u *find_command __ARGS((exarg_T *eap, int *full));
67
68static void ex_abbreviate __ARGS((exarg_T *eap));
69static void ex_map __ARGS((exarg_T *eap));
70static void ex_unmap __ARGS((exarg_T *eap));
71static void ex_mapclear __ARGS((exarg_T *eap));
72static void ex_abclear __ARGS((exarg_T *eap));
73#ifndef FEAT_MENU
74# define ex_emenu ex_ni
75# define ex_menu ex_ni
76# define ex_menutranslate ex_ni
77#endif
78#ifdef FEAT_AUTOCMD
79static void ex_autocmd __ARGS((exarg_T *eap));
80static void ex_doautocmd __ARGS((exarg_T *eap));
81#else
82# define ex_autocmd ex_ni
83# define ex_doautocmd ex_ni
84# define ex_doautoall ex_ni
85#endif
86#ifdef FEAT_LISTCMDS
87static void ex_bunload __ARGS((exarg_T *eap));
88static void ex_buffer __ARGS((exarg_T *eap));
89static void ex_bmodified __ARGS((exarg_T *eap));
90static void ex_bnext __ARGS((exarg_T *eap));
91static void ex_bprevious __ARGS((exarg_T *eap));
92static void ex_brewind __ARGS((exarg_T *eap));
93static void ex_blast __ARGS((exarg_T *eap));
94#else
95# define ex_bunload ex_ni
96# define ex_buffer ex_ni
97# define ex_bmodified ex_ni
98# define ex_bnext ex_ni
99# define ex_bprevious ex_ni
100# define ex_brewind ex_ni
101# define ex_blast ex_ni
102# define buflist_list ex_ni
103# define ex_checktime ex_ni
104#endif
105#if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
106# define ex_buffer_all ex_ni
107#endif
108static char_u *getargcmd __ARGS((char_u **));
109static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
110static int getargopt __ARGS((exarg_T *eap));
111#ifndef FEAT_QUICKFIX
112# define ex_make ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000113# define ex_cbuffer ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114# define ex_cc ex_ni
115# define ex_cnext ex_ni
116# define ex_cfile ex_ni
117# define qf_list ex_ni
118# define qf_age ex_ni
119# define ex_helpgrep ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000120# define ex_vimgrep ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121#endif
122#if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
123# define ex_cclose ex_ni
124# define ex_copen ex_ni
125# define ex_cwindow ex_ni
126#endif
Bram Moolenaar1e015462005-09-25 22:16:38 +0000127#if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
128# define ex_cexpr ex_ni
129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130
131static int check_more __ARGS((int, int));
132static linenr_T get_address __ARGS((char_u **, int skip, int to_other_file));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000133static void get_flags __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000135 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
Bram Moolenaar7bb75552007-07-16 18:39:49 +0000136# define HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137static void ex_script_ni __ARGS((exarg_T *eap));
138#endif
139static char_u *invalid_range __ARGS((exarg_T *eap));
140static void correct_range __ARGS((exarg_T *eap));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000141#ifdef FEAT_QUICKFIX
142static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
145static void ex_highlight __ARGS((exarg_T *eap));
146static void ex_colorscheme __ARGS((exarg_T *eap));
147static void ex_quit __ARGS((exarg_T *eap));
148static void ex_cquit __ARGS((exarg_T *eap));
149static void ex_quit_all __ARGS((exarg_T *eap));
150#ifdef FEAT_WINDOWS
151static void ex_close __ARGS((exarg_T *eap));
Bram Moolenaarf740b292006-02-16 22:11:02 +0000152static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153static void ex_only __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154static void ex_resize __ARGS((exarg_T *eap));
155static void ex_stag __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000156static void ex_tabclose __ARGS((exarg_T *eap));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000157static void ex_tabonly __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000158static void ex_tabnext __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000159static void ex_tabmove __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000160static void ex_tabs __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161#else
162# define ex_close ex_ni
163# define ex_only ex_ni
164# define ex_all ex_ni
165# define ex_resize ex_ni
166# define ex_splitview ex_ni
167# define ex_stag ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000168# define ex_tabnext ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000169# define ex_tabmove ex_ni
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000170# define ex_tabs ex_ni
171# define ex_tabclose ex_ni
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000172# define ex_tabonly ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173#endif
174#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
175static void ex_pclose __ARGS((exarg_T *eap));
176static void ex_ptag __ARGS((exarg_T *eap));
177static void ex_pedit __ARGS((exarg_T *eap));
178#else
179# define ex_pclose ex_ni
180# define ex_ptag ex_ni
181# define ex_pedit ex_ni
182#endif
183static void ex_hide __ARGS((exarg_T *eap));
184static void ex_stop __ARGS((exarg_T *eap));
185static void ex_exit __ARGS((exarg_T *eap));
186static void ex_print __ARGS((exarg_T *eap));
187#ifdef FEAT_BYTEOFF
188static void ex_goto __ARGS((exarg_T *eap));
189#else
190# define ex_goto ex_ni
191#endif
192static void ex_shell __ARGS((exarg_T *eap));
193static void ex_preserve __ARGS((exarg_T *eap));
194static void ex_recover __ARGS((exarg_T *eap));
195#ifndef FEAT_LISTCMDS
196# define ex_argedit ex_ni
197# define ex_argadd ex_ni
198# define ex_argdelete ex_ni
199# define ex_listdo ex_ni
200#endif
201static void ex_mode __ARGS((exarg_T *eap));
202static void ex_wrongmodifier __ARGS((exarg_T *eap));
203static void ex_find __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000204static void ex_open __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205static void ex_edit __ARGS((exarg_T *eap));
206#if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
207# define ex_drop ex_ni
208#endif
209#ifndef FEAT_GUI
210# define ex_gui ex_nogui
211static void ex_nogui __ARGS((exarg_T *eap));
212#endif
213#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
214static void ex_tearoff __ARGS((exarg_T *eap));
215#else
216# define ex_tearoff ex_ni
217#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000218#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219static void ex_popup __ARGS((exarg_T *eap));
220#else
221# define ex_popup ex_ni
222#endif
223#ifndef FEAT_GUI_MSWIN
224# define ex_simalt ex_ni
225#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000226#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227# define gui_mch_find_dialog ex_ni
228# define gui_mch_replace_dialog ex_ni
229#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000230#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231# define ex_helpfind ex_ni
232#endif
233#ifndef FEAT_CSCOPE
234# define do_cscope ex_ni
235# define do_scscope ex_ni
236# define do_cstag ex_ni
237#endif
238#ifndef FEAT_SYN_HL
239# define ex_syntax ex_ni
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000240#endif
241#ifndef FEAT_SPELL
Bram Moolenaarb765d632005-06-07 21:00:02 +0000242# define ex_spell ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000243# define ex_mkspell ex_ni
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000244# define ex_spelldump ex_ni
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000245# define ex_spellinfo ex_ni
Bram Moolenaara1ba8112005-06-28 23:23:32 +0000246# define ex_spellrepall ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000247#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000248#ifndef FEAT_MZSCHEME
249# define ex_mzscheme ex_script_ni
250# define ex_mzfile ex_ni
251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252#ifndef FEAT_PERL
253# define ex_perl ex_script_ni
254# define ex_perldo ex_ni
255#endif
256#ifndef FEAT_PYTHON
257# define ex_python ex_script_ni
258# define ex_pyfile ex_ni
259#endif
260#ifndef FEAT_TCL
261# define ex_tcl ex_script_ni
262# define ex_tcldo ex_ni
263# define ex_tclfile ex_ni
264#endif
265#ifndef FEAT_RUBY
266# define ex_ruby ex_script_ni
267# define ex_rubydo ex_ni
268# define ex_rubyfile ex_ni
269#endif
270#ifndef FEAT_SNIFF
271# define ex_sniff ex_ni
272#endif
273#ifndef FEAT_KEYMAP
274# define ex_loadkeymap ex_ni
275#endif
276static void ex_swapname __ARGS((exarg_T *eap));
277static void ex_syncbind __ARGS((exarg_T *eap));
278static void ex_read __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279static void ex_pwd __ARGS((exarg_T *eap));
280static void ex_equal __ARGS((exarg_T *eap));
281static void ex_sleep __ARGS((exarg_T *eap));
282static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
283static void ex_winsize __ARGS((exarg_T *eap));
284#ifdef FEAT_WINDOWS
285static void ex_wincmd __ARGS((exarg_T *eap));
286#else
287# define ex_wincmd ex_ni
288#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000289#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290static void ex_winpos __ARGS((exarg_T *eap));
291#else
292# define ex_winpos ex_ni
293#endif
294static void ex_operators __ARGS((exarg_T *eap));
295static void ex_put __ARGS((exarg_T *eap));
296static void ex_copymove __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000297static void ex_may_print __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298static void ex_submagic __ARGS((exarg_T *eap));
299static void ex_join __ARGS((exarg_T *eap));
300static void ex_at __ARGS((exarg_T *eap));
301static void ex_bang __ARGS((exarg_T *eap));
302static void ex_undo __ARGS((exarg_T *eap));
303static void ex_redo __ARGS((exarg_T *eap));
Bram Moolenaarc7d89352006-03-14 22:53:34 +0000304static void ex_later __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305static void ex_redir __ARGS((exarg_T *eap));
306static void ex_redraw __ARGS((exarg_T *eap));
307static void ex_redrawstatus __ARGS((exarg_T *eap));
308static void close_redir __ARGS((void));
309static void ex_mkrc __ARGS((exarg_T *eap));
310static void ex_mark __ARGS((exarg_T *eap));
311#ifdef FEAT_USR_CMDS
312static char_u *uc_fun_cmd __ARGS((void));
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000313static 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 +0000314#endif
315#ifdef FEAT_EX_EXTRA
316static void ex_normal __ARGS((exarg_T *eap));
317static void ex_startinsert __ARGS((exarg_T *eap));
318static void ex_stopinsert __ARGS((exarg_T *eap));
319#else
320# define ex_normal ex_ni
321# define ex_align ex_ni
322# define ex_retab ex_ni
323# define ex_startinsert ex_ni
324# define ex_stopinsert ex_ni
325# define ex_helptags ex_ni
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000326# define ex_sort ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327#endif
328#ifdef FEAT_FIND_ID
329static void ex_checkpath __ARGS((exarg_T *eap));
330static void ex_findpat __ARGS((exarg_T *eap));
331#else
332# define ex_findpat ex_ni
333# define ex_checkpath ex_ni
334#endif
335#if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
336static void ex_psearch __ARGS((exarg_T *eap));
337#else
338# define ex_psearch ex_ni
339#endif
340static void ex_tag __ARGS((exarg_T *eap));
341static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
342#ifndef FEAT_EVAL
343# define ex_scriptnames ex_ni
344# define ex_finish ex_ni
345# define ex_echo ex_ni
346# define ex_echohl ex_ni
347# define ex_execute ex_ni
348# define ex_call ex_ni
349# define ex_if ex_ni
350# define ex_endif ex_ni
351# define ex_else ex_ni
352# define ex_while ex_ni
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000353# define ex_for ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354# define ex_continue ex_ni
355# define ex_break ex_ni
356# define ex_endwhile ex_ni
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000357# define ex_endfor ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358# define ex_throw ex_ni
359# define ex_try ex_ni
360# define ex_catch ex_ni
361# define ex_finally ex_ni
362# define ex_endtry ex_ni
363# define ex_endfunction ex_ni
364# define ex_let ex_ni
365# define ex_unlet ex_ni
Bram Moolenaar65c1b012005-01-31 19:02:28 +0000366# define ex_lockvar ex_ni
367# define ex_unlockvar ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368# define ex_function ex_ni
369# define ex_delfunction ex_ni
370# define ex_return ex_ni
371#endif
372static char_u *arg_all __ARGS((void));
373#ifdef FEAT_SESSION
374static int makeopens __ARGS((FILE *fd, char_u *dirnow));
Bram Moolenaarf13be0d2008-01-02 14:13:10 +0000375static 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 +0000376static void ex_loadview __ARGS((exarg_T *eap));
377static char_u *get_view_file __ARGS((int c));
Bram Moolenaareeefcc72007-05-01 21:21:21 +0000378static int did_lcd; /* whether ":lcd" was produced for a session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379#else
380# define ex_loadview ex_ni
381#endif
382#ifndef FEAT_EVAL
383# define ex_compiler ex_ni
384#endif
385#ifdef FEAT_VIMINFO
386static void ex_viminfo __ARGS((exarg_T *eap));
387#else
388# define ex_viminfo ex_ni
389#endif
390static void ex_behave __ARGS((exarg_T *eap));
391#ifdef FEAT_AUTOCMD
392static void ex_filetype __ARGS((exarg_T *eap));
393static void ex_setfiletype __ARGS((exarg_T *eap));
394#else
395# define ex_filetype ex_ni
396# define ex_setfiletype ex_ni
397#endif
398#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000399# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400# define ex_diffpatch ex_ni
401# define ex_diffgetput ex_ni
402# define ex_diffsplit ex_ni
403# define ex_diffthis ex_ni
404# define ex_diffupdate ex_ni
405#endif
406static void ex_digraphs __ARGS((exarg_T *eap));
407static void ex_set __ARGS((exarg_T *eap));
408#if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
409# define ex_options ex_ni
410#endif
411#ifdef FEAT_SEARCH_EXTRA
412static void ex_nohlsearch __ARGS((exarg_T *eap));
413static void ex_match __ARGS((exarg_T *eap));
414#else
415# define ex_nohlsearch ex_ni
416# define ex_match ex_ni
417#endif
418#ifdef FEAT_CRYPT
419static void ex_X __ARGS((exarg_T *eap));
420#else
421# define ex_X ex_ni
422#endif
423#ifdef FEAT_FOLDING
424static void ex_fold __ARGS((exarg_T *eap));
425static void ex_foldopen __ARGS((exarg_T *eap));
426static void ex_folddo __ARGS((exarg_T *eap));
427#else
428# define ex_fold ex_ni
429# define ex_foldopen ex_ni
430# define ex_folddo ex_ni
431#endif
432#if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
433 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
434# define ex_language ex_ni
435#endif
436#ifndef FEAT_SIGNS
437# define ex_sign ex_ni
438#endif
439#ifndef FEAT_SUN_WORKSHOP
440# define ex_wsverb ex_ni
441#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000442#ifndef FEAT_NETBEANS_INTG
443# define ex_nbkey ex_ni
444#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445
446#ifndef FEAT_EVAL
447# define ex_debug ex_ni
448# define ex_breakadd ex_ni
449# define ex_debuggreedy ex_ni
450# define ex_breakdel ex_ni
451# define ex_breaklist ex_ni
452#endif
453
454#ifndef FEAT_CMDHIST
455# define ex_history ex_ni
456#endif
457#ifndef FEAT_JUMPLIST
458# define ex_jumps ex_ni
459# define ex_changes ex_ni
460#endif
461
Bram Moolenaar05159a02005-02-26 23:04:13 +0000462#ifndef FEAT_PROFILE
463# define ex_profile ex_ni
464#endif
465
Bram Moolenaar071d4272004-06-13 20:20:40 +0000466/*
467 * Declare cmdnames[].
468 */
469#define DO_DECLARE_EXCMD
470#include "ex_cmds.h"
471
472/*
473 * Table used to quickly search for a command, based on its first character.
474 */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +0000475static cmdidx_T cmdidxs[27] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476{
477 CMD_append,
478 CMD_buffer,
479 CMD_change,
480 CMD_delete,
481 CMD_edit,
482 CMD_file,
483 CMD_global,
484 CMD_help,
485 CMD_insert,
486 CMD_join,
487 CMD_k,
488 CMD_list,
489 CMD_move,
490 CMD_next,
491 CMD_open,
492 CMD_print,
493 CMD_quit,
494 CMD_read,
495 CMD_substitute,
496 CMD_t,
497 CMD_undo,
498 CMD_vglobal,
499 CMD_write,
500 CMD_xit,
501 CMD_yank,
502 CMD_z,
503 CMD_bang
504};
505
506static char_u dollar_command[2] = {'$', 0};
507
508
509#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000510/* Struct for storing a line inside a while/for loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511typedef struct
512{
513 char_u *line; /* command line */
514 linenr_T lnum; /* sourcing_lnum of the line */
515} wcmd_T;
516
517/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000518 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000520 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000522struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523{
524 garray_T *lines_gap; /* growarray with line info */
525 int current_line; /* last read line from growarray */
526 int repeating; /* TRUE when looping a second time */
527 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
528 char_u *(*getline) __ARGS((int, void *, int));
529 void *cookie;
530};
531
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000532static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
533static int store_loop_line __ARGS((garray_T *gap, char_u *line));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534static void free_cmdlines __ARGS((garray_T *gap));
Bram Moolenaared203462004-06-16 11:19:22 +0000535
536/* Struct to save a few things while debugging. Used in do_cmdline() only. */
537struct dbg_stuff
538{
539 int trylevel;
540 int force_abort;
541 except_T *caught_stack;
542 char_u *vv_exception;
543 char_u *vv_throwpoint;
544 int did_emsg;
545 int got_int;
546 int did_throw;
547 int need_rethrow;
548 int check_cstack;
549 except_T *current_exception;
550};
551
552static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
553static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
554
555 static void
556save_dbg_stuff(dsp)
557 struct dbg_stuff *dsp;
558{
559 dsp->trylevel = trylevel; trylevel = 0;
560 dsp->force_abort = force_abort; force_abort = FALSE;
561 dsp->caught_stack = caught_stack; caught_stack = NULL;
562 dsp->vv_exception = v_exception(NULL);
563 dsp->vv_throwpoint = v_throwpoint(NULL);
564
565 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
566 dsp->did_emsg = did_emsg; did_emsg = FALSE;
567 dsp->got_int = got_int; got_int = FALSE;
568 dsp->did_throw = did_throw; did_throw = FALSE;
569 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
570 dsp->check_cstack = check_cstack; check_cstack = FALSE;
571 dsp->current_exception = current_exception; current_exception = NULL;
572}
573
574 static void
575restore_dbg_stuff(dsp)
576 struct dbg_stuff *dsp;
577{
578 suppress_errthrow = FALSE;
579 trylevel = dsp->trylevel;
580 force_abort = dsp->force_abort;
581 caught_stack = dsp->caught_stack;
582 (void)v_exception(dsp->vv_exception);
583 (void)v_throwpoint(dsp->vv_throwpoint);
584 did_emsg = dsp->did_emsg;
585 got_int = dsp->got_int;
586 did_throw = dsp->did_throw;
587 need_rethrow = dsp->need_rethrow;
588 check_cstack = dsp->check_cstack;
589 current_exception = dsp->current_exception;
590}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591#endif
592
593
594/*
595 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
596 * command is given.
597 */
598 void
599do_exmode(improved)
600 int improved; /* TRUE for "improved Ex" mode */
601{
602 int save_msg_scroll;
603 int prev_msg_row;
604 linenr_T prev_line;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000605 int changedtick;
606
607 if (improved)
608 exmode_active = EXMODE_VIM;
609 else
610 exmode_active = EXMODE_NORMAL;
611 State = NORMAL;
612
613 /* When using ":global /pat/ visual" and then "Q" we return to continue
614 * the :global command. */
615 if (global_busy)
616 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617
618 save_msg_scroll = msg_scroll;
619 ++RedrawingDisabled; /* don't redisplay the window */
620 ++no_wait_return; /* don't wait for return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621#ifdef FEAT_GUI
622 /* Ignore scrollbar and mouse events in Ex mode */
623 ++hold_gui_events;
624#endif
625#ifdef FEAT_SNIFF
626 want_sniff_request = 0; /* No K_SNIFF wanted */
627#endif
628
629 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
630 while (exmode_active)
631 {
Bram Moolenaar7c626922005-02-07 22:01:03 +0000632#ifdef FEAT_EX_EXTRA
633 /* Check for a ":normal" command and no more characters left. */
634 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
635 {
636 exmode_active = FALSE;
637 break;
638 }
639#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 msg_scroll = TRUE;
641 need_wait_return = FALSE;
642 ex_pressedreturn = FALSE;
643 ex_no_reprint = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000644 changedtick = curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 prev_msg_row = msg_row;
646 prev_line = curwin->w_cursor.lnum;
647#ifdef FEAT_SNIFF
648 ProcessSniffRequests();
649#endif
650 if (improved)
651 {
652 cmdline_row = msg_row;
653 do_cmdline(NULL, getexline, NULL, 0);
654 }
655 else
656 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
657 lines_left = Rows - 1;
658
Bram Moolenaardf177f62005-02-22 08:39:57 +0000659 if ((prev_line != curwin->w_cursor.lnum
660 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000662 if (curbuf->b_ml.ml_flags & ML_EMPTY)
663 EMSG(_(e_emptybuf));
664 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000666 if (ex_pressedreturn)
667 {
668 /* go up one line, to overwrite the ":<CR>" line, so the
Bram Moolenaar81870892007-11-11 18:17:28 +0000669 * output doesn't contain empty lines. */
Bram Moolenaardf177f62005-02-22 08:39:57 +0000670 msg_row = prev_msg_row;
671 if (prev_msg_row == Rows - 1)
672 msg_row--;
673 }
674 msg_col = 0;
675 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
676 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 }
Bram Moolenaardf177f62005-02-22 08:39:57 +0000679 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
680 {
681 if (curbuf->b_ml.ml_flags & ML_EMPTY)
682 EMSG(_(e_emptybuf));
683 else
684 EMSG(_("E501: At end-of-file"));
685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 }
687
688#ifdef FEAT_GUI
689 --hold_gui_events;
690#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 --RedrawingDisabled;
692 --no_wait_return;
693 update_screen(CLEAR);
694 need_wait_return = FALSE;
695 msg_scroll = save_msg_scroll;
696}
697
698/*
699 * Execute a simple command line. Used for translated commands like "*".
700 */
701 int
702do_cmdline_cmd(cmd)
703 char_u *cmd;
704{
705 return do_cmdline(cmd, NULL, NULL,
706 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
707}
708
709/*
710 * do_cmdline(): execute one Ex command line
711 *
712 * 1. Execute "cmdline" when it is not NULL.
713 * If "cmdline" is NULL, or more lines are needed, getline() is used.
714 * 2. Split up in parts separated with '|'.
715 *
716 * This function can be called recursively!
717 *
718 * flags:
719 * DOCMD_VERBOSE - The command will be included in the error message.
720 * DOCMD_NOWAIT - Don't call wait_return() and friends.
721 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
722 * DOCMD_KEYTYPED - Don't reset KeyTyped.
723 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
724 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
725 *
726 * return FAIL if cmdline could not be executed, OK otherwise
727 */
728 int
729do_cmdline(cmdline, getline, cookie, flags)
730 char_u *cmdline;
731 char_u *(*getline) __ARGS((int, void *, int));
732 void *cookie; /* argument for getline() */
733 int flags;
734{
735 char_u *next_cmdline; /* next cmd to execute */
736 char_u *cmdline_copy = NULL; /* copy of cmd line */
737 int used_getline = FALSE; /* used "getline" to obtain command */
738 static int recursive = 0; /* recursive depth */
739 int msg_didout_before_start = 0;
740 int count = 0; /* line number count */
741 int did_inc = FALSE; /* incremented RedrawingDisabled */
742 int retval = OK;
743#ifdef FEAT_EVAL
744 struct condstack cstack; /* conditional stack */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000745 garray_T lines_ga; /* keep lines for ":while"/":for" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 int current_line = 0; /* active line in lines_ga */
747 char_u *fname = NULL; /* function or script name */
748 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
749 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
Bram Moolenaared203462004-06-16 11:19:22 +0000750 struct dbg_stuff debug_saved; /* saved things for debug mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 int initial_trylevel;
752 struct msglist **saved_msg_list = NULL;
753 struct msglist *private_msg_list;
754
755 /* "getline" and "cookie" passed to do_one_cmd() */
756 char_u *(*cmd_getline) __ARGS((int, void *, int));
757 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000758 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000760 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761#else
762# define cmd_getline getline
763# define cmd_cookie cookie
764#endif
765 static int call_depth = 0; /* recursiveness */
766
767#ifdef FEAT_EVAL
768 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
769 * location for storing error messages to be converted to an exception.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000770 * This ensures that the do_errthrow() call in do_one_cmd() does not
771 * combine the messages stored by an earlier invocation of do_one_cmd()
772 * with the command name of the later one. This would happen when
773 * BufWritePost autocommands are executed after a write error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 saved_msg_list = msg_list;
775 msg_list = &private_msg_list;
776 private_msg_list = NULL;
777#endif
778
779 /* It's possible to create an endless loop with ":execute", catch that
780 * here. The value of 200 allows nested function calls, ":source", etc. */
781 if (call_depth == 200)
782 {
783 EMSG(_("E169: Command too recursive"));
784#ifdef FEAT_EVAL
785 /* When converting to an exception, we do not include the command name
786 * since this is not an error of the specific command. */
787 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
788 msg_list = saved_msg_list;
789#endif
790 return FAIL;
791 }
792 ++call_depth;
793
794#ifdef FEAT_EVAL
795 cstack.cs_idx = -1;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000796 cstack.cs_looplevel = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 cstack.cs_trylevel = 0;
798 cstack.cs_emsg_silent_list = NULL;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000799 cstack.cs_lflags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
801
802 real_cookie = getline_cookie(getline, cookie);
803
804 /* Inside a function use a higher nesting level. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000805 getline_is_func = getline_equal(getline, cookie, get_func_line);
806 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 ++ex_nesting_level;
808
809 /* Get the function or script name and the address where the next breakpoint
810 * line and the debug tick for a function or script are stored. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000811 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 {
813 fname = func_name(real_cookie);
814 breakpoint = func_breakpoint(real_cookie);
815 dbg_tick = func_dbg_tick(real_cookie);
816 }
817 else if (getline_equal(getline, cookie, getsourceline))
818 {
819 fname = sourcing_name;
820 breakpoint = source_breakpoint(real_cookie);
821 dbg_tick = source_dbg_tick(real_cookie);
822 }
823
824 /*
825 * Initialize "force_abort" and "suppress_errthrow" at the top level.
826 */
827 if (!recursive)
828 {
829 force_abort = FALSE;
830 suppress_errthrow = FALSE;
831 }
832
833 /*
834 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000835 * exception handling (used when debugging). Otherwise clear it to avoid
836 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000838 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000839 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000840 else
841 memset(&debug_saved, 0, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842
843 initial_trylevel = trylevel;
844
845 /*
846 * "did_throw" will be set to TRUE when an exception is being thrown.
847 */
848 did_throw = FALSE;
849#endif
850 /*
851 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000852 * cancel the whole command line, and any if/endif or loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 * If force_abort is set, we cancel everything.
854 */
855 did_emsg = FALSE;
856
857 /*
858 * KeyTyped is only set when calling vgetc(). Reset it here when not
859 * calling vgetc() (sourced command lines).
860 */
861 if (!(flags & DOCMD_KEYTYPED) && !getline_equal(getline, cookie, getexline))
862 KeyTyped = FALSE;
863
864 /*
865 * Continue executing command lines:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000866 * - when inside an ":if", ":while" or ":for"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867 * - for multiple commands on one line, separated with '|'
868 * - when repeating until there are no more lines (for ":source")
869 */
870 next_cmdline = cmdline;
871 do
872 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000873#ifdef FEAT_EVAL
874 getline_is_func = getline_equal(getline, cookie, get_func_line);
875#endif
876
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000877 /* stop skipping cmds for an error msg after all endif/while/for */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 if (next_cmdline == NULL
879#ifdef FEAT_EVAL
880 && !force_abort
881 && cstack.cs_idx < 0
Bram Moolenaar05159a02005-02-26 23:04:13 +0000882 && !(getline_is_func && func_has_abort(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883#endif
884 )
885 did_emsg = FALSE;
886
887 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000888 * 1. If repeating a line in a loop, get a line from lines_ga.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 * 2. If no line given: Get an allocated line with getline().
890 * 3. If a line is given: Make a copy, so we can mess with it.
891 */
892
893#ifdef FEAT_EVAL
894 /* 1. If repeating, get a previous line from lines_ga. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000895 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 {
897 /* Each '|' separated command is stored separately in lines_ga, to
898 * be able to jump to it. Don't use next_cmdline now. */
899 vim_free(cmdline_copy);
900 cmdline_copy = NULL;
901
902 /* Check if a function has returned or, unless it has an unclosed
903 * try conditional, aborted. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000904 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000906# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000907 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000908 func_line_end(real_cookie);
909# endif
910 if (func_has_ended(real_cookie))
911 {
912 retval = FAIL;
913 break;
914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000916#ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000917 else if (do_profiling == PROF_YES
Bram Moolenaar05159a02005-02-26 23:04:13 +0000918 && getline_equal(getline, cookie, getsourceline))
919 script_line_end();
920#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921
922 /* Check if a sourced file hit a ":finish" command. */
923 if (source_finished(getline, cookie))
924 {
925 retval = FAIL;
926 break;
927 }
928
929 /* If breakpoints have been added/deleted need to check for it. */
930 if (breakpoint != NULL && dbg_tick != NULL
931 && *dbg_tick != debug_tick)
932 {
933 *breakpoint = dbg_find_breakpoint(
934 getline_equal(getline, cookie, getsourceline),
935 fname, sourcing_lnum);
936 *dbg_tick = debug_tick;
937 }
938
939 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
940 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
941
942 /* Did we encounter a breakpoint? */
943 if (breakpoint != NULL && *breakpoint != 0
944 && *breakpoint <= sourcing_lnum)
945 {
946 dbg_breakpoint(fname, sourcing_lnum);
947 /* Find next breakpoint. */
948 *breakpoint = dbg_find_breakpoint(
949 getline_equal(getline, cookie, getsourceline),
950 fname, sourcing_lnum);
951 *dbg_tick = debug_tick;
952 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000953# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000954 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000955 {
956 if (getline_is_func)
957 func_line_start(real_cookie);
958 else if (getline_equal(getline, cookie, getsourceline))
959 script_line_start();
960 }
961# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 }
963
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000964 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000966 /* Inside a while/for loop we need to store the lines and use them
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 * again. Pass a different "getline" function to do_one_cmd()
968 * below, so that it stores lines in or reads them from
969 * "lines_ga". Makes it possible to define a function inside a
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000970 * while/for loop. */
971 cmd_getline = get_loop_line;
972 cmd_cookie = (void *)&cmd_loop_cookie;
973 cmd_loop_cookie.lines_gap = &lines_ga;
974 cmd_loop_cookie.current_line = current_line;
975 cmd_loop_cookie.getline = getline;
976 cmd_loop_cookie.cookie = cookie;
977 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 }
979 else
980 {
981 cmd_getline = getline;
982 cmd_cookie = cookie;
983 }
984#endif
985
986 /* 2. If no line given, get an allocated line with getline(). */
987 if (next_cmdline == NULL)
988 {
989 /*
990 * Need to set msg_didout for the first line after an ":if",
991 * otherwise the ":if" will be overwritten.
992 */
993 if (count == 1 && getline_equal(getline, cookie, getexline))
994 msg_didout = TRUE;
995 if (getline == NULL || (next_cmdline = getline(':', cookie,
996#ifdef FEAT_EVAL
997 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
998#else
999 0
1000#endif
1001 )) == NULL)
1002 {
1003 /* Don't call wait_return for aborted command line. The NULL
1004 * returned for the end of a sourced file or executed function
1005 * doesn't do this. */
1006 if (KeyTyped && !(flags & DOCMD_REPEAT))
1007 need_wait_return = FALSE;
1008 retval = FAIL;
1009 break;
1010 }
1011 used_getline = TRUE;
1012
1013 /*
1014 * Keep the first typed line. Clear it when more lines are typed.
1015 */
1016 if (flags & DOCMD_KEEPLINE)
1017 {
1018 vim_free(repeat_cmdline);
1019 if (count == 0)
1020 repeat_cmdline = vim_strsave(next_cmdline);
1021 else
1022 repeat_cmdline = NULL;
1023 }
1024 }
1025
1026 /* 3. Make a copy of the command so we can mess with it. */
1027 else if (cmdline_copy == NULL)
1028 {
1029 next_cmdline = vim_strsave(next_cmdline);
1030 if (next_cmdline == NULL)
1031 {
1032 EMSG(_(e_outofmem));
1033 retval = FAIL;
1034 break;
1035 }
1036 }
1037 cmdline_copy = next_cmdline;
1038
1039#ifdef FEAT_EVAL
1040 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001041 * Save the current line when inside a ":while" or ":for", and when
1042 * the command looks like a ":while" or ":for", because we may need it
1043 * later. When there is a '|' and another command, it is stored
1044 * separately, because we need to be able to jump back to it from an
1045 * :endwhile/:endfor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001047 if (current_line == lines_ga.ga_len
1048 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001050 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 {
1052 retval = FAIL;
1053 break;
1054 }
1055 }
1056 did_endif = FALSE;
1057#endif
1058
1059 if (count++ == 0)
1060 {
1061 /*
1062 * All output from the commands is put below each other, without
1063 * waiting for a return. Don't do this when executing commands
1064 * from a script or when being called recursive (e.g. for ":e
1065 * +command file").
1066 */
1067 if (!(flags & DOCMD_NOWAIT) && !recursive)
1068 {
1069 msg_didout_before_start = msg_didout;
1070 msg_didany = FALSE; /* no output yet */
1071 msg_start();
1072 msg_scroll = TRUE; /* put messages below each other */
1073 ++no_wait_return; /* dont wait for return until finished */
1074 ++RedrawingDisabled;
1075 did_inc = TRUE;
1076 }
1077 }
1078
1079 if (p_verbose >= 15 && sourcing_name != NULL)
1080 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 ++no_wait_return;
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001082 verbose_enter_scroll();
1083
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 smsg((char_u *)_("line %ld: %s"),
1085 (long)sourcing_lnum, cmdline_copy);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001086 if (msg_silent == 0)
1087 msg_puts((char_u *)"\n"); /* don't overwrite this */
1088
1089 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 --no_wait_return;
1091 }
1092
1093 /*
1094 * 2. Execute one '|' separated command.
1095 * do_one_cmd() will return NULL if there is no trailing '|'.
1096 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1097 */
1098 ++recursive;
1099 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1100#ifdef FEAT_EVAL
1101 &cstack,
1102#endif
1103 cmd_getline, cmd_cookie);
1104 --recursive;
1105
1106#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001107 if (cmd_cookie == (void *)&cmd_loop_cookie)
1108 /* Use "current_line" from "cmd_loop_cookie", it may have been
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 * incremented when defining a function. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001110 current_line = cmd_loop_cookie.current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111#endif
1112
1113 if (next_cmdline == NULL)
1114 {
1115 vim_free(cmdline_copy);
1116 cmdline_copy = NULL;
1117#ifdef FEAT_CMDHIST
1118 /*
1119 * If the command was typed, remember it for the ':' register.
1120 * Do this AFTER executing the command to make :@: work.
1121 */
1122 if (getline_equal(getline, cookie, getexline)
1123 && new_last_cmdline != NULL)
1124 {
1125 vim_free(last_cmdline);
1126 last_cmdline = new_last_cmdline;
1127 new_last_cmdline = NULL;
1128 }
1129#endif
1130 }
1131 else
1132 {
1133 /* need to copy the command after the '|' to cmdline_copy, for the
1134 * next do_one_cmd() */
1135 mch_memmove(cmdline_copy, next_cmdline, STRLEN(next_cmdline) + 1);
1136 next_cmdline = cmdline_copy;
1137 }
1138
1139
1140#ifdef FEAT_EVAL
1141 /* reset did_emsg for a function that is not aborted by an error */
1142 if (did_emsg && !force_abort
1143 && getline_equal(getline, cookie, get_func_line)
1144 && !func_has_abort(real_cookie))
1145 did_emsg = FALSE;
1146
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001147 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 {
1149 ++current_line;
1150
1151 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001152 * An ":endwhile", ":endfor" and ":continue" is handled here.
1153 * If we were executing commands, jump back to the ":while" or
1154 * ":for".
1155 * If we were not executing commands, decrement cs_looplevel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001157 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001159 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001161 /* Jump back to the matching ":while" or ":for". Be careful
1162 * not to use a cs_line[] from an entry that isn't a ":while"
1163 * or ":for": It would make "current_line" invalid and can
1164 * cause a crash. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 if (!did_emsg && !got_int && !did_throw
1166 && cstack.cs_idx >= 0
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001167 && (cstack.cs_flags[cstack.cs_idx]
1168 & (CSF_WHILE | CSF_FOR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 && cstack.cs_line[cstack.cs_idx] >= 0
1170 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1171 {
1172 current_line = cstack.cs_line[cstack.cs_idx];
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001173 /* remember we jumped there */
1174 cstack.cs_lflags |= CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 line_breakcheck(); /* check if CTRL-C typed */
1176
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001177 /* Check for the next breakpoint at or after the ":while"
1178 * or ":for". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 if (breakpoint != NULL)
1180 {
1181 *breakpoint = dbg_find_breakpoint(
1182 getline_equal(getline, cookie, getsourceline),
1183 fname,
1184 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1185 *dbg_tick = debug_tick;
1186 }
1187 }
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001188 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001190 /* can only get here with ":endwhile" or ":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 if (cstack.cs_idx >= 0)
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001192 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1193 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194 }
1195 }
1196
1197 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001198 * For a ":while" or ":for" we need to remember the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001200 else if (cstack.cs_lflags & CSL_HAD_LOOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001202 cstack.cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1204 }
1205 }
1206
1207 /*
1208 * When not inside any ":while" loop, clear remembered lines.
1209 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001210 if (cstack.cs_looplevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 {
1212 if (lines_ga.ga_len > 0)
1213 {
1214 sourcing_lnum =
1215 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1216 free_cmdlines(&lines_ga);
1217 }
1218 current_line = 0;
1219 }
1220
1221 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001222 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1223 * being restored at the ":endtry". Reset them here and set the
1224 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1225 * This includes the case where a missing ":endif", ":endwhile" or
1226 * ":endfor" was detected by the ":finally" itself.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001228 if (cstack.cs_lflags & CSL_HAD_FINA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001230 cstack.cs_lflags &= ~CSL_HAD_FINA;
1231 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1232 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 did_throw ? (void *)current_exception : NULL);
1234 did_emsg = got_int = did_throw = FALSE;
1235 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1236 }
1237
1238 /* Update global "trylevel" for recursive calls to do_cmdline() from
1239 * within this loop. */
1240 trylevel = initial_trylevel + cstack.cs_trylevel;
1241
1242 /*
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001243 * If the outermost try conditional (across function calls and sourced
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 * files) is aborted because of an error, an interrupt, or an uncaught
1245 * exception, cancel everything. If it is left normally, reset
1246 * force_abort to get the non-EH compatible abortion behavior for
1247 * the rest of the script.
1248 */
1249 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1250 force_abort = FALSE;
1251
1252 /* Convert an interrupt to an exception if appropriate. */
1253 (void)do_intthrow(&cstack);
1254#endif /* FEAT_EVAL */
1255
1256 }
1257 /*
1258 * Continue executing command lines when:
1259 * - no CTRL-C typed, no aborting error, no exception thrown or try
1260 * conditionals need to be checked for executing finally clauses or
1261 * catching an interrupt exception
1262 * - didn't get an error message or lines are not typed
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001263 * - there is a command after '|', inside a :if, :while, :for or :try, or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 * looping for ":source" command or function call.
1265 */
1266 while (!((got_int
1267#ifdef FEAT_EVAL
1268 || (did_emsg && force_abort) || did_throw
1269#endif
1270 )
1271#ifdef FEAT_EVAL
1272 && cstack.cs_trylevel == 0
1273#endif
1274 )
1275 && !(did_emsg && used_getline
1276 && (getline_equal(getline, cookie, getexmodeline)
1277 || getline_equal(getline, cookie, getexline)))
1278 && (next_cmdline != NULL
1279#ifdef FEAT_EVAL
1280 || cstack.cs_idx >= 0
1281#endif
1282 || (flags & DOCMD_REPEAT)));
1283
1284 vim_free(cmdline_copy);
1285#ifdef FEAT_EVAL
1286 free_cmdlines(&lines_ga);
1287 ga_clear(&lines_ga);
1288
1289 if (cstack.cs_idx >= 0)
1290 {
1291 /*
1292 * If a sourced file or executed function ran to its end, report the
1293 * unclosed conditional.
1294 */
1295 if (!got_int && !did_throw
1296 && ((getline_equal(getline, cookie, getsourceline)
1297 && !source_finished(getline, cookie))
1298 || (getline_equal(getline, cookie, get_func_line)
1299 && !func_has_ended(real_cookie))))
1300 {
1301 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1302 EMSG(_(e_endtry));
1303 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1304 EMSG(_(e_endwhile));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001305 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1306 EMSG(_(e_endfor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 else
1308 EMSG(_(e_endif));
1309 }
1310
1311 /*
1312 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1313 * ":endtry" in a sourced file or executed function. If the try
1314 * conditional is in its finally clause, ignore anything pending.
1315 * If it is in a catch clause, finish the caught exception.
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001316 * Also cleanup any "cs_forinfo" structures.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 */
1318 do
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001319 {
1320 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1321
Bram Moolenaar89e5d682005-01-17 22:06:23 +00001322 if (idx >= 0)
1323 --idx; /* remove try block not in its finally clause */
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001324 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1325 &cstack.cs_looplevel);
1326 }
1327 while (cstack.cs_idx >= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 trylevel = initial_trylevel;
1329 }
1330
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001331 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1332 * lack was reported above and the error message is to be converted to an
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 * exception, do this now after rewinding the cstack. */
1334 do_errthrow(&cstack, getline_equal(getline, cookie, get_func_line)
1335 ? (char_u *)"endfunction" : (char_u *)NULL);
1336
1337 if (trylevel == 0)
1338 {
1339 /*
1340 * When an exception is being thrown out of the outermost try
1341 * conditional, discard the uncaught exception, disable the conversion
1342 * of interrupts or errors to exceptions, and ensure that no more
1343 * commands are executed.
1344 */
1345 if (did_throw)
1346 {
1347 void *p = NULL;
1348 char_u *saved_sourcing_name;
1349 int saved_sourcing_lnum;
1350 struct msglist *messages = NULL, *next;
1351
1352 /*
1353 * If the uncaught exception is a user exception, report it as an
1354 * error. If it is an error exception, display the saved error
1355 * message now. For an interrupt exception, do nothing; the
1356 * interrupt message is given elsewhere.
1357 */
1358 switch (current_exception->type)
1359 {
1360 case ET_USER:
Bram Moolenaar9c13b352005-05-19 20:53:52 +00001361 vim_snprintf((char *)IObuff, IOSIZE,
1362 _("E605: Exception not caught: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 current_exception->value);
1364 p = vim_strsave(IObuff);
1365 break;
1366 case ET_ERROR:
1367 messages = current_exception->messages;
1368 current_exception->messages = NULL;
1369 break;
1370 case ET_INTERRUPT:
1371 break;
1372 default:
1373 p = vim_strsave((char_u *)_(e_internal));
1374 }
1375
1376 saved_sourcing_name = sourcing_name;
1377 saved_sourcing_lnum = sourcing_lnum;
1378 sourcing_name = current_exception->throw_name;
1379 sourcing_lnum = current_exception->throw_lnum;
1380 current_exception->throw_name = NULL;
1381
1382 discard_current_exception(); /* uses IObuff if 'verbose' */
1383 suppress_errthrow = TRUE;
1384 force_abort = TRUE;
1385
1386 if (messages != NULL)
1387 {
1388 do
1389 {
1390 next = messages->next;
1391 emsg(messages->msg);
1392 vim_free(messages->msg);
1393 vim_free(messages);
1394 messages = next;
1395 }
1396 while (messages != NULL);
1397 }
1398 else if (p != NULL)
1399 {
1400 emsg(p);
1401 vim_free(p);
1402 }
1403 vim_free(sourcing_name);
1404 sourcing_name = saved_sourcing_name;
1405 sourcing_lnum = saved_sourcing_lnum;
1406 }
1407
1408 /*
1409 * On an interrupt or an aborting error not converted to an exception,
1410 * disable the conversion of errors to exceptions. (Interrupts are not
1411 * converted any more, here.) This enables also the interrupt message
1412 * when force_abort is set and did_emsg unset in case of an interrupt
1413 * from a finally clause after an error.
1414 */
1415 else if (got_int || (did_emsg && force_abort))
1416 suppress_errthrow = TRUE;
1417 }
1418
1419 /*
1420 * The current cstack will be freed when do_cmdline() returns. An uncaught
1421 * exception will have to be rethrown in the previous cstack. If a function
1422 * has just returned or a script file was just finished and the previous
1423 * cstack belongs to the same function or, respectively, script file, it
1424 * will have to be checked for finally clauses to be executed due to the
1425 * ":return" or ":finish". This is done in do_one_cmd().
1426 */
1427 if (did_throw)
1428 need_rethrow = TRUE;
1429 if ((getline_equal(getline, cookie, getsourceline)
1430 && ex_nesting_level > source_level(real_cookie))
1431 || (getline_equal(getline, cookie, get_func_line)
1432 && ex_nesting_level > func_level(real_cookie) + 1))
1433 {
1434 if (!did_throw)
1435 check_cstack = TRUE;
1436 }
1437 else
1438 {
1439 /* When leaving a function, reduce nesting level. */
1440 if (getline_equal(getline, cookie, get_func_line))
1441 --ex_nesting_level;
1442 /*
1443 * Go to debug mode when returning from a function in which we are
1444 * single-stepping.
1445 */
1446 if ((getline_equal(getline, cookie, getsourceline)
1447 || getline_equal(getline, cookie, get_func_line))
1448 && ex_nesting_level + 1 <= debug_break_level)
1449 do_debug(getline_equal(getline, cookie, getsourceline)
1450 ? (char_u *)_("End of sourced file")
1451 : (char_u *)_("End of function"));
1452 }
1453
1454 /*
1455 * Restore the exception environment (done after returning from the
1456 * debugger).
1457 */
1458 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +00001459 restore_dbg_stuff(&debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001460
1461 msg_list = saved_msg_list;
1462#endif /* FEAT_EVAL */
1463
1464 /*
1465 * If there was too much output to fit on the command line, ask the user to
1466 * hit return before redrawing the screen. With the ":global" command we do
1467 * this only once after the command is finished.
1468 */
1469 if (did_inc)
1470 {
1471 --RedrawingDisabled;
1472 --no_wait_return;
1473 msg_scroll = FALSE;
1474
1475 /*
1476 * When just finished an ":if"-":else" which was typed, no need to
1477 * wait for hit-return. Also for an error situation.
1478 */
1479 if (retval == FAIL
1480#ifdef FEAT_EVAL
1481 || (did_endif && KeyTyped && !did_emsg)
1482#endif
1483 )
1484 {
1485 need_wait_return = FALSE;
1486 msg_didany = FALSE; /* don't wait when restarting edit */
1487 }
1488 else if (need_wait_return)
1489 {
1490 /*
1491 * The msg_start() above clears msg_didout. The wait_return we do
1492 * here should not overwrite the command that may be shown before
1493 * doing that.
1494 */
1495 msg_didout |= msg_didout_before_start;
1496 wait_return(FALSE);
1497 }
1498 }
1499
1500#ifndef FEAT_EVAL
1501 /*
1502 * Reset if_level, in case a sourced script file contains more ":if" than
1503 * ":endif" (could be ":if x | foo | endif").
1504 */
1505 if_level = 0;
1506#endif
1507
1508 --call_depth;
1509 return retval;
1510}
1511
1512#ifdef FEAT_EVAL
1513/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001514 * Obtain a line when inside a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 */
1516 static char_u *
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001517get_loop_line(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 int c;
1519 void *cookie;
1520 int indent;
1521{
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001522 struct loop_cookie *cp = (struct loop_cookie *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 wcmd_T *wp;
1524 char_u *line;
1525
1526 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1527 {
1528 if (cp->repeating)
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001529 return NULL; /* trying to read past ":endwhile"/":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001531 /* First time inside the ":while"/":for": get line normally. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001532 if (cp->getline == NULL)
1533 line = getcmdline(c, 0L, indent);
1534 else
1535 line = cp->getline(c, cp->cookie, indent);
Bram Moolenaard68071d2006-05-02 22:08:30 +00001536 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 ++cp->current_line;
1538
1539 return line;
1540 }
1541
1542 KeyTyped = FALSE;
1543 ++cp->current_line;
1544 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1545 sourcing_lnum = wp->lnum;
1546 return vim_strsave(wp->line);
1547}
1548
1549/*
1550 * Store a line in "gap" so that a ":while" loop can execute it again.
1551 */
1552 static int
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001553store_loop_line(gap, line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 garray_T *gap;
1555 char_u *line;
1556{
1557 if (ga_grow(gap, 1) == FAIL)
1558 return FAIL;
1559 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1560 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1561 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562 return OK;
1563}
1564
1565/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001566 * Free the lines stored for a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 */
1568 static void
1569free_cmdlines(gap)
1570 garray_T *gap;
1571{
1572 while (gap->ga_len > 0)
1573 {
1574 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1575 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 }
1577}
1578#endif
1579
1580/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001581 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1582 * "func". * Otherwise return TRUE when "fgetline" equals "func".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 */
1584/*ARGSUSED*/
1585 int
Bram Moolenaar89d40322006-08-29 15:30:07 +00001586getline_equal(fgetline, cookie, func)
1587 char_u *(*fgetline) __ARGS((int, void *, int));
1588 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589 char_u *(*func) __ARGS((int, void *, int));
1590{
1591#ifdef FEAT_EVAL
1592 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001593 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594
Bram Moolenaar89d40322006-08-29 15:30:07 +00001595 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001596 * function that's originally used to obtain the lines. This may be
1597 * nested several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001598 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001599 cp = (struct loop_cookie *)cookie;
1600 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 {
1602 gp = cp->getline;
1603 cp = cp->cookie;
1604 }
1605 return gp == func;
1606#else
Bram Moolenaar89d40322006-08-29 15:30:07 +00001607 return fgetline == func;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608#endif
1609}
1610
1611#if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1612/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001613 * If "fgetline" is get_loop_line(), return the cookie used by the original
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 * getline function. Otherwise return "cookie".
1615 */
1616/*ARGSUSED*/
1617 void *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001618getline_cookie(fgetline, cookie)
1619 char_u *(*fgetline) __ARGS((int, void *, int));
1620 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621{
1622# ifdef FEAT_EVAL
1623 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001624 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625
Bram Moolenaar89d40322006-08-29 15:30:07 +00001626 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001627 * cookie that's originally used to obtain the lines. This may be nested
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 * several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001629 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001630 cp = (struct loop_cookie *)cookie;
1631 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 {
1633 gp = cp->getline;
1634 cp = cp->cookie;
1635 }
1636 return cp;
1637# else
1638 return cookie;
1639# endif
1640}
1641#endif
1642
1643/*
1644 * Execute one Ex command.
1645 *
1646 * If 'sourcing' is TRUE, the command will be included in the error message.
1647 *
1648 * 1. skip comment lines and leading space
1649 * 2. handle command modifiers
1650 * 3. parse range
1651 * 4. parse command
1652 * 5. parse arguments
1653 * 6. switch on command name
1654 *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001655 * Note: "fgetline" can be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 *
1657 * This function may be called recursively!
1658 */
1659#if (_MSC_VER == 1200)
1660/*
Bram Moolenaared203462004-06-16 11:19:22 +00001661 * Avoid optimisation bug in VC++ version 6.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 */
Bram Moolenaar281bdce2005-01-25 21:53:18 +00001663 #pragma optimize( "g", off )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001664#endif
1665 static char_u *
1666do_one_cmd(cmdlinep, sourcing,
1667#ifdef FEAT_EVAL
1668 cstack,
1669#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001670 fgetline, cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 char_u **cmdlinep;
1672 int sourcing;
1673#ifdef FEAT_EVAL
1674 struct condstack *cstack;
1675#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001676 char_u *(*fgetline) __ARGS((int, void *, int));
1677 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678{
1679 char_u *p;
1680 linenr_T lnum;
1681 long n;
1682 char_u *errormsg = NULL; /* error message */
1683 exarg_T ea; /* Ex command arguments */
1684 long verbose_save = -1;
1685 int save_msg_scroll = 0;
1686 int did_silent = 0;
1687 int did_esilent = 0;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001688#ifdef HAVE_SANDBOX
1689 int did_sandbox = FALSE;
1690#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 cmdmod_T save_cmdmod;
1692 int ni; /* set when Not Implemented */
1693
1694 vim_memset(&ea, 0, sizeof(ea));
1695 ea.line1 = 1;
1696 ea.line2 = 1;
1697#ifdef FEAT_EVAL
1698 ++ex_nesting_level;
1699#endif
1700
1701 /* when not editing the last file :q has to be typed twice */
1702 if (quitmore
1703#ifdef FEAT_EVAL
1704 /* avoid that a function call in 'statusline' does this */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001705 && !getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706#endif
1707 )
1708 --quitmore;
1709
1710 /*
1711 * Reset browse, confirm, etc.. They are restored when returning, for
1712 * recursive calls.
1713 */
1714 save_cmdmod = cmdmod;
1715 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1716
Bram Moolenaarcbb37ad2006-08-16 15:04:21 +00001717 /* "#!anything" is handled like a comment. */
1718 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1719 goto doend;
1720
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 /*
1722 * Repeat until no more command modifiers are found.
1723 */
1724 ea.cmd = *cmdlinep;
1725 for (;;)
1726 {
1727/*
1728 * 1. skip comment lines and leading white space and colons
1729 */
1730 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1731 ++ea.cmd;
1732
1733 /* in ex mode, an empty line works like :+ */
1734 if (*ea.cmd == NUL && exmode_active
Bram Moolenaar89d40322006-08-29 15:30:07 +00001735 && (getline_equal(fgetline, cookie, getexmodeline)
1736 || getline_equal(fgetline, cookie, getexline))
Bram Moolenaardf177f62005-02-22 08:39:57 +00001737 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 {
1739 ea.cmd = (char_u *)"+";
1740 ex_pressedreturn = TRUE;
1741 }
1742
1743 /* ignore comment and empty lines */
Bram Moolenaarf998c042007-11-20 11:31:26 +00001744 if (*ea.cmd == '"')
1745 goto doend;
1746 if (*ea.cmd == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001747 {
1748 ex_pressedreturn = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751
1752/*
1753 * 2. handle command modifiers.
1754 */
1755 p = ea.cmd;
1756 if (VIM_ISDIGIT(*ea.cmd))
1757 p = skipwhite(skipdigits(ea.cmd));
1758 switch (*p)
1759 {
1760 /* When adding an entry, also modify cmd_exists(). */
1761 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1762 break;
1763#ifdef FEAT_WINDOWS
1764 cmdmod.split |= WSP_ABOVE;
1765#endif
1766 continue;
1767
1768 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1769 {
1770#ifdef FEAT_WINDOWS
1771 cmdmod.split |= WSP_BELOW;
1772#endif
1773 continue;
1774 }
1775 if (checkforcmd(&ea.cmd, "browse", 3))
1776 {
1777#ifdef FEAT_BROWSE
1778 cmdmod.browse = TRUE;
1779#endif
1780 continue;
1781 }
1782 if (!checkforcmd(&ea.cmd, "botright", 2))
1783 break;
1784#ifdef FEAT_WINDOWS
1785 cmdmod.split |= WSP_BOT;
1786#endif
1787 continue;
1788
1789 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1790 break;
1791#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1792 cmdmod.confirm = TRUE;
1793#endif
1794 continue;
1795
1796 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1797 {
1798 cmdmod.keepmarks = TRUE;
1799 continue;
1800 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001801 if (checkforcmd(&ea.cmd, "keepalt", 5))
1802 {
1803 cmdmod.keepalt = TRUE;
1804 continue;
1805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1807 break;
1808 cmdmod.keepjumps = TRUE;
1809 continue;
1810
1811 /* ":hide" and ":hide | cmd" are not modifiers */
1812 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1813 || *p == NUL || ends_excmd(*p))
1814 break;
1815 ea.cmd = p;
1816 cmdmod.hide = TRUE;
1817 continue;
1818
1819 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1820 {
1821 cmdmod.lockmarks = TRUE;
1822 continue;
1823 }
1824
1825 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1826 break;
1827#ifdef FEAT_WINDOWS
1828 cmdmod.split |= WSP_ABOVE;
1829#endif
1830 continue;
1831
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001832 case 'n': if (!checkforcmd(&ea.cmd, "noautocmd", 3))
1833 break;
1834#ifdef FEAT_AUTOCMD
1835 if (cmdmod.save_ei == NULL)
1836 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001837 /* Set 'eventignore' to "all". Restore the
1838 * existing option value later. */
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001839 cmdmod.save_ei = vim_strsave(p_ei);
1840 set_string_option_direct((char_u *)"ei", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001841 (char_u *)"all", OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001842 }
1843#endif
1844 continue;
1845
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
1847 break;
1848#ifdef FEAT_WINDOWS
1849 cmdmod.split |= WSP_BELOW;
1850#endif
1851 continue;
1852
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001853 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
1854 {
1855#ifdef HAVE_SANDBOX
1856 if (!did_sandbox)
1857 ++sandbox;
1858 did_sandbox = TRUE;
1859#endif
1860 continue;
1861 }
1862 if (!checkforcmd(&ea.cmd, "silent", 3))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 break;
1864 ++did_silent;
1865 ++msg_silent;
1866 save_msg_scroll = msg_scroll;
1867 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
1868 {
1869 /* ":silent!", but not "silent !cmd" */
1870 ea.cmd = skipwhite(ea.cmd + 1);
1871 ++emsg_silent;
1872 ++did_esilent;
1873 }
1874 continue;
1875
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001876 case 't': if (checkforcmd(&p, "tab", 3))
1877 {
1878#ifdef FEAT_WINDOWS
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001879 if (vim_isdigit(*ea.cmd))
1880 cmdmod.tab = atoi((char *)ea.cmd) + 1;
1881 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001882 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001883 ea.cmd = p;
1884#endif
1885 continue;
1886 }
1887 if (!checkforcmd(&ea.cmd, "topleft", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 break;
1889#ifdef FEAT_WINDOWS
1890 cmdmod.split |= WSP_TOP;
1891#endif
1892 continue;
1893
1894 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
1895 {
1896#ifdef FEAT_VERTSPLIT
1897 cmdmod.split |= WSP_VERT;
1898#endif
1899 continue;
1900 }
1901 if (!checkforcmd(&p, "verbose", 4))
1902 break;
1903 if (verbose_save < 0)
1904 verbose_save = p_verbose;
Bram Moolenaared203462004-06-16 11:19:22 +00001905 if (vim_isdigit(*ea.cmd))
1906 p_verbose = atoi((char *)ea.cmd);
1907 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 p_verbose = 1;
1909 ea.cmd = p;
1910 continue;
1911 }
1912 break;
1913 }
1914
1915#ifdef FEAT_EVAL
1916 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1917 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1918#else
1919 ea.skip = (if_level > 0);
1920#endif
1921
1922#ifdef FEAT_EVAL
Bram Moolenaar05159a02005-02-26 23:04:13 +00001923# ifdef FEAT_PROFILE
1924 /* Count this line for profiling if ea.skip is FALSE. */
Bram Moolenaar371d5402006-03-20 21:47:49 +00001925 if (do_profiling == PROF_YES && !ea.skip)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001926 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001927 if (getline_equal(fgetline, cookie, get_func_line))
1928 func_line_exec(getline_cookie(fgetline, cookie));
1929 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +00001930 script_line_exec();
1931 }
1932#endif
1933
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 /* May go to debug mode. If this happens and the ">quit" debug command is
1935 * used, throw an interrupt exception and skip the next command. */
1936 dbg_check_breakpoint(&ea);
1937 if (!ea.skip && got_int)
1938 {
1939 ea.skip = TRUE;
1940 (void)do_intthrow(cstack);
1941 }
1942#endif
1943
1944/*
1945 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1946 *
1947 * where 'addr' is:
1948 *
1949 * % (entire file)
1950 * $ [+-NUM]
1951 * 'x [+-NUM] (where x denotes a currently defined mark)
1952 * . [+-NUM]
1953 * [+-NUM]..
1954 * NUM
1955 *
1956 * The ea.cmd pointer is updated to point to the first character following the
1957 * range spec. If an initial address is found, but no second, the upper bound
1958 * is equal to the lower.
1959 */
1960
1961 /* repeat for all ',' or ';' separated addresses */
1962 for (;;)
1963 {
1964 ea.line1 = ea.line2;
1965 ea.line2 = curwin->w_cursor.lnum; /* default is current line number */
1966 ea.cmd = skipwhite(ea.cmd);
1967 lnum = get_address(&ea.cmd, ea.skip, ea.addr_count == 0);
1968 if (ea.cmd == NULL) /* error detected */
1969 goto doend;
1970 if (lnum == MAXLNUM)
1971 {
1972 if (*ea.cmd == '%') /* '%' - all lines */
1973 {
1974 ++ea.cmd;
1975 ea.line1 = 1;
1976 ea.line2 = curbuf->b_ml.ml_line_count;
1977 ++ea.addr_count;
1978 }
1979 /* '*' - visual area */
1980 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1981 {
1982 pos_T *fp;
1983
1984 ++ea.cmd;
1985 if (!ea.skip)
1986 {
1987 fp = getmark('<', FALSE);
1988 if (check_mark(fp) == FAIL)
1989 goto doend;
1990 ea.line1 = fp->lnum;
1991 fp = getmark('>', FALSE);
1992 if (check_mark(fp) == FAIL)
1993 goto doend;
1994 ea.line2 = fp->lnum;
1995 ++ea.addr_count;
1996 }
1997 }
1998 }
1999 else
2000 ea.line2 = lnum;
2001 ea.addr_count++;
2002
2003 if (*ea.cmd == ';')
2004 {
2005 if (!ea.skip)
2006 curwin->w_cursor.lnum = ea.line2;
2007 }
2008 else if (*ea.cmd != ',')
2009 break;
2010 ++ea.cmd;
2011 }
2012
2013 /* One address given: set start and end lines */
2014 if (ea.addr_count == 1)
2015 {
2016 ea.line1 = ea.line2;
2017 /* ... but only implicit: really no address given */
2018 if (lnum == MAXLNUM)
2019 ea.addr_count = 0;
2020 }
2021
2022 /* Don't leave the cursor on an illegal line (caused by ';') */
2023 check_cursor_lnum();
2024
2025/*
2026 * 4. parse command
2027 */
2028
2029 /*
2030 * Skip ':' and any white space
2031 */
2032 ea.cmd = skipwhite(ea.cmd);
2033 while (*ea.cmd == ':')
2034 ea.cmd = skipwhite(ea.cmd + 1);
2035
2036 /*
2037 * If we got a line, but no command, then go to the line.
2038 * If we find a '|' or '\n' we set ea.nextcmd.
2039 */
2040 if (*ea.cmd == NUL || *ea.cmd == '"' ||
2041 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2042 {
2043 /*
2044 * strange vi behaviour:
2045 * ":3" jumps to line 3
2046 * ":3|..." prints line 3
2047 * ":|" prints current line
2048 */
2049 if (ea.skip) /* skip this if inside :if */
2050 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002051 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 {
2053 ea.cmdidx = CMD_print;
2054 ea.argt = RANGE+COUNT+TRLBAR;
2055 if ((errormsg = invalid_range(&ea)) == NULL)
2056 {
2057 correct_range(&ea);
2058 ex_print(&ea);
2059 }
2060 }
2061 else if (ea.addr_count != 0)
2062 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002063 if (ea.line2 > curbuf->b_ml.ml_line_count)
2064 {
2065 /* With '-' in 'cpoptions' a line number past the file is an
2066 * error, otherwise put it at the end of the file. */
2067 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2068 ea.line2 = -1;
2069 else
2070 ea.line2 = curbuf->b_ml.ml_line_count;
2071 }
2072
2073 if (ea.line2 < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002074 errormsg = (char_u *)_(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 else
2076 {
2077 if (ea.line2 == 0)
2078 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079 else
2080 curwin->w_cursor.lnum = ea.line2;
2081 beginline(BL_SOL | BL_FIX);
2082 }
2083 }
2084 goto doend;
2085 }
2086
2087 /* Find the command and let "p" point to after it. */
2088 p = find_command(&ea, NULL);
2089
2090#ifdef FEAT_USR_CMDS
2091 if (p == NULL)
2092 {
2093 if (!ea.skip)
2094 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2095 goto doend;
2096 }
2097 /* Check for wrong commands. */
2098 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2099 {
2100 errormsg = uc_fun_cmd();
2101 goto doend;
2102 }
2103#endif
2104 if (ea.cmdidx == CMD_SIZE)
2105 {
2106 if (!ea.skip)
2107 {
2108 STRCPY(IObuff, _("E492: Not an editor command"));
2109 if (!sourcing)
2110 {
2111 STRCAT(IObuff, ": ");
2112 STRNCAT(IObuff, *cmdlinep, 40);
2113 }
2114 errormsg = IObuff;
2115 }
2116 goto doend;
2117 }
2118
2119 ni = (
2120#ifdef FEAT_USR_CMDS
2121 !USER_CMDIDX(ea.cmdidx) &&
2122#endif
Bram Moolenaar3ebc1e52007-07-05 07:54:17 +00002123 (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00002124#ifdef HAVE_EX_SCRIPT_NI
2125 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2126#endif
2127 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128
2129#ifndef FEAT_EVAL
2130 /*
2131 * When the expression evaluation is disabled, recognize the ":if" and
2132 * ":endif" commands and ignore everything in between it.
2133 */
2134 if (ea.cmdidx == CMD_if)
2135 ++if_level;
2136 if (if_level)
2137 {
2138 if (ea.cmdidx == CMD_endif)
2139 --if_level;
2140 goto doend;
2141 }
2142
2143#endif
2144
2145 if (*p == '!' && ea.cmdidx != CMD_substitute) /* forced commands */
2146 {
2147 ++p;
2148 ea.forceit = TRUE;
2149 }
2150 else
2151 ea.forceit = FALSE;
2152
2153/*
2154 * 5. parse arguments
2155 */
2156#ifdef FEAT_USR_CMDS
2157 if (!USER_CMDIDX(ea.cmdidx))
2158#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002159 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160
2161 if (!ea.skip)
2162 {
2163#ifdef HAVE_SANDBOX
2164 if (sandbox != 0 && !(ea.argt & SBOXOK))
2165 {
2166 /* Command not allowed in sandbox. */
2167 errormsg = (char_u *)_(e_sandbox);
2168 goto doend;
2169 }
2170#endif
2171 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2172 {
2173 /* Command not allowed in non-'modifiable' buffer */
2174 errormsg = (char_u *)_(e_modifiable);
2175 goto doend;
2176 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002177
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002178 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179# ifdef FEAT_USR_CMDS
2180 && !USER_CMDIDX(ea.cmdidx)
2181# endif
2182 )
2183 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002184 /* Command not allowed when editing the command line. */
2185#ifdef FEAT_CMDWIN
2186 if (cmdwin_type != 0)
2187 errormsg = (char_u *)_(e_cmdwin);
2188 else
2189#endif
2190 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 goto doend;
2192 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002193#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002194 /* Disallow editing another buffer when "curbuf_lock" is set.
2195 * Do allow ":edit" (check for argument later).
2196 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002197 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002198 && ea.cmdidx != CMD_edit
2199 && ea.cmdidx != CMD_checktime
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002200# ifdef FEAT_USR_CMDS
2201 && !USER_CMDIDX(ea.cmdidx)
2202# endif
2203 && curbuf_locked())
2204 goto doend;
2205#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206
2207 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2208 {
2209 /* no range allowed */
2210 errormsg = (char_u *)_(e_norange);
2211 goto doend;
2212 }
2213 }
2214
2215 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2216 {
2217 errormsg = (char_u *)_(e_nobang);
2218 goto doend;
2219 }
2220
2221 /*
2222 * Don't complain about the range if it is not used
2223 * (could happen if line_count is accidentally set to 0).
2224 */
2225 if (!ea.skip && !ni)
2226 {
2227 /*
2228 * If the range is backwards, ask for confirmation and, if given, swap
2229 * ea.line1 & ea.line2 so it's forwards again.
2230 * When global command is busy, don't ask, will fail below.
2231 */
2232 if (!global_busy && ea.line1 > ea.line2)
2233 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002234 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002236 if (sourcing || exmode_active)
2237 {
2238 errormsg = (char_u *)_("E493: Backwards range given");
2239 goto doend;
2240 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 if (ask_yesno((char_u *)
2242 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002243 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244 }
2245 lnum = ea.line1;
2246 ea.line1 = ea.line2;
2247 ea.line2 = lnum;
2248 }
2249 if ((errormsg = invalid_range(&ea)) != NULL)
2250 goto doend;
2251 }
2252
2253 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2254 ea.line2 = 1;
2255
2256 correct_range(&ea);
2257
2258#ifdef FEAT_FOLDING
2259 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2260 {
2261 /* Put the first line at the start of a closed fold, put the last line
2262 * at the end of a closed fold. */
2263 (void)hasFolding(ea.line1, &ea.line1, NULL);
2264 (void)hasFolding(ea.line2, NULL, &ea.line2);
2265 }
2266#endif
2267
2268#ifdef FEAT_QUICKFIX
2269 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002270 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 * option here, so things like % get expanded.
2272 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002273 p = replace_makeprg(&ea, p, cmdlinep);
2274 if (p == NULL)
2275 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002276#endif
2277
2278 /*
2279 * Skip to start of argument.
2280 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2281 */
2282 if (ea.cmdidx == CMD_bang)
2283 ea.arg = p;
2284 else
2285 ea.arg = skipwhite(p);
2286
2287 /*
2288 * Check for "++opt=val" argument.
2289 * Must be first, allow ":w ++enc=utf8 !cmd"
2290 */
2291 if (ea.argt & ARGOPT)
2292 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2293 if (getargopt(&ea) == FAIL && !ni)
2294 {
2295 errormsg = (char_u *)_(e_invarg);
2296 goto doend;
2297 }
2298
2299 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2300 {
2301 if (*ea.arg == '>') /* append */
2302 {
2303 if (*++ea.arg != '>') /* typed wrong */
2304 {
2305 errormsg = (char_u *)_("E494: Use w or w>>");
2306 goto doend;
2307 }
2308 ea.arg = skipwhite(ea.arg + 1);
2309 ea.append = TRUE;
2310 }
2311 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2312 {
2313 ++ea.arg;
2314 ea.usefilter = TRUE;
2315 }
2316 }
2317
2318 if (ea.cmdidx == CMD_read)
2319 {
2320 if (ea.forceit)
2321 {
2322 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2323 ea.forceit = FALSE;
2324 }
2325 else if (*ea.arg == '!') /* :r !filter */
2326 {
2327 ++ea.arg;
2328 ea.usefilter = TRUE;
2329 }
2330 }
2331
2332 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2333 {
2334 ea.amount = 1;
2335 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2336 {
2337 ++ea.arg;
2338 ++ea.amount;
2339 }
2340 ea.arg = skipwhite(ea.arg);
2341 }
2342
2343 /*
2344 * Check for "+command" argument, before checking for next command.
2345 * Don't do this for ":read !cmd" and ":write !cmd".
2346 */
2347 if ((ea.argt & EDITCMD) && !ea.usefilter)
2348 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2349
2350 /*
2351 * Check for '|' to separate commands and '"' to start comments.
2352 * Don't do this for ":read !cmd" and ":write !cmd".
2353 */
2354 if ((ea.argt & TRLBAR) && !ea.usefilter)
2355 separate_nextcmd(&ea);
2356
2357 /*
2358 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002359 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2360 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002362 else if (ea.cmdidx == CMD_bang
2363 || ea.cmdidx == CMD_global
2364 || ea.cmdidx == CMD_vglobal
2365 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366 {
2367 for (p = ea.arg; *p; ++p)
2368 {
2369 /* Remove one backslash before a newline, so that it's possible to
2370 * pass a newline to the shell and also a newline that is preceded
2371 * with a backslash. This makes it impossible to end a shell
2372 * command in a backslash, but that doesn't appear useful.
2373 * Halving the number of backslashes is incompatible with previous
2374 * versions. */
2375 if (*p == '\\' && p[1] == '\n')
2376 mch_memmove(p, p + 1, STRLEN(p));
2377 else if (*p == '\n')
2378 {
2379 ea.nextcmd = p + 1;
2380 *p = NUL;
2381 break;
2382 }
2383 }
2384 }
2385
2386 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2387 {
2388 ea.line1 = 1;
2389 ea.line2 = curbuf->b_ml.ml_line_count;
2390 }
2391
2392 /* accept numbered register only when no count allowed (:put) */
2393 if ( (ea.argt & REGSTR)
2394 && *ea.arg != NUL
2395#ifdef FEAT_USR_CMDS
2396 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2397 && USER_CMDIDX(ea.cmdidx)))
2398 /* Do not allow register = for user commands */
2399 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2400#else
2401 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2402#endif
2403 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2404 {
2405 ea.regname = *ea.arg++;
2406#ifdef FEAT_EVAL
2407 /* for '=' register: accept the rest of the line as an expression */
2408 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2409 {
2410 set_expr_line(vim_strsave(ea.arg));
2411 ea.arg += STRLEN(ea.arg);
2412 }
2413#endif
2414 ea.arg = skipwhite(ea.arg);
2415 }
2416
2417 /*
2418 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2419 * count, it's a buffer name.
2420 */
2421 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2422 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2423 || vim_iswhite(*p)))
2424 {
2425 n = getdigits(&ea.arg);
2426 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002427 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 {
2429 errormsg = (char_u *)_(e_zerocount);
2430 goto doend;
2431 }
2432 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2433 {
2434 ea.line2 = n;
2435 if (ea.addr_count == 0)
2436 ea.addr_count = 1;
2437 }
2438 else
2439 {
2440 ea.line1 = ea.line2;
2441 ea.line2 += n - 1;
2442 ++ea.addr_count;
2443 /*
2444 * Be vi compatible: no error message for out of range.
2445 */
2446 if (ea.line2 > curbuf->b_ml.ml_line_count)
2447 ea.line2 = curbuf->b_ml.ml_line_count;
2448 }
2449 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002450
2451 /*
2452 * Check for flags: 'l', 'p' and '#'.
2453 */
2454 if (ea.argt & EXFLAGS)
2455 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002457 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002458 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 {
2460 errormsg = (char_u *)_(e_trailing);
2461 goto doend;
2462 }
2463
2464 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2465 {
2466 errormsg = (char_u *)_(e_argreq);
2467 goto doend;
2468 }
2469
2470#ifdef FEAT_EVAL
2471 /*
2472 * Skip the command when it's not going to be executed.
2473 * The commands like :if, :endif, etc. always need to be executed.
2474 * Also make an exception for commands that handle a trailing command
2475 * themselves.
2476 */
2477 if (ea.skip)
2478 {
2479 switch (ea.cmdidx)
2480 {
2481 /* commands that need evaluation */
2482 case CMD_while:
2483 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002484 case CMD_for:
2485 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 case CMD_if:
2487 case CMD_elseif:
2488 case CMD_else:
2489 case CMD_endif:
2490 case CMD_try:
2491 case CMD_catch:
2492 case CMD_finally:
2493 case CMD_endtry:
2494 case CMD_function:
2495 break;
2496
2497 /* Commands that handle '|' themselves. Check: A command should
2498 * either have the TRLBAR flag, appear in this list or appear in
2499 * the list at ":help :bar". */
2500 case CMD_aboveleft:
2501 case CMD_and:
2502 case CMD_belowright:
2503 case CMD_botright:
2504 case CMD_browse:
2505 case CMD_call:
2506 case CMD_confirm:
2507 case CMD_delfunction:
2508 case CMD_djump:
2509 case CMD_dlist:
2510 case CMD_dsearch:
2511 case CMD_dsplit:
2512 case CMD_echo:
2513 case CMD_echoerr:
2514 case CMD_echomsg:
2515 case CMD_echon:
2516 case CMD_execute:
2517 case CMD_help:
2518 case CMD_hide:
2519 case CMD_ijump:
2520 case CMD_ilist:
2521 case CMD_isearch:
2522 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002523 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 case CMD_keepjumps:
2525 case CMD_keepmarks:
2526 case CMD_leftabove:
2527 case CMD_let:
2528 case CMD_lockmarks:
2529 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002530 case CMD_mzscheme:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 case CMD_perl:
2532 case CMD_psearch:
2533 case CMD_python:
2534 case CMD_return:
2535 case CMD_rightbelow:
2536 case CMD_ruby:
2537 case CMD_silent:
2538 case CMD_smagic:
2539 case CMD_snomagic:
2540 case CMD_substitute:
2541 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002542 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 case CMD_tcl:
2544 case CMD_throw:
2545 case CMD_tilde:
2546 case CMD_topleft:
2547 case CMD_unlet:
2548 case CMD_verbose:
2549 case CMD_vertical:
2550 break;
2551
2552 default: goto doend;
2553 }
2554 }
2555#endif
2556
2557 if (ea.argt & XFILE)
2558 {
2559 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2560 goto doend;
2561 }
2562
2563#ifdef FEAT_LISTCMDS
2564 /*
2565 * Accept buffer name. Cannot be used at the same time with a buffer
2566 * number. Don't do this for a user command.
2567 */
2568 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2569# ifdef FEAT_USR_CMDS
2570 && !USER_CMDIDX(ea.cmdidx)
2571# endif
2572 )
2573 {
2574 /*
2575 * :bdelete, :bwipeout and :bunload take several arguments, separated
2576 * by spaces: find next space (skipping over escaped characters).
2577 * The others take one argument: ignore trailing spaces.
2578 */
2579 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2580 || ea.cmdidx == CMD_bunload)
2581 p = skiptowhite_esc(ea.arg);
2582 else
2583 {
2584 p = ea.arg + STRLEN(ea.arg);
2585 while (p > ea.arg && vim_iswhite(p[-1]))
2586 --p;
2587 }
2588 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2589 if (ea.line2 < 0) /* failed */
2590 goto doend;
2591 ea.addr_count = 1;
2592 ea.arg = skipwhite(p);
2593 }
2594#endif
2595
2596/*
2597 * 6. switch on command name
2598 *
2599 * The "ea" structure holds the arguments that can be used.
2600 */
2601 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002602 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 ea.cookie = cookie;
2604#ifdef FEAT_EVAL
2605 ea.cstack = cstack;
2606#endif
2607
2608#ifdef FEAT_USR_CMDS
2609 if (USER_CMDIDX(ea.cmdidx))
2610 {
2611 /*
2612 * Execute a user-defined command.
2613 */
2614 do_ucmd(&ea);
2615 }
2616 else
2617#endif
2618 {
2619 /*
2620 * Call the function to execute the command.
2621 */
2622 ea.errmsg = NULL;
2623 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2624 if (ea.errmsg != NULL)
2625 errormsg = (char_u *)_(ea.errmsg);
2626 }
2627
2628#ifdef FEAT_EVAL
2629 /*
2630 * If the command just executed called do_cmdline(), any throw or ":return"
2631 * or ":finish" encountered there must also check the cstack of the still
2632 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2633 * exception, or reanimate a returned function or finished script file and
2634 * return or finish it again.
2635 */
2636 if (need_rethrow)
2637 do_throw(cstack);
2638 else if (check_cstack)
2639 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002640 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002642 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643 && current_func_returned())
2644 do_return(&ea, TRUE, FALSE, NULL);
2645 }
2646 need_rethrow = check_cstack = FALSE;
2647#endif
2648
2649doend:
2650 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2651 curwin->w_cursor.lnum = 1;
2652
2653 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2654 {
2655 if (sourcing)
2656 {
2657 if (errormsg != IObuff)
2658 {
2659 STRCPY(IObuff, errormsg);
2660 errormsg = IObuff;
2661 }
2662 STRCAT(errormsg, ": ");
Bram Moolenaar6c964832007-12-09 18:38:35 +00002663 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002664 }
2665 emsg(errormsg);
2666 }
2667#ifdef FEAT_EVAL
2668 do_errthrow(cstack,
2669 (ea.cmdidx != CMD_SIZE
2670# ifdef FEAT_USR_CMDS
2671 && !USER_CMDIDX(ea.cmdidx)
2672# endif
2673 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2674#endif
2675
2676 if (verbose_save >= 0)
2677 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002678#ifdef FEAT_AUTOCMD
2679 if (cmdmod.save_ei != NULL)
2680 {
2681 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002682 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2683 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002684 free_string_option(cmdmod.save_ei);
2685 }
2686#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002687
2688 cmdmod = save_cmdmod;
2689
2690 if (did_silent > 0)
2691 {
2692 /* messages could be enabled for a serious error, need to check if the
2693 * counters don't become negative */
2694 msg_silent -= did_silent;
2695 if (msg_silent < 0)
2696 msg_silent = 0;
2697 emsg_silent -= did_esilent;
2698 if (emsg_silent < 0)
2699 emsg_silent = 0;
2700 /* Restore msg_scroll, it's set by file I/O commands, even when no
2701 * message is actually displayed. */
2702 msg_scroll = save_msg_scroll;
2703 }
2704
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002705#ifdef HAVE_SANDBOX
2706 if (did_sandbox)
2707 --sandbox;
2708#endif
2709
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2711 ea.nextcmd = NULL;
2712
2713#ifdef FEAT_EVAL
2714 --ex_nesting_level;
2715#endif
2716
2717 return ea.nextcmd;
2718}
2719#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00002720 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721#endif
2722
2723/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002724 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 * If there is a match advance "pp" to the argument and return TRUE.
2726 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002727 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002729 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 char *cmd; /* name of command */
2731 int len; /* required length */
2732{
2733 int i;
2734
2735 for (i = 0; cmd[i] != NUL; ++i)
2736 if (cmd[i] != (*pp)[i])
2737 break;
2738 if (i >= len && !isalpha((*pp)[i]))
2739 {
2740 *pp = skipwhite(*pp + i);
2741 return TRUE;
2742 }
2743 return FALSE;
2744}
2745
2746/*
2747 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002748 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002750 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 * Returns NULL for an ambiguous user command.
2752 */
2753/*ARGSUSED*/
2754 static char_u *
2755find_command(eap, full)
2756 exarg_T *eap;
2757 int *full;
2758{
2759 int len;
2760 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002761 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762
2763 /*
2764 * Isolate the command and search for it in the command table.
Bram Moolenaar81870892007-11-11 18:17:28 +00002765 * Exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 * - the 'k' command can directly be followed by any character.
2767 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2768 * but :sre[wind] is another command, as are :scrip[tnames],
2769 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00002770 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 */
2772 p = eap->cmd;
2773 if (*p == 'k')
2774 {
2775 eap->cmdidx = CMD_k;
2776 ++p;
2777 }
2778 else if (p[0] == 's'
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002779 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2780 && p[3] != 'i' && p[4] != 'p')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 || p[1] == 'g'
2782 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2783 || p[1] == 'I'
2784 || (p[1] == 'r' && p[2] != 'e')))
2785 {
2786 eap->cmdidx = CMD_substitute;
2787 ++p;
2788 }
2789 else
2790 {
2791 while (ASCII_ISALPHA(*p))
2792 ++p;
2793 /* check for non-alpha command */
2794 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2795 ++p;
2796 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00002797 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2798 {
2799 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2800 * :delete with the 'l' flag. Same for 'p'. */
2801 for (i = 0; i < len; ++i)
2802 if (eap->cmd[i] != "delete"[i])
2803 break;
2804 if (i == len - 1)
2805 {
2806 --len;
2807 if (p[-1] == 'l')
2808 eap->flags |= EXFLAG_LIST;
2809 else
2810 eap->flags |= EXFLAG_PRINT;
2811 }
2812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813
2814 if (ASCII_ISLOWER(*eap->cmd))
2815 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2816 else
2817 eap->cmdidx = cmdidxs[26];
2818
2819 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2820 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2821 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2822 (size_t)len) == 0)
2823 {
2824#ifdef FEAT_EVAL
2825 if (full != NULL
2826 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2827 *full = TRUE;
2828#endif
2829 break;
2830 }
2831
2832#ifdef FEAT_USR_CMDS
2833 /* Look for a user defined command as a last resort */
2834 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2835 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002836 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 while (ASCII_ISALNUM(*p))
2838 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002839 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 }
2841#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002842 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 eap->cmdidx = CMD_SIZE;
2844 }
2845
2846 return p;
2847}
2848
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002849#ifdef FEAT_USR_CMDS
2850/*
2851 * Search for a user command that matches "eap->cmd".
2852 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2853 * Return a pointer to just after the command.
2854 * Return NULL if there is no matching command.
2855 */
2856 static char_u *
2857find_ucmd(eap, p, full, xp, compl)
2858 exarg_T *eap;
2859 char_u *p; /* end of the command (possibly including count) */
2860 int *full; /* set to TRUE for a full match */
2861 expand_T *xp; /* used for completion, NULL otherwise */
2862 int *compl; /* completion flags or NULL */
2863{
2864 int len = (int)(p - eap->cmd);
2865 int j, k, matchlen = 0;
2866 ucmd_T *uc;
2867 int found = FALSE;
2868 int possible = FALSE;
2869 char_u *cp, *np; /* Point into typed cmd and test name */
2870 garray_T *gap;
2871 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2872 only full match global is accepted. */
2873
2874 /*
2875 * Look for buffer-local user commands first, then global ones.
2876 */
2877 gap = &curbuf->b_ucmds;
2878 for (;;)
2879 {
2880 for (j = 0; j < gap->ga_len; ++j)
2881 {
2882 uc = USER_CMD_GA(gap, j);
2883 cp = eap->cmd;
2884 np = uc->uc_name;
2885 k = 0;
2886 while (k < len && *np != NUL && *cp++ == *np++)
2887 k++;
2888 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2889 {
2890 /* If finding a second match, the command is ambiguous. But
2891 * not if a buffer-local command wasn't a full match and a
2892 * global command is a full match. */
2893 if (k == len && found && *np != NUL)
2894 {
2895 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002896 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002897 amb_local = TRUE;
2898 }
2899
2900 if (!found || (k == len && *np == NUL))
2901 {
2902 /* If we matched up to a digit, then there could
2903 * be another command including the digit that we
2904 * should use instead.
2905 */
2906 if (k == len)
2907 found = TRUE;
2908 else
2909 possible = TRUE;
2910
2911 if (gap == &ucmds)
2912 eap->cmdidx = CMD_USER;
2913 else
2914 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002915 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002916 eap->useridx = j;
2917
2918# ifdef FEAT_CMDL_COMPL
2919 if (compl != NULL)
2920 *compl = uc->uc_compl;
2921# ifdef FEAT_EVAL
2922 if (xp != NULL)
2923 {
2924 xp->xp_arg = uc->uc_compl_arg;
2925 xp->xp_scriptID = uc->uc_scriptID;
2926 }
2927# endif
2928# endif
2929 /* Do not search for further abbreviations
2930 * if this is an exact match. */
2931 matchlen = k;
2932 if (k == len && *np == NUL)
2933 {
2934 if (full != NULL)
2935 *full = TRUE;
2936 amb_local = FALSE;
2937 break;
2938 }
2939 }
2940 }
2941 }
2942
2943 /* Stop if we found a full match or searched all. */
2944 if (j < gap->ga_len || gap == &ucmds)
2945 break;
2946 gap = &ucmds;
2947 }
2948
2949 /* Only found ambiguous matches. */
2950 if (amb_local)
2951 {
2952 if (xp != NULL)
2953 xp->xp_context = EXPAND_UNSUCCESSFUL;
2954 return NULL;
2955 }
2956
2957 /* The match we found may be followed immediately by a number. Move "p"
2958 * back to point to it. */
2959 if (found || possible)
2960 return p + (matchlen - len);
2961 return p;
2962}
2963#endif
2964
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaared53fb92007-11-24 20:50:24 +00002966static struct cmdmod
2967{
2968 char *name;
2969 int minlen;
2970 int has_count; /* :123verbose :3tab */
2971} cmdmods[] = {
2972 {"aboveleft", 3, FALSE},
2973 {"belowright", 3, FALSE},
2974 {"botright", 2, FALSE},
2975 {"browse", 3, FALSE},
2976 {"confirm", 4, FALSE},
2977 {"hide", 3, FALSE},
2978 {"keepalt", 5, FALSE},
2979 {"keepjumps", 5, FALSE},
2980 {"keepmarks", 3, FALSE},
2981 {"leftabove", 5, FALSE},
2982 {"lockmarks", 3, FALSE},
2983 {"rightbelow", 6, FALSE},
2984 {"sandbox", 3, FALSE},
2985 {"silent", 3, FALSE},
2986 {"tab", 3, TRUE},
2987 {"topleft", 2, FALSE},
2988 {"verbose", 4, TRUE},
2989 {"vertical", 4, FALSE},
2990};
2991
2992/*
2993 * Return length of a command modifier (including optional count).
2994 * Return zero when it's not a modifier.
2995 */
2996 int
2997modifier_len(cmd)
2998 char_u *cmd;
2999{
3000 int i, j;
3001 char_u *p = cmd;
3002
3003 if (VIM_ISDIGIT(*cmd))
3004 p = skipwhite(skipdigits(cmd));
3005 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3006 {
3007 for (j = 0; p[j] != NUL; ++j)
3008 if (p[j] != cmdmods[i].name[j])
3009 break;
3010 if (!isalpha(p[j]) && j >= cmdmods[i].minlen
3011 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003012 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003013 }
3014 return 0;
3015}
3016
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017/*
3018 * Return > 0 if an Ex command "name" exists.
3019 * Return 2 if there is an exact match.
3020 * Return 3 if there is an ambiguous match.
3021 */
3022 int
3023cmd_exists(name)
3024 char_u *name;
3025{
3026 exarg_T ea;
3027 int full = FALSE;
3028 int i;
3029 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003030 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031
3032 /* Check command modifiers. */
3033 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3034 {
3035 for (j = 0; name[j] != NUL; ++j)
3036 if (name[j] != cmdmods[i].name[j])
3037 break;
3038 if (name[j] == NUL && j >= cmdmods[i].minlen)
3039 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3040 }
3041
Bram Moolenaara9587612006-05-04 21:47:50 +00003042 /* Check built-in commands and user defined commands.
3043 * For ":2match" and ":3match" we need to skip the number. */
3044 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003046 p = find_command(&ea, &full);
3047 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003049 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3050 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003051 if (*skipwhite(p) != NUL)
3052 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3054}
3055#endif
3056
3057/*
3058 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3059 * we don't need/want deleted. Maybe this could be done better if we didn't
3060 * repeat all this stuff. The only problem is that they may not stay
3061 * perfectly compatible with each other, but then the command line syntax
3062 * probably won't change that much -- webb.
3063 */
3064 char_u *
3065set_one_cmd_context(xp, buff)
3066 expand_T *xp;
3067 char_u *buff; /* buffer for command string */
3068{
3069 char_u *p;
3070 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003071 int len = 0;
3072 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3074 int compl = EXPAND_NOTHING;
3075#endif
3076#ifdef FEAT_CMDL_COMPL
3077 int delim;
3078#endif
3079 int forceit = FALSE;
3080 int usefilter = FALSE; /* filter instead of file name */
3081
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003082 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 xp->xp_pattern = buff;
3084 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003085 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086
3087/*
3088 * 2. skip comment lines and leading space, colons or bars
3089 */
3090 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3091 ;
3092 xp->xp_pattern = cmd;
3093
3094 if (*cmd == NUL)
3095 return NULL;
3096 if (*cmd == '"') /* ignore comment lines */
3097 {
3098 xp->xp_context = EXPAND_NOTHING;
3099 return NULL;
3100 }
3101
3102/*
3103 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3104 */
3105 cmd = skip_range(cmd, &xp->xp_context);
3106
3107/*
3108 * 4. parse command
3109 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110 xp->xp_pattern = cmd;
3111 if (*cmd == NUL)
3112 return NULL;
3113 if (*cmd == '"')
3114 {
3115 xp->xp_context = EXPAND_NOTHING;
3116 return NULL;
3117 }
3118
3119 if (*cmd == '|' || *cmd == '\n')
3120 return cmd + 1; /* There's another command */
3121
3122 /*
3123 * Isolate the command and search for it in the command table.
3124 * Exceptions:
3125 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003126 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3128 */
3129 if (*cmd == 'k' && cmd[1] != 'e')
3130 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003131 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 p = cmd + 1;
3133 }
3134 else
3135 {
3136 p = cmd;
3137 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3138 ++p;
3139 /* check for non-alpha command */
3140 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3141 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003142 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003144 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 {
3146 xp->xp_context = EXPAND_UNSUCCESSFUL;
3147 return NULL;
3148 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003149 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3150 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3151 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 break;
3153
3154#ifdef FEAT_USR_CMDS
3155 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3156 {
3157 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3158 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003159 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 }
3161#endif
3162 }
3163
3164 /*
3165 * If the cursor is touching the command, and it ends in an alpha-numeric
3166 * character, complete the command name.
3167 */
3168 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3169 return NULL;
3170
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003171 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 {
3173 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3174 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003175 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 p = cmd + 1;
3177 }
3178#ifdef FEAT_USR_CMDS
3179 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3180 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003181 ea.cmd = cmd;
3182 p = find_ucmd(&ea, p, NULL, xp,
3183# if defined(FEAT_CMDL_COMPL)
3184 &compl
3185# else
3186 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003188 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003189 if (p == NULL)
3190 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 }
3192#endif
3193 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003194 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 {
3196 /* Not still touching the command and it was an illegal one */
3197 xp->xp_context = EXPAND_UNSUCCESSFUL;
3198 return NULL;
3199 }
3200
3201 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3202
3203 if (*p == '!') /* forced commands */
3204 {
3205 forceit = TRUE;
3206 ++p;
3207 }
3208
3209/*
3210 * 5. parse arguments
3211 */
3212#ifdef FEAT_USR_CMDS
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003213 if (!USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003215 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216
3217 arg = skipwhite(p);
3218
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003219 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 {
3221 if (*arg == '>') /* append */
3222 {
3223 if (*++arg == '>')
3224 ++arg;
3225 arg = skipwhite(arg);
3226 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003227 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 {
3229 ++arg;
3230 usefilter = TRUE;
3231 }
3232 }
3233
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003234 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235 {
3236 usefilter = forceit; /* :r! filter if forced */
3237 if (*arg == '!') /* :r !filter */
3238 {
3239 ++arg;
3240 usefilter = TRUE;
3241 }
3242 }
3243
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003244 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 {
3246 while (*arg == *cmd) /* allow any number of '>' or '<' */
3247 ++arg;
3248 arg = skipwhite(arg);
3249 }
3250
3251 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003252 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 {
3254 /* Check if we're in the +command */
3255 p = arg + 1;
3256 arg = skip_cmd_arg(arg, FALSE);
3257
3258 /* Still touching the command after '+'? */
3259 if (*arg == NUL)
3260 return p;
3261
3262 /* Skip space(s) after +command to get to the real argument */
3263 arg = skipwhite(arg);
3264 }
3265
3266 /*
3267 * Check for '|' to separate commands and '"' to start comments.
3268 * Don't do this for ":read !cmd" and ":write !cmd".
3269 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003270 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 {
3272 p = arg;
3273 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003274 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 p += 2;
3276 while (*p)
3277 {
3278 if (*p == Ctrl_V)
3279 {
3280 if (p[1] != NUL)
3281 ++p;
3282 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003283 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 || *p == '|' || *p == '\n')
3285 {
3286 if (*(p - 1) != '\\')
3287 {
3288 if (*p == '|' || *p == '\n')
3289 return p + 1;
3290 return NULL; /* It's a comment */
3291 }
3292 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003293 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 }
3295 }
3296
3297 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003298 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 vim_strchr((char_u *)"|\"", *arg) == NULL)
3300 return NULL;
3301
3302 /* Find start of last argument (argument just before cursor): */
3303 p = buff + STRLEN(buff);
3304 while (p != arg && *p != ' ' && *p != TAB)
3305 p--;
3306 if (*p == ' ' || *p == TAB)
3307 p++;
3308 xp->xp_pattern = p;
3309
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003310 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003312 int c;
3313 int in_quote = FALSE;
3314 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315
3316 /*
3317 * Allow spaces within back-quotes to count as part of the argument
3318 * being expanded.
3319 */
3320 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003321 p = xp->xp_pattern;
3322 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003324#ifdef FEAT_MBYTE
3325 if (has_mbyte)
3326 c = mb_ptr2char(p);
3327 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003329 c = *p;
3330 if (c == '\\' && p[1] != NUL)
3331 ++p;
3332 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 {
3334 if (!in_quote)
3335 {
3336 xp->xp_pattern = p;
3337 bow = p + 1;
3338 }
3339 in_quote = !in_quote;
3340 }
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003341 /* An argument can contain just about everything, except
3342 * characters that end the command and white space. */
3343 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003344#ifdef SPACE_IN_FILENAME
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003345 && (!(ea.argt & NOSPC) || usefilter)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003346#endif
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003347 ))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003348 {
Bram Moolenaarcf5a5b82008-02-26 20:30:12 +00003349 len = 0; /* avoid getting stuck when space is in 'isfname' */
Bram Moolenaar6529c102007-08-18 15:47:34 +00003350 while (*p != NUL)
3351 {
3352#ifdef FEAT_MBYTE
3353 if (has_mbyte)
3354 c = mb_ptr2char(p);
3355 else
3356#endif
3357 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003358 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003359 break;
3360#ifdef FEAT_MBYTE
3361 if (has_mbyte)
3362 len = (*mb_ptr2len)(p);
3363 else
3364#endif
3365 len = 1;
3366 mb_ptr_adv(p);
3367 }
3368 if (in_quote)
3369 bow = p;
3370 else
3371 xp->xp_pattern = p;
3372 p -= len;
3373 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003374 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 }
3376
3377 /*
3378 * If we are still inside the quotes, and we passed a space, just
3379 * expand from there.
3380 */
3381 if (bow != NULL && in_quote)
3382 xp->xp_pattern = bow;
3383 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003384
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003385#ifndef BACKSLASH_IN_FILENAME
3386 /* For a shell command more chars need to be escaped. */
3387 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003388 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003389 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003390
3391 /* When still after the command name expand executables. */
3392 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003393 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003394 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003395#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396
3397 /* Check for environment variable */
3398 if (*xp->xp_pattern == '$'
3399#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3400 || *xp->xp_pattern == '%'
3401#endif
3402 )
3403 {
3404 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3405 if (!vim_isIDc(*p))
3406 break;
3407 if (*p == NUL)
3408 {
3409 xp->xp_context = EXPAND_ENV_VARS;
3410 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003411#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3412 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003413 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003414 compl = EXPAND_ENV_VARS;
3415#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 }
3417 }
3418 }
3419
3420/*
3421 * 6. switch on command name
3422 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003423 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 {
3425 case CMD_cd:
3426 case CMD_chdir:
3427 case CMD_lcd:
3428 case CMD_lchdir:
3429 if (xp->xp_context == EXPAND_FILES)
3430 xp->xp_context = EXPAND_DIRECTORIES;
3431 break;
3432 case CMD_help:
3433 xp->xp_context = EXPAND_HELP;
3434 xp->xp_pattern = arg;
3435 break;
3436
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003437 /* Command modifiers: return the argument.
3438 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003440 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 case CMD_belowright:
3442 case CMD_botright:
3443 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003444 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003446 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 case CMD_folddoclosed:
3448 case CMD_folddoopen:
3449 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003450 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 case CMD_keepjumps:
3452 case CMD_keepmarks:
3453 case CMD_leftabove:
3454 case CMD_lockmarks:
3455 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003456 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003458 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 case CMD_topleft:
3460 case CMD_verbose:
3461 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003462 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 return arg;
3464
Bram Moolenaar4f688582007-07-24 12:34:30 +00003465#ifdef FEAT_CMDL_COMPL
3466# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 case CMD_match:
3468 if (*arg == NUL || !ends_excmd(*arg))
3469 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003470 /* also complete "None" */
3471 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 arg = skipwhite(skiptowhite(arg));
3473 if (*arg != NUL)
3474 {
3475 xp->xp_context = EXPAND_NOTHING;
3476 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3477 }
3478 }
3479 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003480# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482/*
3483 * All completion for the +cmdline_compl feature goes here.
3484 */
3485
3486# ifdef FEAT_USR_CMDS
3487 case CMD_command:
3488 /* Check for attributes */
3489 while (*arg == '-')
3490 {
3491 arg++; /* Skip "-" */
3492 p = skiptowhite(arg);
3493 if (*p == NUL)
3494 {
3495 /* Cursor is still in the attribute */
3496 p = vim_strchr(arg, '=');
3497 if (p == NULL)
3498 {
3499 /* No "=", so complete attribute names */
3500 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3501 xp->xp_pattern = arg;
3502 return NULL;
3503 }
3504
3505 /* For the -complete and -nargs attributes, we complete
3506 * their arguments as well.
3507 */
3508 if (STRNICMP(arg, "complete", p - arg) == 0)
3509 {
3510 xp->xp_context = EXPAND_USER_COMPLETE;
3511 xp->xp_pattern = p + 1;
3512 return NULL;
3513 }
3514 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3515 {
3516 xp->xp_context = EXPAND_USER_NARGS;
3517 xp->xp_pattern = p + 1;
3518 return NULL;
3519 }
3520 return NULL;
3521 }
3522 arg = skipwhite(p);
3523 }
3524
3525 /* After the attributes comes the new command name */
3526 p = skiptowhite(arg);
3527 if (*p == NUL)
3528 {
3529 xp->xp_context = EXPAND_USER_COMMANDS;
3530 xp->xp_pattern = arg;
3531 break;
3532 }
3533
3534 /* And finally comes a normal command */
3535 return skipwhite(p);
3536
3537 case CMD_delcommand:
3538 xp->xp_context = EXPAND_USER_COMMANDS;
3539 xp->xp_pattern = arg;
3540 break;
3541# endif
3542
3543 case CMD_global:
3544 case CMD_vglobal:
3545 delim = *arg; /* get the delimiter */
3546 if (delim)
3547 ++arg; /* skip delimiter if there is one */
3548
3549 while (arg[0] != NUL && arg[0] != delim)
3550 {
3551 if (arg[0] == '\\' && arg[1] != NUL)
3552 ++arg;
3553 ++arg;
3554 }
3555 if (arg[0] != NUL)
3556 return arg + 1;
3557 break;
3558 case CMD_and:
3559 case CMD_substitute:
3560 delim = *arg;
3561 if (delim)
3562 {
3563 /* skip "from" part */
3564 ++arg;
3565 arg = skip_regexp(arg, delim, p_magic, NULL);
3566 }
3567 /* skip "to" part */
3568 while (arg[0] != NUL && arg[0] != delim)
3569 {
3570 if (arg[0] == '\\' && arg[1] != NUL)
3571 ++arg;
3572 ++arg;
3573 }
3574 if (arg[0] != NUL) /* skip delimiter */
3575 ++arg;
3576 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3577 ++arg;
3578 if (arg[0] != NUL)
3579 return arg;
3580 break;
3581 case CMD_isearch:
3582 case CMD_dsearch:
3583 case CMD_ilist:
3584 case CMD_dlist:
3585 case CMD_ijump:
3586 case CMD_psearch:
3587 case CMD_djump:
3588 case CMD_isplit:
3589 case CMD_dsplit:
3590 arg = skipwhite(skipdigits(arg)); /* skip count */
3591 if (*arg == '/') /* Match regexp, not just whole words */
3592 {
3593 for (++arg; *arg && *arg != '/'; arg++)
3594 if (*arg == '\\' && arg[1] != NUL)
3595 arg++;
3596 if (*arg)
3597 {
3598 arg = skipwhite(arg + 1);
3599
3600 /* Check for trailing illegal characters */
3601 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3602 xp->xp_context = EXPAND_NOTHING;
3603 else
3604 return arg;
3605 }
3606 }
3607 break;
3608#ifdef FEAT_AUTOCMD
3609 case CMD_autocmd:
3610 return set_context_in_autocmd(xp, arg, FALSE);
3611
3612 case CMD_doautocmd:
3613 return set_context_in_autocmd(xp, arg, TRUE);
3614#endif
3615 case CMD_set:
3616 set_context_in_set_cmd(xp, arg, 0);
3617 break;
3618 case CMD_setglobal:
3619 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3620 break;
3621 case CMD_setlocal:
3622 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3623 break;
3624 case CMD_tag:
3625 case CMD_stag:
3626 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003627 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 case CMD_tselect:
3629 case CMD_stselect:
3630 case CMD_ptselect:
3631 case CMD_tjump:
3632 case CMD_stjump:
3633 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003634 if (*p_wop != NUL)
3635 xp->xp_context = EXPAND_TAGS_LISTFILES;
3636 else
3637 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 xp->xp_pattern = arg;
3639 break;
3640 case CMD_augroup:
3641 xp->xp_context = EXPAND_AUGROUP;
3642 xp->xp_pattern = arg;
3643 break;
3644#ifdef FEAT_SYN_HL
3645 case CMD_syntax:
3646 set_context_in_syntax_cmd(xp, arg);
3647 break;
3648#endif
3649#ifdef FEAT_EVAL
3650 case CMD_let:
3651 case CMD_if:
3652 case CMD_elseif:
3653 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003654 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 case CMD_echo:
3656 case CMD_echon:
3657 case CMD_execute:
3658 case CMD_echomsg:
3659 case CMD_echoerr:
3660 case CMD_call:
3661 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003662 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 break;
3664
3665 case CMD_unlet:
3666 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3667 arg = xp->xp_pattern + 1;
3668 xp->xp_context = EXPAND_USER_VARS;
3669 xp->xp_pattern = arg;
3670 break;
3671
3672 case CMD_function:
3673 case CMD_delfunction:
3674 xp->xp_context = EXPAND_USER_FUNC;
3675 xp->xp_pattern = arg;
3676 break;
3677
3678 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00003679 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 break;
3681#endif
3682 case CMD_highlight:
3683 set_context_in_highlight_cmd(xp, arg);
3684 break;
3685#ifdef FEAT_LISTCMDS
3686 case CMD_bdelete:
3687 case CMD_bwipeout:
3688 case CMD_bunload:
3689 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3690 arg = xp->xp_pattern + 1;
3691 /*FALLTHROUGH*/
3692 case CMD_buffer:
3693 case CMD_sbuffer:
3694 case CMD_checktime:
3695 xp->xp_context = EXPAND_BUFFERS;
3696 xp->xp_pattern = arg;
3697 break;
3698#endif
3699#ifdef FEAT_USR_CMDS
3700 case CMD_USER:
3701 case CMD_USER_BUF:
3702 if (compl != EXPAND_NOTHING)
3703 {
3704 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003705 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 {
3707# ifdef FEAT_MENU
3708 if (compl == EXPAND_MENUS)
3709 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3710# endif
3711 if (compl == EXPAND_COMMANDS)
3712 return arg;
3713 if (compl == EXPAND_MAPPINGS)
3714 return set_context_in_map_cmd(xp, (char_u *)"map",
3715 arg, forceit, FALSE, FALSE, CMD_map);
3716 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3717 arg = xp->xp_pattern + 1;
3718 xp->xp_pattern = arg;
3719 }
3720 xp->xp_context = compl;
3721 }
3722 break;
3723#endif
3724 case CMD_map: case CMD_noremap:
3725 case CMD_nmap: case CMD_nnoremap:
3726 case CMD_vmap: case CMD_vnoremap:
3727 case CMD_omap: case CMD_onoremap:
3728 case CMD_imap: case CMD_inoremap:
3729 case CMD_cmap: case CMD_cnoremap:
3730 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003731 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 case CMD_unmap:
3733 case CMD_nunmap:
3734 case CMD_vunmap:
3735 case CMD_ounmap:
3736 case CMD_iunmap:
3737 case CMD_cunmap:
3738 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003739 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 case CMD_abbreviate: case CMD_noreabbrev:
3741 case CMD_cabbrev: case CMD_cnoreabbrev:
3742 case CMD_iabbrev: case CMD_inoreabbrev:
3743 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003744 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 case CMD_unabbreviate:
3746 case CMD_cunabbrev:
3747 case CMD_iunabbrev:
3748 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003749 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750#ifdef FEAT_MENU
3751 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3752 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3753 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3754 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3755 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3756 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3757 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3758 case CMD_tmenu: case CMD_tunmenu:
3759 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3760 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3761#endif
3762
3763 case CMD_colorscheme:
3764 xp->xp_context = EXPAND_COLORS;
3765 xp->xp_pattern = arg;
3766 break;
3767
3768 case CMD_compiler:
3769 xp->xp_context = EXPAND_COMPILER;
3770 xp->xp_pattern = arg;
3771 break;
3772
3773#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3774 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3775 case CMD_language:
3776 if (*skiptowhite(arg) == NUL)
3777 {
3778 xp->xp_context = EXPAND_LANGUAGE;
3779 xp->xp_pattern = arg;
3780 }
3781 else
3782 xp->xp_context = EXPAND_NOTHING;
3783 break;
3784#endif
3785
3786#endif /* FEAT_CMDL_COMPL */
3787
3788 default:
3789 break;
3790 }
3791 return NULL;
3792}
3793
3794/*
3795 * skip a range specifier of the form: addr [,addr] [;addr] ..
3796 *
3797 * Backslashed delimiters after / or ? will be skipped, and commands will
3798 * not be expanded between /'s and ?'s or after "'".
3799 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003800 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 * Returns the "cmd" pointer advanced to beyond the range.
3802 */
3803 char_u *
3804skip_range(cmd, ctx)
3805 char_u *cmd;
3806 int *ctx; /* pointer to xp_context or NULL */
3807{
3808 int delim;
3809
Bram Moolenaardf177f62005-02-22 08:39:57 +00003810 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 {
3812 if (*cmd == '\'')
3813 {
3814 if (*++cmd == NUL && ctx != NULL)
3815 *ctx = EXPAND_NOTHING;
3816 }
3817 else if (*cmd == '/' || *cmd == '?')
3818 {
3819 delim = *cmd++;
3820 while (*cmd != NUL && *cmd != delim)
3821 if (*cmd++ == '\\' && *cmd != NUL)
3822 ++cmd;
3823 if (*cmd == NUL && ctx != NULL)
3824 *ctx = EXPAND_NOTHING;
3825 }
3826 if (*cmd != NUL)
3827 ++cmd;
3828 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003829
3830 /* Skip ":" and white space. */
3831 while (*cmd == ':')
3832 cmd = skipwhite(cmd + 1);
3833
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 return cmd;
3835}
3836
3837/*
3838 * get a single EX address
3839 *
3840 * Set ptr to the next character after the part that was interpreted.
3841 * Set ptr to NULL when an error is encountered.
3842 *
3843 * Return MAXLNUM when no Ex address was found.
3844 */
3845 static linenr_T
3846get_address(ptr, skip, to_other_file)
3847 char_u **ptr;
3848 int skip; /* only skip the address, don't use it */
3849 int to_other_file; /* flag: may jump to other file */
3850{
3851 int c;
3852 int i;
3853 long n;
3854 char_u *cmd;
3855 pos_T pos;
3856 pos_T *fp;
3857 linenr_T lnum;
3858
3859 cmd = skipwhite(*ptr);
3860 lnum = MAXLNUM;
3861 do
3862 {
3863 switch (*cmd)
3864 {
3865 case '.': /* '.' - Cursor position */
3866 ++cmd;
3867 lnum = curwin->w_cursor.lnum;
3868 break;
3869
3870 case '$': /* '$' - last line */
3871 ++cmd;
3872 lnum = curbuf->b_ml.ml_line_count;
3873 break;
3874
3875 case '\'': /* ''' - mark */
3876 if (*++cmd == NUL)
3877 {
3878 cmd = NULL;
3879 goto error;
3880 }
3881 if (skip)
3882 ++cmd;
3883 else
3884 {
3885 /* Only accept a mark in another file when it is
3886 * used by itself: ":'M". */
3887 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3888 ++cmd;
3889 if (fp == (pos_T *)-1)
3890 /* Jumped to another file. */
3891 lnum = curwin->w_cursor.lnum;
3892 else
3893 {
3894 if (check_mark(fp) == FAIL)
3895 {
3896 cmd = NULL;
3897 goto error;
3898 }
3899 lnum = fp->lnum;
3900 }
3901 }
3902 break;
3903
3904 case '/':
3905 case '?': /* '/' or '?' - search */
3906 c = *cmd++;
3907 if (skip) /* skip "/pat/" */
3908 {
3909 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3910 if (*cmd == c)
3911 ++cmd;
3912 }
3913 else
3914 {
3915 pos = curwin->w_cursor; /* save curwin->w_cursor */
3916 /*
3917 * When '/' or '?' follows another address, start
3918 * from there.
3919 */
3920 if (lnum != MAXLNUM)
3921 curwin->w_cursor.lnum = lnum;
3922 /*
3923 * Start a forward search at the end of the line.
3924 * Start a backward search at the start of the line.
3925 * This makes sure we never match in the current
3926 * line, and can match anywhere in the
3927 * next/previous line.
3928 */
3929 if (c == '/')
3930 curwin->w_cursor.col = MAXCOL;
3931 else
3932 curwin->w_cursor.col = 0;
3933 searchcmdlen = 0;
3934 if (!do_search(NULL, c, cmd, 1L,
Bram Moolenaaraad86642008-03-10 20:34:59 +00003935 SEARCH_HIS | SEARCH_MSG, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 {
3937 curwin->w_cursor = pos;
3938 cmd = NULL;
3939 goto error;
3940 }
3941 lnum = curwin->w_cursor.lnum;
3942 curwin->w_cursor = pos;
3943 /* adjust command string pointer */
3944 cmd += searchcmdlen;
3945 }
3946 break;
3947
3948 case '\\': /* "\?", "\/" or "\&", repeat search */
3949 ++cmd;
3950 if (*cmd == '&')
3951 i = RE_SUBST;
3952 else if (*cmd == '?' || *cmd == '/')
3953 i = RE_SEARCH;
3954 else
3955 {
3956 EMSG(_(e_backslash));
3957 cmd = NULL;
3958 goto error;
3959 }
3960
3961 if (!skip)
3962 {
3963 /*
3964 * When search follows another address, start from
3965 * there.
3966 */
3967 if (lnum != MAXLNUM)
3968 pos.lnum = lnum;
3969 else
3970 pos.lnum = curwin->w_cursor.lnum;
3971
3972 /*
3973 * Start the search just like for the above
3974 * do_search().
3975 */
3976 if (*cmd != '?')
3977 pos.col = MAXCOL;
3978 else
3979 pos.col = 0;
3980 if (searchit(curwin, curbuf, &pos,
3981 *cmd == '?' ? BACKWARD : FORWARD,
Bram Moolenaaraad86642008-03-10 20:34:59 +00003982 (char_u *)"", 1L, SEARCH_MSG,
Bram Moolenaar76929292008-01-06 19:07:36 +00003983 i, (linenr_T)0, NULL) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 lnum = pos.lnum;
3985 else
3986 {
3987 cmd = NULL;
3988 goto error;
3989 }
3990 }
3991 ++cmd;
3992 break;
3993
3994 default:
3995 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3996 lnum = getdigits(&cmd);
3997 }
3998
3999 for (;;)
4000 {
4001 cmd = skipwhite(cmd);
4002 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4003 break;
4004
4005 if (lnum == MAXLNUM)
4006 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
4007 if (VIM_ISDIGIT(*cmd))
4008 i = '+'; /* "number" is same as "+number" */
4009 else
4010 i = *cmd++;
4011 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4012 n = 1;
4013 else
4014 n = getdigits(&cmd);
4015 if (i == '-')
4016 lnum -= n;
4017 else
4018 lnum += n;
4019 }
4020 } while (*cmd == '/' || *cmd == '?');
4021
4022error:
4023 *ptr = cmd;
4024 return lnum;
4025}
4026
4027/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004028 * Get flags from an Ex command argument.
4029 */
4030 static void
4031get_flags(eap)
4032 exarg_T *eap;
4033{
4034 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4035 {
4036 if (*eap->arg == 'l')
4037 eap->flags |= EXFLAG_LIST;
4038 else if (*eap->arg == 'p')
4039 eap->flags |= EXFLAG_PRINT;
4040 else
4041 eap->flags |= EXFLAG_NR;
4042 eap->arg = skipwhite(eap->arg + 1);
4043 }
4044}
4045
4046/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 * Function called for command which is Not Implemented. NI!
4048 */
4049 void
4050ex_ni(eap)
4051 exarg_T *eap;
4052{
4053 if (!eap->skip)
4054 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4055}
4056
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004057#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058/*
4059 * Function called for script command which is Not Implemented. NI!
4060 * Skips over ":perl <<EOF" constructs.
4061 */
4062 static void
4063ex_script_ni(eap)
4064 exarg_T *eap;
4065{
4066 if (!eap->skip)
4067 ex_ni(eap);
4068 else
4069 vim_free(script_get(eap, eap->arg));
4070}
4071#endif
4072
4073/*
4074 * Check range in Ex command for validity.
4075 * Return NULL when valid, error message when invalid.
4076 */
4077 static char_u *
4078invalid_range(eap)
4079 exarg_T *eap;
4080{
4081 if ( eap->line1 < 0
4082 || eap->line2 < 0
4083 || eap->line1 > eap->line2
4084 || ((eap->argt & RANGE)
4085 && !(eap->argt & NOTADR)
4086 && eap->line2 > curbuf->b_ml.ml_line_count
4087#ifdef FEAT_DIFF
4088 + (eap->cmdidx == CMD_diffget)
4089#endif
4090 ))
4091 return (char_u *)_(e_invrange);
4092 return NULL;
4093}
4094
4095/*
4096 * Correct the range for zero line number, if required.
4097 */
4098 static void
4099correct_range(eap)
4100 exarg_T *eap;
4101{
4102 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4103 {
4104 if (eap->line1 == 0)
4105 eap->line1 = 1;
4106 if (eap->line2 == 0)
4107 eap->line2 = 1;
4108 }
4109}
4110
Bram Moolenaar748bf032005-02-02 23:04:36 +00004111#ifdef FEAT_QUICKFIX
4112static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4113
4114/*
4115 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4116 * pattern. Otherwise return eap->arg.
4117 */
4118 static char_u *
4119skip_grep_pat(eap)
4120 exarg_T *eap;
4121{
4122 char_u *p = eap->arg;
4123
Bram Moolenaara37420f2006-02-04 22:37:47 +00004124 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4125 || eap->cmdidx == CMD_vimgrepadd
4126 || eap->cmdidx == CMD_lvimgrepadd
4127 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004128 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004129 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004130 if (p == NULL)
4131 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004132 }
4133 return p;
4134}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004135
4136/*
4137 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4138 * in the command line, so that things like % get expanded.
4139 */
4140 static char_u *
4141replace_makeprg(eap, p, cmdlinep)
4142 exarg_T *eap;
4143 char_u *p;
4144 char_u **cmdlinep;
4145{
4146 char_u *new_cmdline;
4147 char_u *program;
4148 char_u *pos;
4149 char_u *ptr;
4150 int len;
4151 int i;
4152
4153 /*
4154 * Don't do it when ":vimgrep" is used for ":grep".
4155 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004156 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4157 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4158 || eap->cmdidx == CMD_grepadd
4159 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004160 && !grep_internal(eap->cmdidx))
4161 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004162 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4163 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004164 {
4165 if (*curbuf->b_p_gp == NUL)
4166 program = p_gp;
4167 else
4168 program = curbuf->b_p_gp;
4169 }
4170 else
4171 {
4172 if (*curbuf->b_p_mp == NUL)
4173 program = p_mp;
4174 else
4175 program = curbuf->b_p_mp;
4176 }
4177
4178 p = skipwhite(p);
4179
4180 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4181 {
4182 /* replace $* by given arguments */
4183 i = 1;
4184 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4185 ++i;
4186 len = (int)STRLEN(p);
4187 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4188 if (new_cmdline == NULL)
4189 return NULL; /* out of memory */
4190 ptr = new_cmdline;
4191 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4192 {
4193 i = (int)(pos - program);
4194 STRNCPY(ptr, program, i);
4195 STRCPY(ptr += i, p);
4196 ptr += len;
4197 program = pos + 2;
4198 }
4199 STRCPY(ptr, program);
4200 }
4201 else
4202 {
4203 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4204 if (new_cmdline == NULL)
4205 return NULL; /* out of memory */
4206 STRCPY(new_cmdline, program);
4207 STRCAT(new_cmdline, " ");
4208 STRCAT(new_cmdline, p);
4209 }
4210 msg_make(p);
4211
4212 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4213 vim_free(*cmdlinep);
4214 *cmdlinep = new_cmdline;
4215 p = new_cmdline;
4216 }
4217 return p;
4218}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004219#endif
4220
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221/*
4222 * Expand file name in Ex command argument.
4223 * Return FAIL for failure, OK otherwise.
4224 */
4225 int
4226expand_filename(eap, cmdlinep, errormsgp)
4227 exarg_T *eap;
4228 char_u **cmdlinep;
4229 char_u **errormsgp;
4230{
4231 int has_wildcards; /* need to expand wildcards */
4232 char_u *repl;
4233 int srclen;
4234 char_u *p;
4235 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004236 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237
Bram Moolenaar748bf032005-02-02 23:04:36 +00004238#ifdef FEAT_QUICKFIX
4239 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4240 p = skip_grep_pat(eap);
4241#else
4242 p = eap->arg;
4243#endif
4244
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 /*
4246 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4247 * the file name contains a wildcard it should not cause expanding.
4248 * (it will be expanded anyway if there is a wildcard before replacing).
4249 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004250 has_wildcards = mch_has_wildcard(p);
4251 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004253#ifdef FEAT_EVAL
4254 /* Skip over `=expr`, wildcards in it are not expanded. */
4255 if (p[0] == '`' && p[1] == '=')
4256 {
4257 p += 2;
4258 (void)skip_expr(&p);
4259 if (*p == '`')
4260 ++p;
4261 continue;
4262 }
4263#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 /*
4265 * Quick check if this cannot be the start of a special string.
4266 * Also removes backslash before '%', '#' and '<'.
4267 */
4268 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4269 {
4270 ++p;
4271 continue;
4272 }
4273
4274 /*
4275 * Try to find a match at this position.
4276 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004277 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4278 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 if (*errormsgp != NULL) /* error detected */
4280 return FAIL;
4281 if (repl == NULL) /* no match found */
4282 {
4283 p += srclen;
4284 continue;
4285 }
4286
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004287 /* Wildcards won't be expanded below, the replacement is taken
4288 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4289 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4290 {
4291 char_u *l = repl;
4292
4293 repl = expand_env_save(repl);
4294 vim_free(l);
4295 }
4296
Bram Moolenaar63b92542007-03-27 14:57:09 +00004297 /* Need to escape white space et al. with a backslash.
4298 * Don't do this for:
4299 * - replacement that already has been escaped: "##"
4300 * - shell commands (may have to use quotes instead).
4301 * - non-unix systems when there is a single argument (spaces don't
4302 * separate arguments then).
4303 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004305 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 && eap->cmdidx != CMD_bang
4307 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004308 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004310 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004312 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313#ifndef UNIX
4314 && !(eap->argt & NOSPC)
4315#endif
4316 )
4317 {
4318 char_u *l;
4319#ifdef BACKSLASH_IN_FILENAME
4320 /* Don't escape a backslash here, because rem_backslash() doesn't
4321 * remove it later. */
4322 static char_u *nobslash = (char_u *)" \t\"|";
4323# define ESCAPE_CHARS nobslash
4324#else
4325# define ESCAPE_CHARS escape_chars
4326#endif
4327
4328 for (l = repl; *l; ++l)
4329 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4330 {
4331 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4332 if (l != NULL)
4333 {
4334 vim_free(repl);
4335 repl = l;
4336 }
4337 break;
4338 }
4339 }
4340
4341 /* For a shell command a '!' must be escaped. */
4342 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004343 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 {
4345 char_u *l;
4346
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004347 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 if (l != NULL)
4349 {
4350 vim_free(repl);
4351 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004352 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 if (strstr((char *)p_sh, "sh") != NULL)
4354 {
4355 l = vim_strsave_escaped(repl, (char_u *)"!");
4356 if (l != NULL)
4357 {
4358 vim_free(repl);
4359 repl = l;
4360 }
4361 }
4362 }
4363 }
4364
4365 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4366 vim_free(repl);
4367 if (p == NULL)
4368 return FAIL;
4369 }
4370
4371 /*
4372 * One file argument: Expand wildcards.
4373 * Don't do this with ":r !command" or ":w !command".
4374 */
4375 if ((eap->argt & NOSPC) && !eap->usefilter)
4376 {
4377 /*
4378 * May do this twice:
4379 * 1. Replace environment variables.
4380 * 2. Replace any other wildcards, remove backslashes.
4381 */
4382 for (n = 1; n <= 2; ++n)
4383 {
4384 if (n == 2)
4385 {
4386#ifdef UNIX
4387 /*
4388 * Only for Unix we check for more than one file name.
4389 * For other systems spaces are considered to be part
4390 * of the file name.
4391 * Only check here if there is no wildcard, otherwise
4392 * ExpandOne() will check for errors. This allows
4393 * ":e `ls ve*.c`" on Unix.
4394 */
4395 if (!has_wildcards)
4396 for (p = eap->arg; *p; ++p)
4397 {
4398 /* skip escaped characters */
4399 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4400 ++p;
4401 else if (vim_iswhite(*p))
4402 {
4403 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4404 return FAIL;
4405 }
4406 }
4407#endif
4408
4409 /*
4410 * Halve the number of backslashes (this is Vi compatible).
4411 * For Unix and OS/2, when wildcards are expanded, this is
4412 * done by ExpandOne() below.
4413 */
4414#if defined(UNIX) || defined(OS2)
4415 if (!has_wildcards)
4416#endif
4417 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 }
4419
4420 if (has_wildcards)
4421 {
4422 if (n == 1)
4423 {
4424 /*
4425 * First loop: May expand environment variables. This
4426 * can be done much faster with expand_env() than with
4427 * something else (e.g., calling a shell).
4428 * After expanding environment variables, check again
4429 * if there are still wildcards present.
4430 */
4431 if (vim_strchr(eap->arg, '$') != NULL
4432 || vim_strchr(eap->arg, '~') != NULL)
4433 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004434 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004435 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 has_wildcards = mch_has_wildcard(NameBuff);
4437 p = NameBuff;
4438 }
4439 else
4440 p = NULL;
4441 }
4442 else /* n == 2 */
4443 {
4444 expand_T xpc;
4445
4446 ExpandInit(&xpc);
4447 xpc.xp_context = EXPAND_FILES;
4448 p = ExpandOne(&xpc, eap->arg, NULL,
4449 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4450 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 if (p == NULL)
4452 return FAIL;
4453 }
4454 if (p != NULL)
4455 {
4456 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4457 p, cmdlinep);
4458 if (n == 2) /* p came from ExpandOne() */
4459 vim_free(p);
4460 }
4461 }
4462 }
4463 }
4464 return OK;
4465}
4466
4467/*
4468 * Replace part of the command line, keeping eap->cmd, eap->arg and
4469 * eap->nextcmd correct.
4470 * "src" points to the part that is to be replaced, of length "srclen".
4471 * "repl" is the replacement string.
4472 * Returns a pointer to the character after the replaced string.
4473 * Returns NULL for failure.
4474 */
4475 static char_u *
4476repl_cmdline(eap, src, srclen, repl, cmdlinep)
4477 exarg_T *eap;
4478 char_u *src;
4479 int srclen;
4480 char_u *repl;
4481 char_u **cmdlinep;
4482{
4483 int len;
4484 int i;
4485 char_u *new_cmdline;
4486
4487 /*
4488 * The new command line is build in new_cmdline[].
4489 * First allocate it.
4490 * Careful: a "+cmd" argument may have been NUL terminated.
4491 */
4492 len = (int)STRLEN(repl);
4493 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004494 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4496 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4497 return NULL; /* out of memory! */
4498
4499 /*
4500 * Copy the stuff before the expanded part.
4501 * Copy the expanded stuff.
4502 * Copy what came after the expanded part.
4503 * Copy the next commands, if there are any.
4504 */
4505 i = (int)(src - *cmdlinep); /* length of part before match */
4506 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004507
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 mch_memmove(new_cmdline + i, repl, (size_t)len);
4509 i += len; /* remember the end of the string */
4510 STRCPY(new_cmdline + i, src + srclen);
4511 src = new_cmdline + i; /* remember where to continue */
4512
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004513 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 {
4515 i = (int)STRLEN(new_cmdline) + 1;
4516 STRCPY(new_cmdline + i, eap->nextcmd);
4517 eap->nextcmd = new_cmdline + i;
4518 }
4519 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4520 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4521 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4522 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4523 vim_free(*cmdlinep);
4524 *cmdlinep = new_cmdline;
4525
4526 return src;
4527}
4528
4529/*
4530 * Check for '|' to separate commands and '"' to start comments.
4531 */
4532 void
4533separate_nextcmd(eap)
4534 exarg_T *eap;
4535{
4536 char_u *p;
4537
Bram Moolenaar86b68352004-12-27 21:59:20 +00004538#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004539 p = skip_grep_pat(eap);
4540#else
4541 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004542#endif
4543
4544 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 {
4546 if (*p == Ctrl_V)
4547 {
4548 if (eap->argt & (USECTRLV | XFILE))
4549 ++p; /* skip CTRL-V and next char */
4550 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00004551 /* remove CTRL-V and skip next char */
4552 mch_memmove(p, p + 1, STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 if (*p == NUL) /* stop at NUL after CTRL-V */
4554 break;
4555 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004556
4557#ifdef FEAT_EVAL
4558 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004559 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004560 {
4561 p += 2;
4562 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004563 }
4564#endif
4565
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 /* Check for '"': start of comment or '|': next command */
4567 /* :@" and :*" do not start a comment!
4568 * :redir @" doesn't either. */
4569 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4570 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4571 || p != eap->arg)
4572 && (eap->cmdidx != CMD_redir
4573 || p != eap->arg + 1 || p[-1] != '@'))
4574 || *p == '|' || *p == '\n')
4575 {
4576 /*
4577 * We remove the '\' before the '|', unless USECTRLV is used
4578 * AND 'b' is present in 'cpoptions'.
4579 */
4580 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4581 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4582 {
4583 mch_memmove(p - 1, p, STRLEN(p) + 1); /* remove the '\' */
4584 --p;
4585 }
4586 else
4587 {
4588 eap->nextcmd = check_nextcmd(p);
4589 *p = NUL;
4590 break;
4591 }
4592 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004594
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4596 del_trailing_spaces(eap->arg);
4597}
4598
4599/*
4600 * get + command from ex argument
4601 */
4602 static char_u *
4603getargcmd(argp)
4604 char_u **argp;
4605{
4606 char_u *arg = *argp;
4607 char_u *command = NULL;
4608
4609 if (*arg == '+') /* +[command] */
4610 {
4611 ++arg;
4612 if (vim_isspace(*arg))
4613 command = dollar_command;
4614 else
4615 {
4616 command = arg;
4617 arg = skip_cmd_arg(command, TRUE);
4618 if (*arg != NUL)
4619 *arg++ = NUL; /* terminate command with NUL */
4620 }
4621
4622 arg = skipwhite(arg); /* skip over spaces */
4623 *argp = arg;
4624 }
4625 return command;
4626}
4627
4628/*
4629 * Find end of "+command" argument. Skip over "\ " and "\\".
4630 */
4631 static char_u *
4632skip_cmd_arg(p, rembs)
4633 char_u *p;
4634 int rembs; /* TRUE to halve the number of backslashes */
4635{
4636 while (*p && !vim_isspace(*p))
4637 {
4638 if (*p == '\\' && p[1] != NUL)
4639 {
4640 if (rembs)
4641 mch_memmove(p, p + 1, STRLEN(p));
4642 else
4643 ++p;
4644 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004645 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 }
4647 return p;
4648}
4649
4650/*
4651 * Get "++opt=arg" argument.
4652 * Return FAIL or OK.
4653 */
4654 static int
4655getargopt(eap)
4656 exarg_T *eap;
4657{
4658 char_u *arg = eap->arg + 2;
4659 int *pp = NULL;
4660#ifdef FEAT_MBYTE
4661 char_u *p;
4662#endif
4663
4664 /* ":edit ++[no]bin[ary] file" */
4665 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4666 {
4667 if (*arg == 'n')
4668 {
4669 arg += 2;
4670 eap->force_bin = FORCE_NOBIN;
4671 }
4672 else
4673 eap->force_bin = FORCE_BIN;
4674 if (!checkforcmd(&arg, "binary", 3))
4675 return FAIL;
4676 eap->arg = skipwhite(arg);
4677 return OK;
4678 }
4679
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004680 /* ":read ++edit file" */
4681 if (STRNCMP(arg, "edit", 4) == 0)
4682 {
4683 eap->read_edit = TRUE;
4684 eap->arg = skipwhite(arg + 4);
4685 return OK;
4686 }
4687
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 if (STRNCMP(arg, "ff", 2) == 0)
4689 {
4690 arg += 2;
4691 pp = &eap->force_ff;
4692 }
4693 else if (STRNCMP(arg, "fileformat", 10) == 0)
4694 {
4695 arg += 10;
4696 pp = &eap->force_ff;
4697 }
4698#ifdef FEAT_MBYTE
4699 else if (STRNCMP(arg, "enc", 3) == 0)
4700 {
4701 arg += 3;
4702 pp = &eap->force_enc;
4703 }
4704 else if (STRNCMP(arg, "encoding", 8) == 0)
4705 {
4706 arg += 8;
4707 pp = &eap->force_enc;
4708 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004709 else if (STRNCMP(arg, "bad", 3) == 0)
4710 {
4711 arg += 3;
4712 pp = &eap->bad_char;
4713 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714#endif
4715
4716 if (pp == NULL || *arg != '=')
4717 return FAIL;
4718
4719 ++arg;
4720 *pp = (int)(arg - eap->cmd);
4721 arg = skip_cmd_arg(arg, FALSE);
4722 eap->arg = skipwhite(arg);
4723 *arg = NUL;
4724
4725#ifdef FEAT_MBYTE
4726 if (pp == &eap->force_ff)
4727 {
4728#endif
4729 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4730 return FAIL;
4731#ifdef FEAT_MBYTE
4732 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004733 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 {
4735 /* Make 'fileencoding' lower case. */
4736 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4737 *p = TOLOWER_ASC(*p);
4738 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004739 else
4740 {
4741 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4742 * "drop". */
4743 p = eap->cmd + eap->bad_char;
4744 if (STRICMP(p, "keep") == 0)
4745 eap->bad_char = BAD_KEEP;
4746 else if (STRICMP(p, "drop") == 0)
4747 eap->bad_char = BAD_DROP;
4748 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4749 eap->bad_char = *p;
4750 else
4751 return FAIL;
4752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753#endif
4754
4755 return OK;
4756}
4757
4758/*
4759 * ":abbreviate" and friends.
4760 */
4761 static void
4762ex_abbreviate(eap)
4763 exarg_T *eap;
4764{
4765 do_exmap(eap, TRUE); /* almost the same as mapping */
4766}
4767
4768/*
4769 * ":map" and friends.
4770 */
4771 static void
4772ex_map(eap)
4773 exarg_T *eap;
4774{
4775 /*
4776 * If we are sourcing .exrc or .vimrc in current directory we
4777 * print the mappings for security reasons.
4778 */
4779 if (secure)
4780 {
4781 secure = 2;
4782 msg_outtrans(eap->cmd);
4783 msg_putchar('\n');
4784 }
4785 do_exmap(eap, FALSE);
4786}
4787
4788/*
4789 * ":unmap" and friends.
4790 */
4791 static void
4792ex_unmap(eap)
4793 exarg_T *eap;
4794{
4795 do_exmap(eap, FALSE);
4796}
4797
4798/*
4799 * ":mapclear" and friends.
4800 */
4801 static void
4802ex_mapclear(eap)
4803 exarg_T *eap;
4804{
4805 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4806}
4807
4808/*
4809 * ":abclear" and friends.
4810 */
4811 static void
4812ex_abclear(eap)
4813 exarg_T *eap;
4814{
4815 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4816}
4817
4818#ifdef FEAT_AUTOCMD
4819 static void
4820ex_autocmd(eap)
4821 exarg_T *eap;
4822{
4823 /*
4824 * Disallow auto commands from .exrc and .vimrc in current
4825 * directory for security reasons.
4826 */
4827 if (secure)
4828 {
4829 secure = 2;
4830 eap->errmsg = e_curdir;
4831 }
4832 else if (eap->cmdidx == CMD_autocmd)
4833 do_autocmd(eap->arg, eap->forceit);
4834 else
4835 do_augroup(eap->arg, eap->forceit);
4836}
4837
4838/*
4839 * ":doautocmd": Apply the automatic commands to the current buffer.
4840 */
4841 static void
4842ex_doautocmd(eap)
4843 exarg_T *eap;
4844{
4845 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004846 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847}
4848#endif
4849
4850#ifdef FEAT_LISTCMDS
4851/*
4852 * :[N]bunload[!] [N] [bufname] unload buffer
4853 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4854 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4855 */
4856 static void
4857ex_bunload(eap)
4858 exarg_T *eap;
4859{
4860 eap->errmsg = do_bufdel(
4861 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4862 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4863 : DOBUF_UNLOAD, eap->arg,
4864 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4865}
4866
4867/*
4868 * :[N]buffer [N] to buffer N
4869 * :[N]sbuffer [N] to buffer N
4870 */
4871 static void
4872ex_buffer(eap)
4873 exarg_T *eap;
4874{
4875 if (*eap->arg)
4876 eap->errmsg = e_trailing;
4877 else
4878 {
4879 if (eap->addr_count == 0) /* default is current buffer */
4880 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4881 else
4882 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4883 }
4884}
4885
4886/*
4887 * :[N]bmodified [N] to next mod. buffer
4888 * :[N]sbmodified [N] to next mod. buffer
4889 */
4890 static void
4891ex_bmodified(eap)
4892 exarg_T *eap;
4893{
4894 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4895}
4896
4897/*
4898 * :[N]bnext [N] to next buffer
4899 * :[N]sbnext [N] split and to next buffer
4900 */
4901 static void
4902ex_bnext(eap)
4903 exarg_T *eap;
4904{
4905 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4906}
4907
4908/*
4909 * :[N]bNext [N] to previous buffer
4910 * :[N]bprevious [N] to previous buffer
4911 * :[N]sbNext [N] split and to previous buffer
4912 * :[N]sbprevious [N] split and to previous buffer
4913 */
4914 static void
4915ex_bprevious(eap)
4916 exarg_T *eap;
4917{
4918 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4919}
4920
4921/*
4922 * :brewind to first buffer
4923 * :bfirst to first buffer
4924 * :sbrewind split and to first buffer
4925 * :sbfirst split and to first buffer
4926 */
4927 static void
4928ex_brewind(eap)
4929 exarg_T *eap;
4930{
4931 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4932}
4933
4934/*
4935 * :blast to last buffer
4936 * :sblast split and to last buffer
4937 */
4938 static void
4939ex_blast(eap)
4940 exarg_T *eap;
4941{
4942 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4943}
4944#endif
4945
4946 int
4947ends_excmd(c)
4948 int c;
4949{
4950 return (c == NUL || c == '|' || c == '"' || c == '\n');
4951}
4952
4953#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4954 || defined(PROTO)
4955/*
4956 * Return the next command, after the first '|' or '\n'.
4957 * Return NULL if not found.
4958 */
4959 char_u *
4960find_nextcmd(p)
4961 char_u *p;
4962{
4963 while (*p != '|' && *p != '\n')
4964 {
4965 if (*p == NUL)
4966 return NULL;
4967 ++p;
4968 }
4969 return (p + 1);
4970}
4971#endif
4972
4973/*
4974 * Check if *p is a separator between Ex commands.
4975 * Return NULL if it isn't, (p + 1) if it is.
4976 */
4977 char_u *
4978check_nextcmd(p)
4979 char_u *p;
4980{
4981 p = skipwhite(p);
4982 if (*p == '|' || *p == '\n')
4983 return (p + 1);
4984 else
4985 return NULL;
4986}
4987
4988/*
4989 * - if there are more files to edit
4990 * - and this is the last window
4991 * - and forceit not used
4992 * - and not repeated twice on a row
4993 * return FAIL and give error message if 'message' TRUE
4994 * return OK otherwise
4995 */
4996 static int
4997check_more(message, forceit)
4998 int message; /* when FALSE check only, no messages */
4999 int forceit;
5000{
5001 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5002
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005003 if (!forceit && only_one_window()
5004 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 {
5006 if (message)
5007 {
5008#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5009 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5010 {
5011 char_u buff[IOSIZE];
5012
5013 if (n == 1)
5014 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
5015 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005016 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 _("%d more files to edit. Quit anyway?"), n);
5018 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5019 return OK;
5020 return FAIL;
5021 }
5022#endif
5023 if (n == 1)
5024 EMSG(_("E173: 1 more file to edit"));
5025 else
5026 EMSGN(_("E173: %ld more files to edit"), n);
5027 quitmore = 2; /* next try to quit is allowed */
5028 }
5029 return FAIL;
5030 }
5031 return OK;
5032}
5033
5034#ifdef FEAT_CMDL_COMPL
5035/*
5036 * Function given to ExpandGeneric() to obtain the list of command names.
5037 */
5038/*ARGSUSED*/
5039 char_u *
5040get_command_name(xp, idx)
5041 expand_T *xp;
5042 int idx;
5043{
5044 if (idx >= (int)CMD_SIZE)
5045# ifdef FEAT_USR_CMDS
5046 return get_user_command_name(idx);
5047# else
5048 return NULL;
5049# endif
5050 return cmdnames[idx].cmd_name;
5051}
5052#endif
5053
5054#if defined(FEAT_USR_CMDS) || defined(PROTO)
5055static 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 force));
5056static void uc_list __ARGS((char_u *name, size_t name_len));
5057static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5058static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5059static 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));
5060
5061 static int
5062uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5063 char_u *name;
5064 size_t name_len;
5065 char_u *rep;
5066 long argt;
5067 long def;
5068 int flags;
5069 int compl;
5070 char_u *compl_arg;
5071 int force;
5072{
5073 ucmd_T *cmd = NULL;
5074 char_u *p;
5075 int i;
5076 int cmp = 1;
5077 char_u *rep_buf = NULL;
5078 garray_T *gap;
5079
Bram Moolenaar9c102382006-05-03 21:26:49 +00005080 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 if (rep_buf == NULL)
5082 {
5083 /* Can't replace termcodes - try using the string as is */
5084 rep_buf = vim_strsave(rep);
5085
5086 /* Give up if out of memory */
5087 if (rep_buf == NULL)
5088 return FAIL;
5089 }
5090
5091 /* get address of growarray: global or in curbuf */
5092 if (flags & UC_BUFFER)
5093 {
5094 gap = &curbuf->b_ucmds;
5095 if (gap->ga_itemsize == 0)
5096 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5097 }
5098 else
5099 gap = &ucmds;
5100
5101 /* Search for the command in the already defined commands. */
5102 for (i = 0; i < gap->ga_len; ++i)
5103 {
5104 size_t len;
5105
5106 cmd = USER_CMD_GA(gap, i);
5107 len = STRLEN(cmd->uc_name);
5108 cmp = STRNCMP(name, cmd->uc_name, name_len);
5109 if (cmp == 0)
5110 {
5111 if (name_len < len)
5112 cmp = -1;
5113 else if (name_len > len)
5114 cmp = 1;
5115 }
5116
5117 if (cmp == 0)
5118 {
5119 if (!force)
5120 {
5121 EMSG(_("E174: Command already exists: add ! to replace it"));
5122 goto fail;
5123 }
5124
5125 vim_free(cmd->uc_rep);
5126 cmd->uc_rep = 0;
5127 break;
5128 }
5129
5130 /* Stop as soon as we pass the name to add */
5131 if (cmp < 0)
5132 break;
5133 }
5134
5135 /* Extend the array unless we're replacing an existing command */
5136 if (cmp != 0)
5137 {
5138 if (ga_grow(gap, 1) != OK)
5139 goto fail;
5140 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5141 goto fail;
5142
5143 cmd = USER_CMD_GA(gap, i);
5144 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5145
5146 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147
5148 cmd->uc_name = p;
5149 }
5150
5151 cmd->uc_rep = rep_buf;
5152 cmd->uc_argt = argt;
5153 cmd->uc_def = def;
5154 cmd->uc_compl = compl;
5155#ifdef FEAT_EVAL
5156 cmd->uc_scriptID = current_SID;
5157# ifdef FEAT_CMDL_COMPL
5158 cmd->uc_compl_arg = compl_arg;
5159# endif
5160#endif
5161
5162 return OK;
5163
5164fail:
5165 vim_free(rep_buf);
5166#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5167 vim_free(compl_arg);
5168#endif
5169 return FAIL;
5170}
5171
5172/*
5173 * List of names for completion for ":command" with the EXPAND_ flag.
5174 * Must be alphabetical for completion.
5175 */
5176static struct
5177{
5178 int expand;
5179 char *name;
5180} command_complete[] =
5181{
5182 {EXPAND_AUGROUP, "augroup"},
5183 {EXPAND_BUFFERS, "buffer"},
5184 {EXPAND_COMMANDS, "command"},
5185#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5186 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005187 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188#endif
5189 {EXPAND_DIRECTORIES, "dir"},
5190 {EXPAND_ENV_VARS, "environment"},
5191 {EXPAND_EVENTS, "event"},
5192 {EXPAND_EXPRESSION, "expression"},
5193 {EXPAND_FILES, "file"},
5194 {EXPAND_FUNCTIONS, "function"},
5195 {EXPAND_HELP, "help"},
5196 {EXPAND_HIGHLIGHT, "highlight"},
5197 {EXPAND_MAPPINGS, "mapping"},
5198 {EXPAND_MENUS, "menu"},
5199 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005200 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 {EXPAND_TAGS, "tag"},
5202 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5203 {EXPAND_USER_VARS, "var"},
5204 {0, NULL}
5205};
5206
5207 static void
5208uc_list(name, name_len)
5209 char_u *name;
5210 size_t name_len;
5211{
5212 int i, j;
5213 int found = FALSE;
5214 ucmd_T *cmd;
5215 int len;
5216 long a;
5217 garray_T *gap;
5218
5219 gap = &curbuf->b_ucmds;
5220 for (;;)
5221 {
5222 for (i = 0; i < gap->ga_len; ++i)
5223 {
5224 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005225 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226
5227 /* Skip commands which don't match the requested prefix */
5228 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5229 continue;
5230
5231 /* Put out the title first time */
5232 if (!found)
5233 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5234 found = TRUE;
5235 msg_putchar('\n');
5236 if (got_int)
5237 break;
5238
5239 /* Special cases */
5240 msg_putchar(a & BANG ? '!' : ' ');
5241 msg_putchar(a & REGSTR ? '"' : ' ');
5242 msg_putchar(gap != &ucmds ? 'b' : ' ');
5243 msg_putchar(' ');
5244
5245 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5246 len = (int)STRLEN(cmd->uc_name) + 4;
5247
5248 do {
5249 msg_putchar(' ');
5250 ++len;
5251 } while (len < 16);
5252
5253 len = 0;
5254
5255 /* Arguments */
5256 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5257 {
5258 case 0: IObuff[len++] = '0'; break;
5259 case (EXTRA): IObuff[len++] = '*'; break;
5260 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5261 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5262 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5263 }
5264
5265 do {
5266 IObuff[len++] = ' ';
5267 } while (len < 5);
5268
5269 /* Range */
5270 if (a & (RANGE|COUNT))
5271 {
5272 if (a & COUNT)
5273 {
5274 /* -count=N */
5275 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5276 len += (int)STRLEN(IObuff + len);
5277 }
5278 else if (a & DFLALL)
5279 IObuff[len++] = '%';
5280 else if (cmd->uc_def >= 0)
5281 {
5282 /* -range=N */
5283 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5284 len += (int)STRLEN(IObuff + len);
5285 }
5286 else
5287 IObuff[len++] = '.';
5288 }
5289
5290 do {
5291 IObuff[len++] = ' ';
5292 } while (len < 11);
5293
5294 /* Completion */
5295 for (j = 0; command_complete[j].expand != 0; ++j)
5296 if (command_complete[j].expand == cmd->uc_compl)
5297 {
5298 STRCPY(IObuff + len, command_complete[j].name);
5299 len += (int)STRLEN(IObuff + len);
5300 break;
5301 }
5302
5303 do {
5304 IObuff[len++] = ' ';
5305 } while (len < 21);
5306
5307 IObuff[len] = '\0';
5308 msg_outtrans(IObuff);
5309
5310 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005311#ifdef FEAT_EVAL
5312 if (p_verbose > 0)
5313 last_set_msg(cmd->uc_scriptID);
5314#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 out_flush();
5316 ui_breakcheck();
5317 if (got_int)
5318 break;
5319 }
5320 if (gap == &ucmds || i < gap->ga_len)
5321 break;
5322 gap = &ucmds;
5323 }
5324
5325 if (!found)
5326 MSG(_("No user-defined commands found"));
5327}
5328
5329 static char_u *
5330uc_fun_cmd()
5331{
5332 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5333 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5334 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5335 0xb9, 0x7f, 0};
5336 int i;
5337
5338 for (i = 0; fcmd[i]; ++i)
5339 IObuff[i] = fcmd[i] - 0x40;
5340 IObuff[i] = 0;
5341 return IObuff;
5342}
5343
5344 static int
5345uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5346 char_u *attr;
5347 size_t len;
5348 long *argt;
5349 long *def;
5350 int *flags;
5351 int *compl;
5352 char_u **compl_arg;
5353{
5354 char_u *p;
5355
5356 if (len == 0)
5357 {
5358 EMSG(_("E175: No attribute specified"));
5359 return FAIL;
5360 }
5361
5362 /* First, try the simple attributes (no arguments) */
5363 if (STRNICMP(attr, "bang", len) == 0)
5364 *argt |= BANG;
5365 else if (STRNICMP(attr, "buffer", len) == 0)
5366 *flags |= UC_BUFFER;
5367 else if (STRNICMP(attr, "register", len) == 0)
5368 *argt |= REGSTR;
5369 else if (STRNICMP(attr, "bar", len) == 0)
5370 *argt |= TRLBAR;
5371 else
5372 {
5373 int i;
5374 char_u *val = NULL;
5375 size_t vallen = 0;
5376 size_t attrlen = len;
5377
5378 /* Look for the attribute name - which is the part before any '=' */
5379 for (i = 0; i < (int)len; ++i)
5380 {
5381 if (attr[i] == '=')
5382 {
5383 val = &attr[i + 1];
5384 vallen = len - i - 1;
5385 attrlen = i;
5386 break;
5387 }
5388 }
5389
5390 if (STRNICMP(attr, "nargs", attrlen) == 0)
5391 {
5392 if (vallen == 1)
5393 {
5394 if (*val == '0')
5395 /* Do nothing - this is the default */;
5396 else if (*val == '1')
5397 *argt |= (EXTRA | NOSPC | NEEDARG);
5398 else if (*val == '*')
5399 *argt |= EXTRA;
5400 else if (*val == '?')
5401 *argt |= (EXTRA | NOSPC);
5402 else if (*val == '+')
5403 *argt |= (EXTRA | NEEDARG);
5404 else
5405 goto wrong_nargs;
5406 }
5407 else
5408 {
5409wrong_nargs:
5410 EMSG(_("E176: Invalid number of arguments"));
5411 return FAIL;
5412 }
5413 }
5414 else if (STRNICMP(attr, "range", attrlen) == 0)
5415 {
5416 *argt |= RANGE;
5417 if (vallen == 1 && *val == '%')
5418 *argt |= DFLALL;
5419 else if (val != NULL)
5420 {
5421 p = val;
5422 if (*def >= 0)
5423 {
5424two_count:
5425 EMSG(_("E177: Count cannot be specified twice"));
5426 return FAIL;
5427 }
5428
5429 *def = getdigits(&p);
5430 *argt |= (ZEROR | NOTADR);
5431
5432 if (p != val + vallen || vallen == 0)
5433 {
5434invalid_count:
5435 EMSG(_("E178: Invalid default value for count"));
5436 return FAIL;
5437 }
5438 }
5439 }
5440 else if (STRNICMP(attr, "count", attrlen) == 0)
5441 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005442 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443
5444 if (val != NULL)
5445 {
5446 p = val;
5447 if (*def >= 0)
5448 goto two_count;
5449
5450 *def = getdigits(&p);
5451
5452 if (p != val + vallen)
5453 goto invalid_count;
5454 }
5455
5456 if (*def < 0)
5457 *def = 0;
5458 }
5459 else if (STRNICMP(attr, "complete", attrlen) == 0)
5460 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 if (val == NULL)
5462 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005463 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 return FAIL;
5465 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005467 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5468 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 }
5471 else
5472 {
5473 char_u ch = attr[len];
5474 attr[len] = '\0';
5475 EMSG2(_("E181: Invalid attribute: %s"), attr);
5476 attr[len] = ch;
5477 return FAIL;
5478 }
5479 }
5480
5481 return OK;
5482}
5483
5484 static void
5485ex_command(eap)
5486 exarg_T *eap;
5487{
5488 char_u *name;
5489 char_u *end;
5490 char_u *p;
5491 long argt = 0;
5492 long def = -1;
5493 int flags = 0;
5494 int compl = EXPAND_NOTHING;
5495 char_u *compl_arg = NULL;
5496 int has_attr = (eap->arg[0] == '-');
5497
5498 p = eap->arg;
5499
5500 /* Check for attributes */
5501 while (*p == '-')
5502 {
5503 ++p;
5504 end = skiptowhite(p);
5505 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5506 == FAIL)
5507 return;
5508 p = skipwhite(end);
5509 }
5510
5511 /* Get the name (if any) and skip to the following argument */
5512 name = p;
5513 if (ASCII_ISALPHA(*p))
5514 while (ASCII_ISALNUM(*p))
5515 ++p;
5516 if (!ends_excmd(*p) && !vim_iswhite(*p))
5517 {
5518 EMSG(_("E182: Invalid command name"));
5519 return;
5520 }
5521 end = p;
5522
5523 /* If there is nothing after the name, and no attributes were specified,
5524 * we are listing commands
5525 */
5526 p = skipwhite(end);
5527 if (!has_attr && ends_excmd(*p))
5528 {
5529 uc_list(name, end - name);
5530 }
5531 else if (!ASCII_ISUPPER(*name))
5532 {
5533 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5534 return;
5535 }
5536 else
5537 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5538 eap->forceit);
5539}
5540
5541/*
5542 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 * Clear all user commands, global and for current buffer.
5544 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005545/*ARGSUSED*/
5546 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547ex_comclear(eap)
5548 exarg_T *eap;
5549{
5550 uc_clear(&ucmds);
5551 uc_clear(&curbuf->b_ucmds);
5552}
5553
5554/*
5555 * Clear all user commands for "gap".
5556 */
5557 void
5558uc_clear(gap)
5559 garray_T *gap;
5560{
5561 int i;
5562 ucmd_T *cmd;
5563
5564 for (i = 0; i < gap->ga_len; ++i)
5565 {
5566 cmd = USER_CMD_GA(gap, i);
5567 vim_free(cmd->uc_name);
5568 vim_free(cmd->uc_rep);
5569# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5570 vim_free(cmd->uc_compl_arg);
5571# endif
5572 }
5573 ga_clear(gap);
5574}
5575
5576 static void
5577ex_delcommand(eap)
5578 exarg_T *eap;
5579{
5580 int i = 0;
5581 ucmd_T *cmd = NULL;
5582 int cmp = -1;
5583 garray_T *gap;
5584
5585 gap = &curbuf->b_ucmds;
5586 for (;;)
5587 {
5588 for (i = 0; i < gap->ga_len; ++i)
5589 {
5590 cmd = USER_CMD_GA(gap, i);
5591 cmp = STRCMP(eap->arg, cmd->uc_name);
5592 if (cmp <= 0)
5593 break;
5594 }
5595 if (gap == &ucmds || cmp == 0)
5596 break;
5597 gap = &ucmds;
5598 }
5599
5600 if (cmp != 0)
5601 {
5602 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5603 return;
5604 }
5605
5606 vim_free(cmd->uc_name);
5607 vim_free(cmd->uc_rep);
5608# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5609 vim_free(cmd->uc_compl_arg);
5610# endif
5611
5612 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613
5614 if (i < gap->ga_len)
5615 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5616}
5617
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005618/*
5619 * split and quote args for <f-args>
5620 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 static char_u *
5622uc_split_args(arg, lenp)
5623 char_u *arg;
5624 size_t *lenp;
5625{
5626 char_u *buf;
5627 char_u *p;
5628 char_u *q;
5629 int len;
5630
5631 /* Precalculate length */
5632 p = arg;
5633 len = 2; /* Initial and final quotes */
5634
5635 while (*p)
5636 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005637 if (p[0] == '\\' && p[1] == '\\')
5638 {
5639 len += 2;
5640 p += 2;
5641 }
5642 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 {
5644 len += 1;
5645 p += 2;
5646 }
5647 else if (*p == '\\' || *p == '"')
5648 {
5649 len += 2;
5650 p += 1;
5651 }
5652 else if (vim_iswhite(*p))
5653 {
5654 p = skipwhite(p);
5655 if (*p == NUL)
5656 break;
5657 len += 3; /* "," */
5658 }
5659 else
5660 {
5661 ++len;
5662 ++p;
5663 }
5664 }
5665
5666 buf = alloc(len + 1);
5667 if (buf == NULL)
5668 {
5669 *lenp = 0;
5670 return buf;
5671 }
5672
5673 p = arg;
5674 q = buf;
5675 *q++ = '"';
5676 while (*p)
5677 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005678 if (p[0] == '\\' && p[1] == '\\')
5679 {
5680 *q++ = '\\';
5681 *q++ = '\\';
5682 p += 2;
5683 }
5684 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 {
5686 *q++ = p[1];
5687 p += 2;
5688 }
5689 else if (*p == '\\' || *p == '"')
5690 {
5691 *q++ = '\\';
5692 *q++ = *p++;
5693 }
5694 else if (vim_iswhite(*p))
5695 {
5696 p = skipwhite(p);
5697 if (*p == NUL)
5698 break;
5699 *q++ = '"';
5700 *q++ = ',';
5701 *q++ = '"';
5702 }
5703 else
5704 {
5705 *q++ = *p++;
5706 }
5707 }
5708 *q++ = '"';
5709 *q = 0;
5710
5711 *lenp = len;
5712 return buf;
5713}
5714
5715/*
5716 * Check for a <> code in a user command.
5717 * "code" points to the '<'. "len" the length of the <> (inclusive).
5718 * "buf" is where the result is to be added.
5719 * "split_buf" points to a buffer used for splitting, caller should free it.
5720 * "split_len" is the length of what "split_buf" contains.
5721 * Returns the length of the replacement, which has been added to "buf".
5722 * Returns -1 if there was no match, and only the "<" has been copied.
5723 */
5724 static size_t
5725uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5726 char_u *code;
5727 size_t len;
5728 char_u *buf;
5729 ucmd_T *cmd; /* the user command we're expanding */
5730 exarg_T *eap; /* ex arguments */
5731 char_u **split_buf;
5732 size_t *split_len;
5733{
5734 size_t result = 0;
5735 char_u *p = code + 1;
5736 size_t l = len - 2;
5737 int quote = 0;
5738 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5739 ct_LT, ct_NONE } type = ct_NONE;
5740
5741 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5742 {
5743 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5744 p += 2;
5745 l -= 2;
5746 }
5747
Bram Moolenaar371d5402006-03-20 21:47:49 +00005748 ++l;
5749 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005751 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005753 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005755 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005757 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005759 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005761 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005763 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 type = ct_REGISTER;
5765
5766 switch (type)
5767 {
5768 case ct_ARGS:
5769 /* Simple case first */
5770 if (*eap->arg == NUL)
5771 {
5772 if (quote == 1)
5773 {
5774 result = 2;
5775 if (buf != NULL)
5776 STRCPY(buf, "''");
5777 }
5778 else
5779 result = 0;
5780 break;
5781 }
5782
5783 /* When specified there is a single argument don't split it.
5784 * Works for ":Cmd %" when % is "a b c". */
5785 if ((eap->argt & NOSPC) && quote == 2)
5786 quote = 1;
5787
5788 switch (quote)
5789 {
5790 case 0: /* No quoting, no splitting */
5791 result = STRLEN(eap->arg);
5792 if (buf != NULL)
5793 STRCPY(buf, eap->arg);
5794 break;
5795 case 1: /* Quote, but don't split */
5796 result = STRLEN(eap->arg) + 2;
5797 for (p = eap->arg; *p; ++p)
5798 {
5799 if (*p == '\\' || *p == '"')
5800 ++result;
5801 }
5802
5803 if (buf != NULL)
5804 {
5805 *buf++ = '"';
5806 for (p = eap->arg; *p; ++p)
5807 {
5808 if (*p == '\\' || *p == '"')
5809 *buf++ = '\\';
5810 *buf++ = *p;
5811 }
5812 *buf = '"';
5813 }
5814
5815 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005816 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 /* This is hard, so only do it once, and cache the result */
5818 if (*split_buf == NULL)
5819 *split_buf = uc_split_args(eap->arg, split_len);
5820
5821 result = *split_len;
5822 if (buf != NULL && result != 0)
5823 STRCPY(buf, *split_buf);
5824
5825 break;
5826 }
5827 break;
5828
5829 case ct_BANG:
5830 result = eap->forceit ? 1 : 0;
5831 if (quote)
5832 result += 2;
5833 if (buf != NULL)
5834 {
5835 if (quote)
5836 *buf++ = '"';
5837 if (eap->forceit)
5838 *buf++ = '!';
5839 if (quote)
5840 *buf = '"';
5841 }
5842 break;
5843
5844 case ct_LINE1:
5845 case ct_LINE2:
5846 case ct_COUNT:
5847 {
5848 char num_buf[20];
5849 long num = (type == ct_LINE1) ? eap->line1 :
5850 (type == ct_LINE2) ? eap->line2 :
5851 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5852 size_t num_len;
5853
5854 sprintf(num_buf, "%ld", num);
5855 num_len = STRLEN(num_buf);
5856 result = num_len;
5857
5858 if (quote)
5859 result += 2;
5860
5861 if (buf != NULL)
5862 {
5863 if (quote)
5864 *buf++ = '"';
5865 STRCPY(buf, num_buf);
5866 buf += num_len;
5867 if (quote)
5868 *buf = '"';
5869 }
5870
5871 break;
5872 }
5873
5874 case ct_REGISTER:
5875 result = eap->regname ? 1 : 0;
5876 if (quote)
5877 result += 2;
5878 if (buf != NULL)
5879 {
5880 if (quote)
5881 *buf++ = '\'';
5882 if (eap->regname)
5883 *buf++ = eap->regname;
5884 if (quote)
5885 *buf = '\'';
5886 }
5887 break;
5888
5889 case ct_LT:
5890 result = 1;
5891 if (buf != NULL)
5892 *buf = '<';
5893 break;
5894
5895 default:
5896 /* Not recognized: just copy the '<' and return -1. */
5897 result = (size_t)-1;
5898 if (buf != NULL)
5899 *buf = '<';
5900 break;
5901 }
5902
5903 return result;
5904}
5905
5906 static void
5907do_ucmd(eap)
5908 exarg_T *eap;
5909{
5910 char_u *buf;
5911 char_u *p;
5912 char_u *q;
5913
5914 char_u *start;
5915 char_u *end;
5916 size_t len, totlen;
5917
5918 size_t split_len = 0;
5919 char_u *split_buf = NULL;
5920 ucmd_T *cmd;
5921#ifdef FEAT_EVAL
5922 scid_T save_current_SID = current_SID;
5923#endif
5924
5925 if (eap->cmdidx == CMD_USER)
5926 cmd = USER_CMD(eap->useridx);
5927 else
5928 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5929
5930 /*
5931 * Replace <> in the command by the arguments.
5932 */
5933 buf = NULL;
5934 for (;;)
5935 {
5936 p = cmd->uc_rep;
5937 q = buf;
5938 totlen = 0;
5939 while ((start = vim_strchr(p, '<')) != NULL
5940 && (end = vim_strchr(start + 1, '>')) != NULL)
5941 {
5942 /* Include the '>' */
5943 ++end;
5944
5945 /* Take everything up to the '<' */
5946 len = start - p;
5947 if (buf == NULL)
5948 totlen += len;
5949 else
5950 {
5951 mch_memmove(q, p, len);
5952 q += len;
5953 }
5954
5955 len = uc_check_code(start, end - start, q, cmd, eap,
5956 &split_buf, &split_len);
5957 if (len == (size_t)-1)
5958 {
5959 /* no match, continue after '<' */
5960 p = start + 1;
5961 len = 1;
5962 }
5963 else
5964 p = end;
5965 if (buf == NULL)
5966 totlen += len;
5967 else
5968 q += len;
5969 }
5970 if (buf != NULL) /* second time here, finished */
5971 {
5972 STRCPY(q, p);
5973 break;
5974 }
5975
5976 totlen += STRLEN(p); /* Add on the trailing characters */
5977 buf = alloc((unsigned)(totlen + 1));
5978 if (buf == NULL)
5979 {
5980 vim_free(split_buf);
5981 return;
5982 }
5983 }
5984
5985#ifdef FEAT_EVAL
5986 current_SID = cmd->uc_scriptID;
5987#endif
5988 (void)do_cmdline(buf, eap->getline, eap->cookie,
5989 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5990#ifdef FEAT_EVAL
5991 current_SID = save_current_SID;
5992#endif
5993 vim_free(buf);
5994 vim_free(split_buf);
5995}
5996
5997# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5998 static char_u *
5999get_user_command_name(idx)
6000 int idx;
6001{
6002 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6003}
6004
6005/*
6006 * Function given to ExpandGeneric() to obtain the list of user command names.
6007 */
6008/*ARGSUSED*/
6009 char_u *
6010get_user_commands(xp, idx)
6011 expand_T *xp;
6012 int idx;
6013{
6014 if (idx < curbuf->b_ucmds.ga_len)
6015 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6016 idx -= curbuf->b_ucmds.ga_len;
6017 if (idx < ucmds.ga_len)
6018 return USER_CMD(idx)->uc_name;
6019 return NULL;
6020}
6021
6022/*
6023 * Function given to ExpandGeneric() to obtain the list of user command
6024 * attributes.
6025 */
6026/*ARGSUSED*/
6027 char_u *
6028get_user_cmd_flags(xp, idx)
6029 expand_T *xp;
6030 int idx;
6031{
6032 static char *user_cmd_flags[] =
6033 {"bang", "bar", "buffer", "complete", "count",
6034 "nargs", "range", "register"};
6035
6036 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
6037 return NULL;
6038 return (char_u *)user_cmd_flags[idx];
6039}
6040
6041/*
6042 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6043 */
6044/*ARGSUSED*/
6045 char_u *
6046get_user_cmd_nargs(xp, idx)
6047 expand_T *xp;
6048 int idx;
6049{
6050 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6051
6052 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
6053 return NULL;
6054 return (char_u *)user_cmd_nargs[idx];
6055}
6056
6057/*
6058 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6059 */
6060/*ARGSUSED*/
6061 char_u *
6062get_user_cmd_complete(xp, idx)
6063 expand_T *xp;
6064 int idx;
6065{
6066 return (char_u *)command_complete[idx].name;
6067}
6068# endif /* FEAT_CMDL_COMPL */
6069
6070#endif /* FEAT_USR_CMDS */
6071
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006072#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6073/*
6074 * Parse a completion argument "value[vallen]".
6075 * The detected completion goes in "*complp", argument type in "*argt".
6076 * When there is an argument, for function and user defined completion, it's
6077 * copied to allocated memory and stored in "*compl_arg".
6078 * Returns FAIL if something is wrong.
6079 */
6080 int
6081parse_compl_arg(value, vallen, complp, argt, compl_arg)
6082 char_u *value;
6083 int vallen;
6084 int *complp;
6085 long *argt;
6086 char_u **compl_arg;
6087{
6088 char_u *arg = NULL;
6089 size_t arglen = 0;
6090 int i;
6091 int valend = vallen;
6092
6093 /* Look for any argument part - which is the part after any ',' */
6094 for (i = 0; i < vallen; ++i)
6095 {
6096 if (value[i] == ',')
6097 {
6098 arg = &value[i + 1];
6099 arglen = vallen - i - 1;
6100 valend = i;
6101 break;
6102 }
6103 }
6104
6105 for (i = 0; command_complete[i].expand != 0; ++i)
6106 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006107 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006108 && STRNCMP(value, command_complete[i].name, valend) == 0)
6109 {
6110 *complp = command_complete[i].expand;
6111 if (command_complete[i].expand == EXPAND_BUFFERS)
6112 *argt |= BUFNAME;
6113 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6114 || command_complete[i].expand == EXPAND_FILES)
6115 *argt |= XFILE;
6116 break;
6117 }
6118 }
6119
6120 if (command_complete[i].expand == 0)
6121 {
6122 EMSG2(_("E180: Invalid complete value: %s"), value);
6123 return FAIL;
6124 }
6125
6126# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6127 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6128 && arg != NULL)
6129# else
6130 if (arg != NULL)
6131# endif
6132 {
6133 EMSG(_("E468: Completion argument only allowed for custom completion"));
6134 return FAIL;
6135 }
6136
6137# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6138 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6139 && arg == NULL)
6140 {
6141 EMSG(_("E467: Custom completion requires a function argument"));
6142 return FAIL;
6143 }
6144
6145 if (arg != NULL)
6146 *compl_arg = vim_strnsave(arg, (int)arglen);
6147# endif
6148 return OK;
6149}
6150#endif
6151
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152 static void
6153ex_colorscheme(eap)
6154 exarg_T *eap;
6155{
6156 if (load_colors(eap->arg) == FAIL)
6157 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6158}
6159
6160 static void
6161ex_highlight(eap)
6162 exarg_T *eap;
6163{
6164 if (*eap->arg == NUL && eap->cmd[2] == '!')
6165 MSG(_("Greetings, Vim user!"));
6166 do_highlight(eap->arg, eap->forceit, FALSE);
6167}
6168
6169
6170/*
6171 * Call this function if we thought we were going to exit, but we won't
6172 * (because of an error). May need to restore the terminal mode.
6173 */
6174 void
6175not_exiting()
6176{
6177 exiting = FALSE;
6178 settmode(TMODE_RAW);
6179}
6180
6181/*
6182 * ":quit": quit current window, quit Vim if closed the last window.
6183 */
6184 static void
6185ex_quit(eap)
6186 exarg_T *eap;
6187{
6188#ifdef FEAT_CMDWIN
6189 if (cmdwin_type != 0)
6190 {
6191 cmdwin_result = Ctrl_C;
6192 return;
6193 }
6194#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006195 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006196 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006197 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006198 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006199 return;
6200 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006201#ifdef FEAT_AUTOCMD
6202 if (curbuf_locked())
6203 return;
6204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205
6206#ifdef FEAT_NETBEANS_INTG
6207 netbeansForcedQuit = eap->forceit;
6208#endif
6209
6210 /*
6211 * If there are more files or windows we won't exit.
6212 */
6213 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6214 exiting = TRUE;
6215 if ((!P_HID(curbuf)
6216 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6217 || check_more(TRUE, eap->forceit) == FAIL
6218 || (only_one_window() && check_changed_any(eap->forceit)))
6219 {
6220 not_exiting();
6221 }
6222 else
6223 {
6224#ifdef FEAT_WINDOWS
6225 if (only_one_window()) /* quit last window */
6226#endif
6227 getout(0);
6228#ifdef FEAT_WINDOWS
6229# ifdef FEAT_GUI
6230 need_mouse_correct = TRUE;
6231# endif
6232 /* close window; may free buffer */
6233 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6234#endif
6235 }
6236}
6237
6238/*
6239 * ":cquit".
6240 */
6241/*ARGSUSED*/
6242 static void
6243ex_cquit(eap)
6244 exarg_T *eap;
6245{
6246 getout(1); /* this does not always pass on the exit code to the Manx
6247 compiler. why? */
6248}
6249
6250/*
6251 * ":qall": try to quit all windows
6252 */
6253 static void
6254ex_quit_all(eap)
6255 exarg_T *eap;
6256{
6257# ifdef FEAT_CMDWIN
6258 if (cmdwin_type != 0)
6259 {
6260 if (eap->forceit)
6261 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6262 else
6263 cmdwin_result = K_XF2;
6264 return;
6265 }
6266# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006267
6268 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006269 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006270 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006271 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006272 return;
6273 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006274#ifdef FEAT_AUTOCMD
6275 if (curbuf_locked())
6276 return;
6277#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006278
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279 exiting = TRUE;
6280 if (eap->forceit || !check_changed_any(FALSE))
6281 getout(0);
6282 not_exiting();
6283}
6284
Bram Moolenaard9967712006-03-11 21:18:15 +00006285#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286/*
6287 * ":close": close current window, unless it is the last one
6288 */
6289 static void
6290ex_close(eap)
6291 exarg_T *eap;
6292{
6293# ifdef FEAT_CMDWIN
6294 if (cmdwin_type != 0)
6295 cmdwin_result = K_IGNORE;
6296 else
6297# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006298 if (!text_locked()
6299#ifdef FEAT_AUTOCMD
6300 && !curbuf_locked()
6301#endif
6302 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006303 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304}
6305
Bram Moolenaard9967712006-03-11 21:18:15 +00006306# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006307/*
6308 * ":pclose": Close any preview window.
6309 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006311ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006313{
6314 win_T *win;
6315
6316 for (win = firstwin; win != NULL; win = win->w_next)
6317 if (win->w_p_pvw)
6318 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006319 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006320 break;
6321 }
6322}
Bram Moolenaard9967712006-03-11 21:18:15 +00006323# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006324
Bram Moolenaarf740b292006-02-16 22:11:02 +00006325/*
6326 * Close window "win" and take care of handling closing the last window for a
6327 * modified buffer.
6328 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006329 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006330ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006331 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006333 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334{
6335 int need_hide;
6336 buf_T *buf = win->w_buffer;
6337
6338 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006339 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006341# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342 if ((p_confirm || cmdmod.confirm) && p_write)
6343 {
6344 dialog_changed(buf, FALSE);
6345 if (buf_valid(buf) && bufIsChanged(buf))
6346 return;
6347 need_hide = FALSE;
6348 }
6349 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006350# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 {
6352 EMSG(_(e_nowrtmsg));
6353 return;
6354 }
6355 }
6356
Bram Moolenaard9967712006-03-11 21:18:15 +00006357# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006359# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006360
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006362 if (tp == NULL)
6363 win_close(win, !need_hide && !P_HID(buf));
6364 else
6365 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366}
6367
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006369 * ":tabclose": close current tab page, unless it is the last one.
6370 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 */
6372 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006373ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 exarg_T *eap;
6375{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006376 tabpage_T *tp;
6377
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006378# ifdef FEAT_CMDWIN
6379 if (cmdwin_type != 0)
6380 cmdwin_result = K_IGNORE;
6381 else
6382# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006383 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006384 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006385 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006387 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006388 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006389 tp = find_tabpage((int)eap->line2);
6390 if (tp == NULL)
6391 {
6392 beep_flush();
6393 return;
6394 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006395 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006396 {
6397 tabpage_close_other(tp, eap->forceit);
6398 return;
6399 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006400 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006401 if (!text_locked()
6402#ifdef FEAT_AUTOCMD
6403 && !curbuf_locked()
6404#endif
6405 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006406 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006408}
6409
6410/*
6411 * ":tabonly": close all tab pages except the current one
6412 */
6413 static void
6414ex_tabonly(eap)
6415 exarg_T *eap;
6416{
6417 tabpage_T *tp;
6418 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006419
6420# ifdef FEAT_CMDWIN
6421 if (cmdwin_type != 0)
6422 cmdwin_result = K_IGNORE;
6423 else
6424# endif
6425 if (first_tabpage->tp_next == NULL)
6426 MSG(_("Already only one tab page"));
6427 else
6428 {
6429 /* Repeat this up to a 1000 times, because autocommands may mess
6430 * up the lists. */
6431 for (done = 0; done < 1000; ++done)
6432 {
6433 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6434 if (tp->tp_topframe != topframe)
6435 {
6436 tabpage_close_other(tp, eap->forceit);
6437 /* if we failed to close it quit */
6438 if (valid_tabpage(tp))
6439 done = 1000;
6440 /* start over, "tp" is now invalid */
6441 break;
6442 }
6443 if (first_tabpage->tp_next == NULL)
6444 break;
6445 }
6446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448
6449/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006450 * Close the current tab page.
6451 */
6452 void
6453tabpage_close(forceit)
6454 int forceit;
6455{
6456 /* First close all the windows but the current one. If that worked then
6457 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006458 if (lastwin != firstwin)
6459 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006460 if (lastwin == firstwin)
6461 ex_win_close(forceit, curwin, NULL);
6462# ifdef FEAT_GUI
6463 need_mouse_correct = TRUE;
6464# endif
6465}
6466
6467/*
6468 * Close tab page "tp", which is not the current tab page.
6469 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006470 * Also takes care of the tab pages line disappearing when closing the
6471 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006472 */
6473 void
6474tabpage_close_other(tp, forceit)
6475 tabpage_T *tp;
6476 int forceit;
6477{
6478 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006479 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006480 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006481
6482 /* Limit to 1000 windows, autocommands may add a window while we close
6483 * one. OK, so I'm paranoid... */
6484 while (++done < 1000)
6485 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006486 wp = tp->tp_firstwin;
6487 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006488
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006489 /* Autocommands may delete the tab page under our fingers and we may
6490 * fail to close a window with a modified buffer. */
6491 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006492 break;
6493 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006494
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006495 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006496 if (h != tabline_height())
6497 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006498}
6499
6500/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501 * ":only".
6502 */
6503 static void
6504ex_only(eap)
6505 exarg_T *eap;
6506{
6507# ifdef FEAT_GUI
6508 need_mouse_correct = TRUE;
6509# endif
6510 close_others(TRUE, eap->forceit);
6511}
6512
6513/*
6514 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006515 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006517 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006518ex_all(eap)
6519 exarg_T *eap;
6520{
6521 if (eap->addr_count == 0)
6522 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006523 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524}
6525#endif /* FEAT_WINDOWS */
6526
6527 static void
6528ex_hide(eap)
6529 exarg_T *eap;
6530{
6531 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6532 eap->errmsg = e_invarg;
6533 else
6534 {
6535 /* ":hide" or ":hide | cmd": hide current window */
6536 eap->nextcmd = check_nextcmd(eap->arg);
6537#ifdef FEAT_WINDOWS
6538 if (!eap->skip)
6539 {
6540# ifdef FEAT_GUI
6541 need_mouse_correct = TRUE;
6542# endif
6543 win_close(curwin, FALSE); /* don't free buffer */
6544 }
6545#endif
6546 }
6547}
6548
6549/*
6550 * ":stop" and ":suspend": Suspend Vim.
6551 */
6552 static void
6553ex_stop(eap)
6554 exarg_T *eap;
6555{
6556 /*
6557 * Disallow suspending for "rvim".
6558 */
6559 if (!check_restricted()
6560#ifdef WIN3264
6561 /*
6562 * Check if external commands are allowed now.
6563 */
6564 && can_end_termcap_mode(TRUE)
6565#endif
6566 )
6567 {
6568 if (!eap->forceit)
6569 autowrite_all();
6570 windgoto((int)Rows - 1, 0);
6571 out_char('\n');
6572 out_flush();
6573 stoptermcap();
6574 out_flush(); /* needed for SUN to restore xterm buffer */
6575#ifdef FEAT_TITLE
6576 mch_restore_title(3); /* restore window titles */
6577#endif
6578 ui_suspend(); /* call machine specific function */
6579#ifdef FEAT_TITLE
6580 maketitle();
6581 resettitle(); /* force updating the title */
6582#endif
6583 starttermcap();
6584 scroll_start(); /* scroll screen before redrawing */
6585 redraw_later_clear();
6586 shell_resized(); /* may have resized window */
6587 }
6588}
6589
6590/*
6591 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6592 */
6593 static void
6594ex_exit(eap)
6595 exarg_T *eap;
6596{
6597#ifdef FEAT_CMDWIN
6598 if (cmdwin_type != 0)
6599 {
6600 cmdwin_result = Ctrl_C;
6601 return;
6602 }
6603#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006604 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006605 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006606 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006607 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006608 return;
6609 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006610#ifdef FEAT_AUTOCMD
6611 if (curbuf_locked())
6612 return;
6613#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614
6615 /*
6616 * if more files or windows we won't exit
6617 */
6618 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6619 exiting = TRUE;
6620 if ( ((eap->cmdidx == CMD_wq
6621 || curbufIsChanged())
6622 && do_write(eap) == FAIL)
6623 || check_more(TRUE, eap->forceit) == FAIL
6624 || (only_one_window() && check_changed_any(eap->forceit)))
6625 {
6626 not_exiting();
6627 }
6628 else
6629 {
6630#ifdef FEAT_WINDOWS
6631 if (only_one_window()) /* quit last window, exit Vim */
6632#endif
6633 getout(0);
6634#ifdef FEAT_WINDOWS
6635# ifdef FEAT_GUI
6636 need_mouse_correct = TRUE;
6637# endif
6638 /* quit current window, may free buffer */
6639 win_close(curwin, !P_HID(curwin->w_buffer));
6640#endif
6641 }
6642}
6643
6644/*
6645 * ":print", ":list", ":number".
6646 */
6647 static void
6648ex_print(eap)
6649 exarg_T *eap;
6650{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006651 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6652 EMSG(_(e_emptybuf));
6653 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006655 for ( ;!got_int; ui_breakcheck())
6656 {
6657 print_line(eap->line1,
6658 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6659 || (eap->flags & EXFLAG_NR)),
6660 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6661 if (++eap->line1 > eap->line2)
6662 break;
6663 out_flush(); /* show one line at a time */
6664 }
6665 setpcmark();
6666 /* put cursor at last line */
6667 curwin->w_cursor.lnum = eap->line2;
6668 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669 }
6670
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672}
6673
6674#ifdef FEAT_BYTEOFF
6675 static void
6676ex_goto(eap)
6677 exarg_T *eap;
6678{
6679 goto_byte(eap->line2);
6680}
6681#endif
6682
6683/*
6684 * ":shell".
6685 */
6686/*ARGSUSED*/
6687 static void
6688ex_shell(eap)
6689 exarg_T *eap;
6690{
6691 do_shell(NULL, 0);
6692}
6693
6694#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6695 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006696 || defined(FEAT_GUI_MSWIN) \
6697 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006698 || defined(PROTO)
6699
6700/*
6701 * Handle a file drop. The code is here because a drop is *nearly* like an
6702 * :args command, but not quite (we have a list of exact filenames, so we
6703 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6704 * code is very similar to :args and hence needs access to a lot of the static
6705 * functions in this file.
6706 *
6707 * The list should be allocated using alloc(), as should each item in the
6708 * list. This function takes over responsibility for freeing the list.
6709 *
Bram Moolenaar81870892007-11-11 18:17:28 +00006710 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00006711 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6712 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6713 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6714 * file functionality is (currently) not in EMX this is not presently a
6715 * problem.
6716 */
6717 void
6718handle_drop(filec, filev, split)
6719 int filec; /* the number of files dropped */
6720 char_u **filev; /* the list of files dropped */
6721 int split; /* force splitting the window */
6722{
6723 exarg_T ea;
6724 int save_msg_scroll = msg_scroll;
6725
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006726 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006727 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006729#ifdef FEAT_AUTOCMD
6730 if (curbuf_locked())
6731 return;
6732#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733
6734 /* Check whether the current buffer is changed. If so, we will need
6735 * to split the current window or data could be lost.
6736 * We don't need to check if the 'hidden' option is set, as in this
6737 * case the buffer won't be lost.
6738 */
6739 if (!P_HID(curbuf) && !split)
6740 {
6741 ++emsg_off;
6742 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6743 --emsg_off;
6744 }
6745 if (split)
6746 {
6747# ifdef FEAT_WINDOWS
6748 if (win_split(0, 0) == FAIL)
6749 return;
6750# ifdef FEAT_SCROLLBIND
6751 curwin->w_p_scb = FALSE;
6752# endif
6753
6754 /* When splitting the window, create a new alist. Otherwise the
6755 * existing one is overwritten. */
6756 alist_unlink(curwin->w_alist);
6757 alist_new();
6758# else
6759 return; /* can't split, always fail */
6760# endif
6761 }
6762
6763 /*
6764 * Set up the new argument list.
6765 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006766 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767
6768 /*
6769 * Move to the first file.
6770 */
6771 /* Fake up a minimal "next" command for do_argfile() */
6772 vim_memset(&ea, 0, sizeof(ea));
6773 ea.cmd = (char_u *)"next";
6774 do_argfile(&ea, 0);
6775
6776 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6777 * mode that is not needed here. */
6778 need_start_insertmode = FALSE;
6779
6780 /* Restore msg_scroll, otherwise a following command may cause scrolling
6781 * unexpectedly. The screen will be redrawn by the caller, thus
6782 * msg_scroll being set by displaying a message is irrelevant. */
6783 msg_scroll = save_msg_scroll;
6784}
6785#endif
6786
Bram Moolenaar071d4272004-06-13 20:20:40 +00006787/*
6788 * Clear an argument list: free all file names and reset it to zero entries.
6789 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006790 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791alist_clear(al)
6792 alist_T *al;
6793{
6794 while (--al->al_ga.ga_len >= 0)
6795 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6796 ga_clear(&al->al_ga);
6797}
6798
6799/*
6800 * Init an argument list.
6801 */
6802 void
6803alist_init(al)
6804 alist_T *al;
6805{
6806 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6807}
6808
6809#if defined(FEAT_WINDOWS) || defined(PROTO)
6810
6811/*
6812 * Remove a reference from an argument list.
6813 * Ignored when the argument list is the global one.
6814 * If the argument list is no longer used by any window, free it.
6815 */
6816 void
6817alist_unlink(al)
6818 alist_T *al;
6819{
6820 if (al != &global_alist && --al->al_refcount <= 0)
6821 {
6822 alist_clear(al);
6823 vim_free(al);
6824 }
6825}
6826
6827# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6828/*
6829 * Create a new argument list and use it for the current window.
6830 */
6831 void
6832alist_new()
6833{
6834 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6835 if (curwin->w_alist == NULL)
6836 {
6837 curwin->w_alist = &global_alist;
6838 ++global_alist.al_refcount;
6839 }
6840 else
6841 {
6842 curwin->w_alist->al_refcount = 1;
6843 alist_init(curwin->w_alist);
6844 }
6845}
6846# endif
6847#endif
6848
6849#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6850/*
6851 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006852 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6853 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854 */
6855 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006856alist_expand(fnum_list, fnum_len)
6857 int *fnum_list;
6858 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859{
6860 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006861 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862 char_u **new_arg_files;
6863 int new_arg_file_count;
6864 char_u *save_p_su = p_su;
6865 int i;
6866
6867 /* Don't use 'suffixes' here. This should work like the shell did the
6868 * expansion. Also, the vimrc file isn't read yet, thus the user
6869 * can't set the options. */
6870 p_su = empty_option;
6871 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6872 if (old_arg_files != NULL)
6873 {
6874 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006875 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6876 old_arg_count = GARGCOUNT;
6877 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878 &new_arg_file_count, &new_arg_files,
6879 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6880 && new_arg_file_count > 0)
6881 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006882 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6883 TRUE, fnum_list, fnum_len);
6884 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006886 }
6887 p_su = save_p_su;
6888}
6889#endif
6890
6891/*
6892 * Set the argument list for the current window.
6893 * Takes over the allocated files[] and the allocated fnames in it.
6894 */
6895 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006896alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897 alist_T *al;
6898 int count;
6899 char_u **files;
6900 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006901 int *fnum_list;
6902 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903{
6904 int i;
6905
6906 alist_clear(al);
6907 if (ga_grow(&al->al_ga, count) == OK)
6908 {
6909 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006910 {
6911 if (got_int)
6912 {
6913 /* When adding many buffers this can take a long time. Allow
6914 * interrupting here. */
6915 while (i < count)
6916 vim_free(files[i++]);
6917 break;
6918 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006919
6920 /* May set buffer name of a buffer previously used for the
6921 * argument list, so that it's re-used by alist_add. */
6922 if (fnum_list != NULL && i < fnum_len)
6923 buf_set_name(fnum_list[i], files[i]);
6924
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006926 ui_breakcheck();
6927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006928 vim_free(files);
6929 }
6930 else
6931 FreeWild(count, files);
6932#ifdef FEAT_WINDOWS
6933 if (al == &global_alist)
6934#endif
6935 arg_had_last = FALSE;
6936}
6937
6938/*
6939 * Add file "fname" to argument list "al".
6940 * "fname" must have been allocated and "al" must have been checked for room.
6941 */
6942 void
6943alist_add(al, fname, set_fnum)
6944 alist_T *al;
6945 char_u *fname;
6946 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6947{
6948 if (fname == NULL) /* don't add NULL file names */
6949 return;
6950#ifdef BACKSLASH_IN_FILENAME
6951 slash_adjust(fname);
6952#endif
6953 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6954 if (set_fnum > 0)
6955 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6956 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6957 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958}
6959
6960#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6961/*
6962 * Adjust slashes in file names. Called after 'shellslash' was set.
6963 */
6964 void
6965alist_slash_adjust()
6966{
6967 int i;
6968# ifdef FEAT_WINDOWS
6969 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006970 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006971# endif
6972
6973 for (i = 0; i < GARGCOUNT; ++i)
6974 if (GARGLIST[i].ae_fname != NULL)
6975 slash_adjust(GARGLIST[i].ae_fname);
6976# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006977 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978 if (wp->w_alist != &global_alist)
6979 for (i = 0; i < WARGCOUNT(wp); ++i)
6980 if (WARGLIST(wp)[i].ae_fname != NULL)
6981 slash_adjust(WARGLIST(wp)[i].ae_fname);
6982# endif
6983}
6984#endif
6985
6986/*
6987 * ":preserve".
6988 */
6989/*ARGSUSED*/
6990 static void
6991ex_preserve(eap)
6992 exarg_T *eap;
6993{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006994 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006995 ml_preserve(curbuf, TRUE);
6996}
6997
6998/*
6999 * ":recover".
7000 */
7001 static void
7002ex_recover(eap)
7003 exarg_T *eap;
7004{
7005 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7006 recoverymode = TRUE;
7007 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
7008 && (*eap->arg == NUL
7009 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7010 ml_recover();
7011 recoverymode = FALSE;
7012}
7013
7014/*
7015 * Command modifier used in a wrong way.
7016 */
7017 static void
7018ex_wrongmodifier(eap)
7019 exarg_T *eap;
7020{
7021 eap->errmsg = e_invcmd;
7022}
7023
7024#ifdef FEAT_WINDOWS
7025/*
7026 * :sview [+command] file split window with new file, read-only
7027 * :split [[+command] file] split window with current or new file
7028 * :vsplit [[+command] file] split window vertically with current or new file
7029 * :new [[+command] file] split window with no or new file
7030 * :vnew [[+command] file] split vertically window with no or new file
7031 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007032 *
7033 * :tabedit open new Tab page with empty window
7034 * :tabedit [+command] file open new Tab page and edit "file"
7035 * :tabnew [[+command] file] just like :tabedit
7036 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037 */
7038 void
7039ex_splitview(eap)
7040 exarg_T *eap;
7041{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007042 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007043# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007045# endif
7046# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007048# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007050# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7052 {
7053 ex_ni(eap);
7054 return;
7055 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007056# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007058# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007062# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063 /* A ":split" in the quickfix window works like ":new". Don't want two
7064 * quickfix windows. */
7065 if (bt_quickfix(curbuf))
7066 {
7067 if (eap->cmdidx == CMD_split)
7068 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007069# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 if (eap->cmdidx == CMD_vsplit)
7071 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007072# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007073 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007074# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007076# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007077 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078 {
7079 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7080 FNAME_MESS, TRUE, curbuf->b_ffname);
7081 if (fname == NULL)
7082 goto theend;
7083 eap->arg = fname;
7084 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007085# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007087# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007089# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007091# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007093# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007094 && eap->cmdidx != CMD_new)
7095 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007096 if (
7097# ifdef FEAT_GUI
7098 !gui.in_use &&
7099# endif
7100 au_has_group((char_u *)"FileExplorer"))
7101 {
7102 /* No browsing supported but we do have the file explorer:
7103 * Edit the directory. */
7104 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7105 eap->arg = (char_u *)".";
7106 }
7107 else
7108 {
7109 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007111 if (fname == NULL)
7112 goto theend;
7113 eap->arg = fname;
7114 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115 }
7116 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007117# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007118
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007119 /*
7120 * Either open new tab page or split the window.
7121 */
7122 if (eap->cmdidx == CMD_tabedit
7123 || eap->cmdidx == CMD_tabfind
7124 || eap->cmdidx == CMD_tabnew)
7125 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007126 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7127 : eap->addr_count == 0 ? 0
7128 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007129 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00007130 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007131
7132 /* set the alternate buffer for the window we came from */
7133 if (curwin != old_curwin
7134 && win_valid(old_curwin)
7135 && old_curwin->w_buffer != curbuf
7136 && !cmdmod.keepalt)
7137 old_curwin->w_alt_fnum = curbuf->b_fnum;
7138 }
7139 }
7140 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007141 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7142 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007143# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007144 /* Reset 'scrollbind' when editing another file, but keep it when
7145 * doing ":split" without arguments. */
7146 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007147# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007149# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 )
7151 curwin->w_p_scb = FALSE;
7152 else
7153 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007154# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155 do_exedit(eap, old_curwin);
7156 }
7157
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007158# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007160# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007162# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163theend:
7164 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007165# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007167
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007168#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007169/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007170 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007171 */
7172 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007173tabpage_new()
7174{
7175 exarg_T ea;
7176
7177 vim_memset(&ea, 0, sizeof(ea));
7178 ea.cmdidx = CMD_tabnew;
7179 ea.cmd = (char_u *)"tabn";
7180 ea.arg = (char_u *)"";
7181 ex_splitview(&ea);
7182}
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007183#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007184
7185/*
7186 * :tabnext command
7187 */
7188 static void
7189ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007190 exarg_T *eap;
7191{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007192 switch (eap->cmdidx)
7193 {
7194 case CMD_tabfirst:
7195 case CMD_tabrewind:
7196 goto_tabpage(1);
7197 break;
7198 case CMD_tablast:
7199 goto_tabpage(9999);
7200 break;
7201 case CMD_tabprevious:
7202 case CMD_tabNext:
7203 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7204 break;
7205 default: /* CMD_tabnext */
7206 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7207 break;
7208 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007209}
7210
7211/*
7212 * :tabmove command
7213 */
7214 static void
7215ex_tabmove(eap)
7216 exarg_T *eap;
7217{
7218 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007219}
7220
7221/*
7222 * :tabs command: List tabs and their contents.
7223 */
7224/*ARGSUSED*/
7225 static void
7226ex_tabs(eap)
7227 exarg_T *eap;
7228{
7229 tabpage_T *tp;
7230 win_T *wp;
7231 int tabcount = 1;
7232
7233 msg_start();
7234 msg_scroll = TRUE;
7235 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7236 {
7237 msg_putchar('\n');
7238 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7239 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7240 out_flush(); /* output one line at a time */
7241 ui_breakcheck();
7242
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007243 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007244 wp = firstwin;
7245 else
7246 wp = tp->tp_firstwin;
7247 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7248 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007249 msg_putchar('\n');
7250 msg_putchar(wp == curwin ? '>' : ' ');
7251 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007252 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7253 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007254 if (buf_spname(wp->w_buffer) != NULL)
7255 STRCPY(IObuff, buf_spname(wp->w_buffer));
7256 else
7257 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7258 IObuff, IOSIZE, TRUE);
7259 msg_outtrans(IObuff);
7260 out_flush(); /* output one line at a time */
7261 ui_breakcheck();
7262 }
7263 }
7264}
7265
7266#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267
7268/*
7269 * ":mode": Set screen mode.
7270 * If no argument given, just get the screen size and redraw.
7271 */
7272 static void
7273ex_mode(eap)
7274 exarg_T *eap;
7275{
7276 if (*eap->arg == NUL)
7277 shell_resized();
7278 else
7279 mch_screenmode(eap->arg);
7280}
7281
7282#ifdef FEAT_WINDOWS
7283/*
7284 * ":resize".
7285 * set, increment or decrement current window height
7286 */
7287 static void
7288ex_resize(eap)
7289 exarg_T *eap;
7290{
7291 int n;
7292 win_T *wp = curwin;
7293
7294 if (eap->addr_count > 0)
7295 {
7296 n = eap->line2;
7297 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7298 ;
7299 }
7300
7301#ifdef FEAT_GUI
7302 need_mouse_correct = TRUE;
7303#endif
7304 n = atol((char *)eap->arg);
7305#ifdef FEAT_VERTSPLIT
7306 if (cmdmod.split & WSP_VERT)
7307 {
7308 if (*eap->arg == '-' || *eap->arg == '+')
7309 n += W_WIDTH(curwin);
7310 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7311 n = 9999;
7312 win_setwidth_win((int)n, wp);
7313 }
7314 else
7315#endif
7316 {
7317 if (*eap->arg == '-' || *eap->arg == '+')
7318 n += curwin->w_height;
7319 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7320 n = 9999;
7321 win_setheight_win((int)n, wp);
7322 }
7323}
7324#endif
7325
7326/*
7327 * ":find [+command] <file>" command.
7328 */
7329 static void
7330ex_find(eap)
7331 exarg_T *eap;
7332{
7333#ifdef FEAT_SEARCHPATH
7334 char_u *fname;
7335 int count;
7336
7337 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7338 TRUE, curbuf->b_ffname);
7339 if (eap->addr_count > 0)
7340 {
7341 /* Repeat finding the file "count" times. This matters when it
7342 * appears several times in the path. */
7343 count = eap->line2;
7344 while (fname != NULL && --count > 0)
7345 {
7346 vim_free(fname);
7347 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7348 FALSE, curbuf->b_ffname);
7349 }
7350 }
7351
7352 if (fname != NULL)
7353 {
7354 eap->arg = fname;
7355#endif
7356 do_exedit(eap, NULL);
7357#ifdef FEAT_SEARCHPATH
7358 vim_free(fname);
7359 }
7360#endif
7361}
7362
7363/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007364 * ":open" simulation: for now just work like ":visual".
7365 */
7366 static void
7367ex_open(eap)
7368 exarg_T *eap;
7369{
7370 regmatch_T regmatch;
7371 char_u *p;
7372
7373 curwin->w_cursor.lnum = eap->line2;
7374 beginline(BL_SOL | BL_FIX);
7375 if (*eap->arg == '/')
7376 {
7377 /* ":open /pattern/": put cursor in column found with pattern */
7378 ++eap->arg;
7379 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7380 *p = NUL;
7381 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7382 if (regmatch.regprog != NULL)
7383 {
7384 regmatch.rm_ic = p_ic;
7385 p = ml_get_curline();
7386 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007387 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007388 else
7389 EMSG(_(e_nomatch));
7390 vim_free(regmatch.regprog);
7391 }
7392 /* Move to the NUL, ignore any other arguments. */
7393 eap->arg += STRLEN(eap->arg);
7394 }
7395 check_cursor();
7396
7397 eap->cmdidx = CMD_visual;
7398 do_exedit(eap, NULL);
7399}
7400
7401/*
7402 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403 */
7404 static void
7405ex_edit(eap)
7406 exarg_T *eap;
7407{
7408 do_exedit(eap, NULL);
7409}
7410
7411/*
7412 * ":edit <file>" command and alikes.
7413 */
7414/*ARGSUSED*/
7415 void
7416do_exedit(eap, old_curwin)
7417 exarg_T *eap;
7418 win_T *old_curwin; /* curwin before doing a split or NULL */
7419{
7420 int n;
7421#ifdef FEAT_WINDOWS
7422 int need_hide;
7423#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007424 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425
7426 /*
7427 * ":vi" command ends Ex mode.
7428 */
7429 if (exmode_active && (eap->cmdidx == CMD_visual
7430 || eap->cmdidx == CMD_view))
7431 {
7432 exmode_active = FALSE;
7433 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007434 {
7435 /* Special case: ":global/pat/visual\NLvi-commands" */
7436 if (global_busy)
7437 {
7438 int rd = RedrawingDisabled;
7439 int nwr = no_wait_return;
7440 int ms = msg_scroll;
7441#ifdef FEAT_GUI
7442 int he = hold_gui_events;
7443#endif
7444
7445 if (eap->nextcmd != NULL)
7446 {
7447 stuffReadbuff(eap->nextcmd);
7448 eap->nextcmd = NULL;
7449 }
7450
7451 if (exmode_was != EXMODE_VIM)
7452 settmode(TMODE_RAW);
7453 RedrawingDisabled = 0;
7454 no_wait_return = 0;
7455 need_wait_return = FALSE;
7456 msg_scroll = 0;
7457#ifdef FEAT_GUI
7458 hold_gui_events = 0;
7459#endif
7460 must_redraw = CLEAR;
7461
7462 main_loop(FALSE, TRUE);
7463
7464 RedrawingDisabled = rd;
7465 no_wait_return = nwr;
7466 msg_scroll = ms;
7467#ifdef FEAT_GUI
7468 hold_gui_events = he;
7469#endif
7470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007471 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007472 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007473 }
7474
7475 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007476 || eap->cmdidx == CMD_tabnew
7477 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007478#ifdef FEAT_VERTSPLIT
7479 || eap->cmdidx == CMD_vnew
7480#endif
7481 ) && *eap->arg == NUL)
7482 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007483 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007484 setpcmark();
7485 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7486 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7487 }
7488 else if ((eap->cmdidx != CMD_split
7489#ifdef FEAT_VERTSPLIT
7490 && eap->cmdidx != CMD_vsplit
7491#endif
7492 )
7493 || *eap->arg != NUL
7494#ifdef FEAT_BROWSE
7495 || cmdmod.browse
7496#endif
7497 )
7498 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007499#ifdef FEAT_AUTOCMD
7500 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7501 * can bring us here, others are stopped earlier. */
7502 if (*eap->arg != NUL && curbuf_locked())
7503 return;
7504#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007505 n = readonlymode;
7506 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7507 readonlymode = TRUE;
7508 else if (eap->cmdidx == CMD_enew)
7509 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7510 empty buffer */
7511 setpcmark();
7512 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7513 NULL, eap,
7514 /* ":edit" goes to first line if Vi compatible */
7515 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7516 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7517 ? ECMD_ONE : eap->do_ecmd_lnum,
7518 (P_HID(curbuf) ? ECMD_HIDE : 0)
7519 + (eap->forceit ? ECMD_FORCEIT : 0)
7520#ifdef FEAT_LISTCMDS
7521 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7522#endif
7523 ) == FAIL)
7524 {
7525 /* Editing the file failed. If the window was split, close it. */
7526#ifdef FEAT_WINDOWS
7527 if (old_curwin != NULL)
7528 {
7529 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7530 if (!need_hide || P_HID(curbuf))
7531 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007532# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7533 cleanup_T cs;
7534
7535 /* Reset the error/interrupt/exception state here so that
7536 * aborting() returns FALSE when closing a window. */
7537 enter_cleanup(&cs);
7538# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007539# ifdef FEAT_GUI
7540 need_mouse_correct = TRUE;
7541# endif
7542 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007543
7544# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7545 /* Restore the error/interrupt/exception state if not
7546 * discarded by a new aborting error, interrupt, or
7547 * uncaught exception. */
7548 leave_cleanup(&cs);
7549# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007550 }
7551 }
7552#endif
7553 }
7554 else if (readonlymode && curbuf->b_nwindows == 1)
7555 {
7556 /* When editing an already visited buffer, 'readonly' won't be set
7557 * but the previous value is kept. With ":view" and ":sview" we
7558 * want the file to be readonly, except when another window is
7559 * editing the same buffer. */
7560 curbuf->b_p_ro = TRUE;
7561 }
7562 readonlymode = n;
7563 }
7564 else
7565 {
7566 if (eap->do_ecmd_cmd != NULL)
7567 do_cmdline_cmd(eap->do_ecmd_cmd);
7568#ifdef FEAT_TITLE
7569 n = curwin->w_arg_idx_invalid;
7570#endif
7571 check_arg_idx(curwin);
7572#ifdef FEAT_TITLE
7573 if (n != curwin->w_arg_idx_invalid)
7574 maketitle();
7575#endif
7576 }
7577
7578#ifdef FEAT_WINDOWS
7579 /*
7580 * if ":split file" worked, set alternate file name in old window to new
7581 * file
7582 */
7583 if (old_curwin != NULL
7584 && *eap->arg != NUL
7585 && curwin != old_curwin
7586 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007587 && old_curwin->w_buffer != curbuf
7588 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007589 old_curwin->w_alt_fnum = curbuf->b_fnum;
7590#endif
7591
7592 ex_no_reprint = TRUE;
7593}
7594
7595#ifndef FEAT_GUI
7596/*
7597 * ":gui" and ":gvim" when there is no GUI.
7598 */
7599 static void
7600ex_nogui(eap)
7601 exarg_T *eap;
7602{
7603 eap->errmsg = e_nogvim;
7604}
7605#endif
7606
7607#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7608 static void
7609ex_tearoff(eap)
7610 exarg_T *eap;
7611{
7612 gui_make_tearoff(eap->arg);
7613}
7614#endif
7615
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007616#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007617 static void
7618ex_popup(eap)
7619 exarg_T *eap;
7620{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007621 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007622}
7623#endif
7624
7625/*ARGSUSED*/
7626 static void
7627ex_swapname(eap)
7628 exarg_T *eap;
7629{
7630 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7631 MSG(_("No swap file"));
7632 else
7633 msg(curbuf->b_ml.ml_mfp->mf_fname);
7634}
7635
7636/*
7637 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7638 * offset.
7639 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7640 */
7641/*ARGSUSED*/
7642 static void
7643ex_syncbind(eap)
7644 exarg_T *eap;
7645{
7646#ifdef FEAT_SCROLLBIND
7647 win_T *wp;
7648 long topline;
7649 long y;
7650 linenr_T old_linenr = curwin->w_cursor.lnum;
7651
7652 setpcmark();
7653
7654 /*
7655 * determine max topline
7656 */
7657 if (curwin->w_p_scb)
7658 {
7659 topline = curwin->w_topline;
7660 for (wp = firstwin; wp; wp = wp->w_next)
7661 {
7662 if (wp->w_p_scb && wp->w_buffer)
7663 {
7664 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7665 if (topline > y)
7666 topline = y;
7667 }
7668 }
7669 if (topline < 1)
7670 topline = 1;
7671 }
7672 else
7673 {
7674 topline = 1;
7675 }
7676
7677
7678 /*
7679 * set all scrollbind windows to the same topline
7680 */
7681 wp = curwin;
7682 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7683 {
7684 if (curwin->w_p_scb)
7685 {
7686 y = topline - curwin->w_topline;
7687 if (y > 0)
7688 scrollup(y, TRUE);
7689 else
7690 scrolldown(-y, TRUE);
7691 curwin->w_scbind_pos = topline;
7692 redraw_later(VALID);
7693 cursor_correct();
7694#ifdef FEAT_WINDOWS
7695 curwin->w_redr_status = TRUE;
7696#endif
7697 }
7698 }
7699 curwin = wp;
7700 if (curwin->w_p_scb)
7701 {
7702 did_syncbind = TRUE;
7703 checkpcmark();
7704 if (old_linenr != curwin->w_cursor.lnum)
7705 {
7706 char_u ctrl_o[2];
7707
7708 ctrl_o[0] = Ctrl_O;
7709 ctrl_o[1] = 0;
7710 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7711 }
7712 }
7713#endif
7714}
7715
7716
7717 static void
7718ex_read(eap)
7719 exarg_T *eap;
7720{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007721 int i;
7722 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7723 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007724
7725 if (eap->usefilter) /* :r!cmd */
7726 do_bang(1, eap, FALSE, FALSE, TRUE);
7727 else
7728 {
7729 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7730 return;
7731
7732#ifdef FEAT_BROWSE
7733 if (cmdmod.browse)
7734 {
7735 char_u *browseFile;
7736
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007737 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007738 NULL, NULL, NULL, curbuf);
7739 if (browseFile != NULL)
7740 {
7741 i = readfile(browseFile, NULL,
7742 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7743 vim_free(browseFile);
7744 }
7745 else
7746 i = OK;
7747 }
7748 else
7749#endif
7750 if (*eap->arg == NUL)
7751 {
7752 if (check_fname() == FAIL) /* check for no file name */
7753 return;
7754 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7755 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7756 }
7757 else
7758 {
7759 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7760 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7761 i = readfile(eap->arg, NULL,
7762 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7763
7764 }
7765 if (i == FAIL)
7766 {
7767#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7768 if (!aborting())
7769#endif
7770 EMSG2(_(e_notopen), eap->arg);
7771 }
7772 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007773 {
7774 if (empty && exmode_active)
7775 {
7776 /* Delete the empty line that remains. Historically ex does
7777 * this but vi doesn't. */
7778 if (eap->line2 == 0)
7779 lnum = curbuf->b_ml.ml_line_count;
7780 else
7781 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007782 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007783 {
7784 ml_delete(lnum, FALSE);
7785 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007786 if (curwin->w_cursor.lnum > 1
7787 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007788 --curwin->w_cursor.lnum;
7789 }
7790 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007791 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007792 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007793 }
7794}
7795
Bram Moolenaarea408852005-06-25 22:49:46 +00007796static char_u *prev_dir = NULL;
7797
7798#if defined(EXITFREE) || defined(PROTO)
7799 void
7800free_cd_dir()
7801{
7802 vim_free(prev_dir);
Bram Moolenaara0174af2008-01-02 20:08:25 +00007803 prev_dir = NULL;
Bram Moolenaarea408852005-06-25 22:49:46 +00007804}
7805#endif
7806
7807
Bram Moolenaar071d4272004-06-13 20:20:40 +00007808/*
7809 * ":cd", ":lcd", ":chdir" and ":lchdir".
7810 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00007811 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007812ex_cd(eap)
7813 exarg_T *eap;
7814{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007815 char_u *new_dir;
7816 char_u *tofree;
7817
7818 new_dir = eap->arg;
7819#if !defined(UNIX) && !defined(VMS)
7820 /* for non-UNIX ":cd" means: print current directory */
7821 if (*new_dir == NUL)
7822 ex_pwd(NULL);
7823 else
7824#endif
7825 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007826 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7827 && !eap->forceit)
7828 {
Bram Moolenaar81870892007-11-11 18:17:28 +00007829 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00007830 return;
7831 }
7832
Bram Moolenaar071d4272004-06-13 20:20:40 +00007833 /* ":cd -": Change to previous directory */
7834 if (STRCMP(new_dir, "-") == 0)
7835 {
7836 if (prev_dir == NULL)
7837 {
7838 EMSG(_("E186: No previous directory"));
7839 return;
7840 }
7841 new_dir = prev_dir;
7842 }
7843
7844 /* Save current directory for next ":cd -" */
7845 tofree = prev_dir;
7846 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7847 prev_dir = vim_strsave(NameBuff);
7848 else
7849 prev_dir = NULL;
7850
7851#if defined(UNIX) || defined(VMS)
7852 /* for UNIX ":cd" means: go to home directory */
7853 if (*new_dir == NUL)
7854 {
7855 /* use NameBuff for home directory name */
7856# ifdef VMS
7857 char_u *p;
7858
7859 p = mch_getenv((char_u *)"SYS$LOGIN");
7860 if (p == NULL || *p == NUL) /* empty is the same as not set */
7861 NameBuff[0] = NUL;
7862 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007863 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007864# else
7865 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7866# endif
7867 new_dir = NameBuff;
7868 }
7869#endif
7870 if (new_dir == NULL || vim_chdir(new_dir))
7871 EMSG(_(e_failed));
7872 else
7873 {
7874 vim_free(curwin->w_localdir);
7875 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7876 {
7877 /* If still in global directory, need to remember current
7878 * directory as global directory. */
7879 if (globaldir == NULL && prev_dir != NULL)
7880 globaldir = vim_strsave(prev_dir);
7881 /* Remember this local directory for the window. */
7882 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7883 curwin->w_localdir = vim_strsave(NameBuff);
7884 }
7885 else
7886 {
7887 /* We are now in the global directory, no need to remember its
7888 * name. */
7889 vim_free(globaldir);
7890 globaldir = NULL;
7891 curwin->w_localdir = NULL;
7892 }
7893
7894 shorten_fnames(TRUE);
7895
7896 /* Echo the new current directory if the command was typed. */
7897 if (KeyTyped)
7898 ex_pwd(eap);
7899 }
7900 vim_free(tofree);
7901 }
7902}
7903
7904/*
7905 * ":pwd".
7906 */
7907/*ARGSUSED*/
7908 static void
7909ex_pwd(eap)
7910 exarg_T *eap;
7911{
7912 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7913 {
7914#ifdef BACKSLASH_IN_FILENAME
7915 slash_adjust(NameBuff);
7916#endif
7917 msg(NameBuff);
7918 }
7919 else
7920 EMSG(_("E187: Unknown"));
7921}
7922
7923/*
7924 * ":=".
7925 */
7926 static void
7927ex_equal(eap)
7928 exarg_T *eap;
7929{
7930 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007931 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007932}
7933
7934 static void
7935ex_sleep(eap)
7936 exarg_T *eap;
7937{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007938 int n;
7939 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007940
7941 if (cursor_valid())
7942 {
7943 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7944 if (n >= 0)
7945 windgoto((int)n, curwin->w_wcol);
7946 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007947
7948 len = eap->line2;
7949 switch (*eap->arg)
7950 {
7951 case 'm': break;
7952 case NUL: len *= 1000L; break;
7953 default: EMSG2(_(e_invarg2), eap->arg); return;
7954 }
7955 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007956}
7957
7958/*
7959 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7960 */
7961 void
7962do_sleep(msec)
7963 long msec;
7964{
7965 long done;
7966
7967 cursor_on();
7968 out_flush();
7969 for (done = 0; !got_int && done < msec; done += 1000L)
7970 {
7971 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7972 ui_breakcheck();
7973 }
7974}
7975
7976 static void
7977do_exmap(eap, isabbrev)
7978 exarg_T *eap;
7979 int isabbrev;
7980{
7981 int mode;
7982 char_u *cmdp;
7983
7984 cmdp = eap->cmd;
7985 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7986
7987 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7988 eap->arg, mode, isabbrev))
7989 {
7990 case 1: EMSG(_(e_invarg));
7991 break;
7992 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7993 break;
7994 }
7995}
7996
7997/*
7998 * ":winsize" command (obsolete).
7999 */
8000 static void
8001ex_winsize(eap)
8002 exarg_T *eap;
8003{
8004 int w, h;
8005 char_u *arg = eap->arg;
8006 char_u *p;
8007
8008 w = getdigits(&arg);
8009 arg = skipwhite(arg);
8010 p = arg;
8011 h = getdigits(&arg);
8012 if (*p != NUL && *arg == NUL)
8013 set_shellsize(w, h, TRUE);
8014 else
8015 EMSG(_("E465: :winsize requires two number arguments"));
8016}
8017
8018#ifdef FEAT_WINDOWS
8019 static void
8020ex_wincmd(eap)
8021 exarg_T *eap;
8022{
8023 int xchar = NUL;
8024 char_u *p;
8025
8026 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8027 {
8028 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8029 if (eap->arg[1] == NUL)
8030 {
8031 EMSG(_(e_invarg));
8032 return;
8033 }
8034 xchar = eap->arg[1];
8035 p = eap->arg + 2;
8036 }
8037 else
8038 p = eap->arg + 1;
8039
8040 eap->nextcmd = check_nextcmd(p);
8041 p = skipwhite(p);
8042 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8043 EMSG(_(e_invarg));
8044 else
8045 {
8046 /* Pass flags on for ":vertical wincmd ]". */
8047 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008048 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008049 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8050 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008051 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008052 }
8053}
8054#endif
8055
Bram Moolenaar843ee412004-06-30 16:16:41 +00008056#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008057/*
8058 * ":winpos".
8059 */
8060 static void
8061ex_winpos(eap)
8062 exarg_T *eap;
8063{
8064 int x, y;
8065 char_u *arg = eap->arg;
8066 char_u *p;
8067
8068 if (*arg == NUL)
8069 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008070# if defined(FEAT_GUI) || defined(MSWIN)
8071# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008072 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008073# else
8074 if (mch_get_winpos(&x, &y) != FAIL)
8075# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076 {
8077 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8078 msg(IObuff);
8079 }
8080 else
8081# endif
8082 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8083 }
8084 else
8085 {
8086 x = getdigits(&arg);
8087 arg = skipwhite(arg);
8088 p = arg;
8089 y = getdigits(&arg);
8090 if (*p == NUL || *arg != NUL)
8091 {
8092 EMSG(_("E466: :winpos requires two number arguments"));
8093 return;
8094 }
8095# ifdef FEAT_GUI
8096 if (gui.in_use)
8097 gui_mch_set_winpos(x, y);
8098 else if (gui.starting)
8099 {
8100 /* Remember the coordinates for when the window is opened. */
8101 gui_win_x = x;
8102 gui_win_y = y;
8103 }
8104# ifdef HAVE_TGETENT
8105 else
8106# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008107# else
8108# ifdef MSWIN
8109 mch_set_winpos(x, y);
8110# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008111# endif
8112# ifdef HAVE_TGETENT
8113 if (*T_CWP)
8114 term_set_winpos(x, y);
8115# endif
8116 }
8117}
8118#endif
8119
8120/*
8121 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8122 */
8123 static void
8124ex_operators(eap)
8125 exarg_T *eap;
8126{
8127 oparg_T oa;
8128
8129 clear_oparg(&oa);
8130 oa.regname = eap->regname;
8131 oa.start.lnum = eap->line1;
8132 oa.end.lnum = eap->line2;
8133 oa.line_count = eap->line2 - eap->line1 + 1;
8134 oa.motion_type = MLINE;
8135#ifdef FEAT_VIRTUALEDIT
8136 virtual_op = FALSE;
8137#endif
8138 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8139 {
8140 setpcmark();
8141 curwin->w_cursor.lnum = eap->line1;
8142 beginline(BL_SOL | BL_FIX);
8143 }
8144
8145 switch (eap->cmdidx)
8146 {
8147 case CMD_delete:
8148 oa.op_type = OP_DELETE;
8149 op_delete(&oa);
8150 break;
8151
8152 case CMD_yank:
8153 oa.op_type = OP_YANK;
8154 (void)op_yank(&oa, FALSE, TRUE);
8155 break;
8156
8157 default: /* CMD_rshift or CMD_lshift */
8158 if ((eap->cmdidx == CMD_rshift)
8159#ifdef FEAT_RIGHTLEFT
8160 ^ curwin->w_p_rl
8161#endif
8162 )
8163 oa.op_type = OP_RSHIFT;
8164 else
8165 oa.op_type = OP_LSHIFT;
8166 op_shift(&oa, FALSE, eap->amount);
8167 break;
8168 }
8169#ifdef FEAT_VIRTUALEDIT
8170 virtual_op = MAYBE;
8171#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008172 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008173}
8174
8175/*
8176 * ":put".
8177 */
8178 static void
8179ex_put(eap)
8180 exarg_T *eap;
8181{
8182 /* ":0put" works like ":1put!". */
8183 if (eap->line2 == 0)
8184 {
8185 eap->line2 = 1;
8186 eap->forceit = TRUE;
8187 }
8188 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008189 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8190 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008191}
8192
8193/*
8194 * Handle ":copy" and ":move".
8195 */
8196 static void
8197ex_copymove(eap)
8198 exarg_T *eap;
8199{
8200 long n;
8201
8202 n = get_address(&eap->arg, FALSE, FALSE);
8203 if (eap->arg == NULL) /* error detected */
8204 {
8205 eap->nextcmd = NULL;
8206 return;
8207 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008208 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008209
8210 /*
8211 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8212 */
8213 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8214 {
8215 EMSG(_(e_invaddr));
8216 return;
8217 }
8218
8219 if (eap->cmdidx == CMD_move)
8220 {
8221 if (do_move(eap->line1, eap->line2, n) == FAIL)
8222 return;
8223 }
8224 else
8225 ex_copy(eap->line1, eap->line2, n);
8226 u_clearline();
8227 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008228 ex_may_print(eap);
8229}
8230
8231/*
8232 * Print the current line if flags were given to the Ex command.
8233 */
8234 static void
8235ex_may_print(eap)
8236 exarg_T *eap;
8237{
8238 if (eap->flags != 0)
8239 {
8240 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8241 (eap->flags & EXFLAG_LIST));
8242 ex_no_reprint = TRUE;
8243 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008244}
8245
8246/*
8247 * ":smagic" and ":snomagic".
8248 */
8249 static void
8250ex_submagic(eap)
8251 exarg_T *eap;
8252{
8253 int magic_save = p_magic;
8254
8255 p_magic = (eap->cmdidx == CMD_smagic);
8256 do_sub(eap);
8257 p_magic = magic_save;
8258}
8259
8260/*
8261 * ":join".
8262 */
8263 static void
8264ex_join(eap)
8265 exarg_T *eap;
8266{
8267 curwin->w_cursor.lnum = eap->line1;
8268 if (eap->line1 == eap->line2)
8269 {
8270 if (eap->addr_count >= 2) /* :2,2join does nothing */
8271 return;
8272 if (eap->line2 == curbuf->b_ml.ml_line_count)
8273 {
8274 beep_flush();
8275 return;
8276 }
8277 ++eap->line2;
8278 }
8279 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8280 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008281 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008282}
8283
8284/*
8285 * ":[addr]@r" or ":[addr]*r": execute register
8286 */
8287 static void
8288ex_at(eap)
8289 exarg_T *eap;
8290{
8291 int c;
8292
8293 curwin->w_cursor.lnum = eap->line2;
8294
8295#ifdef USE_ON_FLY_SCROLL
8296 dont_scroll = TRUE; /* disallow scrolling here */
8297#endif
8298
8299 /* get the register name. No name means to use the previous one */
8300 c = *eap->arg;
8301 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8302 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008303 /* Put the register in the typeahead buffer with the "silent" flag. */
8304 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8305 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008306 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008307 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008308 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008309 else
8310 {
8311 int save_efr = exec_from_reg;
8312
8313 exec_from_reg = TRUE;
8314
8315 /*
8316 * Execute from the typeahead buffer.
8317 * Originally this didn't check for the typeahead buffer to be empty,
8318 * thus could read more Ex commands from stdin. It's not clear why,
8319 * it is certainly unexpected.
8320 */
8321 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8322 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8323
8324 exec_from_reg = save_efr;
8325 }
8326}
8327
8328/*
8329 * ":!".
8330 */
8331 static void
8332ex_bang(eap)
8333 exarg_T *eap;
8334{
8335 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8336}
8337
8338/*
8339 * ":undo".
8340 */
8341/*ARGSUSED*/
8342 static void
8343ex_undo(eap)
8344 exarg_T *eap;
8345{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008346 if (eap->addr_count == 1) /* :undo 123 */
8347 undo_time(eap->line2, FALSE, TRUE);
8348 else
8349 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008350}
8351
8352/*
8353 * ":redo".
8354 */
8355/*ARGSUSED*/
8356 static void
8357ex_redo(eap)
8358 exarg_T *eap;
8359{
8360 u_redo(1);
8361}
8362
8363/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008364 * ":earlier" and ":later".
8365 */
8366/*ARGSUSED*/
8367 static void
8368ex_later(eap)
8369 exarg_T *eap;
8370{
8371 long count = 0;
8372 int sec = FALSE;
8373 char_u *p = eap->arg;
8374
8375 if (*p == NUL)
8376 count = 1;
8377 else if (isdigit(*p))
8378 {
8379 count = getdigits(&p);
8380 switch (*p)
8381 {
8382 case 's': ++p; sec = TRUE; break;
8383 case 'm': ++p; sec = TRUE; count *= 60; break;
8384 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8385 }
8386 }
8387
8388 if (*p != NUL)
8389 EMSG2(_(e_invarg2), eap->arg);
8390 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008391 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008392}
8393
8394/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008395 * ":redir": start/stop redirection.
8396 */
8397 static void
8398ex_redir(eap)
8399 exarg_T *eap;
8400{
8401 char *mode;
8402 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008403 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008404
8405 if (STRICMP(eap->arg, "END") == 0)
8406 close_redir();
8407 else
8408 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008409 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008410 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008411 ++arg;
8412 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008413 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008414 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008415 mode = "a";
8416 }
8417 else
8418 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008419 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008420
8421 close_redir();
8422
8423 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008424 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008425 if (fname == NULL)
8426 return;
8427#ifdef FEAT_BROWSE
8428 if (cmdmod.browse)
8429 {
8430 char_u *browseFile;
8431
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008432 browseFile = do_browse(BROWSE_SAVE,
8433 (char_u *)_("Save Redirection"),
8434 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008435 if (browseFile == NULL)
8436 return; /* operation cancelled */
8437 vim_free(fname);
8438 fname = browseFile;
8439 eap->forceit = TRUE; /* since dialog already asked */
8440 }
8441#endif
8442
8443 redir_fd = open_exfile(fname, eap->forceit, mode);
8444 vim_free(fname);
8445 }
8446#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008447 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008448 {
8449 /* redirect to a register a-z (resp. A-Z for appending) */
8450 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008451 ++arg;
8452 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008453# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008454 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008455 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008456# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008457 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008458 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008459 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008460 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00008461 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008462 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008463 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00008464 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008465 if (*arg == '>')
8466 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008467 /* Make register empty when not using @A-@Z and the
8468 * command is valid. */
8469 if (*arg == NUL && !isupper(redir_reg))
8470 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008471 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008472 }
8473 if (*arg != NUL)
8474 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008475 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008476 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008477 }
8478 }
8479 else if (*arg == '=' && arg[1] == '>')
8480 {
8481 int append;
8482
8483 /* redirect to a variable */
8484 close_redir();
8485 arg += 2;
8486
8487 if (*arg == '>')
8488 {
8489 ++arg;
8490 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008491 }
8492 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008493 append = FALSE;
8494
8495 if (var_redir_start(skipwhite(arg), append) == OK)
8496 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008497 }
8498#endif
8499
8500 /* TODO: redirect to a buffer */
8501
Bram Moolenaar071d4272004-06-13 20:20:40 +00008502 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008503 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008504 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008505
8506 /* Make sure redirection is not off. Can happen for cmdline completion
8507 * that indirectly invokes a command to catch its output. */
8508 if (redir_fd != NULL
8509#ifdef FEAT_EVAL
8510 || redir_reg || redir_vname
8511#endif
8512 )
8513 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008514}
8515
8516/*
8517 * ":redraw": force redraw
8518 */
8519 static void
8520ex_redraw(eap)
8521 exarg_T *eap;
8522{
8523 int r = RedrawingDisabled;
8524 int p = p_lz;
8525
8526 RedrawingDisabled = 0;
8527 p_lz = FALSE;
8528 update_topline();
8529 update_screen(eap->forceit ? CLEAR :
8530#ifdef FEAT_VISUAL
8531 VIsual_active ? INVERTED :
8532#endif
8533 0);
8534#ifdef FEAT_TITLE
8535 if (need_maketitle)
8536 maketitle();
8537#endif
8538 RedrawingDisabled = r;
8539 p_lz = p;
8540
8541 /* Reset msg_didout, so that a message that's there is overwritten. */
8542 msg_didout = FALSE;
8543 msg_col = 0;
8544
8545 out_flush();
8546}
8547
8548/*
8549 * ":redrawstatus": force redraw of status line(s)
8550 */
8551/*ARGSUSED*/
8552 static void
8553ex_redrawstatus(eap)
8554 exarg_T *eap;
8555{
8556#if defined(FEAT_WINDOWS)
8557 int r = RedrawingDisabled;
8558 int p = p_lz;
8559
8560 RedrawingDisabled = 0;
8561 p_lz = FALSE;
8562 if (eap->forceit)
8563 status_redraw_all();
8564 else
8565 status_redraw_curbuf();
8566 update_screen(
8567# ifdef FEAT_VISUAL
8568 VIsual_active ? INVERTED :
8569# endif
8570 0);
8571 RedrawingDisabled = r;
8572 p_lz = p;
8573 out_flush();
8574#endif
8575}
8576
8577 static void
8578close_redir()
8579{
8580 if (redir_fd != NULL)
8581 {
8582 fclose(redir_fd);
8583 redir_fd = NULL;
8584 }
8585#ifdef FEAT_EVAL
8586 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008587 if (redir_vname)
8588 {
8589 var_redir_stop();
8590 redir_vname = 0;
8591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008592#endif
8593}
8594
8595#if defined(FEAT_SESSION) && defined(USE_CRNL)
8596# define MKSESSION_NL
8597static int mksession_nl = FALSE; /* use NL only in put_eol() */
8598#endif
8599
8600/*
8601 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8602 */
8603 static void
8604ex_mkrc(eap)
8605 exarg_T *eap;
8606{
8607 FILE *fd;
8608 int failed = FALSE;
8609 char_u *fname;
8610#ifdef FEAT_BROWSE
8611 char_u *browseFile = NULL;
8612#endif
8613#ifdef FEAT_SESSION
8614 int view_session = FALSE;
8615 int using_vdir = FALSE; /* using 'viewdir'? */
8616 char_u *viewFile = NULL;
8617 unsigned *flagp;
8618#endif
8619
8620 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8621 {
8622#ifdef FEAT_SESSION
8623 view_session = TRUE;
8624#else
8625 ex_ni(eap);
8626 return;
8627#endif
8628 }
8629
8630#ifdef FEAT_SESSION
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008631 did_lcd = FALSE;
8632
Bram Moolenaar071d4272004-06-13 20:20:40 +00008633 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8634 if (eap->cmdidx == CMD_mkview
8635 && (*eap->arg == NUL
8636 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8637 {
8638 eap->forceit = TRUE;
8639 fname = get_view_file(*eap->arg);
8640 if (fname == NULL)
8641 return;
8642 viewFile = fname;
8643 using_vdir = TRUE;
8644 }
8645 else
8646#endif
8647 if (*eap->arg != NUL)
8648 fname = eap->arg;
8649 else if (eap->cmdidx == CMD_mkvimrc)
8650 fname = (char_u *)VIMRC_FILE;
8651#ifdef FEAT_SESSION
8652 else if (eap->cmdidx == CMD_mksession)
8653 fname = (char_u *)SESSION_FILE;
8654#endif
8655 else
8656 fname = (char_u *)EXRC_FILE;
8657
8658#ifdef FEAT_BROWSE
8659 if (cmdmod.browse)
8660 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008661 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008662# ifdef FEAT_SESSION
8663 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8664 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8665# endif
8666 (char_u *)_("Save Setup"),
8667 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8668 if (browseFile == NULL)
8669 goto theend;
8670 fname = browseFile;
8671 eap->forceit = TRUE; /* since dialog already asked */
8672 }
8673#endif
8674
8675#if defined(FEAT_SESSION) && defined(vim_mkdir)
8676 /* When using 'viewdir' may have to create the directory. */
8677 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008678 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008679#endif
8680
8681 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8682 if (fd != NULL)
8683 {
8684#ifdef FEAT_SESSION
8685 if (eap->cmdidx == CMD_mkview)
8686 flagp = &vop_flags;
8687 else
8688 flagp = &ssop_flags;
8689#endif
8690
8691#ifdef MKSESSION_NL
8692 /* "unix" in 'sessionoptions': use NL line separator */
8693 if (view_session && (*flagp & SSOP_UNIX))
8694 mksession_nl = TRUE;
8695#endif
8696
8697 /* Write the version command for :mkvimrc */
8698 if (eap->cmdidx == CMD_mkvimrc)
8699 (void)put_line(fd, "version 6.0");
8700
8701#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008702 if (eap->cmdidx == CMD_mksession)
8703 {
8704 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8705 failed = TRUE;
8706 }
8707
Bram Moolenaar071d4272004-06-13 20:20:40 +00008708 if (eap->cmdidx != CMD_mkview)
8709#endif
8710 {
8711 /* Write setting 'compatible' first, because it has side effects.
8712 * For that same reason only do it when needed. */
8713 if (p_cp)
8714 (void)put_line(fd, "if !&cp | set cp | endif");
8715 else
8716 (void)put_line(fd, "if &cp | set nocp | endif");
8717 }
8718
8719#ifdef FEAT_SESSION
8720 if (!view_session
8721 || (eap->cmdidx == CMD_mksession
8722 && (*flagp & SSOP_OPTIONS)))
8723#endif
8724 failed |= (makemap(fd, NULL) == FAIL
8725 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8726
8727#ifdef FEAT_SESSION
8728 if (!failed && view_session)
8729 {
8730 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8731 failed = TRUE;
8732 if (eap->cmdidx == CMD_mksession)
8733 {
8734 char_u dirnow[MAXPATHL]; /* current directory */
8735
8736 /*
8737 * Change to session file's dir.
8738 */
8739 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8740 || mch_chdir((char *)dirnow) != 0)
8741 *dirnow = NUL;
8742 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8743 {
8744 if (vim_chdirfile(fname) == OK)
8745 shorten_fnames(TRUE);
8746 }
8747 else if (*dirnow != NUL
8748 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8749 {
8750 (void)mch_chdir((char *)globaldir);
8751 shorten_fnames(TRUE);
8752 }
8753
8754 failed |= (makeopens(fd, dirnow) == FAIL);
8755
8756 /* restore original dir */
8757 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8758 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8759 {
8760 if (mch_chdir((char *)dirnow) != 0)
8761 EMSG(_(e_prev_dir));
8762 shorten_fnames(TRUE);
8763 }
8764 }
8765 else
8766 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00008767 failed |= (put_view(fd, curwin, !using_vdir, flagp,
8768 -1) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008769 }
8770 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8771 == FAIL)
8772 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008773 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8774 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008775 if (eap->cmdidx == CMD_mksession)
8776 {
8777 if (put_line(fd, "unlet SessionLoad") == FAIL)
8778 failed = TRUE;
8779 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008780 }
8781#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008782 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8783 failed = TRUE;
8784
Bram Moolenaar071d4272004-06-13 20:20:40 +00008785 failed |= fclose(fd);
8786
8787 if (failed)
8788 EMSG(_(e_write));
8789#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8790 else if (eap->cmdidx == CMD_mksession)
8791 {
8792 /* successful session write - set this_session var */
8793 char_u tbuf[MAXPATHL];
8794
8795 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8796 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8797 }
8798#endif
8799#ifdef MKSESSION_NL
8800 mksession_nl = FALSE;
8801#endif
8802 }
8803
8804#ifdef FEAT_BROWSE
8805theend:
8806 vim_free(browseFile);
8807#endif
8808#ifdef FEAT_SESSION
8809 vim_free(viewFile);
8810#endif
8811}
8812
Bram Moolenaardf177f62005-02-22 08:39:57 +00008813#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8814 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008815/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008816 int
8817vim_mkdir_emsg(name, prot)
8818 char_u *name;
8819 int prot;
8820{
8821 if (vim_mkdir(name, prot) != 0)
8822 {
8823 EMSG2(_("E739: Cannot create directory: %s"), name);
8824 return FAIL;
8825 }
8826 return OK;
8827}
8828#endif
8829
Bram Moolenaar071d4272004-06-13 20:20:40 +00008830/*
8831 * Open a file for writing for an Ex command, with some checks.
8832 * Return file descriptor, or NULL on failure.
8833 */
8834 FILE *
8835open_exfile(fname, forceit, mode)
8836 char_u *fname;
8837 int forceit;
8838 char *mode; /* "w" for create new file or "a" for append */
8839{
8840 FILE *fd;
8841
8842#ifdef UNIX
8843 /* with Unix it is possible to open a directory */
8844 if (mch_isdir(fname))
8845 {
8846 EMSG2(_(e_isadir2), fname);
8847 return NULL;
8848 }
8849#endif
8850 if (!forceit && *mode != 'a' && vim_fexists(fname))
8851 {
8852 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8853 return NULL;
8854 }
8855
8856 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8857 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8858
8859 return fd;
8860}
8861
8862/*
8863 * ":mark" and ":k".
8864 */
8865 static void
8866ex_mark(eap)
8867 exarg_T *eap;
8868{
8869 pos_T pos;
8870
8871 if (*eap->arg == NUL) /* No argument? */
8872 EMSG(_(e_argreq));
8873 else if (eap->arg[1] != NUL) /* more than one character? */
8874 EMSG(_(e_trailing));
8875 else
8876 {
8877 pos = curwin->w_cursor; /* save curwin->w_cursor */
8878 curwin->w_cursor.lnum = eap->line2;
8879 beginline(BL_WHITE | BL_FIX);
8880 if (setmark(*eap->arg) == FAIL) /* set mark */
8881 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8882 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8883 }
8884}
8885
8886/*
8887 * Update w_topline, w_leftcol and the cursor position.
8888 */
8889 void
8890update_topline_cursor()
8891{
8892 check_cursor(); /* put cursor on valid line */
8893 update_topline();
8894 if (!curwin->w_p_wrap)
8895 validate_cursor();
8896 update_curswant();
8897}
8898
8899#ifdef FEAT_EX_EXTRA
8900/*
8901 * ":normal[!] {commands}": Execute normal mode commands.
8902 */
8903 static void
8904ex_normal(eap)
8905 exarg_T *eap;
8906{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008907 int save_msg_scroll = msg_scroll;
8908 int save_restart_edit = restart_edit;
8909 int save_msg_didout = msg_didout;
8910 int save_State = State;
8911 tasave_T tabuf;
8912 int save_insertmode = p_im;
8913 int save_finish_op = finish_op;
8914#ifdef FEAT_MBYTE
8915 char_u *arg = NULL;
8916 int l;
8917 char_u *p;
8918#endif
8919
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008920 if (ex_normal_lock > 0)
8921 {
8922 EMSG(_(e_secure));
8923 return;
8924 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925 if (ex_normal_busy >= p_mmd)
8926 {
8927 EMSG(_("E192: Recursive use of :normal too deep"));
8928 return;
8929 }
8930 ++ex_normal_busy;
8931
8932 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8933 restart_edit = 0; /* don't go to Insert mode */
8934 p_im = FALSE; /* don't use 'insertmode' */
8935
8936#ifdef FEAT_MBYTE
8937 /*
8938 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8939 * this for the K_SPECIAL leading byte, otherwise special keys will not
8940 * work.
8941 */
8942 if (has_mbyte)
8943 {
8944 int len = 0;
8945
8946 /* Count the number of characters to be escaped. */
8947 for (p = eap->arg; *p != NUL; ++p)
8948 {
8949# ifdef FEAT_GUI
8950 if (*p == CSI) /* leadbyte CSI */
8951 len += 2;
8952# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008953 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008954 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8955# ifdef FEAT_GUI
8956 || *p == CSI
8957# endif
8958 )
8959 len += 2;
8960 }
8961 if (len > 0)
8962 {
8963 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8964 if (arg != NULL)
8965 {
8966 len = 0;
8967 for (p = eap->arg; *p != NUL; ++p)
8968 {
8969 arg[len++] = *p;
8970# ifdef FEAT_GUI
8971 if (*p == CSI)
8972 {
8973 arg[len++] = KS_EXTRA;
8974 arg[len++] = (int)KE_CSI;
8975 }
8976# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008977 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008978 {
8979 arg[len++] = *++p;
8980 if (*p == K_SPECIAL)
8981 {
8982 arg[len++] = KS_SPECIAL;
8983 arg[len++] = KE_FILLER;
8984 }
8985# ifdef FEAT_GUI
8986 else if (*p == CSI)
8987 {
8988 arg[len++] = KS_EXTRA;
8989 arg[len++] = (int)KE_CSI;
8990 }
8991# endif
8992 }
8993 arg[len] = NUL;
8994 }
8995 }
8996 }
8997 }
8998#endif
8999
9000 /*
9001 * Save the current typeahead. This is required to allow using ":normal"
9002 * from an event handler and makes sure we don't hang when the argument
9003 * ends with half a command.
9004 */
9005 save_typeahead(&tabuf);
9006 if (tabuf.typebuf_valid)
9007 {
9008 /*
9009 * Repeat the :normal command for each line in the range. When no
9010 * range given, execute it just once, without positioning the cursor
9011 * first.
9012 */
9013 do
9014 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009015 if (eap->addr_count != 0)
9016 {
9017 curwin->w_cursor.lnum = eap->line1++;
9018 curwin->w_cursor.col = 0;
9019 }
9020
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009021 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00009022#ifdef FEAT_MBYTE
9023 arg != NULL ? arg :
9024#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009025 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009026 }
9027 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9028 }
9029
9030 /* Might not return to the main loop when in an event handler. */
9031 update_topline_cursor();
9032
9033 /* Restore the previous typeahead. */
9034 restore_typeahead(&tabuf);
9035
9036 --ex_normal_busy;
9037 msg_scroll = save_msg_scroll;
9038 restart_edit = save_restart_edit;
9039 p_im = save_insertmode;
9040 finish_op = save_finish_op;
9041 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9042
9043 /* Restore the state (needed when called from a function executed for
9044 * 'indentexpr'). */
9045 State = save_State;
9046#ifdef FEAT_MBYTE
9047 vim_free(arg);
9048#endif
9049}
9050
9051/*
Bram Moolenaar64969662005-12-14 21:59:55 +00009052 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00009053 */
9054 static void
9055ex_startinsert(eap)
9056 exarg_T *eap;
9057{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009058 if (eap->forceit)
9059 {
9060 coladvance((colnr_T)MAXCOL);
9061 curwin->w_curswant = MAXCOL;
9062 curwin->w_set_curswant = FALSE;
9063 }
9064
Bram Moolenaara40c5002005-01-09 21:16:21 +00009065 /* Ignore the command when already in Insert mode. Inserting an
9066 * expression register that invokes a function can do this. */
9067 if (State & INSERT)
9068 return;
9069
Bram Moolenaar64969662005-12-14 21:59:55 +00009070 if (eap->cmdidx == CMD_startinsert)
9071 restart_edit = 'a';
9072 else if (eap->cmdidx == CMD_startreplace)
9073 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009074 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009075 restart_edit = 'V';
9076
9077 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009078 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009079 if (eap->cmdidx == CMD_startinsert)
9080 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009081 curwin->w_curswant = 0; /* avoid MAXCOL */
9082 }
9083}
9084
9085/*
9086 * ":stopinsert"
9087 */
9088/*ARGSUSED*/
9089 static void
9090ex_stopinsert(eap)
9091 exarg_T *eap;
9092{
9093 restart_edit = 0;
9094 stop_insert_mode = TRUE;
9095}
9096#endif
9097
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009098#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9099/*
9100 * Execute normal mode command "cmd".
9101 * "remap" can be REMAP_NONE or REMAP_YES.
9102 */
9103 void
9104exec_normal_cmd(cmd, remap, silent)
9105 char_u *cmd;
9106 int remap;
9107 int silent;
9108{
9109 oparg_T oa;
9110
9111 /*
9112 * Stuff the argument into the typeahead buffer.
9113 * Execute normal_cmd() until there is no typeahead left.
9114 */
9115 clear_oparg(&oa);
9116 finish_op = FALSE;
9117 ins_typebuf(cmd, remap, 0, TRUE, silent);
9118 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9119 && !got_int)
9120 {
9121 update_topline_cursor();
9122 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9123 }
9124}
9125#endif
9126
Bram Moolenaar071d4272004-06-13 20:20:40 +00009127#ifdef FEAT_FIND_ID
9128 static void
9129ex_checkpath(eap)
9130 exarg_T *eap;
9131{
9132 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9133 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9134 (linenr_T)1, (linenr_T)MAXLNUM);
9135}
9136
9137#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9138/*
9139 * ":psearch"
9140 */
9141 static void
9142ex_psearch(eap)
9143 exarg_T *eap;
9144{
9145 g_do_tagpreview = p_pvh;
9146 ex_findpat(eap);
9147 g_do_tagpreview = 0;
9148}
9149#endif
9150
9151 static void
9152ex_findpat(eap)
9153 exarg_T *eap;
9154{
9155 int whole = TRUE;
9156 long n;
9157 char_u *p;
9158 int action;
9159
9160 switch (cmdnames[eap->cmdidx].cmd_name[2])
9161 {
9162 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9163 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9164 action = ACTION_GOTO;
9165 else
9166 action = ACTION_SHOW;
9167 break;
9168 case 'i': /* ":ilist" and ":dlist" */
9169 action = ACTION_SHOW_ALL;
9170 break;
9171 case 'u': /* ":ijump" and ":djump" */
9172 action = ACTION_GOTO;
9173 break;
9174 default: /* ":isplit" and ":dsplit" */
9175 action = ACTION_SPLIT;
9176 break;
9177 }
9178
9179 n = 1;
9180 if (vim_isdigit(*eap->arg)) /* get count */
9181 {
9182 n = getdigits(&eap->arg);
9183 eap->arg = skipwhite(eap->arg);
9184 }
9185 if (*eap->arg == '/') /* Match regexp, not just whole words */
9186 {
9187 whole = FALSE;
9188 ++eap->arg;
9189 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9190 if (*p)
9191 {
9192 *p++ = NUL;
9193 p = skipwhite(p);
9194
9195 /* Check for trailing illegal characters */
9196 if (!ends_excmd(*p))
9197 eap->errmsg = e_trailing;
9198 else
9199 eap->nextcmd = check_nextcmd(p);
9200 }
9201 }
9202 if (!eap->skip)
9203 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9204 whole, !eap->forceit,
9205 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9206 n, action, eap->line1, eap->line2);
9207}
9208#endif
9209
9210#ifdef FEAT_WINDOWS
9211
9212# ifdef FEAT_QUICKFIX
9213/*
9214 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9215 */
9216 static void
9217ex_ptag(eap)
9218 exarg_T *eap;
9219{
9220 g_do_tagpreview = p_pvh;
9221 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9222}
9223
9224/*
9225 * ":pedit"
9226 */
9227 static void
9228ex_pedit(eap)
9229 exarg_T *eap;
9230{
9231 win_T *curwin_save = curwin;
9232
9233 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009234 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009235 keep_help_flag = curwin_save->w_buffer->b_help;
9236 do_exedit(eap, NULL);
9237 keep_help_flag = FALSE;
9238 if (curwin != curwin_save && win_valid(curwin_save))
9239 {
9240 /* Return cursor to where we were */
9241 validate_cursor();
9242 redraw_later(VALID);
9243 win_enter(curwin_save, TRUE);
9244 }
9245 g_do_tagpreview = 0;
9246}
9247# endif
9248
9249/*
9250 * ":stag", ":stselect" and ":stjump".
9251 */
9252 static void
9253ex_stag(eap)
9254 exarg_T *eap;
9255{
9256 postponed_split = -1;
9257 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009258 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009259 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9260 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009261 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009262}
9263#endif
9264
9265/*
9266 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9267 */
9268 static void
9269ex_tag(eap)
9270 exarg_T *eap;
9271{
9272 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9273}
9274
9275 static void
9276ex_tag_cmd(eap, name)
9277 exarg_T *eap;
9278 char_u *name;
9279{
9280 int cmd;
9281
9282 switch (name[1])
9283 {
9284 case 'j': cmd = DT_JUMP; /* ":tjump" */
9285 break;
9286 case 's': cmd = DT_SELECT; /* ":tselect" */
9287 break;
9288 case 'p': cmd = DT_PREV; /* ":tprevious" */
9289 break;
9290 case 'N': cmd = DT_PREV; /* ":tNext" */
9291 break;
9292 case 'n': cmd = DT_NEXT; /* ":tnext" */
9293 break;
9294 case 'o': cmd = DT_POP; /* ":pop" */
9295 break;
9296 case 'f': /* ":tfirst" */
9297 case 'r': cmd = DT_FIRST; /* ":trewind" */
9298 break;
9299 case 'l': cmd = DT_LAST; /* ":tlast" */
9300 break;
9301 default: /* ":tag" */
9302#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +00009303 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009304 {
9305 do_cstag(eap);
9306 return;
9307 }
9308#endif
9309 cmd = DT_TAG;
9310 break;
9311 }
9312
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009313 if (name[0] == 'l')
9314 {
9315#ifndef FEAT_QUICKFIX
9316 ex_ni(eap);
9317 return;
9318#else
9319 cmd = DT_LTAG;
9320#endif
9321 }
9322
Bram Moolenaar071d4272004-06-13 20:20:40 +00009323 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9324 eap->forceit, TRUE);
9325}
9326
9327/*
9328 * Evaluate cmdline variables.
9329 *
9330 * change '%' to curbuf->b_ffname
9331 * '#' to curwin->w_altfile
9332 * '<cword>' to word under the cursor
9333 * '<cWORD>' to WORD under the cursor
9334 * '<cfile>' to path name under the cursor
9335 * '<sfile>' to sourced file name
9336 * '<afile>' to file name for autocommand
9337 * '<abuf>' to buffer number for autocommand
9338 * '<amatch>' to matching name for autocommand
9339 *
9340 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9341 * "" for error without a message) and NULL is returned.
9342 * Returns an allocated string if a valid match was found.
9343 * Returns NULL if no match was found. "usedlen" then still contains the
9344 * number of characters to skip.
9345 */
9346 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009347eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009348 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009349 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009350 int *usedlen; /* characters after src that are used */
9351 linenr_T *lnump; /* line number for :e command, or NULL */
9352 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009353 int *escaped; /* return value has escaped white space (can
9354 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009355{
9356 int i;
9357 char_u *s;
9358 char_u *result;
9359 char_u *resultbuf = NULL;
9360 int resultlen;
9361 buf_T *buf;
9362 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9363 int spec_idx;
9364#ifdef FEAT_MODIFY_FNAME
9365 int skip_mod = FALSE;
9366#endif
9367 static char *(spec_str[]) =
9368 {
9369 "%",
9370#define SPEC_PERC 0
9371 "#",
9372#define SPEC_HASH 1
9373 "<cword>", /* cursor word */
9374#define SPEC_CWORD 2
9375 "<cWORD>", /* cursor WORD */
9376#define SPEC_CCWORD 3
9377 "<cfile>", /* cursor path name */
9378#define SPEC_CFILE 4
9379 "<sfile>", /* ":so" file name */
9380#define SPEC_SFILE 5
9381#ifdef FEAT_AUTOCMD
9382 "<afile>", /* autocommand file name */
9383# define SPEC_AFILE 6
9384 "<abuf>", /* autocommand buffer number */
9385# define SPEC_ABUF 7
9386 "<amatch>", /* autocommand match name */
9387# define SPEC_AMATCH 8
9388#endif
9389#ifdef FEAT_CLIENTSERVER
9390 "<client>"
9391# define SPEC_CLIENT 9
9392#endif
9393 };
9394#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9395
9396#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9397 char_u strbuf[30];
9398#endif
9399
9400 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009401 if (escaped != NULL)
9402 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009403
9404 /*
9405 * Check if there is something to do.
9406 */
9407 for (spec_idx = 0; spec_idx < SPEC_COUNT; ++spec_idx)
9408 {
9409 *usedlen = (int)STRLEN(spec_str[spec_idx]);
9410 if (STRNCMP(src, spec_str[spec_idx], *usedlen) == 0)
9411 break;
9412 }
9413 if (spec_idx == SPEC_COUNT) /* no match */
9414 {
9415 *usedlen = 1;
9416 return NULL;
9417 }
9418
9419 /*
9420 * Skip when preceded with a backslash "\%" and "\#".
9421 * Note: In "\\%" the % is also not recognized!
9422 */
9423 if (src > srcstart && src[-1] == '\\')
9424 {
9425 *usedlen = 0;
Bram Moolenaar81870892007-11-11 18:17:28 +00009426 mch_memmove(src - 1, src, STRLEN(src) + 1); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009427 return NULL;
9428 }
9429
9430 /*
9431 * word or WORD under cursor
9432 */
9433 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9434 {
9435 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9436 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9437 if (resultlen == 0)
9438 {
9439 *errormsg = (char_u *)"";
9440 return NULL;
9441 }
9442 }
9443
9444 /*
9445 * '#': Alternate file name
9446 * '%': Current file name
9447 * File name under the cursor
9448 * File name for autocommand
9449 * and following modifiers
9450 */
9451 else
9452 {
9453 switch (spec_idx)
9454 {
9455 case SPEC_PERC: /* '%': current file */
9456 if (curbuf->b_fname == NULL)
9457 {
9458 result = (char_u *)"";
9459 valid = 0; /* Must have ":p:h" to be valid */
9460 }
9461 else
9462#ifdef RISCOS
9463 /* Always use the full path for RISC OS if possible. */
9464 result = curbuf->b_ffname;
9465 if (result == NULL)
9466 result = curbuf->b_fname;
9467#else
9468 result = curbuf->b_fname;
9469#endif
9470 break;
9471
9472 case SPEC_HASH: /* '#' or "#99": alternate file */
9473 if (src[1] == '#') /* "##": the argument list */
9474 {
9475 result = arg_all();
9476 resultbuf = result;
9477 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009478 if (escaped != NULL)
9479 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009480#ifdef FEAT_MODIFY_FNAME
9481 skip_mod = TRUE;
9482#endif
9483 break;
9484 }
9485 s = src + 1;
9486 i = (int)getdigits(&s);
9487 *usedlen = (int)(s - src); /* length of what we expand */
9488
9489 buf = buflist_findnr(i);
9490 if (buf == NULL)
9491 {
9492 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9493 return NULL;
9494 }
9495 if (lnump != NULL)
9496 *lnump = ECMD_LAST;
9497 if (buf->b_fname == NULL)
9498 {
9499 result = (char_u *)"";
9500 valid = 0; /* Must have ":p:h" to be valid */
9501 }
9502 else
9503 result = buf->b_fname;
9504 break;
9505
9506#ifdef FEAT_SEARCHPATH
9507 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009508 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009509 if (result == NULL)
9510 {
9511 *errormsg = (char_u *)"";
9512 return NULL;
9513 }
9514 resultbuf = result; /* remember allocated string */
9515 break;
9516#endif
9517
9518#ifdef FEAT_AUTOCMD
9519 case SPEC_AFILE: /* file name for autocommand */
9520 result = autocmd_fname;
9521 if (result == NULL)
9522 {
9523 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9524 return NULL;
9525 }
Bram Moolenaara0174af2008-01-02 20:08:25 +00009526 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009527 break;
9528
9529 case SPEC_ABUF: /* buffer number for autocommand */
9530 if (autocmd_bufnr <= 0)
9531 {
9532 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9533 return NULL;
9534 }
9535 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9536 result = strbuf;
9537 break;
9538
9539 case SPEC_AMATCH: /* match name for autocommand */
9540 result = autocmd_match;
9541 if (result == NULL)
9542 {
9543 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9544 return NULL;
9545 }
9546 break;
9547
9548#endif
9549 case SPEC_SFILE: /* file name for ":so" command */
9550 result = sourcing_name;
9551 if (result == NULL)
9552 {
9553 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9554 return NULL;
9555 }
9556 break;
9557#if defined(FEAT_CLIENTSERVER)
9558 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009559 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9560 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009561 result = strbuf;
9562 break;
9563#endif
9564 }
9565
9566 resultlen = (int)STRLEN(result); /* length of new string */
9567 if (src[*usedlen] == '<') /* remove the file name extension */
9568 {
9569 ++*usedlen;
9570#ifdef RISCOS
9571 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9572#else
9573 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9574#endif
9575 resultlen = (int)(s - result);
9576 }
9577#ifdef FEAT_MODIFY_FNAME
9578 else if (!skip_mod)
9579 {
9580 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9581 &resultlen);
9582 if (result == NULL)
9583 {
9584 *errormsg = (char_u *)"";
9585 return NULL;
9586 }
9587 }
9588#endif
9589 }
9590
9591 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9592 {
9593 if (valid != VALID_HEAD + VALID_PATH)
9594 /* xgettext:no-c-format */
9595 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9596 else
9597 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9598 result = NULL;
9599 }
9600 else
9601 result = vim_strnsave(result, resultlen);
9602 vim_free(resultbuf);
9603 return result;
9604}
9605
9606/*
9607 * Concatenate all files in the argument list, separated by spaces, and return
9608 * it in one allocated string.
9609 * Spaces and backslashes in the file names are escaped with a backslash.
9610 * Returns NULL when out of memory.
9611 */
9612 static char_u *
9613arg_all()
9614{
9615 int len;
9616 int idx;
9617 char_u *retval = NULL;
9618 char_u *p;
9619
9620 /*
9621 * Do this loop two times:
9622 * first time: compute the total length
9623 * second time: concatenate the names
9624 */
9625 for (;;)
9626 {
9627 len = 0;
9628 for (idx = 0; idx < ARGCOUNT; ++idx)
9629 {
9630 p = alist_name(&ARGLIST[idx]);
9631 if (p != NULL)
9632 {
9633 if (len > 0)
9634 {
9635 /* insert a space in between names */
9636 if (retval != NULL)
9637 retval[len] = ' ';
9638 ++len;
9639 }
9640 for ( ; *p != NUL; ++p)
9641 {
9642 if (*p == ' ' || *p == '\\')
9643 {
9644 /* insert a backslash */
9645 if (retval != NULL)
9646 retval[len] = '\\';
9647 ++len;
9648 }
9649 if (retval != NULL)
9650 retval[len] = *p;
9651 ++len;
9652 }
9653 }
9654 }
9655
9656 /* second time: break here */
9657 if (retval != NULL)
9658 {
9659 retval[len] = NUL;
9660 break;
9661 }
9662
9663 /* allocate memory */
9664 retval = alloc(len + 1);
9665 if (retval == NULL)
9666 break;
9667 }
9668
9669 return retval;
9670}
9671
9672#if defined(FEAT_AUTOCMD) || defined(PROTO)
9673/*
9674 * Expand the <sfile> string in "arg".
9675 *
9676 * Returns an allocated string, or NULL for any error.
9677 */
9678 char_u *
9679expand_sfile(arg)
9680 char_u *arg;
9681{
9682 char_u *errormsg;
9683 int len;
9684 char_u *result;
9685 char_u *newres;
9686 char_u *repl;
9687 int srclen;
9688 char_u *p;
9689
9690 result = vim_strsave(arg);
9691 if (result == NULL)
9692 return NULL;
9693
9694 for (p = result; *p; )
9695 {
9696 if (STRNCMP(p, "<sfile>", 7) != 0)
9697 ++p;
9698 else
9699 {
9700 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009701 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009702 if (errormsg != NULL)
9703 {
9704 if (*errormsg)
9705 emsg(errormsg);
9706 vim_free(result);
9707 return NULL;
9708 }
9709 if (repl == NULL) /* no match (cannot happen) */
9710 {
9711 p += srclen;
9712 continue;
9713 }
9714 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9715 newres = alloc(len);
9716 if (newres == NULL)
9717 {
9718 vim_free(repl);
9719 vim_free(result);
9720 return NULL;
9721 }
9722 mch_memmove(newres, result, (size_t)(p - result));
9723 STRCPY(newres + (p - result), repl);
9724 len = (int)STRLEN(newres);
9725 STRCAT(newres, p + srclen);
9726 vim_free(repl);
9727 vim_free(result);
9728 result = newres;
9729 p = newres + len; /* continue after the match */
9730 }
9731 }
9732
9733 return result;
9734}
9735#endif
9736
9737#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009738static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9739 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009740static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9741static frame_T *ses_skipframe __ARGS((frame_T *fr));
9742static int ses_do_frame __ARGS((frame_T *fr));
9743static int ses_do_win __ARGS((win_T *wp));
9744static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9745static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9746static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9747
9748/*
9749 * Write openfile commands for the current buffers to an .exrc file.
9750 * Return FAIL on error, OK otherwise.
9751 */
9752 static int
9753makeopens(fd, dirnow)
9754 FILE *fd;
9755 char_u *dirnow; /* Current directory name */
9756{
9757 buf_T *buf;
9758 int only_save_windows = TRUE;
9759 int nr;
9760 int cnr = 1;
9761 int restore_size = TRUE;
9762 win_T *wp;
9763 char_u *sname;
9764 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009765 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009766 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009767 frame_T *tab_topframe;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009768 int cur_arg_idx = 0;
Bram Moolenaar383c6f52008-01-04 15:01:07 +00009769 int next_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009770
9771 if (ssop_flags & SSOP_BUFFERS)
9772 only_save_windows = FALSE; /* Save ALL buffers */
9773
9774 /*
9775 * Begin by setting the this_session variable, and then other
9776 * sessionable variables.
9777 */
9778#ifdef FEAT_EVAL
9779 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9780 return FAIL;
9781 if (ssop_flags & SSOP_GLOBALS)
9782 if (store_session_globals(fd) == FAIL)
9783 return FAIL;
9784#endif
9785
9786 /*
9787 * Close all windows but one.
9788 */
9789 if (put_line(fd, "silent only") == FAIL)
9790 return FAIL;
9791
9792 /*
9793 * Now a :cd command to the session directory or the current directory
9794 */
9795 if (ssop_flags & SSOP_SESDIR)
9796 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009797 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9798 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009799 return FAIL;
9800 }
9801 else if (ssop_flags & SSOP_CURDIR)
9802 {
9803 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9804 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009805 || fputs("cd ", fd) < 0
9806 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9807 || put_eol(fd) == FAIL)
9808 {
9809 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009810 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009812 vim_free(sname);
9813 }
9814
9815 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009816 * If there is an empty, unnamed buffer we will wipe it out later.
9817 * Remember the buffer number.
9818 */
9819 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9820 return FAIL;
9821 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9822 return FAIL;
9823 if (put_line(fd, "endif") == FAIL)
9824 return FAIL;
9825
9826 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009827 * Now save the current files, current buffer first.
9828 */
9829 if (put_line(fd, "set shortmess=aoO") == FAIL)
9830 return FAIL;
9831
9832 /* Now put the other buffers into the buffer list */
9833 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9834 {
9835 if (!(only_save_windows && buf->b_nwindows == 0)
9836 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9837 && buf->b_fname != NULL
9838 && buf->b_p_bl)
9839 {
9840 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9841 : buf->b_wininfo->wi_fpos.lnum) < 0
9842 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9843 return FAIL;
9844 }
9845 }
9846
9847 /* the global argument list */
9848 if (ses_arglist(fd, "args", &global_alist.al_ga,
9849 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9850 return FAIL;
9851
9852 if (ssop_flags & SSOP_RESIZE)
9853 {
9854 /* Note: after the restore we still check it worked!*/
9855 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9856 || put_eol(fd) == FAIL)
9857 return FAIL;
9858 }
9859
9860#ifdef FEAT_GUI
9861 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9862 {
9863 int x, y;
9864
9865 if (gui_mch_get_winpos(&x, &y) == OK)
9866 {
9867 /* Note: after the restore we still check it worked!*/
9868 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9869 return FAIL;
9870 }
9871 }
9872#endif
9873
9874 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009875 * May repeat putting Windows for each tab, when "tabpages" is in
9876 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009877 * Don't use goto_tabpage(), it may change directory and trigger
9878 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009879 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009880 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009881 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009882 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009883 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009884 int need_tabnew = FALSE;
9885
Bram Moolenaar18144c82006-04-12 21:52:12 +00009886 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009887 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009888 tabpage_T *tp = find_tabpage(tabnr);
9889
9890 if (tp == NULL)
9891 break; /* done all tab pages */
9892 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009893 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009894 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009895 tab_topframe = topframe;
9896 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009897 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009898 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009899 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009900 tab_topframe = tp->tp_topframe;
9901 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009902 if (tabnr > 1)
9903 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009905
Bram Moolenaar18144c82006-04-12 21:52:12 +00009906 /*
9907 * Before creating the window layout, try loading one file. If this
9908 * is aborted we don't end up with a number of useless windows.
9909 * This may have side effects! (e.g., compressed or network file).
9910 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009911 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009912 {
9913 if (ses_do_win(wp)
9914 && wp->w_buffer->b_ffname != NULL
9915 && !wp->w_buffer->b_help
9916#ifdef FEAT_QUICKFIX
9917 && !bt_nofile(wp->w_buffer)
9918#endif
9919 )
9920 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009921 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009922 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9923 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009924 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009925 if (!wp->w_arg_idx_invalid)
9926 edited_win = wp;
9927 break;
9928 }
9929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009930
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009931 /* If no file got edited create an empty tab page. */
9932 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9933 return FAIL;
9934
Bram Moolenaar18144c82006-04-12 21:52:12 +00009935 /*
9936 * Save current window layout.
9937 */
9938 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009939 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009940 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009941 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009942 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
9943 return FAIL;
9944 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
9945 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009946
Bram Moolenaar18144c82006-04-12 21:52:12 +00009947 /*
9948 * Check if window sizes can be restored (no windows omitted).
9949 * Remember the window number of the current window after restoring.
9950 */
9951 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009952 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009953 {
9954 if (ses_do_win(wp))
9955 ++nr;
9956 else
9957 restore_size = FALSE;
9958 if (curwin == wp)
9959 cnr = nr;
9960 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009961
Bram Moolenaar18144c82006-04-12 21:52:12 +00009962 /* Go to the first window. */
9963 if (put_line(fd, "wincmd t") == FAIL)
9964 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009965
Bram Moolenaar18144c82006-04-12 21:52:12 +00009966 /*
9967 * If more than one window, see if sizes can be restored.
9968 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
9969 * resized when moving between windows.
9970 * Do this before restoring the view, so that the topline and the
9971 * cursor can be set. This is done again below.
9972 */
9973 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
9974 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009975 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009976 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009977
Bram Moolenaar18144c82006-04-12 21:52:12 +00009978 /*
9979 * Restore the view of the window (options, file, cursor, etc.).
9980 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009981 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009982 {
9983 if (!ses_do_win(wp))
9984 continue;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009985 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
9986 cur_arg_idx) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009987 return FAIL;
9988 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
9989 return FAIL;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009990 next_arg_idx = wp->w_arg_idx;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009991 }
9992
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009993 /* The argument index in the first tab page is zero, need to set it in
9994 * each window. For further tab pages it's the window where we do
9995 * "tabedit". */
9996 cur_arg_idx = next_arg_idx;
9997
Bram Moolenaar18144c82006-04-12 21:52:12 +00009998 /*
9999 * Restore cursor to the current window if it's not the first one.
10000 */
10001 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
10002 || put_eol(fd) == FAIL))
10003 return FAIL;
10004
10005 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000010006 * Restore window sizes again after jumping around in windows, because
10007 * the current window has a minimum size while others may not.
10008 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010009 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010010 return FAIL;
10011
Bram Moolenaar18144c82006-04-12 21:52:12 +000010012 /* Don't continue in another tab page when doing only the current one
10013 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010014 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +000010015 break;
10016 }
10017
10018 if (ssop_flags & SSOP_TABPAGES)
10019 {
Bram Moolenaar18144c82006-04-12 21:52:12 +000010020 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
10021 || put_eol(fd) == FAIL)
10022 return FAIL;
10023 }
10024
Bram Moolenaar9c102382006-05-03 21:26:49 +000010025 /*
10026 * Wipe out an empty unnamed buffer we started in.
10027 */
10028 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
10029 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +000010030 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +000010031 return FAIL;
10032 if (put_line(fd, "endif") == FAIL)
10033 return FAIL;
10034 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
10035 return FAIL;
10036
10037 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10038 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10039 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10040 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010041
10042 /*
10043 * Lastly, execute the x.vim file if it exists.
10044 */
10045 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10046 || put_line(fd, "if file_readable(s:sx)") == FAIL
10047 || put_line(fd, " exe \"source \" . s:sx") == FAIL
10048 || put_line(fd, "endif") == FAIL)
10049 return FAIL;
10050
10051 return OK;
10052}
10053
10054 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010055ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010056 FILE *fd;
10057 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010058 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010059{
10060 int n = 0;
10061 win_T *wp;
10062
10063 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10064 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010065 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010066 {
10067 if (!ses_do_win(wp))
10068 continue;
10069 ++n;
10070
10071 /* restore height when not full height */
10072 if (wp->w_height + wp->w_status_height < topframe->fr_height
10073 && (fprintf(fd,
10074 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10075 n, (long)wp->w_height, Rows / 2, Rows) < 0
10076 || put_eol(fd) == FAIL))
10077 return FAIL;
10078
10079 /* restore width when not full width */
10080 if (wp->w_width < Columns && (fprintf(fd,
10081 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10082 n, (long)wp->w_width, Columns / 2, Columns) < 0
10083 || put_eol(fd) == FAIL))
10084 return FAIL;
10085 }
10086 }
10087 else
10088 {
10089 /* Just equalise window sizes */
10090 if (put_line(fd, "wincmd =") == FAIL)
10091 return FAIL;
10092 }
10093 return OK;
10094}
10095
10096/*
10097 * Write commands to "fd" to recursively create windows for frame "fr",
10098 * horizontally and vertically split.
10099 * After the commands the last window in the frame is the current window.
10100 * Returns FAIL when writing the commands to "fd" fails.
10101 */
10102 static int
10103ses_win_rec(fd, fr)
10104 FILE *fd;
10105 frame_T *fr;
10106{
10107 frame_T *frc;
10108 int count = 0;
10109
10110 if (fr->fr_layout != FR_LEAF)
10111 {
10112 /* Find first frame that's not skipped and then create a window for
10113 * each following one (first frame is already there). */
10114 frc = ses_skipframe(fr->fr_child);
10115 if (frc != NULL)
10116 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10117 {
10118 /* Make window as big as possible so that we have lots of room
10119 * to split. */
10120 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10121 || put_line(fd, fr->fr_layout == FR_COL
10122 ? "split" : "vsplit") == FAIL)
10123 return FAIL;
10124 ++count;
10125 }
10126
10127 /* Go back to the first window. */
10128 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10129 ? "%dwincmd k" : "%dwincmd h", count) < 0
10130 || put_eol(fd) == FAIL))
10131 return FAIL;
10132
10133 /* Recursively create frames/windows in each window of this column or
10134 * row. */
10135 frc = ses_skipframe(fr->fr_child);
10136 while (frc != NULL)
10137 {
10138 ses_win_rec(fd, frc);
10139 frc = ses_skipframe(frc->fr_next);
10140 /* Go to next window. */
10141 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10142 return FAIL;
10143 }
10144 }
10145 return OK;
10146}
10147
10148/*
10149 * Skip frames that don't contain windows we want to save in the Session.
10150 * Returns NULL when there none.
10151 */
10152 static frame_T *
10153ses_skipframe(fr)
10154 frame_T *fr;
10155{
10156 frame_T *frc;
10157
10158 for (frc = fr; frc != NULL; frc = frc->fr_next)
10159 if (ses_do_frame(frc))
10160 break;
10161 return frc;
10162}
10163
10164/*
10165 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10166 * the Session.
10167 */
10168 static int
10169ses_do_frame(fr)
10170 frame_T *fr;
10171{
10172 frame_T *frc;
10173
10174 if (fr->fr_layout == FR_LEAF)
10175 return ses_do_win(fr->fr_win);
10176 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10177 if (ses_do_frame(frc))
10178 return TRUE;
10179 return FALSE;
10180}
10181
10182/*
10183 * Return non-zero if window "wp" is to be stored in the Session.
10184 */
10185 static int
10186ses_do_win(wp)
10187 win_T *wp;
10188{
10189 if (wp->w_buffer->b_fname == NULL
10190#ifdef FEAT_QUICKFIX
10191 /* When 'buftype' is "nofile" can't restore the window contents. */
10192 || bt_nofile(wp->w_buffer)
10193#endif
10194 )
10195 return (ssop_flags & SSOP_BLANK);
10196 if (wp->w_buffer->b_help)
10197 return (ssop_flags & SSOP_HELP);
10198 return TRUE;
10199}
10200
10201/*
10202 * Write commands to "fd" to restore the view of a window.
10203 * Caller must make sure 'scrolloff' is zero.
10204 */
10205 static int
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010206put_view(fd, wp, add_edit, flagp, current_arg_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010207 FILE *fd;
10208 win_T *wp;
10209 int add_edit; /* add ":edit" command to view */
10210 unsigned *flagp; /* vop_flags or ssop_flags */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010211 int current_arg_idx; /* current argument index of the window, use
10212 * -1 if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010213{
10214 win_T *save_curwin;
10215 int f;
10216 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010217 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010218
10219 /* Always restore cursor position for ":mksession". For ":mkview" only
10220 * when 'viewoptions' contains "cursor". */
10221 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10222
10223 /*
10224 * Local argument list.
10225 */
10226 if (wp->w_alist == &global_alist)
10227 {
10228 if (put_line(fd, "argglobal") == FAIL)
10229 return FAIL;
10230 }
10231 else
10232 {
10233 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10234 flagp == &vop_flags
10235 || !(*flagp & SSOP_CURDIR)
10236 || wp->w_localdir != NULL, flagp) == FAIL)
10237 return FAIL;
10238 }
10239
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010240 /* Only when part of a session: restore the argument index. Some
10241 * arguments may have been deleted, check if the index is valid. */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010242 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx <= WARGCOUNT(wp)
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010243 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010244 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010245 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000010246 || put_eol(fd) == FAIL)
10247 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010248 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010249 }
10250
10251 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010252 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010253 {
10254 /*
10255 * Load the file.
10256 */
10257 if (wp->w_buffer->b_ffname != NULL
10258#ifdef FEAT_QUICKFIX
10259 && !bt_nofile(wp->w_buffer)
10260#endif
10261 )
10262 {
10263 /*
10264 * Editing a file in this buffer: use ":edit file".
10265 * This may have side effects! (e.g., compressed or network file).
10266 */
10267 if (fputs("edit ", fd) < 0
10268 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10269 return FAIL;
10270 }
10271 else
10272 {
10273 /* No file in this buffer, just make it empty. */
10274 if (put_line(fd, "enew") == FAIL)
10275 return FAIL;
10276#ifdef FEAT_QUICKFIX
10277 if (wp->w_buffer->b_ffname != NULL)
10278 {
10279 /* The buffer does have a name, but it's not a file name. */
10280 if (fputs("file ", fd) < 0
10281 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10282 return FAIL;
10283 }
10284#endif
10285 do_cursor = FALSE;
10286 }
10287 }
10288
10289 /*
10290 * Local mappings and abbreviations.
10291 */
10292 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10293 && makemap(fd, wp->w_buffer) == FAIL)
10294 return FAIL;
10295
10296 /*
10297 * Local options. Need to go to the window temporarily.
10298 * Store only local values when using ":mkview" and when ":mksession" is
10299 * used and 'sessionoptions' doesn't include "options".
10300 * Some folding options are always stored when "folds" is included,
10301 * otherwise the folds would not be restored correctly.
10302 */
10303 save_curwin = curwin;
10304 curwin = wp;
10305 curbuf = curwin->w_buffer;
10306 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10307 f = makeset(fd, OPT_LOCAL,
10308 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10309#ifdef FEAT_FOLDING
10310 else if (*flagp & SSOP_FOLDS)
10311 f = makefoldset(fd);
10312#endif
10313 else
10314 f = OK;
10315 curwin = save_curwin;
10316 curbuf = curwin->w_buffer;
10317 if (f == FAIL)
10318 return FAIL;
10319
10320#ifdef FEAT_FOLDING
10321 /*
10322 * Save Folds when 'buftype' is empty and for help files.
10323 */
10324 if ((*flagp & SSOP_FOLDS)
10325 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010326# ifdef FEAT_QUICKFIX
10327 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10328# endif
10329 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010330 {
10331 if (put_folds(fd, wp) == FAIL)
10332 return FAIL;
10333 }
10334#endif
10335
10336 /*
10337 * Set the cursor after creating folds, since that moves the cursor.
10338 */
10339 if (do_cursor)
10340 {
10341
10342 /* Restore the cursor line in the file and relatively in the
10343 * window. Don't use "G", it changes the jumplist. */
10344 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10345 (long)wp->w_cursor.lnum,
10346 (long)(wp->w_cursor.lnum - wp->w_topline),
10347 (long)wp->w_height / 2, (long)wp->w_height) < 0
10348 || put_eol(fd) == FAIL
10349 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10350 || put_line(fd, "exe s:l") == FAIL
10351 || put_line(fd, "normal! zt") == FAIL
10352 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10353 || put_eol(fd) == FAIL)
10354 return FAIL;
10355 /* Restore the cursor column and left offset when not wrapping. */
10356 if (wp->w_cursor.col == 0)
10357 {
10358 if (put_line(fd, "normal! 0") == FAIL)
10359 return FAIL;
10360 }
10361 else
10362 {
10363 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10364 {
10365 if (fprintf(fd,
10366 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10367 (long)wp->w_cursor.col,
10368 (long)(wp->w_cursor.col - wp->w_leftcol),
10369 (long)wp->w_width / 2, (long)wp->w_width) < 0
10370 || put_eol(fd) == FAIL
10371 || put_line(fd, "if s:c > 0") == FAIL
10372 || fprintf(fd,
10373 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10374 (long)wp->w_cursor.col) < 0
10375 || put_eol(fd) == FAIL
10376 || put_line(fd, "else") == FAIL
10377 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10378 || put_eol(fd) == FAIL
10379 || put_line(fd, "endif") == FAIL)
10380 return FAIL;
10381 }
10382 else
10383 {
10384 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10385 || put_eol(fd) == FAIL)
10386 return FAIL;
10387 }
10388 }
10389 }
10390
10391 /*
10392 * Local directory.
10393 */
10394 if (wp->w_localdir != NULL)
10395 {
10396 if (fputs("lcd ", fd) < 0
10397 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10398 || put_eol(fd) == FAIL)
10399 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010400 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010401 }
10402
10403 return OK;
10404}
10405
10406/*
10407 * Write an argument list to the session file.
10408 * Returns FAIL if writing fails.
10409 */
10410 static int
10411ses_arglist(fd, cmd, gap, fullname, flagp)
10412 FILE *fd;
10413 char *cmd;
10414 garray_T *gap;
10415 int fullname; /* TRUE: use full path name */
10416 unsigned *flagp;
10417{
10418 int i;
10419 char_u buf[MAXPATHL];
10420 char_u *s;
10421
10422 if (gap->ga_len == 0)
10423 return put_line(fd, "silent! argdel *");
10424 if (fputs(cmd, fd) < 0)
10425 return FAIL;
10426 for (i = 0; i < gap->ga_len; ++i)
10427 {
10428 /* NULL file names are skipped (only happens when out of memory). */
10429 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10430 if (s != NULL)
10431 {
10432 if (fullname)
10433 {
10434 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10435 s = buf;
10436 }
10437 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10438 return FAIL;
10439 }
10440 }
10441 return put_eol(fd);
10442}
10443
10444/*
10445 * Write a buffer name to the session file.
10446 * Also ends the line.
10447 * Returns FAIL if writing fails.
10448 */
10449 static int
10450ses_fname(fd, buf, flagp)
10451 FILE *fd;
10452 buf_T *buf;
10453 unsigned *flagp;
10454{
10455 char_u *name;
10456
10457 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010458 * the session file will be sourced.
10459 * Don't do this for ":mkview", we don't know the current directory.
10460 * Don't do this after ":lcd", we don't keep track of what the current
10461 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010462 if (buf->b_sfname != NULL
10463 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010464 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10465 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010466 name = buf->b_sfname;
10467 else
10468 name = buf->b_ffname;
10469 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10470 return FAIL;
10471 return OK;
10472}
10473
10474/*
10475 * Write a file name to the session file.
10476 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10477 * characters.
10478 * Returns FAIL if writing fails.
10479 */
10480 static int
10481ses_put_fname(fd, name, flagp)
10482 FILE *fd;
10483 char_u *name;
10484 unsigned *flagp;
10485{
10486 char_u *sname;
10487 int retval = OK;
10488 int c;
10489
10490 sname = home_replace_save(NULL, name);
10491 if (sname != NULL)
10492 name = sname;
10493 while (*name != NUL)
10494 {
10495#ifdef FEAT_MBYTE
10496 {
10497 int l;
10498
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010499 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010500 {
10501 /* copy a multibyte char */
10502 while (--l >= 0)
10503 {
10504 if (putc(*name, fd) != *name)
10505 retval = FAIL;
10506 ++name;
10507 }
10508 continue;
10509 }
10510 }
10511#endif
10512 c = *name++;
10513 if (c == '\\' && (*flagp & SSOP_SLASH))
10514 /* change a backslash to a forward slash */
10515 c = '/';
10516 else if ((vim_strchr(escape_chars, c) != NULL
10517#ifdef BACKSLASH_IN_FILENAME
10518 && c != '\\'
10519#endif
10520 ) || c == '#' || c == '%')
10521 {
10522 /* escape a special character with a backslash */
10523 if (putc('\\', fd) != '\\')
10524 retval = FAIL;
10525 }
10526 if (putc(c, fd) != c)
10527 retval = FAIL;
10528 }
10529 vim_free(sname);
10530 return retval;
10531}
10532
10533/*
10534 * ":loadview [nr]"
10535 */
10536 static void
10537ex_loadview(eap)
10538 exarg_T *eap;
10539{
10540 char_u *fname;
10541
10542 fname = get_view_file(*eap->arg);
10543 if (fname != NULL)
10544 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010545 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010546 vim_free(fname);
10547 }
10548}
10549
10550/*
10551 * Get the name of the view file for the current buffer.
10552 */
10553 static char_u *
10554get_view_file(c)
10555 int c;
10556{
10557 int len = 0;
10558 char_u *p, *s;
10559 char_u *retval;
10560 char_u *sname;
10561
10562 if (curbuf->b_ffname == NULL)
10563 {
10564 EMSG(_(e_noname));
10565 return NULL;
10566 }
10567 sname = home_replace_save(NULL, curbuf->b_ffname);
10568 if (sname == NULL)
10569 return NULL;
10570
10571 /*
10572 * We want a file name without separators, because we're not going to make
10573 * a directory.
10574 * "normal" path separator -> "=+"
10575 * "=" -> "=="
10576 * ":" path separator -> "=-"
10577 */
10578 for (p = sname; *p; ++p)
10579 if (*p == '=' || vim_ispathsep(*p))
10580 ++len;
10581 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10582 if (retval != NULL)
10583 {
10584 STRCPY(retval, p_vdir);
10585 add_pathsep(retval);
10586 s = retval + STRLEN(retval);
10587 for (p = sname; *p; ++p)
10588 {
10589 if (*p == '=')
10590 {
10591 *s++ = '=';
10592 *s++ = '=';
10593 }
10594 else if (vim_ispathsep(*p))
10595 {
10596 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010597#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010598 || defined(VMS)
10599 if (*p == ':')
10600 *s++ = '-';
10601 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010602#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010603 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010604 }
10605 else
10606 *s++ = *p;
10607 }
10608 *s++ = '=';
10609 *s++ = c;
10610 STRCPY(s, ".vim");
10611 }
10612
10613 vim_free(sname);
10614 return retval;
10615}
10616
10617#endif /* FEAT_SESSION */
10618
10619/*
10620 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10621 * Return FAIL for a write error.
10622 */
10623 int
10624put_eol(fd)
10625 FILE *fd;
10626{
10627 if (
10628#ifdef USE_CRNL
10629 (
10630# ifdef MKSESSION_NL
10631 !mksession_nl &&
10632# endif
10633 (putc('\r', fd) < 0)) ||
10634#endif
10635 (putc('\n', fd) < 0))
10636 return FAIL;
10637 return OK;
10638}
10639
10640/*
10641 * Write a line to "fd".
10642 * Return FAIL for a write error.
10643 */
10644 int
10645put_line(fd, s)
10646 FILE *fd;
10647 char *s;
10648{
10649 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10650 return FAIL;
10651 return OK;
10652}
10653
10654#ifdef FEAT_VIMINFO
10655/*
10656 * ":rviminfo" and ":wviminfo".
10657 */
10658 static void
10659ex_viminfo(eap)
10660 exarg_T *eap;
10661{
10662 char_u *save_viminfo;
10663
10664 save_viminfo = p_viminfo;
10665 if (*p_viminfo == NUL)
10666 p_viminfo = (char_u *)"'100";
10667 if (eap->cmdidx == CMD_rviminfo)
10668 {
10669 if (read_viminfo(eap->arg, TRUE, TRUE, eap->forceit) == FAIL)
10670 EMSG(_("E195: Cannot open viminfo file for reading"));
10671 }
10672 else
10673 write_viminfo(eap->arg, eap->forceit);
10674 p_viminfo = save_viminfo;
10675}
10676#endif
10677
10678#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010679/*
10680 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010681 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010682 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010683 void
10684dialog_msg(buff, format, fname)
10685 char_u *buff;
10686 char *format;
10687 char_u *fname;
10688{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010689 if (fname == NULL)
10690 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010691 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010692}
10693#endif
10694
10695/*
10696 * ":behave {mswin,xterm}"
10697 */
10698 static void
10699ex_behave(eap)
10700 exarg_T *eap;
10701{
10702 if (STRCMP(eap->arg, "mswin") == 0)
10703 {
10704 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10705 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10706 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10707 set_option_value((char_u *)"keymodel", 0L,
10708 (char_u *)"startsel,stopsel", 0);
10709 }
10710 else if (STRCMP(eap->arg, "xterm") == 0)
10711 {
10712 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10713 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10714 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10715 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10716 }
10717 else
10718 EMSG2(_(e_invarg2), eap->arg);
10719}
10720
10721#ifdef FEAT_AUTOCMD
10722static int filetype_detect = FALSE;
10723static int filetype_plugin = FALSE;
10724static int filetype_indent = FALSE;
10725
10726/*
10727 * ":filetype [plugin] [indent] {on,off,detect}"
10728 * on: Load the filetype.vim file to install autocommands for file types.
10729 * off: Load the ftoff.vim file to remove all autocommands for file types.
10730 * plugin on: load filetype.vim and ftplugin.vim
10731 * plugin off: load ftplugof.vim
10732 * indent on: load filetype.vim and indent.vim
10733 * indent off: load indoff.vim
10734 */
10735 static void
10736ex_filetype(eap)
10737 exarg_T *eap;
10738{
10739 char_u *arg = eap->arg;
10740 int plugin = FALSE;
10741 int indent = FALSE;
10742
10743 if (*eap->arg == NUL)
10744 {
10745 /* Print current status. */
10746 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10747 filetype_detect ? "ON" : "OFF",
10748 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10749 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10750 return;
10751 }
10752
10753 /* Accept "plugin" and "indent" in any order. */
10754 for (;;)
10755 {
10756 if (STRNCMP(arg, "plugin", 6) == 0)
10757 {
10758 plugin = TRUE;
10759 arg = skipwhite(arg + 6);
10760 continue;
10761 }
10762 if (STRNCMP(arg, "indent", 6) == 0)
10763 {
10764 indent = TRUE;
10765 arg = skipwhite(arg + 6);
10766 continue;
10767 }
10768 break;
10769 }
10770 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10771 {
10772 if (*arg == 'o' || !filetype_detect)
10773 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010774 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010775 filetype_detect = TRUE;
10776 if (plugin)
10777 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010778 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010779 filetype_plugin = TRUE;
10780 }
10781 if (indent)
10782 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010783 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010784 filetype_indent = TRUE;
10785 }
10786 }
10787 if (*arg == 'd')
10788 {
10789 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010790 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010791 }
10792 }
10793 else if (STRCMP(arg, "off") == 0)
10794 {
10795 if (plugin || indent)
10796 {
10797 if (plugin)
10798 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010799 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010800 filetype_plugin = FALSE;
10801 }
10802 if (indent)
10803 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010804 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010805 filetype_indent = FALSE;
10806 }
10807 }
10808 else
10809 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010810 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010811 filetype_detect = FALSE;
10812 }
10813 }
10814 else
10815 EMSG2(_(e_invarg2), arg);
10816}
10817
10818/*
10819 * ":setfiletype {name}"
10820 */
10821 static void
10822ex_setfiletype(eap)
10823 exarg_T *eap;
10824{
10825 if (!did_filetype)
10826 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10827}
10828#endif
10829
10830/*ARGSUSED*/
10831 static void
10832ex_digraphs(eap)
10833 exarg_T *eap;
10834{
10835#ifdef FEAT_DIGRAPHS
10836 if (*eap->arg != NUL)
10837 putdigraph(eap->arg);
10838 else
10839 listdigraphs();
10840#else
10841 EMSG(_("E196: No digraphs in this version"));
10842#endif
10843}
10844
10845 static void
10846ex_set(eap)
10847 exarg_T *eap;
10848{
10849 int flags = 0;
10850
10851 if (eap->cmdidx == CMD_setlocal)
10852 flags = OPT_LOCAL;
10853 else if (eap->cmdidx == CMD_setglobal)
10854 flags = OPT_GLOBAL;
10855#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10856 if (cmdmod.browse && flags == 0)
10857 ex_options(eap);
10858 else
10859#endif
10860 (void)do_set(eap->arg, flags);
10861}
10862
10863#ifdef FEAT_SEARCH_EXTRA
10864/*
10865 * ":nohlsearch"
10866 */
10867/*ARGSUSED*/
10868 static void
10869ex_nohlsearch(eap)
10870 exarg_T *eap;
10871{
10872 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010873 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010874}
10875
10876/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010877 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010878 * Sets nextcmd to the start of the next command, if any. Also called when
10879 * skipping commands to find the next command.
10880 */
10881 static void
10882ex_match(eap)
10883 exarg_T *eap;
10884{
10885 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000010886 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010887 char_u *end;
10888 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010889 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010890
10891 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010892 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010893 else
10894 {
10895 EMSG(e_invcmd);
10896 return;
10897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010898
10899 /* First clear any old pattern. */
10900 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010901 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010902
10903 if (ends_excmd(*eap->arg))
10904 end = eap->arg;
10905 else if ((STRNICMP(eap->arg, "none", 4) == 0
10906 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10907 end = eap->arg + 4;
10908 else
10909 {
10910 p = skiptowhite(eap->arg);
10911 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010912 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010913 p = skipwhite(p);
10914 if (*p == NUL)
10915 {
10916 /* There must be two arguments. */
10917 EMSG2(_(e_invarg2), eap->arg);
10918 return;
10919 }
10920 end = skip_regexp(p + 1, *p, TRUE, NULL);
10921 if (!eap->skip)
10922 {
10923 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10924 {
10925 eap->errmsg = e_trailing;
10926 return;
10927 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010928 if (*end != *p)
10929 {
10930 EMSG2(_(e_invarg2), p);
10931 return;
10932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010933
10934 c = *end;
10935 *end = NUL;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010936 match_add(curwin, g, p + 1, 10, id);
10937 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010938 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010939 }
10940 }
10941 eap->nextcmd = find_nextcmd(end);
10942}
10943#endif
10944
10945#ifdef FEAT_CRYPT
10946/*
10947 * ":X": Get crypt key
10948 */
10949/*ARGSUSED*/
10950 static void
10951ex_X(eap)
10952 exarg_T *eap;
10953{
10954 (void)get_crypt_key(TRUE, TRUE);
10955}
10956#endif
10957
10958#ifdef FEAT_FOLDING
10959 static void
10960ex_fold(eap)
10961 exarg_T *eap;
10962{
10963 if (foldManualAllowed(TRUE))
10964 foldCreate(eap->line1, eap->line2);
10965}
10966
10967 static void
10968ex_foldopen(eap)
10969 exarg_T *eap;
10970{
10971 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
10972 eap->forceit, FALSE);
10973}
10974
10975 static void
10976ex_folddo(eap)
10977 exarg_T *eap;
10978{
10979 linenr_T lnum;
10980
10981 /* First set the marks for all lines closed/open. */
10982 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
10983 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
10984 ml_setmarked(lnum);
10985
10986 /* Execute the command on the marked lines. */
10987 global_exe(eap->arg);
10988 ml_clearmarked(); /* clear rest of the marks */
10989}
10990#endif