blob: 50c8f5841a47a8adeaf80e7c9d7f960319c3c4bd [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))
3012 return j + (p - cmd);
3013 }
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 {
3349 while (*p != NUL)
3350 {
3351#ifdef FEAT_MBYTE
3352 if (has_mbyte)
3353 c = mb_ptr2char(p);
3354 else
3355#endif
3356 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003357 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003358 break;
3359#ifdef FEAT_MBYTE
3360 if (has_mbyte)
3361 len = (*mb_ptr2len)(p);
3362 else
3363#endif
3364 len = 1;
3365 mb_ptr_adv(p);
3366 }
3367 if (in_quote)
3368 bow = p;
3369 else
3370 xp->xp_pattern = p;
3371 p -= len;
3372 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003373 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 }
3375
3376 /*
3377 * If we are still inside the quotes, and we passed a space, just
3378 * expand from there.
3379 */
3380 if (bow != NULL && in_quote)
3381 xp->xp_pattern = bow;
3382 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003383
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003384#ifndef BACKSLASH_IN_FILENAME
3385 /* For a shell command more chars need to be escaped. */
3386 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003387 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003388 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003389
3390 /* When still after the command name expand executables. */
3391 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003392 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003393 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003394#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395
3396 /* Check for environment variable */
3397 if (*xp->xp_pattern == '$'
3398#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3399 || *xp->xp_pattern == '%'
3400#endif
3401 )
3402 {
3403 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3404 if (!vim_isIDc(*p))
3405 break;
3406 if (*p == NUL)
3407 {
3408 xp->xp_context = EXPAND_ENV_VARS;
3409 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003410#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3411 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003412 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003413 compl = EXPAND_ENV_VARS;
3414#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 }
3416 }
3417 }
3418
3419/*
3420 * 6. switch on command name
3421 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003422 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 {
3424 case CMD_cd:
3425 case CMD_chdir:
3426 case CMD_lcd:
3427 case CMD_lchdir:
3428 if (xp->xp_context == EXPAND_FILES)
3429 xp->xp_context = EXPAND_DIRECTORIES;
3430 break;
3431 case CMD_help:
3432 xp->xp_context = EXPAND_HELP;
3433 xp->xp_pattern = arg;
3434 break;
3435
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003436 /* Command modifiers: return the argument.
3437 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003439 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 case CMD_belowright:
3441 case CMD_botright:
3442 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003443 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003445 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 case CMD_folddoclosed:
3447 case CMD_folddoopen:
3448 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003449 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 case CMD_keepjumps:
3451 case CMD_keepmarks:
3452 case CMD_leftabove:
3453 case CMD_lockmarks:
3454 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003455 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003457 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 case CMD_topleft:
3459 case CMD_verbose:
3460 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003461 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 return arg;
3463
Bram Moolenaar4f688582007-07-24 12:34:30 +00003464#ifdef FEAT_CMDL_COMPL
3465# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 case CMD_match:
3467 if (*arg == NUL || !ends_excmd(*arg))
3468 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003469 /* also complete "None" */
3470 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 arg = skipwhite(skiptowhite(arg));
3472 if (*arg != NUL)
3473 {
3474 xp->xp_context = EXPAND_NOTHING;
3475 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3476 }
3477 }
3478 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003479# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481/*
3482 * All completion for the +cmdline_compl feature goes here.
3483 */
3484
3485# ifdef FEAT_USR_CMDS
3486 case CMD_command:
3487 /* Check for attributes */
3488 while (*arg == '-')
3489 {
3490 arg++; /* Skip "-" */
3491 p = skiptowhite(arg);
3492 if (*p == NUL)
3493 {
3494 /* Cursor is still in the attribute */
3495 p = vim_strchr(arg, '=');
3496 if (p == NULL)
3497 {
3498 /* No "=", so complete attribute names */
3499 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3500 xp->xp_pattern = arg;
3501 return NULL;
3502 }
3503
3504 /* For the -complete and -nargs attributes, we complete
3505 * their arguments as well.
3506 */
3507 if (STRNICMP(arg, "complete", p - arg) == 0)
3508 {
3509 xp->xp_context = EXPAND_USER_COMPLETE;
3510 xp->xp_pattern = p + 1;
3511 return NULL;
3512 }
3513 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3514 {
3515 xp->xp_context = EXPAND_USER_NARGS;
3516 xp->xp_pattern = p + 1;
3517 return NULL;
3518 }
3519 return NULL;
3520 }
3521 arg = skipwhite(p);
3522 }
3523
3524 /* After the attributes comes the new command name */
3525 p = skiptowhite(arg);
3526 if (*p == NUL)
3527 {
3528 xp->xp_context = EXPAND_USER_COMMANDS;
3529 xp->xp_pattern = arg;
3530 break;
3531 }
3532
3533 /* And finally comes a normal command */
3534 return skipwhite(p);
3535
3536 case CMD_delcommand:
3537 xp->xp_context = EXPAND_USER_COMMANDS;
3538 xp->xp_pattern = arg;
3539 break;
3540# endif
3541
3542 case CMD_global:
3543 case CMD_vglobal:
3544 delim = *arg; /* get the delimiter */
3545 if (delim)
3546 ++arg; /* skip delimiter if there is one */
3547
3548 while (arg[0] != NUL && arg[0] != delim)
3549 {
3550 if (arg[0] == '\\' && arg[1] != NUL)
3551 ++arg;
3552 ++arg;
3553 }
3554 if (arg[0] != NUL)
3555 return arg + 1;
3556 break;
3557 case CMD_and:
3558 case CMD_substitute:
3559 delim = *arg;
3560 if (delim)
3561 {
3562 /* skip "from" part */
3563 ++arg;
3564 arg = skip_regexp(arg, delim, p_magic, NULL);
3565 }
3566 /* skip "to" part */
3567 while (arg[0] != NUL && arg[0] != delim)
3568 {
3569 if (arg[0] == '\\' && arg[1] != NUL)
3570 ++arg;
3571 ++arg;
3572 }
3573 if (arg[0] != NUL) /* skip delimiter */
3574 ++arg;
3575 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3576 ++arg;
3577 if (arg[0] != NUL)
3578 return arg;
3579 break;
3580 case CMD_isearch:
3581 case CMD_dsearch:
3582 case CMD_ilist:
3583 case CMD_dlist:
3584 case CMD_ijump:
3585 case CMD_psearch:
3586 case CMD_djump:
3587 case CMD_isplit:
3588 case CMD_dsplit:
3589 arg = skipwhite(skipdigits(arg)); /* skip count */
3590 if (*arg == '/') /* Match regexp, not just whole words */
3591 {
3592 for (++arg; *arg && *arg != '/'; arg++)
3593 if (*arg == '\\' && arg[1] != NUL)
3594 arg++;
3595 if (*arg)
3596 {
3597 arg = skipwhite(arg + 1);
3598
3599 /* Check for trailing illegal characters */
3600 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3601 xp->xp_context = EXPAND_NOTHING;
3602 else
3603 return arg;
3604 }
3605 }
3606 break;
3607#ifdef FEAT_AUTOCMD
3608 case CMD_autocmd:
3609 return set_context_in_autocmd(xp, arg, FALSE);
3610
3611 case CMD_doautocmd:
3612 return set_context_in_autocmd(xp, arg, TRUE);
3613#endif
3614 case CMD_set:
3615 set_context_in_set_cmd(xp, arg, 0);
3616 break;
3617 case CMD_setglobal:
3618 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3619 break;
3620 case CMD_setlocal:
3621 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3622 break;
3623 case CMD_tag:
3624 case CMD_stag:
3625 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003626 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627 case CMD_tselect:
3628 case CMD_stselect:
3629 case CMD_ptselect:
3630 case CMD_tjump:
3631 case CMD_stjump:
3632 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003633 if (*p_wop != NUL)
3634 xp->xp_context = EXPAND_TAGS_LISTFILES;
3635 else
3636 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637 xp->xp_pattern = arg;
3638 break;
3639 case CMD_augroup:
3640 xp->xp_context = EXPAND_AUGROUP;
3641 xp->xp_pattern = arg;
3642 break;
3643#ifdef FEAT_SYN_HL
3644 case CMD_syntax:
3645 set_context_in_syntax_cmd(xp, arg);
3646 break;
3647#endif
3648#ifdef FEAT_EVAL
3649 case CMD_let:
3650 case CMD_if:
3651 case CMD_elseif:
3652 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003653 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 case CMD_echo:
3655 case CMD_echon:
3656 case CMD_execute:
3657 case CMD_echomsg:
3658 case CMD_echoerr:
3659 case CMD_call:
3660 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003661 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 break;
3663
3664 case CMD_unlet:
3665 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3666 arg = xp->xp_pattern + 1;
3667 xp->xp_context = EXPAND_USER_VARS;
3668 xp->xp_pattern = arg;
3669 break;
3670
3671 case CMD_function:
3672 case CMD_delfunction:
3673 xp->xp_context = EXPAND_USER_FUNC;
3674 xp->xp_pattern = arg;
3675 break;
3676
3677 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00003678 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 break;
3680#endif
3681 case CMD_highlight:
3682 set_context_in_highlight_cmd(xp, arg);
3683 break;
3684#ifdef FEAT_LISTCMDS
3685 case CMD_bdelete:
3686 case CMD_bwipeout:
3687 case CMD_bunload:
3688 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3689 arg = xp->xp_pattern + 1;
3690 /*FALLTHROUGH*/
3691 case CMD_buffer:
3692 case CMD_sbuffer:
3693 case CMD_checktime:
3694 xp->xp_context = EXPAND_BUFFERS;
3695 xp->xp_pattern = arg;
3696 break;
3697#endif
3698#ifdef FEAT_USR_CMDS
3699 case CMD_USER:
3700 case CMD_USER_BUF:
3701 if (compl != EXPAND_NOTHING)
3702 {
3703 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003704 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 {
3706# ifdef FEAT_MENU
3707 if (compl == EXPAND_MENUS)
3708 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3709# endif
3710 if (compl == EXPAND_COMMANDS)
3711 return arg;
3712 if (compl == EXPAND_MAPPINGS)
3713 return set_context_in_map_cmd(xp, (char_u *)"map",
3714 arg, forceit, FALSE, FALSE, CMD_map);
3715 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3716 arg = xp->xp_pattern + 1;
3717 xp->xp_pattern = arg;
3718 }
3719 xp->xp_context = compl;
3720 }
3721 break;
3722#endif
3723 case CMD_map: case CMD_noremap:
3724 case CMD_nmap: case CMD_nnoremap:
3725 case CMD_vmap: case CMD_vnoremap:
3726 case CMD_omap: case CMD_onoremap:
3727 case CMD_imap: case CMD_inoremap:
3728 case CMD_cmap: case CMD_cnoremap:
3729 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003730 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 case CMD_unmap:
3732 case CMD_nunmap:
3733 case CMD_vunmap:
3734 case CMD_ounmap:
3735 case CMD_iunmap:
3736 case CMD_cunmap:
3737 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003738 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 case CMD_abbreviate: case CMD_noreabbrev:
3740 case CMD_cabbrev: case CMD_cnoreabbrev:
3741 case CMD_iabbrev: case CMD_inoreabbrev:
3742 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003743 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 case CMD_unabbreviate:
3745 case CMD_cunabbrev:
3746 case CMD_iunabbrev:
3747 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003748 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749#ifdef FEAT_MENU
3750 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3751 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3752 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3753 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3754 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3755 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3756 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3757 case CMD_tmenu: case CMD_tunmenu:
3758 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3759 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3760#endif
3761
3762 case CMD_colorscheme:
3763 xp->xp_context = EXPAND_COLORS;
3764 xp->xp_pattern = arg;
3765 break;
3766
3767 case CMD_compiler:
3768 xp->xp_context = EXPAND_COMPILER;
3769 xp->xp_pattern = arg;
3770 break;
3771
3772#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3773 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3774 case CMD_language:
3775 if (*skiptowhite(arg) == NUL)
3776 {
3777 xp->xp_context = EXPAND_LANGUAGE;
3778 xp->xp_pattern = arg;
3779 }
3780 else
3781 xp->xp_context = EXPAND_NOTHING;
3782 break;
3783#endif
3784
3785#endif /* FEAT_CMDL_COMPL */
3786
3787 default:
3788 break;
3789 }
3790 return NULL;
3791}
3792
3793/*
3794 * skip a range specifier of the form: addr [,addr] [;addr] ..
3795 *
3796 * Backslashed delimiters after / or ? will be skipped, and commands will
3797 * not be expanded between /'s and ?'s or after "'".
3798 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003799 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 * Returns the "cmd" pointer advanced to beyond the range.
3801 */
3802 char_u *
3803skip_range(cmd, ctx)
3804 char_u *cmd;
3805 int *ctx; /* pointer to xp_context or NULL */
3806{
3807 int delim;
3808
Bram Moolenaardf177f62005-02-22 08:39:57 +00003809 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 {
3811 if (*cmd == '\'')
3812 {
3813 if (*++cmd == NUL && ctx != NULL)
3814 *ctx = EXPAND_NOTHING;
3815 }
3816 else if (*cmd == '/' || *cmd == '?')
3817 {
3818 delim = *cmd++;
3819 while (*cmd != NUL && *cmd != delim)
3820 if (*cmd++ == '\\' && *cmd != NUL)
3821 ++cmd;
3822 if (*cmd == NUL && ctx != NULL)
3823 *ctx = EXPAND_NOTHING;
3824 }
3825 if (*cmd != NUL)
3826 ++cmd;
3827 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003828
3829 /* Skip ":" and white space. */
3830 while (*cmd == ':')
3831 cmd = skipwhite(cmd + 1);
3832
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 return cmd;
3834}
3835
3836/*
3837 * get a single EX address
3838 *
3839 * Set ptr to the next character after the part that was interpreted.
3840 * Set ptr to NULL when an error is encountered.
3841 *
3842 * Return MAXLNUM when no Ex address was found.
3843 */
3844 static linenr_T
3845get_address(ptr, skip, to_other_file)
3846 char_u **ptr;
3847 int skip; /* only skip the address, don't use it */
3848 int to_other_file; /* flag: may jump to other file */
3849{
3850 int c;
3851 int i;
3852 long n;
3853 char_u *cmd;
3854 pos_T pos;
3855 pos_T *fp;
3856 linenr_T lnum;
3857
3858 cmd = skipwhite(*ptr);
3859 lnum = MAXLNUM;
3860 do
3861 {
3862 switch (*cmd)
3863 {
3864 case '.': /* '.' - Cursor position */
3865 ++cmd;
3866 lnum = curwin->w_cursor.lnum;
3867 break;
3868
3869 case '$': /* '$' - last line */
3870 ++cmd;
3871 lnum = curbuf->b_ml.ml_line_count;
3872 break;
3873
3874 case '\'': /* ''' - mark */
3875 if (*++cmd == NUL)
3876 {
3877 cmd = NULL;
3878 goto error;
3879 }
3880 if (skip)
3881 ++cmd;
3882 else
3883 {
3884 /* Only accept a mark in another file when it is
3885 * used by itself: ":'M". */
3886 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3887 ++cmd;
3888 if (fp == (pos_T *)-1)
3889 /* Jumped to another file. */
3890 lnum = curwin->w_cursor.lnum;
3891 else
3892 {
3893 if (check_mark(fp) == FAIL)
3894 {
3895 cmd = NULL;
3896 goto error;
3897 }
3898 lnum = fp->lnum;
3899 }
3900 }
3901 break;
3902
3903 case '/':
3904 case '?': /* '/' or '?' - search */
3905 c = *cmd++;
3906 if (skip) /* skip "/pat/" */
3907 {
3908 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3909 if (*cmd == c)
3910 ++cmd;
3911 }
3912 else
3913 {
3914 pos = curwin->w_cursor; /* save curwin->w_cursor */
3915 /*
3916 * When '/' or '?' follows another address, start
3917 * from there.
3918 */
3919 if (lnum != MAXLNUM)
3920 curwin->w_cursor.lnum = lnum;
3921 /*
3922 * Start a forward search at the end of the line.
3923 * Start a backward search at the start of the line.
3924 * This makes sure we never match in the current
3925 * line, and can match anywhere in the
3926 * next/previous line.
3927 */
3928 if (c == '/')
3929 curwin->w_cursor.col = MAXCOL;
3930 else
3931 curwin->w_cursor.col = 0;
3932 searchcmdlen = 0;
3933 if (!do_search(NULL, c, cmd, 1L,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00003934 SEARCH_HIS + SEARCH_MSG + SEARCH_START,
3935 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,
3982 (char_u *)"", 1L,
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003983 SEARCH_MSG + SEARCH_START,
Bram Moolenaar76929292008-01-06 19:07:36 +00003984 i, (linenr_T)0, NULL) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 lnum = pos.lnum;
3986 else
3987 {
3988 cmd = NULL;
3989 goto error;
3990 }
3991 }
3992 ++cmd;
3993 break;
3994
3995 default:
3996 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3997 lnum = getdigits(&cmd);
3998 }
3999
4000 for (;;)
4001 {
4002 cmd = skipwhite(cmd);
4003 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4004 break;
4005
4006 if (lnum == MAXLNUM)
4007 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
4008 if (VIM_ISDIGIT(*cmd))
4009 i = '+'; /* "number" is same as "+number" */
4010 else
4011 i = *cmd++;
4012 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4013 n = 1;
4014 else
4015 n = getdigits(&cmd);
4016 if (i == '-')
4017 lnum -= n;
4018 else
4019 lnum += n;
4020 }
4021 } while (*cmd == '/' || *cmd == '?');
4022
4023error:
4024 *ptr = cmd;
4025 return lnum;
4026}
4027
4028/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004029 * Get flags from an Ex command argument.
4030 */
4031 static void
4032get_flags(eap)
4033 exarg_T *eap;
4034{
4035 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4036 {
4037 if (*eap->arg == 'l')
4038 eap->flags |= EXFLAG_LIST;
4039 else if (*eap->arg == 'p')
4040 eap->flags |= EXFLAG_PRINT;
4041 else
4042 eap->flags |= EXFLAG_NR;
4043 eap->arg = skipwhite(eap->arg + 1);
4044 }
4045}
4046
4047/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 * Function called for command which is Not Implemented. NI!
4049 */
4050 void
4051ex_ni(eap)
4052 exarg_T *eap;
4053{
4054 if (!eap->skip)
4055 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4056}
4057
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004058#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059/*
4060 * Function called for script command which is Not Implemented. NI!
4061 * Skips over ":perl <<EOF" constructs.
4062 */
4063 static void
4064ex_script_ni(eap)
4065 exarg_T *eap;
4066{
4067 if (!eap->skip)
4068 ex_ni(eap);
4069 else
4070 vim_free(script_get(eap, eap->arg));
4071}
4072#endif
4073
4074/*
4075 * Check range in Ex command for validity.
4076 * Return NULL when valid, error message when invalid.
4077 */
4078 static char_u *
4079invalid_range(eap)
4080 exarg_T *eap;
4081{
4082 if ( eap->line1 < 0
4083 || eap->line2 < 0
4084 || eap->line1 > eap->line2
4085 || ((eap->argt & RANGE)
4086 && !(eap->argt & NOTADR)
4087 && eap->line2 > curbuf->b_ml.ml_line_count
4088#ifdef FEAT_DIFF
4089 + (eap->cmdidx == CMD_diffget)
4090#endif
4091 ))
4092 return (char_u *)_(e_invrange);
4093 return NULL;
4094}
4095
4096/*
4097 * Correct the range for zero line number, if required.
4098 */
4099 static void
4100correct_range(eap)
4101 exarg_T *eap;
4102{
4103 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4104 {
4105 if (eap->line1 == 0)
4106 eap->line1 = 1;
4107 if (eap->line2 == 0)
4108 eap->line2 = 1;
4109 }
4110}
4111
Bram Moolenaar748bf032005-02-02 23:04:36 +00004112#ifdef FEAT_QUICKFIX
4113static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4114
4115/*
4116 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4117 * pattern. Otherwise return eap->arg.
4118 */
4119 static char_u *
4120skip_grep_pat(eap)
4121 exarg_T *eap;
4122{
4123 char_u *p = eap->arg;
4124
Bram Moolenaara37420f2006-02-04 22:37:47 +00004125 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4126 || eap->cmdidx == CMD_vimgrepadd
4127 || eap->cmdidx == CMD_lvimgrepadd
4128 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004129 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004130 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004131 if (p == NULL)
4132 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004133 }
4134 return p;
4135}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004136
4137/*
4138 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4139 * in the command line, so that things like % get expanded.
4140 */
4141 static char_u *
4142replace_makeprg(eap, p, cmdlinep)
4143 exarg_T *eap;
4144 char_u *p;
4145 char_u **cmdlinep;
4146{
4147 char_u *new_cmdline;
4148 char_u *program;
4149 char_u *pos;
4150 char_u *ptr;
4151 int len;
4152 int i;
4153
4154 /*
4155 * Don't do it when ":vimgrep" is used for ":grep".
4156 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004157 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4158 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4159 || eap->cmdidx == CMD_grepadd
4160 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004161 && !grep_internal(eap->cmdidx))
4162 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004163 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4164 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004165 {
4166 if (*curbuf->b_p_gp == NUL)
4167 program = p_gp;
4168 else
4169 program = curbuf->b_p_gp;
4170 }
4171 else
4172 {
4173 if (*curbuf->b_p_mp == NUL)
4174 program = p_mp;
4175 else
4176 program = curbuf->b_p_mp;
4177 }
4178
4179 p = skipwhite(p);
4180
4181 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4182 {
4183 /* replace $* by given arguments */
4184 i = 1;
4185 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4186 ++i;
4187 len = (int)STRLEN(p);
4188 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4189 if (new_cmdline == NULL)
4190 return NULL; /* out of memory */
4191 ptr = new_cmdline;
4192 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4193 {
4194 i = (int)(pos - program);
4195 STRNCPY(ptr, program, i);
4196 STRCPY(ptr += i, p);
4197 ptr += len;
4198 program = pos + 2;
4199 }
4200 STRCPY(ptr, program);
4201 }
4202 else
4203 {
4204 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4205 if (new_cmdline == NULL)
4206 return NULL; /* out of memory */
4207 STRCPY(new_cmdline, program);
4208 STRCAT(new_cmdline, " ");
4209 STRCAT(new_cmdline, p);
4210 }
4211 msg_make(p);
4212
4213 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4214 vim_free(*cmdlinep);
4215 *cmdlinep = new_cmdline;
4216 p = new_cmdline;
4217 }
4218 return p;
4219}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004220#endif
4221
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222/*
4223 * Expand file name in Ex command argument.
4224 * Return FAIL for failure, OK otherwise.
4225 */
4226 int
4227expand_filename(eap, cmdlinep, errormsgp)
4228 exarg_T *eap;
4229 char_u **cmdlinep;
4230 char_u **errormsgp;
4231{
4232 int has_wildcards; /* need to expand wildcards */
4233 char_u *repl;
4234 int srclen;
4235 char_u *p;
4236 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004237 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238
Bram Moolenaar748bf032005-02-02 23:04:36 +00004239#ifdef FEAT_QUICKFIX
4240 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4241 p = skip_grep_pat(eap);
4242#else
4243 p = eap->arg;
4244#endif
4245
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 /*
4247 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4248 * the file name contains a wildcard it should not cause expanding.
4249 * (it will be expanded anyway if there is a wildcard before replacing).
4250 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004251 has_wildcards = mch_has_wildcard(p);
4252 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004254#ifdef FEAT_EVAL
4255 /* Skip over `=expr`, wildcards in it are not expanded. */
4256 if (p[0] == '`' && p[1] == '=')
4257 {
4258 p += 2;
4259 (void)skip_expr(&p);
4260 if (*p == '`')
4261 ++p;
4262 continue;
4263 }
4264#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 /*
4266 * Quick check if this cannot be the start of a special string.
4267 * Also removes backslash before '%', '#' and '<'.
4268 */
4269 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4270 {
4271 ++p;
4272 continue;
4273 }
4274
4275 /*
4276 * Try to find a match at this position.
4277 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004278 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4279 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 if (*errormsgp != NULL) /* error detected */
4281 return FAIL;
4282 if (repl == NULL) /* no match found */
4283 {
4284 p += srclen;
4285 continue;
4286 }
4287
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004288 /* Wildcards won't be expanded below, the replacement is taken
4289 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4290 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4291 {
4292 char_u *l = repl;
4293
4294 repl = expand_env_save(repl);
4295 vim_free(l);
4296 }
4297
Bram Moolenaar63b92542007-03-27 14:57:09 +00004298 /* Need to escape white space et al. with a backslash.
4299 * Don't do this for:
4300 * - replacement that already has been escaped: "##"
4301 * - shell commands (may have to use quotes instead).
4302 * - non-unix systems when there is a single argument (spaces don't
4303 * separate arguments then).
4304 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004306 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 && eap->cmdidx != CMD_bang
4308 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004309 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004311 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004313 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314#ifndef UNIX
4315 && !(eap->argt & NOSPC)
4316#endif
4317 )
4318 {
4319 char_u *l;
4320#ifdef BACKSLASH_IN_FILENAME
4321 /* Don't escape a backslash here, because rem_backslash() doesn't
4322 * remove it later. */
4323 static char_u *nobslash = (char_u *)" \t\"|";
4324# define ESCAPE_CHARS nobslash
4325#else
4326# define ESCAPE_CHARS escape_chars
4327#endif
4328
4329 for (l = repl; *l; ++l)
4330 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4331 {
4332 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4333 if (l != NULL)
4334 {
4335 vim_free(repl);
4336 repl = l;
4337 }
4338 break;
4339 }
4340 }
4341
4342 /* For a shell command a '!' must be escaped. */
4343 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004344 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 {
4346 char_u *l;
4347
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004348 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 if (l != NULL)
4350 {
4351 vim_free(repl);
4352 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004353 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 if (strstr((char *)p_sh, "sh") != NULL)
4355 {
4356 l = vim_strsave_escaped(repl, (char_u *)"!");
4357 if (l != NULL)
4358 {
4359 vim_free(repl);
4360 repl = l;
4361 }
4362 }
4363 }
4364 }
4365
4366 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4367 vim_free(repl);
4368 if (p == NULL)
4369 return FAIL;
4370 }
4371
4372 /*
4373 * One file argument: Expand wildcards.
4374 * Don't do this with ":r !command" or ":w !command".
4375 */
4376 if ((eap->argt & NOSPC) && !eap->usefilter)
4377 {
4378 /*
4379 * May do this twice:
4380 * 1. Replace environment variables.
4381 * 2. Replace any other wildcards, remove backslashes.
4382 */
4383 for (n = 1; n <= 2; ++n)
4384 {
4385 if (n == 2)
4386 {
4387#ifdef UNIX
4388 /*
4389 * Only for Unix we check for more than one file name.
4390 * For other systems spaces are considered to be part
4391 * of the file name.
4392 * Only check here if there is no wildcard, otherwise
4393 * ExpandOne() will check for errors. This allows
4394 * ":e `ls ve*.c`" on Unix.
4395 */
4396 if (!has_wildcards)
4397 for (p = eap->arg; *p; ++p)
4398 {
4399 /* skip escaped characters */
4400 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4401 ++p;
4402 else if (vim_iswhite(*p))
4403 {
4404 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4405 return FAIL;
4406 }
4407 }
4408#endif
4409
4410 /*
4411 * Halve the number of backslashes (this is Vi compatible).
4412 * For Unix and OS/2, when wildcards are expanded, this is
4413 * done by ExpandOne() below.
4414 */
4415#if defined(UNIX) || defined(OS2)
4416 if (!has_wildcards)
4417#endif
4418 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 }
4420
4421 if (has_wildcards)
4422 {
4423 if (n == 1)
4424 {
4425 /*
4426 * First loop: May expand environment variables. This
4427 * can be done much faster with expand_env() than with
4428 * something else (e.g., calling a shell).
4429 * After expanding environment variables, check again
4430 * if there are still wildcards present.
4431 */
4432 if (vim_strchr(eap->arg, '$') != NULL
4433 || vim_strchr(eap->arg, '~') != NULL)
4434 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004435 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004436 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 has_wildcards = mch_has_wildcard(NameBuff);
4438 p = NameBuff;
4439 }
4440 else
4441 p = NULL;
4442 }
4443 else /* n == 2 */
4444 {
4445 expand_T xpc;
4446
4447 ExpandInit(&xpc);
4448 xpc.xp_context = EXPAND_FILES;
4449 p = ExpandOne(&xpc, eap->arg, NULL,
4450 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4451 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 if (p == NULL)
4453 return FAIL;
4454 }
4455 if (p != NULL)
4456 {
4457 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4458 p, cmdlinep);
4459 if (n == 2) /* p came from ExpandOne() */
4460 vim_free(p);
4461 }
4462 }
4463 }
4464 }
4465 return OK;
4466}
4467
4468/*
4469 * Replace part of the command line, keeping eap->cmd, eap->arg and
4470 * eap->nextcmd correct.
4471 * "src" points to the part that is to be replaced, of length "srclen".
4472 * "repl" is the replacement string.
4473 * Returns a pointer to the character after the replaced string.
4474 * Returns NULL for failure.
4475 */
4476 static char_u *
4477repl_cmdline(eap, src, srclen, repl, cmdlinep)
4478 exarg_T *eap;
4479 char_u *src;
4480 int srclen;
4481 char_u *repl;
4482 char_u **cmdlinep;
4483{
4484 int len;
4485 int i;
4486 char_u *new_cmdline;
4487
4488 /*
4489 * The new command line is build in new_cmdline[].
4490 * First allocate it.
4491 * Careful: a "+cmd" argument may have been NUL terminated.
4492 */
4493 len = (int)STRLEN(repl);
4494 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004495 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4497 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4498 return NULL; /* out of memory! */
4499
4500 /*
4501 * Copy the stuff before the expanded part.
4502 * Copy the expanded stuff.
4503 * Copy what came after the expanded part.
4504 * Copy the next commands, if there are any.
4505 */
4506 i = (int)(src - *cmdlinep); /* length of part before match */
4507 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004508
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 mch_memmove(new_cmdline + i, repl, (size_t)len);
4510 i += len; /* remember the end of the string */
4511 STRCPY(new_cmdline + i, src + srclen);
4512 src = new_cmdline + i; /* remember where to continue */
4513
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004514 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 {
4516 i = (int)STRLEN(new_cmdline) + 1;
4517 STRCPY(new_cmdline + i, eap->nextcmd);
4518 eap->nextcmd = new_cmdline + i;
4519 }
4520 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4521 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4522 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4523 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4524 vim_free(*cmdlinep);
4525 *cmdlinep = new_cmdline;
4526
4527 return src;
4528}
4529
4530/*
4531 * Check for '|' to separate commands and '"' to start comments.
4532 */
4533 void
4534separate_nextcmd(eap)
4535 exarg_T *eap;
4536{
4537 char_u *p;
4538
Bram Moolenaar86b68352004-12-27 21:59:20 +00004539#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004540 p = skip_grep_pat(eap);
4541#else
4542 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004543#endif
4544
4545 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 {
4547 if (*p == Ctrl_V)
4548 {
4549 if (eap->argt & (USECTRLV | XFILE))
4550 ++p; /* skip CTRL-V and next char */
4551 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00004552 /* remove CTRL-V and skip next char */
4553 mch_memmove(p, p + 1, STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554 if (*p == NUL) /* stop at NUL after CTRL-V */
4555 break;
4556 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004557
4558#ifdef FEAT_EVAL
4559 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004560 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004561 {
4562 p += 2;
4563 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004564 }
4565#endif
4566
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 /* Check for '"': start of comment or '|': next command */
4568 /* :@" and :*" do not start a comment!
4569 * :redir @" doesn't either. */
4570 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4571 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4572 || p != eap->arg)
4573 && (eap->cmdidx != CMD_redir
4574 || p != eap->arg + 1 || p[-1] != '@'))
4575 || *p == '|' || *p == '\n')
4576 {
4577 /*
4578 * We remove the '\' before the '|', unless USECTRLV is used
4579 * AND 'b' is present in 'cpoptions'.
4580 */
4581 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4582 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4583 {
4584 mch_memmove(p - 1, p, STRLEN(p) + 1); /* remove the '\' */
4585 --p;
4586 }
4587 else
4588 {
4589 eap->nextcmd = check_nextcmd(p);
4590 *p = NUL;
4591 break;
4592 }
4593 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004595
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4597 del_trailing_spaces(eap->arg);
4598}
4599
4600/*
4601 * get + command from ex argument
4602 */
4603 static char_u *
4604getargcmd(argp)
4605 char_u **argp;
4606{
4607 char_u *arg = *argp;
4608 char_u *command = NULL;
4609
4610 if (*arg == '+') /* +[command] */
4611 {
4612 ++arg;
4613 if (vim_isspace(*arg))
4614 command = dollar_command;
4615 else
4616 {
4617 command = arg;
4618 arg = skip_cmd_arg(command, TRUE);
4619 if (*arg != NUL)
4620 *arg++ = NUL; /* terminate command with NUL */
4621 }
4622
4623 arg = skipwhite(arg); /* skip over spaces */
4624 *argp = arg;
4625 }
4626 return command;
4627}
4628
4629/*
4630 * Find end of "+command" argument. Skip over "\ " and "\\".
4631 */
4632 static char_u *
4633skip_cmd_arg(p, rembs)
4634 char_u *p;
4635 int rembs; /* TRUE to halve the number of backslashes */
4636{
4637 while (*p && !vim_isspace(*p))
4638 {
4639 if (*p == '\\' && p[1] != NUL)
4640 {
4641 if (rembs)
4642 mch_memmove(p, p + 1, STRLEN(p));
4643 else
4644 ++p;
4645 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004646 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 }
4648 return p;
4649}
4650
4651/*
4652 * Get "++opt=arg" argument.
4653 * Return FAIL or OK.
4654 */
4655 static int
4656getargopt(eap)
4657 exarg_T *eap;
4658{
4659 char_u *arg = eap->arg + 2;
4660 int *pp = NULL;
4661#ifdef FEAT_MBYTE
4662 char_u *p;
4663#endif
4664
4665 /* ":edit ++[no]bin[ary] file" */
4666 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4667 {
4668 if (*arg == 'n')
4669 {
4670 arg += 2;
4671 eap->force_bin = FORCE_NOBIN;
4672 }
4673 else
4674 eap->force_bin = FORCE_BIN;
4675 if (!checkforcmd(&arg, "binary", 3))
4676 return FAIL;
4677 eap->arg = skipwhite(arg);
4678 return OK;
4679 }
4680
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004681 /* ":read ++edit file" */
4682 if (STRNCMP(arg, "edit", 4) == 0)
4683 {
4684 eap->read_edit = TRUE;
4685 eap->arg = skipwhite(arg + 4);
4686 return OK;
4687 }
4688
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 if (STRNCMP(arg, "ff", 2) == 0)
4690 {
4691 arg += 2;
4692 pp = &eap->force_ff;
4693 }
4694 else if (STRNCMP(arg, "fileformat", 10) == 0)
4695 {
4696 arg += 10;
4697 pp = &eap->force_ff;
4698 }
4699#ifdef FEAT_MBYTE
4700 else if (STRNCMP(arg, "enc", 3) == 0)
4701 {
4702 arg += 3;
4703 pp = &eap->force_enc;
4704 }
4705 else if (STRNCMP(arg, "encoding", 8) == 0)
4706 {
4707 arg += 8;
4708 pp = &eap->force_enc;
4709 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004710 else if (STRNCMP(arg, "bad", 3) == 0)
4711 {
4712 arg += 3;
4713 pp = &eap->bad_char;
4714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715#endif
4716
4717 if (pp == NULL || *arg != '=')
4718 return FAIL;
4719
4720 ++arg;
4721 *pp = (int)(arg - eap->cmd);
4722 arg = skip_cmd_arg(arg, FALSE);
4723 eap->arg = skipwhite(arg);
4724 *arg = NUL;
4725
4726#ifdef FEAT_MBYTE
4727 if (pp == &eap->force_ff)
4728 {
4729#endif
4730 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4731 return FAIL;
4732#ifdef FEAT_MBYTE
4733 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004734 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 {
4736 /* Make 'fileencoding' lower case. */
4737 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4738 *p = TOLOWER_ASC(*p);
4739 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004740 else
4741 {
4742 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4743 * "drop". */
4744 p = eap->cmd + eap->bad_char;
4745 if (STRICMP(p, "keep") == 0)
4746 eap->bad_char = BAD_KEEP;
4747 else if (STRICMP(p, "drop") == 0)
4748 eap->bad_char = BAD_DROP;
4749 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4750 eap->bad_char = *p;
4751 else
4752 return FAIL;
4753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754#endif
4755
4756 return OK;
4757}
4758
4759/*
4760 * ":abbreviate" and friends.
4761 */
4762 static void
4763ex_abbreviate(eap)
4764 exarg_T *eap;
4765{
4766 do_exmap(eap, TRUE); /* almost the same as mapping */
4767}
4768
4769/*
4770 * ":map" and friends.
4771 */
4772 static void
4773ex_map(eap)
4774 exarg_T *eap;
4775{
4776 /*
4777 * If we are sourcing .exrc or .vimrc in current directory we
4778 * print the mappings for security reasons.
4779 */
4780 if (secure)
4781 {
4782 secure = 2;
4783 msg_outtrans(eap->cmd);
4784 msg_putchar('\n');
4785 }
4786 do_exmap(eap, FALSE);
4787}
4788
4789/*
4790 * ":unmap" and friends.
4791 */
4792 static void
4793ex_unmap(eap)
4794 exarg_T *eap;
4795{
4796 do_exmap(eap, FALSE);
4797}
4798
4799/*
4800 * ":mapclear" and friends.
4801 */
4802 static void
4803ex_mapclear(eap)
4804 exarg_T *eap;
4805{
4806 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4807}
4808
4809/*
4810 * ":abclear" and friends.
4811 */
4812 static void
4813ex_abclear(eap)
4814 exarg_T *eap;
4815{
4816 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4817}
4818
4819#ifdef FEAT_AUTOCMD
4820 static void
4821ex_autocmd(eap)
4822 exarg_T *eap;
4823{
4824 /*
4825 * Disallow auto commands from .exrc and .vimrc in current
4826 * directory for security reasons.
4827 */
4828 if (secure)
4829 {
4830 secure = 2;
4831 eap->errmsg = e_curdir;
4832 }
4833 else if (eap->cmdidx == CMD_autocmd)
4834 do_autocmd(eap->arg, eap->forceit);
4835 else
4836 do_augroup(eap->arg, eap->forceit);
4837}
4838
4839/*
4840 * ":doautocmd": Apply the automatic commands to the current buffer.
4841 */
4842 static void
4843ex_doautocmd(eap)
4844 exarg_T *eap;
4845{
4846 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004847 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848}
4849#endif
4850
4851#ifdef FEAT_LISTCMDS
4852/*
4853 * :[N]bunload[!] [N] [bufname] unload buffer
4854 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4855 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4856 */
4857 static void
4858ex_bunload(eap)
4859 exarg_T *eap;
4860{
4861 eap->errmsg = do_bufdel(
4862 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4863 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4864 : DOBUF_UNLOAD, eap->arg,
4865 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4866}
4867
4868/*
4869 * :[N]buffer [N] to buffer N
4870 * :[N]sbuffer [N] to buffer N
4871 */
4872 static void
4873ex_buffer(eap)
4874 exarg_T *eap;
4875{
4876 if (*eap->arg)
4877 eap->errmsg = e_trailing;
4878 else
4879 {
4880 if (eap->addr_count == 0) /* default is current buffer */
4881 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4882 else
4883 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4884 }
4885}
4886
4887/*
4888 * :[N]bmodified [N] to next mod. buffer
4889 * :[N]sbmodified [N] to next mod. buffer
4890 */
4891 static void
4892ex_bmodified(eap)
4893 exarg_T *eap;
4894{
4895 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4896}
4897
4898/*
4899 * :[N]bnext [N] to next buffer
4900 * :[N]sbnext [N] split and to next buffer
4901 */
4902 static void
4903ex_bnext(eap)
4904 exarg_T *eap;
4905{
4906 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4907}
4908
4909/*
4910 * :[N]bNext [N] to previous buffer
4911 * :[N]bprevious [N] to previous buffer
4912 * :[N]sbNext [N] split and to previous buffer
4913 * :[N]sbprevious [N] split and to previous buffer
4914 */
4915 static void
4916ex_bprevious(eap)
4917 exarg_T *eap;
4918{
4919 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4920}
4921
4922/*
4923 * :brewind to first buffer
4924 * :bfirst to first buffer
4925 * :sbrewind split and to first buffer
4926 * :sbfirst split and to first buffer
4927 */
4928 static void
4929ex_brewind(eap)
4930 exarg_T *eap;
4931{
4932 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4933}
4934
4935/*
4936 * :blast to last buffer
4937 * :sblast split and to last buffer
4938 */
4939 static void
4940ex_blast(eap)
4941 exarg_T *eap;
4942{
4943 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4944}
4945#endif
4946
4947 int
4948ends_excmd(c)
4949 int c;
4950{
4951 return (c == NUL || c == '|' || c == '"' || c == '\n');
4952}
4953
4954#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4955 || defined(PROTO)
4956/*
4957 * Return the next command, after the first '|' or '\n'.
4958 * Return NULL if not found.
4959 */
4960 char_u *
4961find_nextcmd(p)
4962 char_u *p;
4963{
4964 while (*p != '|' && *p != '\n')
4965 {
4966 if (*p == NUL)
4967 return NULL;
4968 ++p;
4969 }
4970 return (p + 1);
4971}
4972#endif
4973
4974/*
4975 * Check if *p is a separator between Ex commands.
4976 * Return NULL if it isn't, (p + 1) if it is.
4977 */
4978 char_u *
4979check_nextcmd(p)
4980 char_u *p;
4981{
4982 p = skipwhite(p);
4983 if (*p == '|' || *p == '\n')
4984 return (p + 1);
4985 else
4986 return NULL;
4987}
4988
4989/*
4990 * - if there are more files to edit
4991 * - and this is the last window
4992 * - and forceit not used
4993 * - and not repeated twice on a row
4994 * return FAIL and give error message if 'message' TRUE
4995 * return OK otherwise
4996 */
4997 static int
4998check_more(message, forceit)
4999 int message; /* when FALSE check only, no messages */
5000 int forceit;
5001{
5002 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5003
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005004 if (!forceit && only_one_window()
5005 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 {
5007 if (message)
5008 {
5009#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5010 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5011 {
5012 char_u buff[IOSIZE];
5013
5014 if (n == 1)
5015 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
5016 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005017 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 _("%d more files to edit. Quit anyway?"), n);
5019 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5020 return OK;
5021 return FAIL;
5022 }
5023#endif
5024 if (n == 1)
5025 EMSG(_("E173: 1 more file to edit"));
5026 else
5027 EMSGN(_("E173: %ld more files to edit"), n);
5028 quitmore = 2; /* next try to quit is allowed */
5029 }
5030 return FAIL;
5031 }
5032 return OK;
5033}
5034
5035#ifdef FEAT_CMDL_COMPL
5036/*
5037 * Function given to ExpandGeneric() to obtain the list of command names.
5038 */
5039/*ARGSUSED*/
5040 char_u *
5041get_command_name(xp, idx)
5042 expand_T *xp;
5043 int idx;
5044{
5045 if (idx >= (int)CMD_SIZE)
5046# ifdef FEAT_USR_CMDS
5047 return get_user_command_name(idx);
5048# else
5049 return NULL;
5050# endif
5051 return cmdnames[idx].cmd_name;
5052}
5053#endif
5054
5055#if defined(FEAT_USR_CMDS) || defined(PROTO)
5056static 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));
5057static void uc_list __ARGS((char_u *name, size_t name_len));
5058static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5059static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5060static 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));
5061
5062 static int
5063uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5064 char_u *name;
5065 size_t name_len;
5066 char_u *rep;
5067 long argt;
5068 long def;
5069 int flags;
5070 int compl;
5071 char_u *compl_arg;
5072 int force;
5073{
5074 ucmd_T *cmd = NULL;
5075 char_u *p;
5076 int i;
5077 int cmp = 1;
5078 char_u *rep_buf = NULL;
5079 garray_T *gap;
5080
Bram Moolenaar9c102382006-05-03 21:26:49 +00005081 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 if (rep_buf == NULL)
5083 {
5084 /* Can't replace termcodes - try using the string as is */
5085 rep_buf = vim_strsave(rep);
5086
5087 /* Give up if out of memory */
5088 if (rep_buf == NULL)
5089 return FAIL;
5090 }
5091
5092 /* get address of growarray: global or in curbuf */
5093 if (flags & UC_BUFFER)
5094 {
5095 gap = &curbuf->b_ucmds;
5096 if (gap->ga_itemsize == 0)
5097 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5098 }
5099 else
5100 gap = &ucmds;
5101
5102 /* Search for the command in the already defined commands. */
5103 for (i = 0; i < gap->ga_len; ++i)
5104 {
5105 size_t len;
5106
5107 cmd = USER_CMD_GA(gap, i);
5108 len = STRLEN(cmd->uc_name);
5109 cmp = STRNCMP(name, cmd->uc_name, name_len);
5110 if (cmp == 0)
5111 {
5112 if (name_len < len)
5113 cmp = -1;
5114 else if (name_len > len)
5115 cmp = 1;
5116 }
5117
5118 if (cmp == 0)
5119 {
5120 if (!force)
5121 {
5122 EMSG(_("E174: Command already exists: add ! to replace it"));
5123 goto fail;
5124 }
5125
5126 vim_free(cmd->uc_rep);
5127 cmd->uc_rep = 0;
5128 break;
5129 }
5130
5131 /* Stop as soon as we pass the name to add */
5132 if (cmp < 0)
5133 break;
5134 }
5135
5136 /* Extend the array unless we're replacing an existing command */
5137 if (cmp != 0)
5138 {
5139 if (ga_grow(gap, 1) != OK)
5140 goto fail;
5141 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5142 goto fail;
5143
5144 cmd = USER_CMD_GA(gap, i);
5145 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5146
5147 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148
5149 cmd->uc_name = p;
5150 }
5151
5152 cmd->uc_rep = rep_buf;
5153 cmd->uc_argt = argt;
5154 cmd->uc_def = def;
5155 cmd->uc_compl = compl;
5156#ifdef FEAT_EVAL
5157 cmd->uc_scriptID = current_SID;
5158# ifdef FEAT_CMDL_COMPL
5159 cmd->uc_compl_arg = compl_arg;
5160# endif
5161#endif
5162
5163 return OK;
5164
5165fail:
5166 vim_free(rep_buf);
5167#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5168 vim_free(compl_arg);
5169#endif
5170 return FAIL;
5171}
5172
5173/*
5174 * List of names for completion for ":command" with the EXPAND_ flag.
5175 * Must be alphabetical for completion.
5176 */
5177static struct
5178{
5179 int expand;
5180 char *name;
5181} command_complete[] =
5182{
5183 {EXPAND_AUGROUP, "augroup"},
5184 {EXPAND_BUFFERS, "buffer"},
5185 {EXPAND_COMMANDS, "command"},
5186#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5187 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005188 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189#endif
5190 {EXPAND_DIRECTORIES, "dir"},
5191 {EXPAND_ENV_VARS, "environment"},
5192 {EXPAND_EVENTS, "event"},
5193 {EXPAND_EXPRESSION, "expression"},
5194 {EXPAND_FILES, "file"},
5195 {EXPAND_FUNCTIONS, "function"},
5196 {EXPAND_HELP, "help"},
5197 {EXPAND_HIGHLIGHT, "highlight"},
5198 {EXPAND_MAPPINGS, "mapping"},
5199 {EXPAND_MENUS, "menu"},
5200 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005201 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 {EXPAND_TAGS, "tag"},
5203 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5204 {EXPAND_USER_VARS, "var"},
5205 {0, NULL}
5206};
5207
5208 static void
5209uc_list(name, name_len)
5210 char_u *name;
5211 size_t name_len;
5212{
5213 int i, j;
5214 int found = FALSE;
5215 ucmd_T *cmd;
5216 int len;
5217 long a;
5218 garray_T *gap;
5219
5220 gap = &curbuf->b_ucmds;
5221 for (;;)
5222 {
5223 for (i = 0; i < gap->ga_len; ++i)
5224 {
5225 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005226 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227
5228 /* Skip commands which don't match the requested prefix */
5229 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5230 continue;
5231
5232 /* Put out the title first time */
5233 if (!found)
5234 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5235 found = TRUE;
5236 msg_putchar('\n');
5237 if (got_int)
5238 break;
5239
5240 /* Special cases */
5241 msg_putchar(a & BANG ? '!' : ' ');
5242 msg_putchar(a & REGSTR ? '"' : ' ');
5243 msg_putchar(gap != &ucmds ? 'b' : ' ');
5244 msg_putchar(' ');
5245
5246 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5247 len = (int)STRLEN(cmd->uc_name) + 4;
5248
5249 do {
5250 msg_putchar(' ');
5251 ++len;
5252 } while (len < 16);
5253
5254 len = 0;
5255
5256 /* Arguments */
5257 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5258 {
5259 case 0: IObuff[len++] = '0'; break;
5260 case (EXTRA): IObuff[len++] = '*'; break;
5261 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5262 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5263 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5264 }
5265
5266 do {
5267 IObuff[len++] = ' ';
5268 } while (len < 5);
5269
5270 /* Range */
5271 if (a & (RANGE|COUNT))
5272 {
5273 if (a & COUNT)
5274 {
5275 /* -count=N */
5276 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5277 len += (int)STRLEN(IObuff + len);
5278 }
5279 else if (a & DFLALL)
5280 IObuff[len++] = '%';
5281 else if (cmd->uc_def >= 0)
5282 {
5283 /* -range=N */
5284 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5285 len += (int)STRLEN(IObuff + len);
5286 }
5287 else
5288 IObuff[len++] = '.';
5289 }
5290
5291 do {
5292 IObuff[len++] = ' ';
5293 } while (len < 11);
5294
5295 /* Completion */
5296 for (j = 0; command_complete[j].expand != 0; ++j)
5297 if (command_complete[j].expand == cmd->uc_compl)
5298 {
5299 STRCPY(IObuff + len, command_complete[j].name);
5300 len += (int)STRLEN(IObuff + len);
5301 break;
5302 }
5303
5304 do {
5305 IObuff[len++] = ' ';
5306 } while (len < 21);
5307
5308 IObuff[len] = '\0';
5309 msg_outtrans(IObuff);
5310
5311 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005312#ifdef FEAT_EVAL
5313 if (p_verbose > 0)
5314 last_set_msg(cmd->uc_scriptID);
5315#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 out_flush();
5317 ui_breakcheck();
5318 if (got_int)
5319 break;
5320 }
5321 if (gap == &ucmds || i < gap->ga_len)
5322 break;
5323 gap = &ucmds;
5324 }
5325
5326 if (!found)
5327 MSG(_("No user-defined commands found"));
5328}
5329
5330 static char_u *
5331uc_fun_cmd()
5332{
5333 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5334 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5335 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5336 0xb9, 0x7f, 0};
5337 int i;
5338
5339 for (i = 0; fcmd[i]; ++i)
5340 IObuff[i] = fcmd[i] - 0x40;
5341 IObuff[i] = 0;
5342 return IObuff;
5343}
5344
5345 static int
5346uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5347 char_u *attr;
5348 size_t len;
5349 long *argt;
5350 long *def;
5351 int *flags;
5352 int *compl;
5353 char_u **compl_arg;
5354{
5355 char_u *p;
5356
5357 if (len == 0)
5358 {
5359 EMSG(_("E175: No attribute specified"));
5360 return FAIL;
5361 }
5362
5363 /* First, try the simple attributes (no arguments) */
5364 if (STRNICMP(attr, "bang", len) == 0)
5365 *argt |= BANG;
5366 else if (STRNICMP(attr, "buffer", len) == 0)
5367 *flags |= UC_BUFFER;
5368 else if (STRNICMP(attr, "register", len) == 0)
5369 *argt |= REGSTR;
5370 else if (STRNICMP(attr, "bar", len) == 0)
5371 *argt |= TRLBAR;
5372 else
5373 {
5374 int i;
5375 char_u *val = NULL;
5376 size_t vallen = 0;
5377 size_t attrlen = len;
5378
5379 /* Look for the attribute name - which is the part before any '=' */
5380 for (i = 0; i < (int)len; ++i)
5381 {
5382 if (attr[i] == '=')
5383 {
5384 val = &attr[i + 1];
5385 vallen = len - i - 1;
5386 attrlen = i;
5387 break;
5388 }
5389 }
5390
5391 if (STRNICMP(attr, "nargs", attrlen) == 0)
5392 {
5393 if (vallen == 1)
5394 {
5395 if (*val == '0')
5396 /* Do nothing - this is the default */;
5397 else if (*val == '1')
5398 *argt |= (EXTRA | NOSPC | NEEDARG);
5399 else if (*val == '*')
5400 *argt |= EXTRA;
5401 else if (*val == '?')
5402 *argt |= (EXTRA | NOSPC);
5403 else if (*val == '+')
5404 *argt |= (EXTRA | NEEDARG);
5405 else
5406 goto wrong_nargs;
5407 }
5408 else
5409 {
5410wrong_nargs:
5411 EMSG(_("E176: Invalid number of arguments"));
5412 return FAIL;
5413 }
5414 }
5415 else if (STRNICMP(attr, "range", attrlen) == 0)
5416 {
5417 *argt |= RANGE;
5418 if (vallen == 1 && *val == '%')
5419 *argt |= DFLALL;
5420 else if (val != NULL)
5421 {
5422 p = val;
5423 if (*def >= 0)
5424 {
5425two_count:
5426 EMSG(_("E177: Count cannot be specified twice"));
5427 return FAIL;
5428 }
5429
5430 *def = getdigits(&p);
5431 *argt |= (ZEROR | NOTADR);
5432
5433 if (p != val + vallen || vallen == 0)
5434 {
5435invalid_count:
5436 EMSG(_("E178: Invalid default value for count"));
5437 return FAIL;
5438 }
5439 }
5440 }
5441 else if (STRNICMP(attr, "count", attrlen) == 0)
5442 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005443 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444
5445 if (val != NULL)
5446 {
5447 p = val;
5448 if (*def >= 0)
5449 goto two_count;
5450
5451 *def = getdigits(&p);
5452
5453 if (p != val + vallen)
5454 goto invalid_count;
5455 }
5456
5457 if (*def < 0)
5458 *def = 0;
5459 }
5460 else if (STRNICMP(attr, "complete", attrlen) == 0)
5461 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 if (val == NULL)
5463 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005464 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 return FAIL;
5466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005468 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5469 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 }
5472 else
5473 {
5474 char_u ch = attr[len];
5475 attr[len] = '\0';
5476 EMSG2(_("E181: Invalid attribute: %s"), attr);
5477 attr[len] = ch;
5478 return FAIL;
5479 }
5480 }
5481
5482 return OK;
5483}
5484
5485 static void
5486ex_command(eap)
5487 exarg_T *eap;
5488{
5489 char_u *name;
5490 char_u *end;
5491 char_u *p;
5492 long argt = 0;
5493 long def = -1;
5494 int flags = 0;
5495 int compl = EXPAND_NOTHING;
5496 char_u *compl_arg = NULL;
5497 int has_attr = (eap->arg[0] == '-');
5498
5499 p = eap->arg;
5500
5501 /* Check for attributes */
5502 while (*p == '-')
5503 {
5504 ++p;
5505 end = skiptowhite(p);
5506 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5507 == FAIL)
5508 return;
5509 p = skipwhite(end);
5510 }
5511
5512 /* Get the name (if any) and skip to the following argument */
5513 name = p;
5514 if (ASCII_ISALPHA(*p))
5515 while (ASCII_ISALNUM(*p))
5516 ++p;
5517 if (!ends_excmd(*p) && !vim_iswhite(*p))
5518 {
5519 EMSG(_("E182: Invalid command name"));
5520 return;
5521 }
5522 end = p;
5523
5524 /* If there is nothing after the name, and no attributes were specified,
5525 * we are listing commands
5526 */
5527 p = skipwhite(end);
5528 if (!has_attr && ends_excmd(*p))
5529 {
5530 uc_list(name, end - name);
5531 }
5532 else if (!ASCII_ISUPPER(*name))
5533 {
5534 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5535 return;
5536 }
5537 else
5538 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5539 eap->forceit);
5540}
5541
5542/*
5543 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 * Clear all user commands, global and for current buffer.
5545 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005546/*ARGSUSED*/
5547 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548ex_comclear(eap)
5549 exarg_T *eap;
5550{
5551 uc_clear(&ucmds);
5552 uc_clear(&curbuf->b_ucmds);
5553}
5554
5555/*
5556 * Clear all user commands for "gap".
5557 */
5558 void
5559uc_clear(gap)
5560 garray_T *gap;
5561{
5562 int i;
5563 ucmd_T *cmd;
5564
5565 for (i = 0; i < gap->ga_len; ++i)
5566 {
5567 cmd = USER_CMD_GA(gap, i);
5568 vim_free(cmd->uc_name);
5569 vim_free(cmd->uc_rep);
5570# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5571 vim_free(cmd->uc_compl_arg);
5572# endif
5573 }
5574 ga_clear(gap);
5575}
5576
5577 static void
5578ex_delcommand(eap)
5579 exarg_T *eap;
5580{
5581 int i = 0;
5582 ucmd_T *cmd = NULL;
5583 int cmp = -1;
5584 garray_T *gap;
5585
5586 gap = &curbuf->b_ucmds;
5587 for (;;)
5588 {
5589 for (i = 0; i < gap->ga_len; ++i)
5590 {
5591 cmd = USER_CMD_GA(gap, i);
5592 cmp = STRCMP(eap->arg, cmd->uc_name);
5593 if (cmp <= 0)
5594 break;
5595 }
5596 if (gap == &ucmds || cmp == 0)
5597 break;
5598 gap = &ucmds;
5599 }
5600
5601 if (cmp != 0)
5602 {
5603 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5604 return;
5605 }
5606
5607 vim_free(cmd->uc_name);
5608 vim_free(cmd->uc_rep);
5609# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5610 vim_free(cmd->uc_compl_arg);
5611# endif
5612
5613 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614
5615 if (i < gap->ga_len)
5616 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5617}
5618
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005619/*
5620 * split and quote args for <f-args>
5621 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 static char_u *
5623uc_split_args(arg, lenp)
5624 char_u *arg;
5625 size_t *lenp;
5626{
5627 char_u *buf;
5628 char_u *p;
5629 char_u *q;
5630 int len;
5631
5632 /* Precalculate length */
5633 p = arg;
5634 len = 2; /* Initial and final quotes */
5635
5636 while (*p)
5637 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005638 if (p[0] == '\\' && p[1] == '\\')
5639 {
5640 len += 2;
5641 p += 2;
5642 }
5643 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644 {
5645 len += 1;
5646 p += 2;
5647 }
5648 else if (*p == '\\' || *p == '"')
5649 {
5650 len += 2;
5651 p += 1;
5652 }
5653 else if (vim_iswhite(*p))
5654 {
5655 p = skipwhite(p);
5656 if (*p == NUL)
5657 break;
5658 len += 3; /* "," */
5659 }
5660 else
5661 {
5662 ++len;
5663 ++p;
5664 }
5665 }
5666
5667 buf = alloc(len + 1);
5668 if (buf == NULL)
5669 {
5670 *lenp = 0;
5671 return buf;
5672 }
5673
5674 p = arg;
5675 q = buf;
5676 *q++ = '"';
5677 while (*p)
5678 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005679 if (p[0] == '\\' && p[1] == '\\')
5680 {
5681 *q++ = '\\';
5682 *q++ = '\\';
5683 p += 2;
5684 }
5685 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 {
5687 *q++ = p[1];
5688 p += 2;
5689 }
5690 else if (*p == '\\' || *p == '"')
5691 {
5692 *q++ = '\\';
5693 *q++ = *p++;
5694 }
5695 else if (vim_iswhite(*p))
5696 {
5697 p = skipwhite(p);
5698 if (*p == NUL)
5699 break;
5700 *q++ = '"';
5701 *q++ = ',';
5702 *q++ = '"';
5703 }
5704 else
5705 {
5706 *q++ = *p++;
5707 }
5708 }
5709 *q++ = '"';
5710 *q = 0;
5711
5712 *lenp = len;
5713 return buf;
5714}
5715
5716/*
5717 * Check for a <> code in a user command.
5718 * "code" points to the '<'. "len" the length of the <> (inclusive).
5719 * "buf" is where the result is to be added.
5720 * "split_buf" points to a buffer used for splitting, caller should free it.
5721 * "split_len" is the length of what "split_buf" contains.
5722 * Returns the length of the replacement, which has been added to "buf".
5723 * Returns -1 if there was no match, and only the "<" has been copied.
5724 */
5725 static size_t
5726uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5727 char_u *code;
5728 size_t len;
5729 char_u *buf;
5730 ucmd_T *cmd; /* the user command we're expanding */
5731 exarg_T *eap; /* ex arguments */
5732 char_u **split_buf;
5733 size_t *split_len;
5734{
5735 size_t result = 0;
5736 char_u *p = code + 1;
5737 size_t l = len - 2;
5738 int quote = 0;
5739 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5740 ct_LT, ct_NONE } type = ct_NONE;
5741
5742 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5743 {
5744 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5745 p += 2;
5746 l -= 2;
5747 }
5748
Bram Moolenaar371d5402006-03-20 21:47:49 +00005749 ++l;
5750 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005752 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005754 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005756 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005758 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005760 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005762 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005764 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 type = ct_REGISTER;
5766
5767 switch (type)
5768 {
5769 case ct_ARGS:
5770 /* Simple case first */
5771 if (*eap->arg == NUL)
5772 {
5773 if (quote == 1)
5774 {
5775 result = 2;
5776 if (buf != NULL)
5777 STRCPY(buf, "''");
5778 }
5779 else
5780 result = 0;
5781 break;
5782 }
5783
5784 /* When specified there is a single argument don't split it.
5785 * Works for ":Cmd %" when % is "a b c". */
5786 if ((eap->argt & NOSPC) && quote == 2)
5787 quote = 1;
5788
5789 switch (quote)
5790 {
5791 case 0: /* No quoting, no splitting */
5792 result = STRLEN(eap->arg);
5793 if (buf != NULL)
5794 STRCPY(buf, eap->arg);
5795 break;
5796 case 1: /* Quote, but don't split */
5797 result = STRLEN(eap->arg) + 2;
5798 for (p = eap->arg; *p; ++p)
5799 {
5800 if (*p == '\\' || *p == '"')
5801 ++result;
5802 }
5803
5804 if (buf != NULL)
5805 {
5806 *buf++ = '"';
5807 for (p = eap->arg; *p; ++p)
5808 {
5809 if (*p == '\\' || *p == '"')
5810 *buf++ = '\\';
5811 *buf++ = *p;
5812 }
5813 *buf = '"';
5814 }
5815
5816 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005817 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 /* This is hard, so only do it once, and cache the result */
5819 if (*split_buf == NULL)
5820 *split_buf = uc_split_args(eap->arg, split_len);
5821
5822 result = *split_len;
5823 if (buf != NULL && result != 0)
5824 STRCPY(buf, *split_buf);
5825
5826 break;
5827 }
5828 break;
5829
5830 case ct_BANG:
5831 result = eap->forceit ? 1 : 0;
5832 if (quote)
5833 result += 2;
5834 if (buf != NULL)
5835 {
5836 if (quote)
5837 *buf++ = '"';
5838 if (eap->forceit)
5839 *buf++ = '!';
5840 if (quote)
5841 *buf = '"';
5842 }
5843 break;
5844
5845 case ct_LINE1:
5846 case ct_LINE2:
5847 case ct_COUNT:
5848 {
5849 char num_buf[20];
5850 long num = (type == ct_LINE1) ? eap->line1 :
5851 (type == ct_LINE2) ? eap->line2 :
5852 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5853 size_t num_len;
5854
5855 sprintf(num_buf, "%ld", num);
5856 num_len = STRLEN(num_buf);
5857 result = num_len;
5858
5859 if (quote)
5860 result += 2;
5861
5862 if (buf != NULL)
5863 {
5864 if (quote)
5865 *buf++ = '"';
5866 STRCPY(buf, num_buf);
5867 buf += num_len;
5868 if (quote)
5869 *buf = '"';
5870 }
5871
5872 break;
5873 }
5874
5875 case ct_REGISTER:
5876 result = eap->regname ? 1 : 0;
5877 if (quote)
5878 result += 2;
5879 if (buf != NULL)
5880 {
5881 if (quote)
5882 *buf++ = '\'';
5883 if (eap->regname)
5884 *buf++ = eap->regname;
5885 if (quote)
5886 *buf = '\'';
5887 }
5888 break;
5889
5890 case ct_LT:
5891 result = 1;
5892 if (buf != NULL)
5893 *buf = '<';
5894 break;
5895
5896 default:
5897 /* Not recognized: just copy the '<' and return -1. */
5898 result = (size_t)-1;
5899 if (buf != NULL)
5900 *buf = '<';
5901 break;
5902 }
5903
5904 return result;
5905}
5906
5907 static void
5908do_ucmd(eap)
5909 exarg_T *eap;
5910{
5911 char_u *buf;
5912 char_u *p;
5913 char_u *q;
5914
5915 char_u *start;
5916 char_u *end;
5917 size_t len, totlen;
5918
5919 size_t split_len = 0;
5920 char_u *split_buf = NULL;
5921 ucmd_T *cmd;
5922#ifdef FEAT_EVAL
5923 scid_T save_current_SID = current_SID;
5924#endif
5925
5926 if (eap->cmdidx == CMD_USER)
5927 cmd = USER_CMD(eap->useridx);
5928 else
5929 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5930
5931 /*
5932 * Replace <> in the command by the arguments.
5933 */
5934 buf = NULL;
5935 for (;;)
5936 {
5937 p = cmd->uc_rep;
5938 q = buf;
5939 totlen = 0;
5940 while ((start = vim_strchr(p, '<')) != NULL
5941 && (end = vim_strchr(start + 1, '>')) != NULL)
5942 {
5943 /* Include the '>' */
5944 ++end;
5945
5946 /* Take everything up to the '<' */
5947 len = start - p;
5948 if (buf == NULL)
5949 totlen += len;
5950 else
5951 {
5952 mch_memmove(q, p, len);
5953 q += len;
5954 }
5955
5956 len = uc_check_code(start, end - start, q, cmd, eap,
5957 &split_buf, &split_len);
5958 if (len == (size_t)-1)
5959 {
5960 /* no match, continue after '<' */
5961 p = start + 1;
5962 len = 1;
5963 }
5964 else
5965 p = end;
5966 if (buf == NULL)
5967 totlen += len;
5968 else
5969 q += len;
5970 }
5971 if (buf != NULL) /* second time here, finished */
5972 {
5973 STRCPY(q, p);
5974 break;
5975 }
5976
5977 totlen += STRLEN(p); /* Add on the trailing characters */
5978 buf = alloc((unsigned)(totlen + 1));
5979 if (buf == NULL)
5980 {
5981 vim_free(split_buf);
5982 return;
5983 }
5984 }
5985
5986#ifdef FEAT_EVAL
5987 current_SID = cmd->uc_scriptID;
5988#endif
5989 (void)do_cmdline(buf, eap->getline, eap->cookie,
5990 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5991#ifdef FEAT_EVAL
5992 current_SID = save_current_SID;
5993#endif
5994 vim_free(buf);
5995 vim_free(split_buf);
5996}
5997
5998# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5999 static char_u *
6000get_user_command_name(idx)
6001 int idx;
6002{
6003 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6004}
6005
6006/*
6007 * Function given to ExpandGeneric() to obtain the list of user command names.
6008 */
6009/*ARGSUSED*/
6010 char_u *
6011get_user_commands(xp, idx)
6012 expand_T *xp;
6013 int idx;
6014{
6015 if (idx < curbuf->b_ucmds.ga_len)
6016 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6017 idx -= curbuf->b_ucmds.ga_len;
6018 if (idx < ucmds.ga_len)
6019 return USER_CMD(idx)->uc_name;
6020 return NULL;
6021}
6022
6023/*
6024 * Function given to ExpandGeneric() to obtain the list of user command
6025 * attributes.
6026 */
6027/*ARGSUSED*/
6028 char_u *
6029get_user_cmd_flags(xp, idx)
6030 expand_T *xp;
6031 int idx;
6032{
6033 static char *user_cmd_flags[] =
6034 {"bang", "bar", "buffer", "complete", "count",
6035 "nargs", "range", "register"};
6036
6037 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
6038 return NULL;
6039 return (char_u *)user_cmd_flags[idx];
6040}
6041
6042/*
6043 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6044 */
6045/*ARGSUSED*/
6046 char_u *
6047get_user_cmd_nargs(xp, idx)
6048 expand_T *xp;
6049 int idx;
6050{
6051 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6052
6053 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
6054 return NULL;
6055 return (char_u *)user_cmd_nargs[idx];
6056}
6057
6058/*
6059 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6060 */
6061/*ARGSUSED*/
6062 char_u *
6063get_user_cmd_complete(xp, idx)
6064 expand_T *xp;
6065 int idx;
6066{
6067 return (char_u *)command_complete[idx].name;
6068}
6069# endif /* FEAT_CMDL_COMPL */
6070
6071#endif /* FEAT_USR_CMDS */
6072
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006073#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6074/*
6075 * Parse a completion argument "value[vallen]".
6076 * The detected completion goes in "*complp", argument type in "*argt".
6077 * When there is an argument, for function and user defined completion, it's
6078 * copied to allocated memory and stored in "*compl_arg".
6079 * Returns FAIL if something is wrong.
6080 */
6081 int
6082parse_compl_arg(value, vallen, complp, argt, compl_arg)
6083 char_u *value;
6084 int vallen;
6085 int *complp;
6086 long *argt;
6087 char_u **compl_arg;
6088{
6089 char_u *arg = NULL;
6090 size_t arglen = 0;
6091 int i;
6092 int valend = vallen;
6093
6094 /* Look for any argument part - which is the part after any ',' */
6095 for (i = 0; i < vallen; ++i)
6096 {
6097 if (value[i] == ',')
6098 {
6099 arg = &value[i + 1];
6100 arglen = vallen - i - 1;
6101 valend = i;
6102 break;
6103 }
6104 }
6105
6106 for (i = 0; command_complete[i].expand != 0; ++i)
6107 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006108 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006109 && STRNCMP(value, command_complete[i].name, valend) == 0)
6110 {
6111 *complp = command_complete[i].expand;
6112 if (command_complete[i].expand == EXPAND_BUFFERS)
6113 *argt |= BUFNAME;
6114 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6115 || command_complete[i].expand == EXPAND_FILES)
6116 *argt |= XFILE;
6117 break;
6118 }
6119 }
6120
6121 if (command_complete[i].expand == 0)
6122 {
6123 EMSG2(_("E180: Invalid complete value: %s"), value);
6124 return FAIL;
6125 }
6126
6127# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6128 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6129 && arg != NULL)
6130# else
6131 if (arg != NULL)
6132# endif
6133 {
6134 EMSG(_("E468: Completion argument only allowed for custom completion"));
6135 return FAIL;
6136 }
6137
6138# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6139 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6140 && arg == NULL)
6141 {
6142 EMSG(_("E467: Custom completion requires a function argument"));
6143 return FAIL;
6144 }
6145
6146 if (arg != NULL)
6147 *compl_arg = vim_strnsave(arg, (int)arglen);
6148# endif
6149 return OK;
6150}
6151#endif
6152
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 static void
6154ex_colorscheme(eap)
6155 exarg_T *eap;
6156{
6157 if (load_colors(eap->arg) == FAIL)
6158 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6159}
6160
6161 static void
6162ex_highlight(eap)
6163 exarg_T *eap;
6164{
6165 if (*eap->arg == NUL && eap->cmd[2] == '!')
6166 MSG(_("Greetings, Vim user!"));
6167 do_highlight(eap->arg, eap->forceit, FALSE);
6168}
6169
6170
6171/*
6172 * Call this function if we thought we were going to exit, but we won't
6173 * (because of an error). May need to restore the terminal mode.
6174 */
6175 void
6176not_exiting()
6177{
6178 exiting = FALSE;
6179 settmode(TMODE_RAW);
6180}
6181
6182/*
6183 * ":quit": quit current window, quit Vim if closed the last window.
6184 */
6185 static void
6186ex_quit(eap)
6187 exarg_T *eap;
6188{
6189#ifdef FEAT_CMDWIN
6190 if (cmdwin_type != 0)
6191 {
6192 cmdwin_result = Ctrl_C;
6193 return;
6194 }
6195#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006196 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006197 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006198 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006199 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006200 return;
6201 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006202#ifdef FEAT_AUTOCMD
6203 if (curbuf_locked())
6204 return;
6205#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206
6207#ifdef FEAT_NETBEANS_INTG
6208 netbeansForcedQuit = eap->forceit;
6209#endif
6210
6211 /*
6212 * If there are more files or windows we won't exit.
6213 */
6214 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6215 exiting = TRUE;
6216 if ((!P_HID(curbuf)
6217 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6218 || check_more(TRUE, eap->forceit) == FAIL
6219 || (only_one_window() && check_changed_any(eap->forceit)))
6220 {
6221 not_exiting();
6222 }
6223 else
6224 {
6225#ifdef FEAT_WINDOWS
6226 if (only_one_window()) /* quit last window */
6227#endif
6228 getout(0);
6229#ifdef FEAT_WINDOWS
6230# ifdef FEAT_GUI
6231 need_mouse_correct = TRUE;
6232# endif
6233 /* close window; may free buffer */
6234 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6235#endif
6236 }
6237}
6238
6239/*
6240 * ":cquit".
6241 */
6242/*ARGSUSED*/
6243 static void
6244ex_cquit(eap)
6245 exarg_T *eap;
6246{
6247 getout(1); /* this does not always pass on the exit code to the Manx
6248 compiler. why? */
6249}
6250
6251/*
6252 * ":qall": try to quit all windows
6253 */
6254 static void
6255ex_quit_all(eap)
6256 exarg_T *eap;
6257{
6258# ifdef FEAT_CMDWIN
6259 if (cmdwin_type != 0)
6260 {
6261 if (eap->forceit)
6262 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6263 else
6264 cmdwin_result = K_XF2;
6265 return;
6266 }
6267# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006268
6269 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006270 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006271 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006272 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006273 return;
6274 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006275#ifdef FEAT_AUTOCMD
6276 if (curbuf_locked())
6277 return;
6278#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006279
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 exiting = TRUE;
6281 if (eap->forceit || !check_changed_any(FALSE))
6282 getout(0);
6283 not_exiting();
6284}
6285
Bram Moolenaard9967712006-03-11 21:18:15 +00006286#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287/*
6288 * ":close": close current window, unless it is the last one
6289 */
6290 static void
6291ex_close(eap)
6292 exarg_T *eap;
6293{
6294# ifdef FEAT_CMDWIN
6295 if (cmdwin_type != 0)
6296 cmdwin_result = K_IGNORE;
6297 else
6298# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006299 if (!text_locked()
6300#ifdef FEAT_AUTOCMD
6301 && !curbuf_locked()
6302#endif
6303 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006304 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305}
6306
Bram Moolenaard9967712006-03-11 21:18:15 +00006307# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006308/*
6309 * ":pclose": Close any preview window.
6310 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006312ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006314{
6315 win_T *win;
6316
6317 for (win = firstwin; win != NULL; win = win->w_next)
6318 if (win->w_p_pvw)
6319 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006320 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006321 break;
6322 }
6323}
Bram Moolenaard9967712006-03-11 21:18:15 +00006324# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006325
Bram Moolenaarf740b292006-02-16 22:11:02 +00006326/*
6327 * Close window "win" and take care of handling closing the last window for a
6328 * modified buffer.
6329 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006330 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006331ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006332 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006333 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006334 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335{
6336 int need_hide;
6337 buf_T *buf = win->w_buffer;
6338
6339 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006340 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006342# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343 if ((p_confirm || cmdmod.confirm) && p_write)
6344 {
6345 dialog_changed(buf, FALSE);
6346 if (buf_valid(buf) && bufIsChanged(buf))
6347 return;
6348 need_hide = FALSE;
6349 }
6350 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006351# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352 {
6353 EMSG(_(e_nowrtmsg));
6354 return;
6355 }
6356 }
6357
Bram Moolenaard9967712006-03-11 21:18:15 +00006358# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006360# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006361
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006363 if (tp == NULL)
6364 win_close(win, !need_hide && !P_HID(buf));
6365 else
6366 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367}
6368
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006370 * ":tabclose": close current tab page, unless it is the last one.
6371 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 */
6373 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006374ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 exarg_T *eap;
6376{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006377 tabpage_T *tp;
6378
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006379# ifdef FEAT_CMDWIN
6380 if (cmdwin_type != 0)
6381 cmdwin_result = K_IGNORE;
6382 else
6383# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006384 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006385 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006386 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006388 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006389 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006390 tp = find_tabpage((int)eap->line2);
6391 if (tp == NULL)
6392 {
6393 beep_flush();
6394 return;
6395 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006396 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006397 {
6398 tabpage_close_other(tp, eap->forceit);
6399 return;
6400 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006401 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006402 if (!text_locked()
6403#ifdef FEAT_AUTOCMD
6404 && !curbuf_locked()
6405#endif
6406 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006407 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006409}
6410
6411/*
6412 * ":tabonly": close all tab pages except the current one
6413 */
6414 static void
6415ex_tabonly(eap)
6416 exarg_T *eap;
6417{
6418 tabpage_T *tp;
6419 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006420
6421# ifdef FEAT_CMDWIN
6422 if (cmdwin_type != 0)
6423 cmdwin_result = K_IGNORE;
6424 else
6425# endif
6426 if (first_tabpage->tp_next == NULL)
6427 MSG(_("Already only one tab page"));
6428 else
6429 {
6430 /* Repeat this up to a 1000 times, because autocommands may mess
6431 * up the lists. */
6432 for (done = 0; done < 1000; ++done)
6433 {
6434 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6435 if (tp->tp_topframe != topframe)
6436 {
6437 tabpage_close_other(tp, eap->forceit);
6438 /* if we failed to close it quit */
6439 if (valid_tabpage(tp))
6440 done = 1000;
6441 /* start over, "tp" is now invalid */
6442 break;
6443 }
6444 if (first_tabpage->tp_next == NULL)
6445 break;
6446 }
6447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449
6450/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006451 * Close the current tab page.
6452 */
6453 void
6454tabpage_close(forceit)
6455 int forceit;
6456{
6457 /* First close all the windows but the current one. If that worked then
6458 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006459 if (lastwin != firstwin)
6460 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006461 if (lastwin == firstwin)
6462 ex_win_close(forceit, curwin, NULL);
6463# ifdef FEAT_GUI
6464 need_mouse_correct = TRUE;
6465# endif
6466}
6467
6468/*
6469 * Close tab page "tp", which is not the current tab page.
6470 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006471 * Also takes care of the tab pages line disappearing when closing the
6472 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006473 */
6474 void
6475tabpage_close_other(tp, forceit)
6476 tabpage_T *tp;
6477 int forceit;
6478{
6479 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006480 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006481 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006482
6483 /* Limit to 1000 windows, autocommands may add a window while we close
6484 * one. OK, so I'm paranoid... */
6485 while (++done < 1000)
6486 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006487 wp = tp->tp_firstwin;
6488 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006489
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006490 /* Autocommands may delete the tab page under our fingers and we may
6491 * fail to close a window with a modified buffer. */
6492 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006493 break;
6494 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006495
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006496 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006497 if (h != tabline_height())
6498 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006499}
6500
6501/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502 * ":only".
6503 */
6504 static void
6505ex_only(eap)
6506 exarg_T *eap;
6507{
6508# ifdef FEAT_GUI
6509 need_mouse_correct = TRUE;
6510# endif
6511 close_others(TRUE, eap->forceit);
6512}
6513
6514/*
6515 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006516 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006518 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519ex_all(eap)
6520 exarg_T *eap;
6521{
6522 if (eap->addr_count == 0)
6523 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006524 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525}
6526#endif /* FEAT_WINDOWS */
6527
6528 static void
6529ex_hide(eap)
6530 exarg_T *eap;
6531{
6532 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6533 eap->errmsg = e_invarg;
6534 else
6535 {
6536 /* ":hide" or ":hide | cmd": hide current window */
6537 eap->nextcmd = check_nextcmd(eap->arg);
6538#ifdef FEAT_WINDOWS
6539 if (!eap->skip)
6540 {
6541# ifdef FEAT_GUI
6542 need_mouse_correct = TRUE;
6543# endif
6544 win_close(curwin, FALSE); /* don't free buffer */
6545 }
6546#endif
6547 }
6548}
6549
6550/*
6551 * ":stop" and ":suspend": Suspend Vim.
6552 */
6553 static void
6554ex_stop(eap)
6555 exarg_T *eap;
6556{
6557 /*
6558 * Disallow suspending for "rvim".
6559 */
6560 if (!check_restricted()
6561#ifdef WIN3264
6562 /*
6563 * Check if external commands are allowed now.
6564 */
6565 && can_end_termcap_mode(TRUE)
6566#endif
6567 )
6568 {
6569 if (!eap->forceit)
6570 autowrite_all();
6571 windgoto((int)Rows - 1, 0);
6572 out_char('\n');
6573 out_flush();
6574 stoptermcap();
6575 out_flush(); /* needed for SUN to restore xterm buffer */
6576#ifdef FEAT_TITLE
6577 mch_restore_title(3); /* restore window titles */
6578#endif
6579 ui_suspend(); /* call machine specific function */
6580#ifdef FEAT_TITLE
6581 maketitle();
6582 resettitle(); /* force updating the title */
6583#endif
6584 starttermcap();
6585 scroll_start(); /* scroll screen before redrawing */
6586 redraw_later_clear();
6587 shell_resized(); /* may have resized window */
6588 }
6589}
6590
6591/*
6592 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6593 */
6594 static void
6595ex_exit(eap)
6596 exarg_T *eap;
6597{
6598#ifdef FEAT_CMDWIN
6599 if (cmdwin_type != 0)
6600 {
6601 cmdwin_result = Ctrl_C;
6602 return;
6603 }
6604#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006605 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006606 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006607 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006608 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006609 return;
6610 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006611#ifdef FEAT_AUTOCMD
6612 if (curbuf_locked())
6613 return;
6614#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615
6616 /*
6617 * if more files or windows we won't exit
6618 */
6619 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6620 exiting = TRUE;
6621 if ( ((eap->cmdidx == CMD_wq
6622 || curbufIsChanged())
6623 && do_write(eap) == FAIL)
6624 || check_more(TRUE, eap->forceit) == FAIL
6625 || (only_one_window() && check_changed_any(eap->forceit)))
6626 {
6627 not_exiting();
6628 }
6629 else
6630 {
6631#ifdef FEAT_WINDOWS
6632 if (only_one_window()) /* quit last window, exit Vim */
6633#endif
6634 getout(0);
6635#ifdef FEAT_WINDOWS
6636# ifdef FEAT_GUI
6637 need_mouse_correct = TRUE;
6638# endif
6639 /* quit current window, may free buffer */
6640 win_close(curwin, !P_HID(curwin->w_buffer));
6641#endif
6642 }
6643}
6644
6645/*
6646 * ":print", ":list", ":number".
6647 */
6648 static void
6649ex_print(eap)
6650 exarg_T *eap;
6651{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006652 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6653 EMSG(_(e_emptybuf));
6654 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006656 for ( ;!got_int; ui_breakcheck())
6657 {
6658 print_line(eap->line1,
6659 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6660 || (eap->flags & EXFLAG_NR)),
6661 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6662 if (++eap->line1 > eap->line2)
6663 break;
6664 out_flush(); /* show one line at a time */
6665 }
6666 setpcmark();
6667 /* put cursor at last line */
6668 curwin->w_cursor.lnum = eap->line2;
6669 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670 }
6671
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006673}
6674
6675#ifdef FEAT_BYTEOFF
6676 static void
6677ex_goto(eap)
6678 exarg_T *eap;
6679{
6680 goto_byte(eap->line2);
6681}
6682#endif
6683
6684/*
6685 * ":shell".
6686 */
6687/*ARGSUSED*/
6688 static void
6689ex_shell(eap)
6690 exarg_T *eap;
6691{
6692 do_shell(NULL, 0);
6693}
6694
6695#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6696 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006697 || defined(FEAT_GUI_MSWIN) \
6698 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 || defined(PROTO)
6700
6701/*
6702 * Handle a file drop. The code is here because a drop is *nearly* like an
6703 * :args command, but not quite (we have a list of exact filenames, so we
6704 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6705 * code is very similar to :args and hence needs access to a lot of the static
6706 * functions in this file.
6707 *
6708 * The list should be allocated using alloc(), as should each item in the
6709 * list. This function takes over responsibility for freeing the list.
6710 *
Bram Moolenaar81870892007-11-11 18:17:28 +00006711 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6713 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6714 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6715 * file functionality is (currently) not in EMX this is not presently a
6716 * problem.
6717 */
6718 void
6719handle_drop(filec, filev, split)
6720 int filec; /* the number of files dropped */
6721 char_u **filev; /* the list of files dropped */
6722 int split; /* force splitting the window */
6723{
6724 exarg_T ea;
6725 int save_msg_scroll = msg_scroll;
6726
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006727 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006728 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006730#ifdef FEAT_AUTOCMD
6731 if (curbuf_locked())
6732 return;
6733#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734
6735 /* Check whether the current buffer is changed. If so, we will need
6736 * to split the current window or data could be lost.
6737 * We don't need to check if the 'hidden' option is set, as in this
6738 * case the buffer won't be lost.
6739 */
6740 if (!P_HID(curbuf) && !split)
6741 {
6742 ++emsg_off;
6743 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6744 --emsg_off;
6745 }
6746 if (split)
6747 {
6748# ifdef FEAT_WINDOWS
6749 if (win_split(0, 0) == FAIL)
6750 return;
6751# ifdef FEAT_SCROLLBIND
6752 curwin->w_p_scb = FALSE;
6753# endif
6754
6755 /* When splitting the window, create a new alist. Otherwise the
6756 * existing one is overwritten. */
6757 alist_unlink(curwin->w_alist);
6758 alist_new();
6759# else
6760 return; /* can't split, always fail */
6761# endif
6762 }
6763
6764 /*
6765 * Set up the new argument list.
6766 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006767 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006768
6769 /*
6770 * Move to the first file.
6771 */
6772 /* Fake up a minimal "next" command for do_argfile() */
6773 vim_memset(&ea, 0, sizeof(ea));
6774 ea.cmd = (char_u *)"next";
6775 do_argfile(&ea, 0);
6776
6777 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6778 * mode that is not needed here. */
6779 need_start_insertmode = FALSE;
6780
6781 /* Restore msg_scroll, otherwise a following command may cause scrolling
6782 * unexpectedly. The screen will be redrawn by the caller, thus
6783 * msg_scroll being set by displaying a message is irrelevant. */
6784 msg_scroll = save_msg_scroll;
6785}
6786#endif
6787
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788/*
6789 * Clear an argument list: free all file names and reset it to zero entries.
6790 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006791 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792alist_clear(al)
6793 alist_T *al;
6794{
6795 while (--al->al_ga.ga_len >= 0)
6796 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6797 ga_clear(&al->al_ga);
6798}
6799
6800/*
6801 * Init an argument list.
6802 */
6803 void
6804alist_init(al)
6805 alist_T *al;
6806{
6807 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6808}
6809
6810#if defined(FEAT_WINDOWS) || defined(PROTO)
6811
6812/*
6813 * Remove a reference from an argument list.
6814 * Ignored when the argument list is the global one.
6815 * If the argument list is no longer used by any window, free it.
6816 */
6817 void
6818alist_unlink(al)
6819 alist_T *al;
6820{
6821 if (al != &global_alist && --al->al_refcount <= 0)
6822 {
6823 alist_clear(al);
6824 vim_free(al);
6825 }
6826}
6827
6828# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6829/*
6830 * Create a new argument list and use it for the current window.
6831 */
6832 void
6833alist_new()
6834{
6835 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6836 if (curwin->w_alist == NULL)
6837 {
6838 curwin->w_alist = &global_alist;
6839 ++global_alist.al_refcount;
6840 }
6841 else
6842 {
6843 curwin->w_alist->al_refcount = 1;
6844 alist_init(curwin->w_alist);
6845 }
6846}
6847# endif
6848#endif
6849
6850#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6851/*
6852 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006853 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6854 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855 */
6856 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006857alist_expand(fnum_list, fnum_len)
6858 int *fnum_list;
6859 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860{
6861 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006862 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863 char_u **new_arg_files;
6864 int new_arg_file_count;
6865 char_u *save_p_su = p_su;
6866 int i;
6867
6868 /* Don't use 'suffixes' here. This should work like the shell did the
6869 * expansion. Also, the vimrc file isn't read yet, thus the user
6870 * can't set the options. */
6871 p_su = empty_option;
6872 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6873 if (old_arg_files != NULL)
6874 {
6875 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006876 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6877 old_arg_count = GARGCOUNT;
6878 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879 &new_arg_file_count, &new_arg_files,
6880 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6881 && new_arg_file_count > 0)
6882 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006883 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6884 TRUE, fnum_list, fnum_len);
6885 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006886 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887 }
6888 p_su = save_p_su;
6889}
6890#endif
6891
6892/*
6893 * Set the argument list for the current window.
6894 * Takes over the allocated files[] and the allocated fnames in it.
6895 */
6896 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006897alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006898 alist_T *al;
6899 int count;
6900 char_u **files;
6901 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006902 int *fnum_list;
6903 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006904{
6905 int i;
6906
6907 alist_clear(al);
6908 if (ga_grow(&al->al_ga, count) == OK)
6909 {
6910 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006911 {
6912 if (got_int)
6913 {
6914 /* When adding many buffers this can take a long time. Allow
6915 * interrupting here. */
6916 while (i < count)
6917 vim_free(files[i++]);
6918 break;
6919 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006920
6921 /* May set buffer name of a buffer previously used for the
6922 * argument list, so that it's re-used by alist_add. */
6923 if (fnum_list != NULL && i < fnum_len)
6924 buf_set_name(fnum_list[i], files[i]);
6925
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006927 ui_breakcheck();
6928 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006929 vim_free(files);
6930 }
6931 else
6932 FreeWild(count, files);
6933#ifdef FEAT_WINDOWS
6934 if (al == &global_alist)
6935#endif
6936 arg_had_last = FALSE;
6937}
6938
6939/*
6940 * Add file "fname" to argument list "al".
6941 * "fname" must have been allocated and "al" must have been checked for room.
6942 */
6943 void
6944alist_add(al, fname, set_fnum)
6945 alist_T *al;
6946 char_u *fname;
6947 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6948{
6949 if (fname == NULL) /* don't add NULL file names */
6950 return;
6951#ifdef BACKSLASH_IN_FILENAME
6952 slash_adjust(fname);
6953#endif
6954 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6955 if (set_fnum > 0)
6956 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6957 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6958 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959}
6960
6961#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6962/*
6963 * Adjust slashes in file names. Called after 'shellslash' was set.
6964 */
6965 void
6966alist_slash_adjust()
6967{
6968 int i;
6969# ifdef FEAT_WINDOWS
6970 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006971 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006972# endif
6973
6974 for (i = 0; i < GARGCOUNT; ++i)
6975 if (GARGLIST[i].ae_fname != NULL)
6976 slash_adjust(GARGLIST[i].ae_fname);
6977# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006978 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006979 if (wp->w_alist != &global_alist)
6980 for (i = 0; i < WARGCOUNT(wp); ++i)
6981 if (WARGLIST(wp)[i].ae_fname != NULL)
6982 slash_adjust(WARGLIST(wp)[i].ae_fname);
6983# endif
6984}
6985#endif
6986
6987/*
6988 * ":preserve".
6989 */
6990/*ARGSUSED*/
6991 static void
6992ex_preserve(eap)
6993 exarg_T *eap;
6994{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006995 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996 ml_preserve(curbuf, TRUE);
6997}
6998
6999/*
7000 * ":recover".
7001 */
7002 static void
7003ex_recover(eap)
7004 exarg_T *eap;
7005{
7006 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7007 recoverymode = TRUE;
7008 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
7009 && (*eap->arg == NUL
7010 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7011 ml_recover();
7012 recoverymode = FALSE;
7013}
7014
7015/*
7016 * Command modifier used in a wrong way.
7017 */
7018 static void
7019ex_wrongmodifier(eap)
7020 exarg_T *eap;
7021{
7022 eap->errmsg = e_invcmd;
7023}
7024
7025#ifdef FEAT_WINDOWS
7026/*
7027 * :sview [+command] file split window with new file, read-only
7028 * :split [[+command] file] split window with current or new file
7029 * :vsplit [[+command] file] split window vertically with current or new file
7030 * :new [[+command] file] split window with no or new file
7031 * :vnew [[+command] file] split vertically window with no or new file
7032 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007033 *
7034 * :tabedit open new Tab page with empty window
7035 * :tabedit [+command] file open new Tab page and edit "file"
7036 * :tabnew [[+command] file] just like :tabedit
7037 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038 */
7039 void
7040ex_splitview(eap)
7041 exarg_T *eap;
7042{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007043 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007044# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007046# endif
7047# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007049# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007051# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7053 {
7054 ex_ni(eap);
7055 return;
7056 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007057# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007059# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007061# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007063# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064 /* A ":split" in the quickfix window works like ":new". Don't want two
7065 * quickfix windows. */
7066 if (bt_quickfix(curbuf))
7067 {
7068 if (eap->cmdidx == CMD_split)
7069 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007070# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007071 if (eap->cmdidx == CMD_vsplit)
7072 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007073# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007075# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007077# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007078 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079 {
7080 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7081 FNAME_MESS, TRUE, curbuf->b_ffname);
7082 if (fname == NULL)
7083 goto theend;
7084 eap->arg = fname;
7085 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007086# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007088# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007090# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007092# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007094# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095 && eap->cmdidx != CMD_new)
7096 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007097 if (
7098# ifdef FEAT_GUI
7099 !gui.in_use &&
7100# endif
7101 au_has_group((char_u *)"FileExplorer"))
7102 {
7103 /* No browsing supported but we do have the file explorer:
7104 * Edit the directory. */
7105 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7106 eap->arg = (char_u *)".";
7107 }
7108 else
7109 {
7110 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007111 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007112 if (fname == NULL)
7113 goto theend;
7114 eap->arg = fname;
7115 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 }
7117 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007118# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007120 /*
7121 * Either open new tab page or split the window.
7122 */
7123 if (eap->cmdidx == CMD_tabedit
7124 || eap->cmdidx == CMD_tabfind
7125 || eap->cmdidx == CMD_tabnew)
7126 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007127 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7128 : eap->addr_count == 0 ? 0
7129 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007130 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00007131 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007132
7133 /* set the alternate buffer for the window we came from */
7134 if (curwin != old_curwin
7135 && win_valid(old_curwin)
7136 && old_curwin->w_buffer != curbuf
7137 && !cmdmod.keepalt)
7138 old_curwin->w_alt_fnum = curbuf->b_fnum;
7139 }
7140 }
7141 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7143 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007144# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145 /* Reset 'scrollbind' when editing another file, but keep it when
7146 * doing ":split" without arguments. */
7147 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007148# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007149 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007150# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007151 )
7152 curwin->w_p_scb = FALSE;
7153 else
7154 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007155# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 do_exedit(eap, old_curwin);
7157 }
7158
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007159# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007161# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007163# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164theend:
7165 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007166# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007167}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007168
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007169#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007170/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007171 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007172 */
7173 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007174tabpage_new()
7175{
7176 exarg_T ea;
7177
7178 vim_memset(&ea, 0, sizeof(ea));
7179 ea.cmdidx = CMD_tabnew;
7180 ea.cmd = (char_u *)"tabn";
7181 ea.arg = (char_u *)"";
7182 ex_splitview(&ea);
7183}
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007184#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007185
7186/*
7187 * :tabnext command
7188 */
7189 static void
7190ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007191 exarg_T *eap;
7192{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007193 switch (eap->cmdidx)
7194 {
7195 case CMD_tabfirst:
7196 case CMD_tabrewind:
7197 goto_tabpage(1);
7198 break;
7199 case CMD_tablast:
7200 goto_tabpage(9999);
7201 break;
7202 case CMD_tabprevious:
7203 case CMD_tabNext:
7204 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7205 break;
7206 default: /* CMD_tabnext */
7207 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7208 break;
7209 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007210}
7211
7212/*
7213 * :tabmove command
7214 */
7215 static void
7216ex_tabmove(eap)
7217 exarg_T *eap;
7218{
7219 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007220}
7221
7222/*
7223 * :tabs command: List tabs and their contents.
7224 */
7225/*ARGSUSED*/
7226 static void
7227ex_tabs(eap)
7228 exarg_T *eap;
7229{
7230 tabpage_T *tp;
7231 win_T *wp;
7232 int tabcount = 1;
7233
7234 msg_start();
7235 msg_scroll = TRUE;
7236 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7237 {
7238 msg_putchar('\n');
7239 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7240 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7241 out_flush(); /* output one line at a time */
7242 ui_breakcheck();
7243
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007244 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007245 wp = firstwin;
7246 else
7247 wp = tp->tp_firstwin;
7248 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7249 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007250 msg_putchar('\n');
7251 msg_putchar(wp == curwin ? '>' : ' ');
7252 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007253 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7254 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007255 if (buf_spname(wp->w_buffer) != NULL)
7256 STRCPY(IObuff, buf_spname(wp->w_buffer));
7257 else
7258 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7259 IObuff, IOSIZE, TRUE);
7260 msg_outtrans(IObuff);
7261 out_flush(); /* output one line at a time */
7262 ui_breakcheck();
7263 }
7264 }
7265}
7266
7267#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007268
7269/*
7270 * ":mode": Set screen mode.
7271 * If no argument given, just get the screen size and redraw.
7272 */
7273 static void
7274ex_mode(eap)
7275 exarg_T *eap;
7276{
7277 if (*eap->arg == NUL)
7278 shell_resized();
7279 else
7280 mch_screenmode(eap->arg);
7281}
7282
7283#ifdef FEAT_WINDOWS
7284/*
7285 * ":resize".
7286 * set, increment or decrement current window height
7287 */
7288 static void
7289ex_resize(eap)
7290 exarg_T *eap;
7291{
7292 int n;
7293 win_T *wp = curwin;
7294
7295 if (eap->addr_count > 0)
7296 {
7297 n = eap->line2;
7298 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7299 ;
7300 }
7301
7302#ifdef FEAT_GUI
7303 need_mouse_correct = TRUE;
7304#endif
7305 n = atol((char *)eap->arg);
7306#ifdef FEAT_VERTSPLIT
7307 if (cmdmod.split & WSP_VERT)
7308 {
7309 if (*eap->arg == '-' || *eap->arg == '+')
7310 n += W_WIDTH(curwin);
7311 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7312 n = 9999;
7313 win_setwidth_win((int)n, wp);
7314 }
7315 else
7316#endif
7317 {
7318 if (*eap->arg == '-' || *eap->arg == '+')
7319 n += curwin->w_height;
7320 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7321 n = 9999;
7322 win_setheight_win((int)n, wp);
7323 }
7324}
7325#endif
7326
7327/*
7328 * ":find [+command] <file>" command.
7329 */
7330 static void
7331ex_find(eap)
7332 exarg_T *eap;
7333{
7334#ifdef FEAT_SEARCHPATH
7335 char_u *fname;
7336 int count;
7337
7338 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7339 TRUE, curbuf->b_ffname);
7340 if (eap->addr_count > 0)
7341 {
7342 /* Repeat finding the file "count" times. This matters when it
7343 * appears several times in the path. */
7344 count = eap->line2;
7345 while (fname != NULL && --count > 0)
7346 {
7347 vim_free(fname);
7348 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7349 FALSE, curbuf->b_ffname);
7350 }
7351 }
7352
7353 if (fname != NULL)
7354 {
7355 eap->arg = fname;
7356#endif
7357 do_exedit(eap, NULL);
7358#ifdef FEAT_SEARCHPATH
7359 vim_free(fname);
7360 }
7361#endif
7362}
7363
7364/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007365 * ":open" simulation: for now just work like ":visual".
7366 */
7367 static void
7368ex_open(eap)
7369 exarg_T *eap;
7370{
7371 regmatch_T regmatch;
7372 char_u *p;
7373
7374 curwin->w_cursor.lnum = eap->line2;
7375 beginline(BL_SOL | BL_FIX);
7376 if (*eap->arg == '/')
7377 {
7378 /* ":open /pattern/": put cursor in column found with pattern */
7379 ++eap->arg;
7380 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7381 *p = NUL;
7382 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7383 if (regmatch.regprog != NULL)
7384 {
7385 regmatch.rm_ic = p_ic;
7386 p = ml_get_curline();
7387 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007388 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007389 else
7390 EMSG(_(e_nomatch));
7391 vim_free(regmatch.regprog);
7392 }
7393 /* Move to the NUL, ignore any other arguments. */
7394 eap->arg += STRLEN(eap->arg);
7395 }
7396 check_cursor();
7397
7398 eap->cmdidx = CMD_visual;
7399 do_exedit(eap, NULL);
7400}
7401
7402/*
7403 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007404 */
7405 static void
7406ex_edit(eap)
7407 exarg_T *eap;
7408{
7409 do_exedit(eap, NULL);
7410}
7411
7412/*
7413 * ":edit <file>" command and alikes.
7414 */
7415/*ARGSUSED*/
7416 void
7417do_exedit(eap, old_curwin)
7418 exarg_T *eap;
7419 win_T *old_curwin; /* curwin before doing a split or NULL */
7420{
7421 int n;
7422#ifdef FEAT_WINDOWS
7423 int need_hide;
7424#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007425 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007426
7427 /*
7428 * ":vi" command ends Ex mode.
7429 */
7430 if (exmode_active && (eap->cmdidx == CMD_visual
7431 || eap->cmdidx == CMD_view))
7432 {
7433 exmode_active = FALSE;
7434 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007435 {
7436 /* Special case: ":global/pat/visual\NLvi-commands" */
7437 if (global_busy)
7438 {
7439 int rd = RedrawingDisabled;
7440 int nwr = no_wait_return;
7441 int ms = msg_scroll;
7442#ifdef FEAT_GUI
7443 int he = hold_gui_events;
7444#endif
7445
7446 if (eap->nextcmd != NULL)
7447 {
7448 stuffReadbuff(eap->nextcmd);
7449 eap->nextcmd = NULL;
7450 }
7451
7452 if (exmode_was != EXMODE_VIM)
7453 settmode(TMODE_RAW);
7454 RedrawingDisabled = 0;
7455 no_wait_return = 0;
7456 need_wait_return = FALSE;
7457 msg_scroll = 0;
7458#ifdef FEAT_GUI
7459 hold_gui_events = 0;
7460#endif
7461 must_redraw = CLEAR;
7462
7463 main_loop(FALSE, TRUE);
7464
7465 RedrawingDisabled = rd;
7466 no_wait_return = nwr;
7467 msg_scroll = ms;
7468#ifdef FEAT_GUI
7469 hold_gui_events = he;
7470#endif
7471 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007472 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007473 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 }
7475
7476 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007477 || eap->cmdidx == CMD_tabnew
7478 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479#ifdef FEAT_VERTSPLIT
7480 || eap->cmdidx == CMD_vnew
7481#endif
7482 ) && *eap->arg == NUL)
7483 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007484 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485 setpcmark();
7486 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7487 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7488 }
7489 else if ((eap->cmdidx != CMD_split
7490#ifdef FEAT_VERTSPLIT
7491 && eap->cmdidx != CMD_vsplit
7492#endif
7493 )
7494 || *eap->arg != NUL
7495#ifdef FEAT_BROWSE
7496 || cmdmod.browse
7497#endif
7498 )
7499 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007500#ifdef FEAT_AUTOCMD
7501 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7502 * can bring us here, others are stopped earlier. */
7503 if (*eap->arg != NUL && curbuf_locked())
7504 return;
7505#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007506 n = readonlymode;
7507 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7508 readonlymode = TRUE;
7509 else if (eap->cmdidx == CMD_enew)
7510 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7511 empty buffer */
7512 setpcmark();
7513 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7514 NULL, eap,
7515 /* ":edit" goes to first line if Vi compatible */
7516 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7517 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7518 ? ECMD_ONE : eap->do_ecmd_lnum,
7519 (P_HID(curbuf) ? ECMD_HIDE : 0)
7520 + (eap->forceit ? ECMD_FORCEIT : 0)
7521#ifdef FEAT_LISTCMDS
7522 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7523#endif
7524 ) == FAIL)
7525 {
7526 /* Editing the file failed. If the window was split, close it. */
7527#ifdef FEAT_WINDOWS
7528 if (old_curwin != NULL)
7529 {
7530 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7531 if (!need_hide || P_HID(curbuf))
7532 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007533# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7534 cleanup_T cs;
7535
7536 /* Reset the error/interrupt/exception state here so that
7537 * aborting() returns FALSE when closing a window. */
7538 enter_cleanup(&cs);
7539# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007540# ifdef FEAT_GUI
7541 need_mouse_correct = TRUE;
7542# endif
7543 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007544
7545# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7546 /* Restore the error/interrupt/exception state if not
7547 * discarded by a new aborting error, interrupt, or
7548 * uncaught exception. */
7549 leave_cleanup(&cs);
7550# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007551 }
7552 }
7553#endif
7554 }
7555 else if (readonlymode && curbuf->b_nwindows == 1)
7556 {
7557 /* When editing an already visited buffer, 'readonly' won't be set
7558 * but the previous value is kept. With ":view" and ":sview" we
7559 * want the file to be readonly, except when another window is
7560 * editing the same buffer. */
7561 curbuf->b_p_ro = TRUE;
7562 }
7563 readonlymode = n;
7564 }
7565 else
7566 {
7567 if (eap->do_ecmd_cmd != NULL)
7568 do_cmdline_cmd(eap->do_ecmd_cmd);
7569#ifdef FEAT_TITLE
7570 n = curwin->w_arg_idx_invalid;
7571#endif
7572 check_arg_idx(curwin);
7573#ifdef FEAT_TITLE
7574 if (n != curwin->w_arg_idx_invalid)
7575 maketitle();
7576#endif
7577 }
7578
7579#ifdef FEAT_WINDOWS
7580 /*
7581 * if ":split file" worked, set alternate file name in old window to new
7582 * file
7583 */
7584 if (old_curwin != NULL
7585 && *eap->arg != NUL
7586 && curwin != old_curwin
7587 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007588 && old_curwin->w_buffer != curbuf
7589 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007590 old_curwin->w_alt_fnum = curbuf->b_fnum;
7591#endif
7592
7593 ex_no_reprint = TRUE;
7594}
7595
7596#ifndef FEAT_GUI
7597/*
7598 * ":gui" and ":gvim" when there is no GUI.
7599 */
7600 static void
7601ex_nogui(eap)
7602 exarg_T *eap;
7603{
7604 eap->errmsg = e_nogvim;
7605}
7606#endif
7607
7608#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7609 static void
7610ex_tearoff(eap)
7611 exarg_T *eap;
7612{
7613 gui_make_tearoff(eap->arg);
7614}
7615#endif
7616
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007617#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007618 static void
7619ex_popup(eap)
7620 exarg_T *eap;
7621{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007622 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007623}
7624#endif
7625
7626/*ARGSUSED*/
7627 static void
7628ex_swapname(eap)
7629 exarg_T *eap;
7630{
7631 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7632 MSG(_("No swap file"));
7633 else
7634 msg(curbuf->b_ml.ml_mfp->mf_fname);
7635}
7636
7637/*
7638 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7639 * offset.
7640 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7641 */
7642/*ARGSUSED*/
7643 static void
7644ex_syncbind(eap)
7645 exarg_T *eap;
7646{
7647#ifdef FEAT_SCROLLBIND
7648 win_T *wp;
7649 long topline;
7650 long y;
7651 linenr_T old_linenr = curwin->w_cursor.lnum;
7652
7653 setpcmark();
7654
7655 /*
7656 * determine max topline
7657 */
7658 if (curwin->w_p_scb)
7659 {
7660 topline = curwin->w_topline;
7661 for (wp = firstwin; wp; wp = wp->w_next)
7662 {
7663 if (wp->w_p_scb && wp->w_buffer)
7664 {
7665 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7666 if (topline > y)
7667 topline = y;
7668 }
7669 }
7670 if (topline < 1)
7671 topline = 1;
7672 }
7673 else
7674 {
7675 topline = 1;
7676 }
7677
7678
7679 /*
7680 * set all scrollbind windows to the same topline
7681 */
7682 wp = curwin;
7683 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7684 {
7685 if (curwin->w_p_scb)
7686 {
7687 y = topline - curwin->w_topline;
7688 if (y > 0)
7689 scrollup(y, TRUE);
7690 else
7691 scrolldown(-y, TRUE);
7692 curwin->w_scbind_pos = topline;
7693 redraw_later(VALID);
7694 cursor_correct();
7695#ifdef FEAT_WINDOWS
7696 curwin->w_redr_status = TRUE;
7697#endif
7698 }
7699 }
7700 curwin = wp;
7701 if (curwin->w_p_scb)
7702 {
7703 did_syncbind = TRUE;
7704 checkpcmark();
7705 if (old_linenr != curwin->w_cursor.lnum)
7706 {
7707 char_u ctrl_o[2];
7708
7709 ctrl_o[0] = Ctrl_O;
7710 ctrl_o[1] = 0;
7711 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7712 }
7713 }
7714#endif
7715}
7716
7717
7718 static void
7719ex_read(eap)
7720 exarg_T *eap;
7721{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007722 int i;
7723 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7724 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007725
7726 if (eap->usefilter) /* :r!cmd */
7727 do_bang(1, eap, FALSE, FALSE, TRUE);
7728 else
7729 {
7730 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7731 return;
7732
7733#ifdef FEAT_BROWSE
7734 if (cmdmod.browse)
7735 {
7736 char_u *browseFile;
7737
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007738 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007739 NULL, NULL, NULL, curbuf);
7740 if (browseFile != NULL)
7741 {
7742 i = readfile(browseFile, NULL,
7743 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7744 vim_free(browseFile);
7745 }
7746 else
7747 i = OK;
7748 }
7749 else
7750#endif
7751 if (*eap->arg == NUL)
7752 {
7753 if (check_fname() == FAIL) /* check for no file name */
7754 return;
7755 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7756 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7757 }
7758 else
7759 {
7760 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7761 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7762 i = readfile(eap->arg, NULL,
7763 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7764
7765 }
7766 if (i == FAIL)
7767 {
7768#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7769 if (!aborting())
7770#endif
7771 EMSG2(_(e_notopen), eap->arg);
7772 }
7773 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007774 {
7775 if (empty && exmode_active)
7776 {
7777 /* Delete the empty line that remains. Historically ex does
7778 * this but vi doesn't. */
7779 if (eap->line2 == 0)
7780 lnum = curbuf->b_ml.ml_line_count;
7781 else
7782 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007783 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007784 {
7785 ml_delete(lnum, FALSE);
7786 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007787 if (curwin->w_cursor.lnum > 1
7788 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007789 --curwin->w_cursor.lnum;
7790 }
7791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007792 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007794 }
7795}
7796
Bram Moolenaarea408852005-06-25 22:49:46 +00007797static char_u *prev_dir = NULL;
7798
7799#if defined(EXITFREE) || defined(PROTO)
7800 void
7801free_cd_dir()
7802{
7803 vim_free(prev_dir);
Bram Moolenaara0174af2008-01-02 20:08:25 +00007804 prev_dir = NULL;
Bram Moolenaarea408852005-06-25 22:49:46 +00007805}
7806#endif
7807
7808
Bram Moolenaar071d4272004-06-13 20:20:40 +00007809/*
7810 * ":cd", ":lcd", ":chdir" and ":lchdir".
7811 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00007812 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007813ex_cd(eap)
7814 exarg_T *eap;
7815{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007816 char_u *new_dir;
7817 char_u *tofree;
7818
7819 new_dir = eap->arg;
7820#if !defined(UNIX) && !defined(VMS)
7821 /* for non-UNIX ":cd" means: print current directory */
7822 if (*new_dir == NUL)
7823 ex_pwd(NULL);
7824 else
7825#endif
7826 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007827 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7828 && !eap->forceit)
7829 {
Bram Moolenaar81870892007-11-11 18:17:28 +00007830 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00007831 return;
7832 }
7833
Bram Moolenaar071d4272004-06-13 20:20:40 +00007834 /* ":cd -": Change to previous directory */
7835 if (STRCMP(new_dir, "-") == 0)
7836 {
7837 if (prev_dir == NULL)
7838 {
7839 EMSG(_("E186: No previous directory"));
7840 return;
7841 }
7842 new_dir = prev_dir;
7843 }
7844
7845 /* Save current directory for next ":cd -" */
7846 tofree = prev_dir;
7847 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7848 prev_dir = vim_strsave(NameBuff);
7849 else
7850 prev_dir = NULL;
7851
7852#if defined(UNIX) || defined(VMS)
7853 /* for UNIX ":cd" means: go to home directory */
7854 if (*new_dir == NUL)
7855 {
7856 /* use NameBuff for home directory name */
7857# ifdef VMS
7858 char_u *p;
7859
7860 p = mch_getenv((char_u *)"SYS$LOGIN");
7861 if (p == NULL || *p == NUL) /* empty is the same as not set */
7862 NameBuff[0] = NUL;
7863 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007864 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007865# else
7866 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7867# endif
7868 new_dir = NameBuff;
7869 }
7870#endif
7871 if (new_dir == NULL || vim_chdir(new_dir))
7872 EMSG(_(e_failed));
7873 else
7874 {
7875 vim_free(curwin->w_localdir);
7876 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7877 {
7878 /* If still in global directory, need to remember current
7879 * directory as global directory. */
7880 if (globaldir == NULL && prev_dir != NULL)
7881 globaldir = vim_strsave(prev_dir);
7882 /* Remember this local directory for the window. */
7883 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7884 curwin->w_localdir = vim_strsave(NameBuff);
7885 }
7886 else
7887 {
7888 /* We are now in the global directory, no need to remember its
7889 * name. */
7890 vim_free(globaldir);
7891 globaldir = NULL;
7892 curwin->w_localdir = NULL;
7893 }
7894
7895 shorten_fnames(TRUE);
7896
7897 /* Echo the new current directory if the command was typed. */
7898 if (KeyTyped)
7899 ex_pwd(eap);
7900 }
7901 vim_free(tofree);
7902 }
7903}
7904
7905/*
7906 * ":pwd".
7907 */
7908/*ARGSUSED*/
7909 static void
7910ex_pwd(eap)
7911 exarg_T *eap;
7912{
7913 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7914 {
7915#ifdef BACKSLASH_IN_FILENAME
7916 slash_adjust(NameBuff);
7917#endif
7918 msg(NameBuff);
7919 }
7920 else
7921 EMSG(_("E187: Unknown"));
7922}
7923
7924/*
7925 * ":=".
7926 */
7927 static void
7928ex_equal(eap)
7929 exarg_T *eap;
7930{
7931 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007932 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007933}
7934
7935 static void
7936ex_sleep(eap)
7937 exarg_T *eap;
7938{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007939 int n;
7940 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007941
7942 if (cursor_valid())
7943 {
7944 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7945 if (n >= 0)
7946 windgoto((int)n, curwin->w_wcol);
7947 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007948
7949 len = eap->line2;
7950 switch (*eap->arg)
7951 {
7952 case 'm': break;
7953 case NUL: len *= 1000L; break;
7954 default: EMSG2(_(e_invarg2), eap->arg); return;
7955 }
7956 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007957}
7958
7959/*
7960 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7961 */
7962 void
7963do_sleep(msec)
7964 long msec;
7965{
7966 long done;
7967
7968 cursor_on();
7969 out_flush();
7970 for (done = 0; !got_int && done < msec; done += 1000L)
7971 {
7972 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7973 ui_breakcheck();
7974 }
7975}
7976
7977 static void
7978do_exmap(eap, isabbrev)
7979 exarg_T *eap;
7980 int isabbrev;
7981{
7982 int mode;
7983 char_u *cmdp;
7984
7985 cmdp = eap->cmd;
7986 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7987
7988 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7989 eap->arg, mode, isabbrev))
7990 {
7991 case 1: EMSG(_(e_invarg));
7992 break;
7993 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7994 break;
7995 }
7996}
7997
7998/*
7999 * ":winsize" command (obsolete).
8000 */
8001 static void
8002ex_winsize(eap)
8003 exarg_T *eap;
8004{
8005 int w, h;
8006 char_u *arg = eap->arg;
8007 char_u *p;
8008
8009 w = getdigits(&arg);
8010 arg = skipwhite(arg);
8011 p = arg;
8012 h = getdigits(&arg);
8013 if (*p != NUL && *arg == NUL)
8014 set_shellsize(w, h, TRUE);
8015 else
8016 EMSG(_("E465: :winsize requires two number arguments"));
8017}
8018
8019#ifdef FEAT_WINDOWS
8020 static void
8021ex_wincmd(eap)
8022 exarg_T *eap;
8023{
8024 int xchar = NUL;
8025 char_u *p;
8026
8027 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8028 {
8029 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8030 if (eap->arg[1] == NUL)
8031 {
8032 EMSG(_(e_invarg));
8033 return;
8034 }
8035 xchar = eap->arg[1];
8036 p = eap->arg + 2;
8037 }
8038 else
8039 p = eap->arg + 1;
8040
8041 eap->nextcmd = check_nextcmd(p);
8042 p = skipwhite(p);
8043 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8044 EMSG(_(e_invarg));
8045 else
8046 {
8047 /* Pass flags on for ":vertical wincmd ]". */
8048 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008049 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008050 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8051 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008052 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008053 }
8054}
8055#endif
8056
Bram Moolenaar843ee412004-06-30 16:16:41 +00008057#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008058/*
8059 * ":winpos".
8060 */
8061 static void
8062ex_winpos(eap)
8063 exarg_T *eap;
8064{
8065 int x, y;
8066 char_u *arg = eap->arg;
8067 char_u *p;
8068
8069 if (*arg == NUL)
8070 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008071# if defined(FEAT_GUI) || defined(MSWIN)
8072# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008073 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008074# else
8075 if (mch_get_winpos(&x, &y) != FAIL)
8076# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008077 {
8078 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8079 msg(IObuff);
8080 }
8081 else
8082# endif
8083 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8084 }
8085 else
8086 {
8087 x = getdigits(&arg);
8088 arg = skipwhite(arg);
8089 p = arg;
8090 y = getdigits(&arg);
8091 if (*p == NUL || *arg != NUL)
8092 {
8093 EMSG(_("E466: :winpos requires two number arguments"));
8094 return;
8095 }
8096# ifdef FEAT_GUI
8097 if (gui.in_use)
8098 gui_mch_set_winpos(x, y);
8099 else if (gui.starting)
8100 {
8101 /* Remember the coordinates for when the window is opened. */
8102 gui_win_x = x;
8103 gui_win_y = y;
8104 }
8105# ifdef HAVE_TGETENT
8106 else
8107# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008108# else
8109# ifdef MSWIN
8110 mch_set_winpos(x, y);
8111# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008112# endif
8113# ifdef HAVE_TGETENT
8114 if (*T_CWP)
8115 term_set_winpos(x, y);
8116# endif
8117 }
8118}
8119#endif
8120
8121/*
8122 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8123 */
8124 static void
8125ex_operators(eap)
8126 exarg_T *eap;
8127{
8128 oparg_T oa;
8129
8130 clear_oparg(&oa);
8131 oa.regname = eap->regname;
8132 oa.start.lnum = eap->line1;
8133 oa.end.lnum = eap->line2;
8134 oa.line_count = eap->line2 - eap->line1 + 1;
8135 oa.motion_type = MLINE;
8136#ifdef FEAT_VIRTUALEDIT
8137 virtual_op = FALSE;
8138#endif
8139 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8140 {
8141 setpcmark();
8142 curwin->w_cursor.lnum = eap->line1;
8143 beginline(BL_SOL | BL_FIX);
8144 }
8145
8146 switch (eap->cmdidx)
8147 {
8148 case CMD_delete:
8149 oa.op_type = OP_DELETE;
8150 op_delete(&oa);
8151 break;
8152
8153 case CMD_yank:
8154 oa.op_type = OP_YANK;
8155 (void)op_yank(&oa, FALSE, TRUE);
8156 break;
8157
8158 default: /* CMD_rshift or CMD_lshift */
8159 if ((eap->cmdidx == CMD_rshift)
8160#ifdef FEAT_RIGHTLEFT
8161 ^ curwin->w_p_rl
8162#endif
8163 )
8164 oa.op_type = OP_RSHIFT;
8165 else
8166 oa.op_type = OP_LSHIFT;
8167 op_shift(&oa, FALSE, eap->amount);
8168 break;
8169 }
8170#ifdef FEAT_VIRTUALEDIT
8171 virtual_op = MAYBE;
8172#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008173 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008174}
8175
8176/*
8177 * ":put".
8178 */
8179 static void
8180ex_put(eap)
8181 exarg_T *eap;
8182{
8183 /* ":0put" works like ":1put!". */
8184 if (eap->line2 == 0)
8185 {
8186 eap->line2 = 1;
8187 eap->forceit = TRUE;
8188 }
8189 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008190 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8191 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008192}
8193
8194/*
8195 * Handle ":copy" and ":move".
8196 */
8197 static void
8198ex_copymove(eap)
8199 exarg_T *eap;
8200{
8201 long n;
8202
8203 n = get_address(&eap->arg, FALSE, FALSE);
8204 if (eap->arg == NULL) /* error detected */
8205 {
8206 eap->nextcmd = NULL;
8207 return;
8208 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008209 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008210
8211 /*
8212 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8213 */
8214 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8215 {
8216 EMSG(_(e_invaddr));
8217 return;
8218 }
8219
8220 if (eap->cmdidx == CMD_move)
8221 {
8222 if (do_move(eap->line1, eap->line2, n) == FAIL)
8223 return;
8224 }
8225 else
8226 ex_copy(eap->line1, eap->line2, n);
8227 u_clearline();
8228 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008229 ex_may_print(eap);
8230}
8231
8232/*
8233 * Print the current line if flags were given to the Ex command.
8234 */
8235 static void
8236ex_may_print(eap)
8237 exarg_T *eap;
8238{
8239 if (eap->flags != 0)
8240 {
8241 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8242 (eap->flags & EXFLAG_LIST));
8243 ex_no_reprint = TRUE;
8244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008245}
8246
8247/*
8248 * ":smagic" and ":snomagic".
8249 */
8250 static void
8251ex_submagic(eap)
8252 exarg_T *eap;
8253{
8254 int magic_save = p_magic;
8255
8256 p_magic = (eap->cmdidx == CMD_smagic);
8257 do_sub(eap);
8258 p_magic = magic_save;
8259}
8260
8261/*
8262 * ":join".
8263 */
8264 static void
8265ex_join(eap)
8266 exarg_T *eap;
8267{
8268 curwin->w_cursor.lnum = eap->line1;
8269 if (eap->line1 == eap->line2)
8270 {
8271 if (eap->addr_count >= 2) /* :2,2join does nothing */
8272 return;
8273 if (eap->line2 == curbuf->b_ml.ml_line_count)
8274 {
8275 beep_flush();
8276 return;
8277 }
8278 ++eap->line2;
8279 }
8280 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8281 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008282 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008283}
8284
8285/*
8286 * ":[addr]@r" or ":[addr]*r": execute register
8287 */
8288 static void
8289ex_at(eap)
8290 exarg_T *eap;
8291{
8292 int c;
8293
8294 curwin->w_cursor.lnum = eap->line2;
8295
8296#ifdef USE_ON_FLY_SCROLL
8297 dont_scroll = TRUE; /* disallow scrolling here */
8298#endif
8299
8300 /* get the register name. No name means to use the previous one */
8301 c = *eap->arg;
8302 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8303 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008304 /* Put the register in the typeahead buffer with the "silent" flag. */
8305 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8306 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008307 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008308 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008309 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008310 else
8311 {
8312 int save_efr = exec_from_reg;
8313
8314 exec_from_reg = TRUE;
8315
8316 /*
8317 * Execute from the typeahead buffer.
8318 * Originally this didn't check for the typeahead buffer to be empty,
8319 * thus could read more Ex commands from stdin. It's not clear why,
8320 * it is certainly unexpected.
8321 */
8322 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8323 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8324
8325 exec_from_reg = save_efr;
8326 }
8327}
8328
8329/*
8330 * ":!".
8331 */
8332 static void
8333ex_bang(eap)
8334 exarg_T *eap;
8335{
8336 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8337}
8338
8339/*
8340 * ":undo".
8341 */
8342/*ARGSUSED*/
8343 static void
8344ex_undo(eap)
8345 exarg_T *eap;
8346{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008347 if (eap->addr_count == 1) /* :undo 123 */
8348 undo_time(eap->line2, FALSE, TRUE);
8349 else
8350 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008351}
8352
8353/*
8354 * ":redo".
8355 */
8356/*ARGSUSED*/
8357 static void
8358ex_redo(eap)
8359 exarg_T *eap;
8360{
8361 u_redo(1);
8362}
8363
8364/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008365 * ":earlier" and ":later".
8366 */
8367/*ARGSUSED*/
8368 static void
8369ex_later(eap)
8370 exarg_T *eap;
8371{
8372 long count = 0;
8373 int sec = FALSE;
8374 char_u *p = eap->arg;
8375
8376 if (*p == NUL)
8377 count = 1;
8378 else if (isdigit(*p))
8379 {
8380 count = getdigits(&p);
8381 switch (*p)
8382 {
8383 case 's': ++p; sec = TRUE; break;
8384 case 'm': ++p; sec = TRUE; count *= 60; break;
8385 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8386 }
8387 }
8388
8389 if (*p != NUL)
8390 EMSG2(_(e_invarg2), eap->arg);
8391 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008392 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008393}
8394
8395/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008396 * ":redir": start/stop redirection.
8397 */
8398 static void
8399ex_redir(eap)
8400 exarg_T *eap;
8401{
8402 char *mode;
8403 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008404 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008405
8406 if (STRICMP(eap->arg, "END") == 0)
8407 close_redir();
8408 else
8409 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008410 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008411 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008412 ++arg;
8413 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008414 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008415 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008416 mode = "a";
8417 }
8418 else
8419 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008420 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008421
8422 close_redir();
8423
8424 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008425 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008426 if (fname == NULL)
8427 return;
8428#ifdef FEAT_BROWSE
8429 if (cmdmod.browse)
8430 {
8431 char_u *browseFile;
8432
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008433 browseFile = do_browse(BROWSE_SAVE,
8434 (char_u *)_("Save Redirection"),
8435 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008436 if (browseFile == NULL)
8437 return; /* operation cancelled */
8438 vim_free(fname);
8439 fname = browseFile;
8440 eap->forceit = TRUE; /* since dialog already asked */
8441 }
8442#endif
8443
8444 redir_fd = open_exfile(fname, eap->forceit, mode);
8445 vim_free(fname);
8446 }
8447#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008448 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008449 {
8450 /* redirect to a register a-z (resp. A-Z for appending) */
8451 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008452 ++arg;
8453 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008454# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008455 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008456 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008457# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008458 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008459 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008460 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008461 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00008462 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008463 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008464 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00008465 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008466 if (*arg == '>')
8467 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008468 /* Make register empty when not using @A-@Z and the
8469 * command is valid. */
8470 if (*arg == NUL && !isupper(redir_reg))
8471 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008472 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008473 }
8474 if (*arg != NUL)
8475 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008476 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008477 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008478 }
8479 }
8480 else if (*arg == '=' && arg[1] == '>')
8481 {
8482 int append;
8483
8484 /* redirect to a variable */
8485 close_redir();
8486 arg += 2;
8487
8488 if (*arg == '>')
8489 {
8490 ++arg;
8491 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008492 }
8493 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008494 append = FALSE;
8495
8496 if (var_redir_start(skipwhite(arg), append) == OK)
8497 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008498 }
8499#endif
8500
8501 /* TODO: redirect to a buffer */
8502
Bram Moolenaar071d4272004-06-13 20:20:40 +00008503 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008504 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008505 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008506
8507 /* Make sure redirection is not off. Can happen for cmdline completion
8508 * that indirectly invokes a command to catch its output. */
8509 if (redir_fd != NULL
8510#ifdef FEAT_EVAL
8511 || redir_reg || redir_vname
8512#endif
8513 )
8514 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008515}
8516
8517/*
8518 * ":redraw": force redraw
8519 */
8520 static void
8521ex_redraw(eap)
8522 exarg_T *eap;
8523{
8524 int r = RedrawingDisabled;
8525 int p = p_lz;
8526
8527 RedrawingDisabled = 0;
8528 p_lz = FALSE;
8529 update_topline();
8530 update_screen(eap->forceit ? CLEAR :
8531#ifdef FEAT_VISUAL
8532 VIsual_active ? INVERTED :
8533#endif
8534 0);
8535#ifdef FEAT_TITLE
8536 if (need_maketitle)
8537 maketitle();
8538#endif
8539 RedrawingDisabled = r;
8540 p_lz = p;
8541
8542 /* Reset msg_didout, so that a message that's there is overwritten. */
8543 msg_didout = FALSE;
8544 msg_col = 0;
8545
8546 out_flush();
8547}
8548
8549/*
8550 * ":redrawstatus": force redraw of status line(s)
8551 */
8552/*ARGSUSED*/
8553 static void
8554ex_redrawstatus(eap)
8555 exarg_T *eap;
8556{
8557#if defined(FEAT_WINDOWS)
8558 int r = RedrawingDisabled;
8559 int p = p_lz;
8560
8561 RedrawingDisabled = 0;
8562 p_lz = FALSE;
8563 if (eap->forceit)
8564 status_redraw_all();
8565 else
8566 status_redraw_curbuf();
8567 update_screen(
8568# ifdef FEAT_VISUAL
8569 VIsual_active ? INVERTED :
8570# endif
8571 0);
8572 RedrawingDisabled = r;
8573 p_lz = p;
8574 out_flush();
8575#endif
8576}
8577
8578 static void
8579close_redir()
8580{
8581 if (redir_fd != NULL)
8582 {
8583 fclose(redir_fd);
8584 redir_fd = NULL;
8585 }
8586#ifdef FEAT_EVAL
8587 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008588 if (redir_vname)
8589 {
8590 var_redir_stop();
8591 redir_vname = 0;
8592 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008593#endif
8594}
8595
8596#if defined(FEAT_SESSION) && defined(USE_CRNL)
8597# define MKSESSION_NL
8598static int mksession_nl = FALSE; /* use NL only in put_eol() */
8599#endif
8600
8601/*
8602 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8603 */
8604 static void
8605ex_mkrc(eap)
8606 exarg_T *eap;
8607{
8608 FILE *fd;
8609 int failed = FALSE;
8610 char_u *fname;
8611#ifdef FEAT_BROWSE
8612 char_u *browseFile = NULL;
8613#endif
8614#ifdef FEAT_SESSION
8615 int view_session = FALSE;
8616 int using_vdir = FALSE; /* using 'viewdir'? */
8617 char_u *viewFile = NULL;
8618 unsigned *flagp;
8619#endif
8620
8621 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8622 {
8623#ifdef FEAT_SESSION
8624 view_session = TRUE;
8625#else
8626 ex_ni(eap);
8627 return;
8628#endif
8629 }
8630
8631#ifdef FEAT_SESSION
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008632 did_lcd = FALSE;
8633
Bram Moolenaar071d4272004-06-13 20:20:40 +00008634 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8635 if (eap->cmdidx == CMD_mkview
8636 && (*eap->arg == NUL
8637 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8638 {
8639 eap->forceit = TRUE;
8640 fname = get_view_file(*eap->arg);
8641 if (fname == NULL)
8642 return;
8643 viewFile = fname;
8644 using_vdir = TRUE;
8645 }
8646 else
8647#endif
8648 if (*eap->arg != NUL)
8649 fname = eap->arg;
8650 else if (eap->cmdidx == CMD_mkvimrc)
8651 fname = (char_u *)VIMRC_FILE;
8652#ifdef FEAT_SESSION
8653 else if (eap->cmdidx == CMD_mksession)
8654 fname = (char_u *)SESSION_FILE;
8655#endif
8656 else
8657 fname = (char_u *)EXRC_FILE;
8658
8659#ifdef FEAT_BROWSE
8660 if (cmdmod.browse)
8661 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008662 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008663# ifdef FEAT_SESSION
8664 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8665 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8666# endif
8667 (char_u *)_("Save Setup"),
8668 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8669 if (browseFile == NULL)
8670 goto theend;
8671 fname = browseFile;
8672 eap->forceit = TRUE; /* since dialog already asked */
8673 }
8674#endif
8675
8676#if defined(FEAT_SESSION) && defined(vim_mkdir)
8677 /* When using 'viewdir' may have to create the directory. */
8678 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008679 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008680#endif
8681
8682 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8683 if (fd != NULL)
8684 {
8685#ifdef FEAT_SESSION
8686 if (eap->cmdidx == CMD_mkview)
8687 flagp = &vop_flags;
8688 else
8689 flagp = &ssop_flags;
8690#endif
8691
8692#ifdef MKSESSION_NL
8693 /* "unix" in 'sessionoptions': use NL line separator */
8694 if (view_session && (*flagp & SSOP_UNIX))
8695 mksession_nl = TRUE;
8696#endif
8697
8698 /* Write the version command for :mkvimrc */
8699 if (eap->cmdidx == CMD_mkvimrc)
8700 (void)put_line(fd, "version 6.0");
8701
8702#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008703 if (eap->cmdidx == CMD_mksession)
8704 {
8705 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8706 failed = TRUE;
8707 }
8708
Bram Moolenaar071d4272004-06-13 20:20:40 +00008709 if (eap->cmdidx != CMD_mkview)
8710#endif
8711 {
8712 /* Write setting 'compatible' first, because it has side effects.
8713 * For that same reason only do it when needed. */
8714 if (p_cp)
8715 (void)put_line(fd, "if !&cp | set cp | endif");
8716 else
8717 (void)put_line(fd, "if &cp | set nocp | endif");
8718 }
8719
8720#ifdef FEAT_SESSION
8721 if (!view_session
8722 || (eap->cmdidx == CMD_mksession
8723 && (*flagp & SSOP_OPTIONS)))
8724#endif
8725 failed |= (makemap(fd, NULL) == FAIL
8726 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8727
8728#ifdef FEAT_SESSION
8729 if (!failed && view_session)
8730 {
8731 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8732 failed = TRUE;
8733 if (eap->cmdidx == CMD_mksession)
8734 {
8735 char_u dirnow[MAXPATHL]; /* current directory */
8736
8737 /*
8738 * Change to session file's dir.
8739 */
8740 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8741 || mch_chdir((char *)dirnow) != 0)
8742 *dirnow = NUL;
8743 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8744 {
8745 if (vim_chdirfile(fname) == OK)
8746 shorten_fnames(TRUE);
8747 }
8748 else if (*dirnow != NUL
8749 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8750 {
8751 (void)mch_chdir((char *)globaldir);
8752 shorten_fnames(TRUE);
8753 }
8754
8755 failed |= (makeopens(fd, dirnow) == FAIL);
8756
8757 /* restore original dir */
8758 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8759 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8760 {
8761 if (mch_chdir((char *)dirnow) != 0)
8762 EMSG(_(e_prev_dir));
8763 shorten_fnames(TRUE);
8764 }
8765 }
8766 else
8767 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00008768 failed |= (put_view(fd, curwin, !using_vdir, flagp,
8769 -1) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008770 }
8771 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8772 == FAIL)
8773 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008774 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8775 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008776 if (eap->cmdidx == CMD_mksession)
8777 {
8778 if (put_line(fd, "unlet SessionLoad") == FAIL)
8779 failed = TRUE;
8780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008781 }
8782#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008783 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8784 failed = TRUE;
8785
Bram Moolenaar071d4272004-06-13 20:20:40 +00008786 failed |= fclose(fd);
8787
8788 if (failed)
8789 EMSG(_(e_write));
8790#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8791 else if (eap->cmdidx == CMD_mksession)
8792 {
8793 /* successful session write - set this_session var */
8794 char_u tbuf[MAXPATHL];
8795
8796 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8797 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8798 }
8799#endif
8800#ifdef MKSESSION_NL
8801 mksession_nl = FALSE;
8802#endif
8803 }
8804
8805#ifdef FEAT_BROWSE
8806theend:
8807 vim_free(browseFile);
8808#endif
8809#ifdef FEAT_SESSION
8810 vim_free(viewFile);
8811#endif
8812}
8813
Bram Moolenaardf177f62005-02-22 08:39:57 +00008814#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8815 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008816/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008817 int
8818vim_mkdir_emsg(name, prot)
8819 char_u *name;
8820 int prot;
8821{
8822 if (vim_mkdir(name, prot) != 0)
8823 {
8824 EMSG2(_("E739: Cannot create directory: %s"), name);
8825 return FAIL;
8826 }
8827 return OK;
8828}
8829#endif
8830
Bram Moolenaar071d4272004-06-13 20:20:40 +00008831/*
8832 * Open a file for writing for an Ex command, with some checks.
8833 * Return file descriptor, or NULL on failure.
8834 */
8835 FILE *
8836open_exfile(fname, forceit, mode)
8837 char_u *fname;
8838 int forceit;
8839 char *mode; /* "w" for create new file or "a" for append */
8840{
8841 FILE *fd;
8842
8843#ifdef UNIX
8844 /* with Unix it is possible to open a directory */
8845 if (mch_isdir(fname))
8846 {
8847 EMSG2(_(e_isadir2), fname);
8848 return NULL;
8849 }
8850#endif
8851 if (!forceit && *mode != 'a' && vim_fexists(fname))
8852 {
8853 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8854 return NULL;
8855 }
8856
8857 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8858 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8859
8860 return fd;
8861}
8862
8863/*
8864 * ":mark" and ":k".
8865 */
8866 static void
8867ex_mark(eap)
8868 exarg_T *eap;
8869{
8870 pos_T pos;
8871
8872 if (*eap->arg == NUL) /* No argument? */
8873 EMSG(_(e_argreq));
8874 else if (eap->arg[1] != NUL) /* more than one character? */
8875 EMSG(_(e_trailing));
8876 else
8877 {
8878 pos = curwin->w_cursor; /* save curwin->w_cursor */
8879 curwin->w_cursor.lnum = eap->line2;
8880 beginline(BL_WHITE | BL_FIX);
8881 if (setmark(*eap->arg) == FAIL) /* set mark */
8882 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8883 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8884 }
8885}
8886
8887/*
8888 * Update w_topline, w_leftcol and the cursor position.
8889 */
8890 void
8891update_topline_cursor()
8892{
8893 check_cursor(); /* put cursor on valid line */
8894 update_topline();
8895 if (!curwin->w_p_wrap)
8896 validate_cursor();
8897 update_curswant();
8898}
8899
8900#ifdef FEAT_EX_EXTRA
8901/*
8902 * ":normal[!] {commands}": Execute normal mode commands.
8903 */
8904 static void
8905ex_normal(eap)
8906 exarg_T *eap;
8907{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008908 int save_msg_scroll = msg_scroll;
8909 int save_restart_edit = restart_edit;
8910 int save_msg_didout = msg_didout;
8911 int save_State = State;
8912 tasave_T tabuf;
8913 int save_insertmode = p_im;
8914 int save_finish_op = finish_op;
8915#ifdef FEAT_MBYTE
8916 char_u *arg = NULL;
8917 int l;
8918 char_u *p;
8919#endif
8920
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008921 if (ex_normal_lock > 0)
8922 {
8923 EMSG(_(e_secure));
8924 return;
8925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008926 if (ex_normal_busy >= p_mmd)
8927 {
8928 EMSG(_("E192: Recursive use of :normal too deep"));
8929 return;
8930 }
8931 ++ex_normal_busy;
8932
8933 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8934 restart_edit = 0; /* don't go to Insert mode */
8935 p_im = FALSE; /* don't use 'insertmode' */
8936
8937#ifdef FEAT_MBYTE
8938 /*
8939 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8940 * this for the K_SPECIAL leading byte, otherwise special keys will not
8941 * work.
8942 */
8943 if (has_mbyte)
8944 {
8945 int len = 0;
8946
8947 /* Count the number of characters to be escaped. */
8948 for (p = eap->arg; *p != NUL; ++p)
8949 {
8950# ifdef FEAT_GUI
8951 if (*p == CSI) /* leadbyte CSI */
8952 len += 2;
8953# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008954 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008955 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8956# ifdef FEAT_GUI
8957 || *p == CSI
8958# endif
8959 )
8960 len += 2;
8961 }
8962 if (len > 0)
8963 {
8964 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8965 if (arg != NULL)
8966 {
8967 len = 0;
8968 for (p = eap->arg; *p != NUL; ++p)
8969 {
8970 arg[len++] = *p;
8971# ifdef FEAT_GUI
8972 if (*p == CSI)
8973 {
8974 arg[len++] = KS_EXTRA;
8975 arg[len++] = (int)KE_CSI;
8976 }
8977# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008978 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008979 {
8980 arg[len++] = *++p;
8981 if (*p == K_SPECIAL)
8982 {
8983 arg[len++] = KS_SPECIAL;
8984 arg[len++] = KE_FILLER;
8985 }
8986# ifdef FEAT_GUI
8987 else if (*p == CSI)
8988 {
8989 arg[len++] = KS_EXTRA;
8990 arg[len++] = (int)KE_CSI;
8991 }
8992# endif
8993 }
8994 arg[len] = NUL;
8995 }
8996 }
8997 }
8998 }
8999#endif
9000
9001 /*
9002 * Save the current typeahead. This is required to allow using ":normal"
9003 * from an event handler and makes sure we don't hang when the argument
9004 * ends with half a command.
9005 */
9006 save_typeahead(&tabuf);
9007 if (tabuf.typebuf_valid)
9008 {
9009 /*
9010 * Repeat the :normal command for each line in the range. When no
9011 * range given, execute it just once, without positioning the cursor
9012 * first.
9013 */
9014 do
9015 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009016 if (eap->addr_count != 0)
9017 {
9018 curwin->w_cursor.lnum = eap->line1++;
9019 curwin->w_cursor.col = 0;
9020 }
9021
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009022 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00009023#ifdef FEAT_MBYTE
9024 arg != NULL ? arg :
9025#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009026 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009027 }
9028 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9029 }
9030
9031 /* Might not return to the main loop when in an event handler. */
9032 update_topline_cursor();
9033
9034 /* Restore the previous typeahead. */
9035 restore_typeahead(&tabuf);
9036
9037 --ex_normal_busy;
9038 msg_scroll = save_msg_scroll;
9039 restart_edit = save_restart_edit;
9040 p_im = save_insertmode;
9041 finish_op = save_finish_op;
9042 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9043
9044 /* Restore the state (needed when called from a function executed for
9045 * 'indentexpr'). */
9046 State = save_State;
9047#ifdef FEAT_MBYTE
9048 vim_free(arg);
9049#endif
9050}
9051
9052/*
Bram Moolenaar64969662005-12-14 21:59:55 +00009053 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00009054 */
9055 static void
9056ex_startinsert(eap)
9057 exarg_T *eap;
9058{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009059 if (eap->forceit)
9060 {
9061 coladvance((colnr_T)MAXCOL);
9062 curwin->w_curswant = MAXCOL;
9063 curwin->w_set_curswant = FALSE;
9064 }
9065
Bram Moolenaara40c5002005-01-09 21:16:21 +00009066 /* Ignore the command when already in Insert mode. Inserting an
9067 * expression register that invokes a function can do this. */
9068 if (State & INSERT)
9069 return;
9070
Bram Moolenaar64969662005-12-14 21:59:55 +00009071 if (eap->cmdidx == CMD_startinsert)
9072 restart_edit = 'a';
9073 else if (eap->cmdidx == CMD_startreplace)
9074 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009075 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009076 restart_edit = 'V';
9077
9078 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009079 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009080 if (eap->cmdidx == CMD_startinsert)
9081 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009082 curwin->w_curswant = 0; /* avoid MAXCOL */
9083 }
9084}
9085
9086/*
9087 * ":stopinsert"
9088 */
9089/*ARGSUSED*/
9090 static void
9091ex_stopinsert(eap)
9092 exarg_T *eap;
9093{
9094 restart_edit = 0;
9095 stop_insert_mode = TRUE;
9096}
9097#endif
9098
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009099#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9100/*
9101 * Execute normal mode command "cmd".
9102 * "remap" can be REMAP_NONE or REMAP_YES.
9103 */
9104 void
9105exec_normal_cmd(cmd, remap, silent)
9106 char_u *cmd;
9107 int remap;
9108 int silent;
9109{
9110 oparg_T oa;
9111
9112 /*
9113 * Stuff the argument into the typeahead buffer.
9114 * Execute normal_cmd() until there is no typeahead left.
9115 */
9116 clear_oparg(&oa);
9117 finish_op = FALSE;
9118 ins_typebuf(cmd, remap, 0, TRUE, silent);
9119 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9120 && !got_int)
9121 {
9122 update_topline_cursor();
9123 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9124 }
9125}
9126#endif
9127
Bram Moolenaar071d4272004-06-13 20:20:40 +00009128#ifdef FEAT_FIND_ID
9129 static void
9130ex_checkpath(eap)
9131 exarg_T *eap;
9132{
9133 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9134 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9135 (linenr_T)1, (linenr_T)MAXLNUM);
9136}
9137
9138#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9139/*
9140 * ":psearch"
9141 */
9142 static void
9143ex_psearch(eap)
9144 exarg_T *eap;
9145{
9146 g_do_tagpreview = p_pvh;
9147 ex_findpat(eap);
9148 g_do_tagpreview = 0;
9149}
9150#endif
9151
9152 static void
9153ex_findpat(eap)
9154 exarg_T *eap;
9155{
9156 int whole = TRUE;
9157 long n;
9158 char_u *p;
9159 int action;
9160
9161 switch (cmdnames[eap->cmdidx].cmd_name[2])
9162 {
9163 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9164 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9165 action = ACTION_GOTO;
9166 else
9167 action = ACTION_SHOW;
9168 break;
9169 case 'i': /* ":ilist" and ":dlist" */
9170 action = ACTION_SHOW_ALL;
9171 break;
9172 case 'u': /* ":ijump" and ":djump" */
9173 action = ACTION_GOTO;
9174 break;
9175 default: /* ":isplit" and ":dsplit" */
9176 action = ACTION_SPLIT;
9177 break;
9178 }
9179
9180 n = 1;
9181 if (vim_isdigit(*eap->arg)) /* get count */
9182 {
9183 n = getdigits(&eap->arg);
9184 eap->arg = skipwhite(eap->arg);
9185 }
9186 if (*eap->arg == '/') /* Match regexp, not just whole words */
9187 {
9188 whole = FALSE;
9189 ++eap->arg;
9190 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9191 if (*p)
9192 {
9193 *p++ = NUL;
9194 p = skipwhite(p);
9195
9196 /* Check for trailing illegal characters */
9197 if (!ends_excmd(*p))
9198 eap->errmsg = e_trailing;
9199 else
9200 eap->nextcmd = check_nextcmd(p);
9201 }
9202 }
9203 if (!eap->skip)
9204 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9205 whole, !eap->forceit,
9206 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9207 n, action, eap->line1, eap->line2);
9208}
9209#endif
9210
9211#ifdef FEAT_WINDOWS
9212
9213# ifdef FEAT_QUICKFIX
9214/*
9215 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9216 */
9217 static void
9218ex_ptag(eap)
9219 exarg_T *eap;
9220{
9221 g_do_tagpreview = p_pvh;
9222 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9223}
9224
9225/*
9226 * ":pedit"
9227 */
9228 static void
9229ex_pedit(eap)
9230 exarg_T *eap;
9231{
9232 win_T *curwin_save = curwin;
9233
9234 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009235 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009236 keep_help_flag = curwin_save->w_buffer->b_help;
9237 do_exedit(eap, NULL);
9238 keep_help_flag = FALSE;
9239 if (curwin != curwin_save && win_valid(curwin_save))
9240 {
9241 /* Return cursor to where we were */
9242 validate_cursor();
9243 redraw_later(VALID);
9244 win_enter(curwin_save, TRUE);
9245 }
9246 g_do_tagpreview = 0;
9247}
9248# endif
9249
9250/*
9251 * ":stag", ":stselect" and ":stjump".
9252 */
9253 static void
9254ex_stag(eap)
9255 exarg_T *eap;
9256{
9257 postponed_split = -1;
9258 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009259 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009260 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9261 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009262 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009263}
9264#endif
9265
9266/*
9267 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9268 */
9269 static void
9270ex_tag(eap)
9271 exarg_T *eap;
9272{
9273 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9274}
9275
9276 static void
9277ex_tag_cmd(eap, name)
9278 exarg_T *eap;
9279 char_u *name;
9280{
9281 int cmd;
9282
9283 switch (name[1])
9284 {
9285 case 'j': cmd = DT_JUMP; /* ":tjump" */
9286 break;
9287 case 's': cmd = DT_SELECT; /* ":tselect" */
9288 break;
9289 case 'p': cmd = DT_PREV; /* ":tprevious" */
9290 break;
9291 case 'N': cmd = DT_PREV; /* ":tNext" */
9292 break;
9293 case 'n': cmd = DT_NEXT; /* ":tnext" */
9294 break;
9295 case 'o': cmd = DT_POP; /* ":pop" */
9296 break;
9297 case 'f': /* ":tfirst" */
9298 case 'r': cmd = DT_FIRST; /* ":trewind" */
9299 break;
9300 case 'l': cmd = DT_LAST; /* ":tlast" */
9301 break;
9302 default: /* ":tag" */
9303#ifdef FEAT_CSCOPE
9304 if (p_cst)
9305 {
9306 do_cstag(eap);
9307 return;
9308 }
9309#endif
9310 cmd = DT_TAG;
9311 break;
9312 }
9313
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009314 if (name[0] == 'l')
9315 {
9316#ifndef FEAT_QUICKFIX
9317 ex_ni(eap);
9318 return;
9319#else
9320 cmd = DT_LTAG;
9321#endif
9322 }
9323
Bram Moolenaar071d4272004-06-13 20:20:40 +00009324 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9325 eap->forceit, TRUE);
9326}
9327
9328/*
9329 * Evaluate cmdline variables.
9330 *
9331 * change '%' to curbuf->b_ffname
9332 * '#' to curwin->w_altfile
9333 * '<cword>' to word under the cursor
9334 * '<cWORD>' to WORD under the cursor
9335 * '<cfile>' to path name under the cursor
9336 * '<sfile>' to sourced file name
9337 * '<afile>' to file name for autocommand
9338 * '<abuf>' to buffer number for autocommand
9339 * '<amatch>' to matching name for autocommand
9340 *
9341 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9342 * "" for error without a message) and NULL is returned.
9343 * Returns an allocated string if a valid match was found.
9344 * Returns NULL if no match was found. "usedlen" then still contains the
9345 * number of characters to skip.
9346 */
9347 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009348eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009349 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009350 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009351 int *usedlen; /* characters after src that are used */
9352 linenr_T *lnump; /* line number for :e command, or NULL */
9353 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009354 int *escaped; /* return value has escaped white space (can
9355 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009356{
9357 int i;
9358 char_u *s;
9359 char_u *result;
9360 char_u *resultbuf = NULL;
9361 int resultlen;
9362 buf_T *buf;
9363 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9364 int spec_idx;
9365#ifdef FEAT_MODIFY_FNAME
9366 int skip_mod = FALSE;
9367#endif
9368 static char *(spec_str[]) =
9369 {
9370 "%",
9371#define SPEC_PERC 0
9372 "#",
9373#define SPEC_HASH 1
9374 "<cword>", /* cursor word */
9375#define SPEC_CWORD 2
9376 "<cWORD>", /* cursor WORD */
9377#define SPEC_CCWORD 3
9378 "<cfile>", /* cursor path name */
9379#define SPEC_CFILE 4
9380 "<sfile>", /* ":so" file name */
9381#define SPEC_SFILE 5
9382#ifdef FEAT_AUTOCMD
9383 "<afile>", /* autocommand file name */
9384# define SPEC_AFILE 6
9385 "<abuf>", /* autocommand buffer number */
9386# define SPEC_ABUF 7
9387 "<amatch>", /* autocommand match name */
9388# define SPEC_AMATCH 8
9389#endif
9390#ifdef FEAT_CLIENTSERVER
9391 "<client>"
9392# define SPEC_CLIENT 9
9393#endif
9394 };
9395#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9396
9397#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9398 char_u strbuf[30];
9399#endif
9400
9401 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009402 if (escaped != NULL)
9403 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009404
9405 /*
9406 * Check if there is something to do.
9407 */
9408 for (spec_idx = 0; spec_idx < SPEC_COUNT; ++spec_idx)
9409 {
9410 *usedlen = (int)STRLEN(spec_str[spec_idx]);
9411 if (STRNCMP(src, spec_str[spec_idx], *usedlen) == 0)
9412 break;
9413 }
9414 if (spec_idx == SPEC_COUNT) /* no match */
9415 {
9416 *usedlen = 1;
9417 return NULL;
9418 }
9419
9420 /*
9421 * Skip when preceded with a backslash "\%" and "\#".
9422 * Note: In "\\%" the % is also not recognized!
9423 */
9424 if (src > srcstart && src[-1] == '\\')
9425 {
9426 *usedlen = 0;
Bram Moolenaar81870892007-11-11 18:17:28 +00009427 mch_memmove(src - 1, src, STRLEN(src) + 1); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009428 return NULL;
9429 }
9430
9431 /*
9432 * word or WORD under cursor
9433 */
9434 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9435 {
9436 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9437 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9438 if (resultlen == 0)
9439 {
9440 *errormsg = (char_u *)"";
9441 return NULL;
9442 }
9443 }
9444
9445 /*
9446 * '#': Alternate file name
9447 * '%': Current file name
9448 * File name under the cursor
9449 * File name for autocommand
9450 * and following modifiers
9451 */
9452 else
9453 {
9454 switch (spec_idx)
9455 {
9456 case SPEC_PERC: /* '%': current file */
9457 if (curbuf->b_fname == NULL)
9458 {
9459 result = (char_u *)"";
9460 valid = 0; /* Must have ":p:h" to be valid */
9461 }
9462 else
9463#ifdef RISCOS
9464 /* Always use the full path for RISC OS if possible. */
9465 result = curbuf->b_ffname;
9466 if (result == NULL)
9467 result = curbuf->b_fname;
9468#else
9469 result = curbuf->b_fname;
9470#endif
9471 break;
9472
9473 case SPEC_HASH: /* '#' or "#99": alternate file */
9474 if (src[1] == '#') /* "##": the argument list */
9475 {
9476 result = arg_all();
9477 resultbuf = result;
9478 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009479 if (escaped != NULL)
9480 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009481#ifdef FEAT_MODIFY_FNAME
9482 skip_mod = TRUE;
9483#endif
9484 break;
9485 }
9486 s = src + 1;
9487 i = (int)getdigits(&s);
9488 *usedlen = (int)(s - src); /* length of what we expand */
9489
9490 buf = buflist_findnr(i);
9491 if (buf == NULL)
9492 {
9493 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9494 return NULL;
9495 }
9496 if (lnump != NULL)
9497 *lnump = ECMD_LAST;
9498 if (buf->b_fname == NULL)
9499 {
9500 result = (char_u *)"";
9501 valid = 0; /* Must have ":p:h" to be valid */
9502 }
9503 else
9504 result = buf->b_fname;
9505 break;
9506
9507#ifdef FEAT_SEARCHPATH
9508 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009509 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009510 if (result == NULL)
9511 {
9512 *errormsg = (char_u *)"";
9513 return NULL;
9514 }
9515 resultbuf = result; /* remember allocated string */
9516 break;
9517#endif
9518
9519#ifdef FEAT_AUTOCMD
9520 case SPEC_AFILE: /* file name for autocommand */
9521 result = autocmd_fname;
9522 if (result == NULL)
9523 {
9524 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9525 return NULL;
9526 }
Bram Moolenaara0174af2008-01-02 20:08:25 +00009527 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009528 break;
9529
9530 case SPEC_ABUF: /* buffer number for autocommand */
9531 if (autocmd_bufnr <= 0)
9532 {
9533 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9534 return NULL;
9535 }
9536 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9537 result = strbuf;
9538 break;
9539
9540 case SPEC_AMATCH: /* match name for autocommand */
9541 result = autocmd_match;
9542 if (result == NULL)
9543 {
9544 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9545 return NULL;
9546 }
9547 break;
9548
9549#endif
9550 case SPEC_SFILE: /* file name for ":so" command */
9551 result = sourcing_name;
9552 if (result == NULL)
9553 {
9554 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9555 return NULL;
9556 }
9557 break;
9558#if defined(FEAT_CLIENTSERVER)
9559 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009560 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9561 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009562 result = strbuf;
9563 break;
9564#endif
9565 }
9566
9567 resultlen = (int)STRLEN(result); /* length of new string */
9568 if (src[*usedlen] == '<') /* remove the file name extension */
9569 {
9570 ++*usedlen;
9571#ifdef RISCOS
9572 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9573#else
9574 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9575#endif
9576 resultlen = (int)(s - result);
9577 }
9578#ifdef FEAT_MODIFY_FNAME
9579 else if (!skip_mod)
9580 {
9581 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9582 &resultlen);
9583 if (result == NULL)
9584 {
9585 *errormsg = (char_u *)"";
9586 return NULL;
9587 }
9588 }
9589#endif
9590 }
9591
9592 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9593 {
9594 if (valid != VALID_HEAD + VALID_PATH)
9595 /* xgettext:no-c-format */
9596 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9597 else
9598 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9599 result = NULL;
9600 }
9601 else
9602 result = vim_strnsave(result, resultlen);
9603 vim_free(resultbuf);
9604 return result;
9605}
9606
9607/*
9608 * Concatenate all files in the argument list, separated by spaces, and return
9609 * it in one allocated string.
9610 * Spaces and backslashes in the file names are escaped with a backslash.
9611 * Returns NULL when out of memory.
9612 */
9613 static char_u *
9614arg_all()
9615{
9616 int len;
9617 int idx;
9618 char_u *retval = NULL;
9619 char_u *p;
9620
9621 /*
9622 * Do this loop two times:
9623 * first time: compute the total length
9624 * second time: concatenate the names
9625 */
9626 for (;;)
9627 {
9628 len = 0;
9629 for (idx = 0; idx < ARGCOUNT; ++idx)
9630 {
9631 p = alist_name(&ARGLIST[idx]);
9632 if (p != NULL)
9633 {
9634 if (len > 0)
9635 {
9636 /* insert a space in between names */
9637 if (retval != NULL)
9638 retval[len] = ' ';
9639 ++len;
9640 }
9641 for ( ; *p != NUL; ++p)
9642 {
9643 if (*p == ' ' || *p == '\\')
9644 {
9645 /* insert a backslash */
9646 if (retval != NULL)
9647 retval[len] = '\\';
9648 ++len;
9649 }
9650 if (retval != NULL)
9651 retval[len] = *p;
9652 ++len;
9653 }
9654 }
9655 }
9656
9657 /* second time: break here */
9658 if (retval != NULL)
9659 {
9660 retval[len] = NUL;
9661 break;
9662 }
9663
9664 /* allocate memory */
9665 retval = alloc(len + 1);
9666 if (retval == NULL)
9667 break;
9668 }
9669
9670 return retval;
9671}
9672
9673#if defined(FEAT_AUTOCMD) || defined(PROTO)
9674/*
9675 * Expand the <sfile> string in "arg".
9676 *
9677 * Returns an allocated string, or NULL for any error.
9678 */
9679 char_u *
9680expand_sfile(arg)
9681 char_u *arg;
9682{
9683 char_u *errormsg;
9684 int len;
9685 char_u *result;
9686 char_u *newres;
9687 char_u *repl;
9688 int srclen;
9689 char_u *p;
9690
9691 result = vim_strsave(arg);
9692 if (result == NULL)
9693 return NULL;
9694
9695 for (p = result; *p; )
9696 {
9697 if (STRNCMP(p, "<sfile>", 7) != 0)
9698 ++p;
9699 else
9700 {
9701 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009702 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009703 if (errormsg != NULL)
9704 {
9705 if (*errormsg)
9706 emsg(errormsg);
9707 vim_free(result);
9708 return NULL;
9709 }
9710 if (repl == NULL) /* no match (cannot happen) */
9711 {
9712 p += srclen;
9713 continue;
9714 }
9715 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9716 newres = alloc(len);
9717 if (newres == NULL)
9718 {
9719 vim_free(repl);
9720 vim_free(result);
9721 return NULL;
9722 }
9723 mch_memmove(newres, result, (size_t)(p - result));
9724 STRCPY(newres + (p - result), repl);
9725 len = (int)STRLEN(newres);
9726 STRCAT(newres, p + srclen);
9727 vim_free(repl);
9728 vim_free(result);
9729 result = newres;
9730 p = newres + len; /* continue after the match */
9731 }
9732 }
9733
9734 return result;
9735}
9736#endif
9737
9738#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009739static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9740 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009741static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9742static frame_T *ses_skipframe __ARGS((frame_T *fr));
9743static int ses_do_frame __ARGS((frame_T *fr));
9744static int ses_do_win __ARGS((win_T *wp));
9745static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9746static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9747static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9748
9749/*
9750 * Write openfile commands for the current buffers to an .exrc file.
9751 * Return FAIL on error, OK otherwise.
9752 */
9753 static int
9754makeopens(fd, dirnow)
9755 FILE *fd;
9756 char_u *dirnow; /* Current directory name */
9757{
9758 buf_T *buf;
9759 int only_save_windows = TRUE;
9760 int nr;
9761 int cnr = 1;
9762 int restore_size = TRUE;
9763 win_T *wp;
9764 char_u *sname;
9765 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009766 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009767 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009768 frame_T *tab_topframe;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009769 int cur_arg_idx = 0;
Bram Moolenaar383c6f52008-01-04 15:01:07 +00009770 int next_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009771
9772 if (ssop_flags & SSOP_BUFFERS)
9773 only_save_windows = FALSE; /* Save ALL buffers */
9774
9775 /*
9776 * Begin by setting the this_session variable, and then other
9777 * sessionable variables.
9778 */
9779#ifdef FEAT_EVAL
9780 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9781 return FAIL;
9782 if (ssop_flags & SSOP_GLOBALS)
9783 if (store_session_globals(fd) == FAIL)
9784 return FAIL;
9785#endif
9786
9787 /*
9788 * Close all windows but one.
9789 */
9790 if (put_line(fd, "silent only") == FAIL)
9791 return FAIL;
9792
9793 /*
9794 * Now a :cd command to the session directory or the current directory
9795 */
9796 if (ssop_flags & SSOP_SESDIR)
9797 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009798 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9799 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009800 return FAIL;
9801 }
9802 else if (ssop_flags & SSOP_CURDIR)
9803 {
9804 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9805 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009806 || fputs("cd ", fd) < 0
9807 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9808 || put_eol(fd) == FAIL)
9809 {
9810 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009811 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009813 vim_free(sname);
9814 }
9815
9816 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009817 * If there is an empty, unnamed buffer we will wipe it out later.
9818 * Remember the buffer number.
9819 */
9820 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9821 return FAIL;
9822 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9823 return FAIL;
9824 if (put_line(fd, "endif") == FAIL)
9825 return FAIL;
9826
9827 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009828 * Now save the current files, current buffer first.
9829 */
9830 if (put_line(fd, "set shortmess=aoO") == FAIL)
9831 return FAIL;
9832
9833 /* Now put the other buffers into the buffer list */
9834 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9835 {
9836 if (!(only_save_windows && buf->b_nwindows == 0)
9837 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9838 && buf->b_fname != NULL
9839 && buf->b_p_bl)
9840 {
9841 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9842 : buf->b_wininfo->wi_fpos.lnum) < 0
9843 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9844 return FAIL;
9845 }
9846 }
9847
9848 /* the global argument list */
9849 if (ses_arglist(fd, "args", &global_alist.al_ga,
9850 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9851 return FAIL;
9852
9853 if (ssop_flags & SSOP_RESIZE)
9854 {
9855 /* Note: after the restore we still check it worked!*/
9856 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9857 || put_eol(fd) == FAIL)
9858 return FAIL;
9859 }
9860
9861#ifdef FEAT_GUI
9862 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9863 {
9864 int x, y;
9865
9866 if (gui_mch_get_winpos(&x, &y) == OK)
9867 {
9868 /* Note: after the restore we still check it worked!*/
9869 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9870 return FAIL;
9871 }
9872 }
9873#endif
9874
9875 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009876 * May repeat putting Windows for each tab, when "tabpages" is in
9877 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009878 * Don't use goto_tabpage(), it may change directory and trigger
9879 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009880 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009881 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009882 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009883 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009884 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009885 int need_tabnew = FALSE;
9886
Bram Moolenaar18144c82006-04-12 21:52:12 +00009887 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009888 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009889 tabpage_T *tp = find_tabpage(tabnr);
9890
9891 if (tp == NULL)
9892 break; /* done all tab pages */
9893 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009894 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009895 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009896 tab_topframe = topframe;
9897 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009898 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009899 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009900 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009901 tab_topframe = tp->tp_topframe;
9902 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009903 if (tabnr > 1)
9904 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009906
Bram Moolenaar18144c82006-04-12 21:52:12 +00009907 /*
9908 * Before creating the window layout, try loading one file. If this
9909 * is aborted we don't end up with a number of useless windows.
9910 * This may have side effects! (e.g., compressed or network file).
9911 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009912 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009913 {
9914 if (ses_do_win(wp)
9915 && wp->w_buffer->b_ffname != NULL
9916 && !wp->w_buffer->b_help
9917#ifdef FEAT_QUICKFIX
9918 && !bt_nofile(wp->w_buffer)
9919#endif
9920 )
9921 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009922 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009923 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9924 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009925 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009926 if (!wp->w_arg_idx_invalid)
9927 edited_win = wp;
9928 break;
9929 }
9930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009931
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009932 /* If no file got edited create an empty tab page. */
9933 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9934 return FAIL;
9935
Bram Moolenaar18144c82006-04-12 21:52:12 +00009936 /*
9937 * Save current window layout.
9938 */
9939 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009940 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009941 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009942 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009943 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
9944 return FAIL;
9945 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
9946 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009947
Bram Moolenaar18144c82006-04-12 21:52:12 +00009948 /*
9949 * Check if window sizes can be restored (no windows omitted).
9950 * Remember the window number of the current window after restoring.
9951 */
9952 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009953 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009954 {
9955 if (ses_do_win(wp))
9956 ++nr;
9957 else
9958 restore_size = FALSE;
9959 if (curwin == wp)
9960 cnr = nr;
9961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009962
Bram Moolenaar18144c82006-04-12 21:52:12 +00009963 /* Go to the first window. */
9964 if (put_line(fd, "wincmd t") == FAIL)
9965 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009966
Bram Moolenaar18144c82006-04-12 21:52:12 +00009967 /*
9968 * If more than one window, see if sizes can be restored.
9969 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
9970 * resized when moving between windows.
9971 * Do this before restoring the view, so that the topline and the
9972 * cursor can be set. This is done again below.
9973 */
9974 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
9975 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009976 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009977 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009978
Bram Moolenaar18144c82006-04-12 21:52:12 +00009979 /*
9980 * Restore the view of the window (options, file, cursor, etc.).
9981 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009982 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009983 {
9984 if (!ses_do_win(wp))
9985 continue;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009986 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
9987 cur_arg_idx) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009988 return FAIL;
9989 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
9990 return FAIL;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009991 next_arg_idx = wp->w_arg_idx;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009992 }
9993
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009994 /* The argument index in the first tab page is zero, need to set it in
9995 * each window. For further tab pages it's the window where we do
9996 * "tabedit". */
9997 cur_arg_idx = next_arg_idx;
9998
Bram Moolenaar18144c82006-04-12 21:52:12 +00009999 /*
10000 * Restore cursor to the current window if it's not the first one.
10001 */
10002 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
10003 || put_eol(fd) == FAIL))
10004 return FAIL;
10005
10006 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000010007 * Restore window sizes again after jumping around in windows, because
10008 * the current window has a minimum size while others may not.
10009 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010010 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010011 return FAIL;
10012
Bram Moolenaar18144c82006-04-12 21:52:12 +000010013 /* Don't continue in another tab page when doing only the current one
10014 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010015 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +000010016 break;
10017 }
10018
10019 if (ssop_flags & SSOP_TABPAGES)
10020 {
Bram Moolenaar18144c82006-04-12 21:52:12 +000010021 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
10022 || put_eol(fd) == FAIL)
10023 return FAIL;
10024 }
10025
Bram Moolenaar9c102382006-05-03 21:26:49 +000010026 /*
10027 * Wipe out an empty unnamed buffer we started in.
10028 */
10029 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
10030 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +000010031 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +000010032 return FAIL;
10033 if (put_line(fd, "endif") == FAIL)
10034 return FAIL;
10035 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
10036 return FAIL;
10037
10038 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10039 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10040 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10041 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010042
10043 /*
10044 * Lastly, execute the x.vim file if it exists.
10045 */
10046 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10047 || put_line(fd, "if file_readable(s:sx)") == FAIL
10048 || put_line(fd, " exe \"source \" . s:sx") == FAIL
10049 || put_line(fd, "endif") == FAIL)
10050 return FAIL;
10051
10052 return OK;
10053}
10054
10055 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010056ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010057 FILE *fd;
10058 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010059 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010060{
10061 int n = 0;
10062 win_T *wp;
10063
10064 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10065 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010066 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010067 {
10068 if (!ses_do_win(wp))
10069 continue;
10070 ++n;
10071
10072 /* restore height when not full height */
10073 if (wp->w_height + wp->w_status_height < topframe->fr_height
10074 && (fprintf(fd,
10075 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10076 n, (long)wp->w_height, Rows / 2, Rows) < 0
10077 || put_eol(fd) == FAIL))
10078 return FAIL;
10079
10080 /* restore width when not full width */
10081 if (wp->w_width < Columns && (fprintf(fd,
10082 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10083 n, (long)wp->w_width, Columns / 2, Columns) < 0
10084 || put_eol(fd) == FAIL))
10085 return FAIL;
10086 }
10087 }
10088 else
10089 {
10090 /* Just equalise window sizes */
10091 if (put_line(fd, "wincmd =") == FAIL)
10092 return FAIL;
10093 }
10094 return OK;
10095}
10096
10097/*
10098 * Write commands to "fd" to recursively create windows for frame "fr",
10099 * horizontally and vertically split.
10100 * After the commands the last window in the frame is the current window.
10101 * Returns FAIL when writing the commands to "fd" fails.
10102 */
10103 static int
10104ses_win_rec(fd, fr)
10105 FILE *fd;
10106 frame_T *fr;
10107{
10108 frame_T *frc;
10109 int count = 0;
10110
10111 if (fr->fr_layout != FR_LEAF)
10112 {
10113 /* Find first frame that's not skipped and then create a window for
10114 * each following one (first frame is already there). */
10115 frc = ses_skipframe(fr->fr_child);
10116 if (frc != NULL)
10117 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10118 {
10119 /* Make window as big as possible so that we have lots of room
10120 * to split. */
10121 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10122 || put_line(fd, fr->fr_layout == FR_COL
10123 ? "split" : "vsplit") == FAIL)
10124 return FAIL;
10125 ++count;
10126 }
10127
10128 /* Go back to the first window. */
10129 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10130 ? "%dwincmd k" : "%dwincmd h", count) < 0
10131 || put_eol(fd) == FAIL))
10132 return FAIL;
10133
10134 /* Recursively create frames/windows in each window of this column or
10135 * row. */
10136 frc = ses_skipframe(fr->fr_child);
10137 while (frc != NULL)
10138 {
10139 ses_win_rec(fd, frc);
10140 frc = ses_skipframe(frc->fr_next);
10141 /* Go to next window. */
10142 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10143 return FAIL;
10144 }
10145 }
10146 return OK;
10147}
10148
10149/*
10150 * Skip frames that don't contain windows we want to save in the Session.
10151 * Returns NULL when there none.
10152 */
10153 static frame_T *
10154ses_skipframe(fr)
10155 frame_T *fr;
10156{
10157 frame_T *frc;
10158
10159 for (frc = fr; frc != NULL; frc = frc->fr_next)
10160 if (ses_do_frame(frc))
10161 break;
10162 return frc;
10163}
10164
10165/*
10166 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10167 * the Session.
10168 */
10169 static int
10170ses_do_frame(fr)
10171 frame_T *fr;
10172{
10173 frame_T *frc;
10174
10175 if (fr->fr_layout == FR_LEAF)
10176 return ses_do_win(fr->fr_win);
10177 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10178 if (ses_do_frame(frc))
10179 return TRUE;
10180 return FALSE;
10181}
10182
10183/*
10184 * Return non-zero if window "wp" is to be stored in the Session.
10185 */
10186 static int
10187ses_do_win(wp)
10188 win_T *wp;
10189{
10190 if (wp->w_buffer->b_fname == NULL
10191#ifdef FEAT_QUICKFIX
10192 /* When 'buftype' is "nofile" can't restore the window contents. */
10193 || bt_nofile(wp->w_buffer)
10194#endif
10195 )
10196 return (ssop_flags & SSOP_BLANK);
10197 if (wp->w_buffer->b_help)
10198 return (ssop_flags & SSOP_HELP);
10199 return TRUE;
10200}
10201
10202/*
10203 * Write commands to "fd" to restore the view of a window.
10204 * Caller must make sure 'scrolloff' is zero.
10205 */
10206 static int
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010207put_view(fd, wp, add_edit, flagp, current_arg_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010208 FILE *fd;
10209 win_T *wp;
10210 int add_edit; /* add ":edit" command to view */
10211 unsigned *flagp; /* vop_flags or ssop_flags */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010212 int current_arg_idx; /* current argument index of the window, use
10213 * -1 if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010214{
10215 win_T *save_curwin;
10216 int f;
10217 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010218 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010219
10220 /* Always restore cursor position for ":mksession". For ":mkview" only
10221 * when 'viewoptions' contains "cursor". */
10222 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10223
10224 /*
10225 * Local argument list.
10226 */
10227 if (wp->w_alist == &global_alist)
10228 {
10229 if (put_line(fd, "argglobal") == FAIL)
10230 return FAIL;
10231 }
10232 else
10233 {
10234 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10235 flagp == &vop_flags
10236 || !(*flagp & SSOP_CURDIR)
10237 || wp->w_localdir != NULL, flagp) == FAIL)
10238 return FAIL;
10239 }
10240
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010241 /* Only when part of a session: restore the argument index. Some
10242 * arguments may have been deleted, check if the index is valid. */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010243 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx <= WARGCOUNT(wp)
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010244 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010245 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010246 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000010247 || put_eol(fd) == FAIL)
10248 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010249 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010250 }
10251
10252 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010253 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010254 {
10255 /*
10256 * Load the file.
10257 */
10258 if (wp->w_buffer->b_ffname != NULL
10259#ifdef FEAT_QUICKFIX
10260 && !bt_nofile(wp->w_buffer)
10261#endif
10262 )
10263 {
10264 /*
10265 * Editing a file in this buffer: use ":edit file".
10266 * This may have side effects! (e.g., compressed or network file).
10267 */
10268 if (fputs("edit ", fd) < 0
10269 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10270 return FAIL;
10271 }
10272 else
10273 {
10274 /* No file in this buffer, just make it empty. */
10275 if (put_line(fd, "enew") == FAIL)
10276 return FAIL;
10277#ifdef FEAT_QUICKFIX
10278 if (wp->w_buffer->b_ffname != NULL)
10279 {
10280 /* The buffer does have a name, but it's not a file name. */
10281 if (fputs("file ", fd) < 0
10282 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10283 return FAIL;
10284 }
10285#endif
10286 do_cursor = FALSE;
10287 }
10288 }
10289
10290 /*
10291 * Local mappings and abbreviations.
10292 */
10293 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10294 && makemap(fd, wp->w_buffer) == FAIL)
10295 return FAIL;
10296
10297 /*
10298 * Local options. Need to go to the window temporarily.
10299 * Store only local values when using ":mkview" and when ":mksession" is
10300 * used and 'sessionoptions' doesn't include "options".
10301 * Some folding options are always stored when "folds" is included,
10302 * otherwise the folds would not be restored correctly.
10303 */
10304 save_curwin = curwin;
10305 curwin = wp;
10306 curbuf = curwin->w_buffer;
10307 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10308 f = makeset(fd, OPT_LOCAL,
10309 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10310#ifdef FEAT_FOLDING
10311 else if (*flagp & SSOP_FOLDS)
10312 f = makefoldset(fd);
10313#endif
10314 else
10315 f = OK;
10316 curwin = save_curwin;
10317 curbuf = curwin->w_buffer;
10318 if (f == FAIL)
10319 return FAIL;
10320
10321#ifdef FEAT_FOLDING
10322 /*
10323 * Save Folds when 'buftype' is empty and for help files.
10324 */
10325 if ((*flagp & SSOP_FOLDS)
10326 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010327# ifdef FEAT_QUICKFIX
10328 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10329# endif
10330 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010331 {
10332 if (put_folds(fd, wp) == FAIL)
10333 return FAIL;
10334 }
10335#endif
10336
10337 /*
10338 * Set the cursor after creating folds, since that moves the cursor.
10339 */
10340 if (do_cursor)
10341 {
10342
10343 /* Restore the cursor line in the file and relatively in the
10344 * window. Don't use "G", it changes the jumplist. */
10345 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10346 (long)wp->w_cursor.lnum,
10347 (long)(wp->w_cursor.lnum - wp->w_topline),
10348 (long)wp->w_height / 2, (long)wp->w_height) < 0
10349 || put_eol(fd) == FAIL
10350 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10351 || put_line(fd, "exe s:l") == FAIL
10352 || put_line(fd, "normal! zt") == FAIL
10353 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10354 || put_eol(fd) == FAIL)
10355 return FAIL;
10356 /* Restore the cursor column and left offset when not wrapping. */
10357 if (wp->w_cursor.col == 0)
10358 {
10359 if (put_line(fd, "normal! 0") == FAIL)
10360 return FAIL;
10361 }
10362 else
10363 {
10364 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10365 {
10366 if (fprintf(fd,
10367 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10368 (long)wp->w_cursor.col,
10369 (long)(wp->w_cursor.col - wp->w_leftcol),
10370 (long)wp->w_width / 2, (long)wp->w_width) < 0
10371 || put_eol(fd) == FAIL
10372 || put_line(fd, "if s:c > 0") == FAIL
10373 || fprintf(fd,
10374 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10375 (long)wp->w_cursor.col) < 0
10376 || put_eol(fd) == FAIL
10377 || put_line(fd, "else") == FAIL
10378 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10379 || put_eol(fd) == FAIL
10380 || put_line(fd, "endif") == FAIL)
10381 return FAIL;
10382 }
10383 else
10384 {
10385 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10386 || put_eol(fd) == FAIL)
10387 return FAIL;
10388 }
10389 }
10390 }
10391
10392 /*
10393 * Local directory.
10394 */
10395 if (wp->w_localdir != NULL)
10396 {
10397 if (fputs("lcd ", fd) < 0
10398 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10399 || put_eol(fd) == FAIL)
10400 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010401 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010402 }
10403
10404 return OK;
10405}
10406
10407/*
10408 * Write an argument list to the session file.
10409 * Returns FAIL if writing fails.
10410 */
10411 static int
10412ses_arglist(fd, cmd, gap, fullname, flagp)
10413 FILE *fd;
10414 char *cmd;
10415 garray_T *gap;
10416 int fullname; /* TRUE: use full path name */
10417 unsigned *flagp;
10418{
10419 int i;
10420 char_u buf[MAXPATHL];
10421 char_u *s;
10422
10423 if (gap->ga_len == 0)
10424 return put_line(fd, "silent! argdel *");
10425 if (fputs(cmd, fd) < 0)
10426 return FAIL;
10427 for (i = 0; i < gap->ga_len; ++i)
10428 {
10429 /* NULL file names are skipped (only happens when out of memory). */
10430 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10431 if (s != NULL)
10432 {
10433 if (fullname)
10434 {
10435 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10436 s = buf;
10437 }
10438 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10439 return FAIL;
10440 }
10441 }
10442 return put_eol(fd);
10443}
10444
10445/*
10446 * Write a buffer name to the session file.
10447 * Also ends the line.
10448 * Returns FAIL if writing fails.
10449 */
10450 static int
10451ses_fname(fd, buf, flagp)
10452 FILE *fd;
10453 buf_T *buf;
10454 unsigned *flagp;
10455{
10456 char_u *name;
10457
10458 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010459 * the session file will be sourced.
10460 * Don't do this for ":mkview", we don't know the current directory.
10461 * Don't do this after ":lcd", we don't keep track of what the current
10462 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010463 if (buf->b_sfname != NULL
10464 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010465 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10466 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010467 name = buf->b_sfname;
10468 else
10469 name = buf->b_ffname;
10470 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10471 return FAIL;
10472 return OK;
10473}
10474
10475/*
10476 * Write a file name to the session file.
10477 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10478 * characters.
10479 * Returns FAIL if writing fails.
10480 */
10481 static int
10482ses_put_fname(fd, name, flagp)
10483 FILE *fd;
10484 char_u *name;
10485 unsigned *flagp;
10486{
10487 char_u *sname;
10488 int retval = OK;
10489 int c;
10490
10491 sname = home_replace_save(NULL, name);
10492 if (sname != NULL)
10493 name = sname;
10494 while (*name != NUL)
10495 {
10496#ifdef FEAT_MBYTE
10497 {
10498 int l;
10499
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010500 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010501 {
10502 /* copy a multibyte char */
10503 while (--l >= 0)
10504 {
10505 if (putc(*name, fd) != *name)
10506 retval = FAIL;
10507 ++name;
10508 }
10509 continue;
10510 }
10511 }
10512#endif
10513 c = *name++;
10514 if (c == '\\' && (*flagp & SSOP_SLASH))
10515 /* change a backslash to a forward slash */
10516 c = '/';
10517 else if ((vim_strchr(escape_chars, c) != NULL
10518#ifdef BACKSLASH_IN_FILENAME
10519 && c != '\\'
10520#endif
10521 ) || c == '#' || c == '%')
10522 {
10523 /* escape a special character with a backslash */
10524 if (putc('\\', fd) != '\\')
10525 retval = FAIL;
10526 }
10527 if (putc(c, fd) != c)
10528 retval = FAIL;
10529 }
10530 vim_free(sname);
10531 return retval;
10532}
10533
10534/*
10535 * ":loadview [nr]"
10536 */
10537 static void
10538ex_loadview(eap)
10539 exarg_T *eap;
10540{
10541 char_u *fname;
10542
10543 fname = get_view_file(*eap->arg);
10544 if (fname != NULL)
10545 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010546 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010547 vim_free(fname);
10548 }
10549}
10550
10551/*
10552 * Get the name of the view file for the current buffer.
10553 */
10554 static char_u *
10555get_view_file(c)
10556 int c;
10557{
10558 int len = 0;
10559 char_u *p, *s;
10560 char_u *retval;
10561 char_u *sname;
10562
10563 if (curbuf->b_ffname == NULL)
10564 {
10565 EMSG(_(e_noname));
10566 return NULL;
10567 }
10568 sname = home_replace_save(NULL, curbuf->b_ffname);
10569 if (sname == NULL)
10570 return NULL;
10571
10572 /*
10573 * We want a file name without separators, because we're not going to make
10574 * a directory.
10575 * "normal" path separator -> "=+"
10576 * "=" -> "=="
10577 * ":" path separator -> "=-"
10578 */
10579 for (p = sname; *p; ++p)
10580 if (*p == '=' || vim_ispathsep(*p))
10581 ++len;
10582 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10583 if (retval != NULL)
10584 {
10585 STRCPY(retval, p_vdir);
10586 add_pathsep(retval);
10587 s = retval + STRLEN(retval);
10588 for (p = sname; *p; ++p)
10589 {
10590 if (*p == '=')
10591 {
10592 *s++ = '=';
10593 *s++ = '=';
10594 }
10595 else if (vim_ispathsep(*p))
10596 {
10597 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010598#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010599 || defined(VMS)
10600 if (*p == ':')
10601 *s++ = '-';
10602 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010603#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010604 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010605 }
10606 else
10607 *s++ = *p;
10608 }
10609 *s++ = '=';
10610 *s++ = c;
10611 STRCPY(s, ".vim");
10612 }
10613
10614 vim_free(sname);
10615 return retval;
10616}
10617
10618#endif /* FEAT_SESSION */
10619
10620/*
10621 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10622 * Return FAIL for a write error.
10623 */
10624 int
10625put_eol(fd)
10626 FILE *fd;
10627{
10628 if (
10629#ifdef USE_CRNL
10630 (
10631# ifdef MKSESSION_NL
10632 !mksession_nl &&
10633# endif
10634 (putc('\r', fd) < 0)) ||
10635#endif
10636 (putc('\n', fd) < 0))
10637 return FAIL;
10638 return OK;
10639}
10640
10641/*
10642 * Write a line to "fd".
10643 * Return FAIL for a write error.
10644 */
10645 int
10646put_line(fd, s)
10647 FILE *fd;
10648 char *s;
10649{
10650 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10651 return FAIL;
10652 return OK;
10653}
10654
10655#ifdef FEAT_VIMINFO
10656/*
10657 * ":rviminfo" and ":wviminfo".
10658 */
10659 static void
10660ex_viminfo(eap)
10661 exarg_T *eap;
10662{
10663 char_u *save_viminfo;
10664
10665 save_viminfo = p_viminfo;
10666 if (*p_viminfo == NUL)
10667 p_viminfo = (char_u *)"'100";
10668 if (eap->cmdidx == CMD_rviminfo)
10669 {
10670 if (read_viminfo(eap->arg, TRUE, TRUE, eap->forceit) == FAIL)
10671 EMSG(_("E195: Cannot open viminfo file for reading"));
10672 }
10673 else
10674 write_viminfo(eap->arg, eap->forceit);
10675 p_viminfo = save_viminfo;
10676}
10677#endif
10678
10679#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010680/*
10681 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010682 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010683 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010684 void
10685dialog_msg(buff, format, fname)
10686 char_u *buff;
10687 char *format;
10688 char_u *fname;
10689{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010690 if (fname == NULL)
10691 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010692 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010693}
10694#endif
10695
10696/*
10697 * ":behave {mswin,xterm}"
10698 */
10699 static void
10700ex_behave(eap)
10701 exarg_T *eap;
10702{
10703 if (STRCMP(eap->arg, "mswin") == 0)
10704 {
10705 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10706 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10707 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10708 set_option_value((char_u *)"keymodel", 0L,
10709 (char_u *)"startsel,stopsel", 0);
10710 }
10711 else if (STRCMP(eap->arg, "xterm") == 0)
10712 {
10713 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10714 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10715 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10716 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10717 }
10718 else
10719 EMSG2(_(e_invarg2), eap->arg);
10720}
10721
10722#ifdef FEAT_AUTOCMD
10723static int filetype_detect = FALSE;
10724static int filetype_plugin = FALSE;
10725static int filetype_indent = FALSE;
10726
10727/*
10728 * ":filetype [plugin] [indent] {on,off,detect}"
10729 * on: Load the filetype.vim file to install autocommands for file types.
10730 * off: Load the ftoff.vim file to remove all autocommands for file types.
10731 * plugin on: load filetype.vim and ftplugin.vim
10732 * plugin off: load ftplugof.vim
10733 * indent on: load filetype.vim and indent.vim
10734 * indent off: load indoff.vim
10735 */
10736 static void
10737ex_filetype(eap)
10738 exarg_T *eap;
10739{
10740 char_u *arg = eap->arg;
10741 int plugin = FALSE;
10742 int indent = FALSE;
10743
10744 if (*eap->arg == NUL)
10745 {
10746 /* Print current status. */
10747 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10748 filetype_detect ? "ON" : "OFF",
10749 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10750 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10751 return;
10752 }
10753
10754 /* Accept "plugin" and "indent" in any order. */
10755 for (;;)
10756 {
10757 if (STRNCMP(arg, "plugin", 6) == 0)
10758 {
10759 plugin = TRUE;
10760 arg = skipwhite(arg + 6);
10761 continue;
10762 }
10763 if (STRNCMP(arg, "indent", 6) == 0)
10764 {
10765 indent = TRUE;
10766 arg = skipwhite(arg + 6);
10767 continue;
10768 }
10769 break;
10770 }
10771 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10772 {
10773 if (*arg == 'o' || !filetype_detect)
10774 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010775 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010776 filetype_detect = TRUE;
10777 if (plugin)
10778 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010779 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010780 filetype_plugin = TRUE;
10781 }
10782 if (indent)
10783 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010784 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010785 filetype_indent = TRUE;
10786 }
10787 }
10788 if (*arg == 'd')
10789 {
10790 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010791 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010792 }
10793 }
10794 else if (STRCMP(arg, "off") == 0)
10795 {
10796 if (plugin || indent)
10797 {
10798 if (plugin)
10799 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010800 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010801 filetype_plugin = FALSE;
10802 }
10803 if (indent)
10804 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010805 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010806 filetype_indent = FALSE;
10807 }
10808 }
10809 else
10810 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010811 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010812 filetype_detect = FALSE;
10813 }
10814 }
10815 else
10816 EMSG2(_(e_invarg2), arg);
10817}
10818
10819/*
10820 * ":setfiletype {name}"
10821 */
10822 static void
10823ex_setfiletype(eap)
10824 exarg_T *eap;
10825{
10826 if (!did_filetype)
10827 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10828}
10829#endif
10830
10831/*ARGSUSED*/
10832 static void
10833ex_digraphs(eap)
10834 exarg_T *eap;
10835{
10836#ifdef FEAT_DIGRAPHS
10837 if (*eap->arg != NUL)
10838 putdigraph(eap->arg);
10839 else
10840 listdigraphs();
10841#else
10842 EMSG(_("E196: No digraphs in this version"));
10843#endif
10844}
10845
10846 static void
10847ex_set(eap)
10848 exarg_T *eap;
10849{
10850 int flags = 0;
10851
10852 if (eap->cmdidx == CMD_setlocal)
10853 flags = OPT_LOCAL;
10854 else if (eap->cmdidx == CMD_setglobal)
10855 flags = OPT_GLOBAL;
10856#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10857 if (cmdmod.browse && flags == 0)
10858 ex_options(eap);
10859 else
10860#endif
10861 (void)do_set(eap->arg, flags);
10862}
10863
10864#ifdef FEAT_SEARCH_EXTRA
10865/*
10866 * ":nohlsearch"
10867 */
10868/*ARGSUSED*/
10869 static void
10870ex_nohlsearch(eap)
10871 exarg_T *eap;
10872{
10873 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010874 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010875}
10876
10877/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010878 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010879 * Sets nextcmd to the start of the next command, if any. Also called when
10880 * skipping commands to find the next command.
10881 */
10882 static void
10883ex_match(eap)
10884 exarg_T *eap;
10885{
10886 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000010887 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010888 char_u *end;
10889 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010890 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010891
10892 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010893 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010894 else
10895 {
10896 EMSG(e_invcmd);
10897 return;
10898 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010899
10900 /* First clear any old pattern. */
10901 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010902 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010903
10904 if (ends_excmd(*eap->arg))
10905 end = eap->arg;
10906 else if ((STRNICMP(eap->arg, "none", 4) == 0
10907 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10908 end = eap->arg + 4;
10909 else
10910 {
10911 p = skiptowhite(eap->arg);
10912 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010913 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010914 p = skipwhite(p);
10915 if (*p == NUL)
10916 {
10917 /* There must be two arguments. */
10918 EMSG2(_(e_invarg2), eap->arg);
10919 return;
10920 }
10921 end = skip_regexp(p + 1, *p, TRUE, NULL);
10922 if (!eap->skip)
10923 {
10924 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10925 {
10926 eap->errmsg = e_trailing;
10927 return;
10928 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010929 if (*end != *p)
10930 {
10931 EMSG2(_(e_invarg2), p);
10932 return;
10933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010934
10935 c = *end;
10936 *end = NUL;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010937 match_add(curwin, g, p + 1, 10, id);
10938 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010939 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010940 }
10941 }
10942 eap->nextcmd = find_nextcmd(end);
10943}
10944#endif
10945
10946#ifdef FEAT_CRYPT
10947/*
10948 * ":X": Get crypt key
10949 */
10950/*ARGSUSED*/
10951 static void
10952ex_X(eap)
10953 exarg_T *eap;
10954{
10955 (void)get_crypt_key(TRUE, TRUE);
10956}
10957#endif
10958
10959#ifdef FEAT_FOLDING
10960 static void
10961ex_fold(eap)
10962 exarg_T *eap;
10963{
10964 if (foldManualAllowed(TRUE))
10965 foldCreate(eap->line1, eap->line2);
10966}
10967
10968 static void
10969ex_foldopen(eap)
10970 exarg_T *eap;
10971{
10972 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
10973 eap->forceit, FALSE);
10974}
10975
10976 static void
10977ex_folddo(eap)
10978 exarg_T *eap;
10979{
10980 linenr_T lnum;
10981
10982 /* First set the marks for all lines closed/open. */
10983 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
10984 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
10985 ml_setmarked(lnum);
10986
10987 /* Execute the command on the marked lines. */
10988 global_exe(eap->arg);
10989 ml_clearmarked(); /* clear rest of the marks */
10990}
10991#endif