blob: a6186f4db9f0f76e24c1b9760b723a40249dc87d [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));
375static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp));
376static 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, ": ");
2663 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff));
2664 }
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)
2966/*
2967 * Return > 0 if an Ex command "name" exists.
2968 * Return 2 if there is an exact match.
2969 * Return 3 if there is an ambiguous match.
2970 */
2971 int
2972cmd_exists(name)
2973 char_u *name;
2974{
2975 exarg_T ea;
2976 int full = FALSE;
2977 int i;
2978 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00002979 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 static struct cmdmod
2981 {
2982 char *name;
2983 int minlen;
2984 } cmdmods[] = {
2985 {"aboveleft", 3},
2986 {"belowright", 3},
2987 {"botright", 2},
2988 {"browse", 3},
2989 {"confirm", 4},
2990 {"hide", 3},
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002991 {"keepalt", 5},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 {"keepjumps", 5},
2993 {"keepmarks", 3},
2994 {"leftabove", 5},
2995 {"lockmarks", 3},
2996 {"rightbelow", 6},
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002997 {"sandbox", 3},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 {"silent", 3},
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002999 {"tab", 3},
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000 {"topleft", 2},
3001 {"verbose", 4},
3002 {"vertical", 4},
3003 };
3004
3005 /* Check command modifiers. */
3006 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3007 {
3008 for (j = 0; name[j] != NUL; ++j)
3009 if (name[j] != cmdmods[i].name[j])
3010 break;
3011 if (name[j] == NUL && j >= cmdmods[i].minlen)
3012 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3013 }
3014
Bram Moolenaara9587612006-05-04 21:47:50 +00003015 /* Check built-in commands and user defined commands.
3016 * For ":2match" and ":3match" we need to skip the number. */
3017 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003019 p = find_command(&ea, &full);
3020 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003022 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3023 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003024 if (*skipwhite(p) != NUL)
3025 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3027}
3028#endif
3029
3030/*
3031 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3032 * we don't need/want deleted. Maybe this could be done better if we didn't
3033 * repeat all this stuff. The only problem is that they may not stay
3034 * perfectly compatible with each other, but then the command line syntax
3035 * probably won't change that much -- webb.
3036 */
3037 char_u *
3038set_one_cmd_context(xp, buff)
3039 expand_T *xp;
3040 char_u *buff; /* buffer for command string */
3041{
3042 char_u *p;
3043 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003044 int len = 0;
3045 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3047 int compl = EXPAND_NOTHING;
3048#endif
3049#ifdef FEAT_CMDL_COMPL
3050 int delim;
3051#endif
3052 int forceit = FALSE;
3053 int usefilter = FALSE; /* filter instead of file name */
3054
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003055 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 xp->xp_pattern = buff;
3057 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003058 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059
3060/*
3061 * 2. skip comment lines and leading space, colons or bars
3062 */
3063 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3064 ;
3065 xp->xp_pattern = cmd;
3066
3067 if (*cmd == NUL)
3068 return NULL;
3069 if (*cmd == '"') /* ignore comment lines */
3070 {
3071 xp->xp_context = EXPAND_NOTHING;
3072 return NULL;
3073 }
3074
3075/*
3076 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3077 */
3078 cmd = skip_range(cmd, &xp->xp_context);
3079
3080/*
3081 * 4. parse command
3082 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 xp->xp_pattern = cmd;
3084 if (*cmd == NUL)
3085 return NULL;
3086 if (*cmd == '"')
3087 {
3088 xp->xp_context = EXPAND_NOTHING;
3089 return NULL;
3090 }
3091
3092 if (*cmd == '|' || *cmd == '\n')
3093 return cmd + 1; /* There's another command */
3094
3095 /*
3096 * Isolate the command and search for it in the command table.
3097 * Exceptions:
3098 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003099 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3101 */
3102 if (*cmd == 'k' && cmd[1] != 'e')
3103 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003104 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 p = cmd + 1;
3106 }
3107 else
3108 {
3109 p = cmd;
3110 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3111 ++p;
3112 /* check for non-alpha command */
3113 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3114 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003115 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003116
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003117 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 {
3119 xp->xp_context = EXPAND_UNSUCCESSFUL;
3120 return NULL;
3121 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003122 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3123 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3124 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 break;
3126
3127#ifdef FEAT_USR_CMDS
3128 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3129 {
3130 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3131 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003132 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 }
3134#endif
3135 }
3136
3137 /*
3138 * If the cursor is touching the command, and it ends in an alpha-numeric
3139 * character, complete the command name.
3140 */
3141 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3142 return NULL;
3143
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003144 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 {
3146 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3147 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003148 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 p = cmd + 1;
3150 }
3151#ifdef FEAT_USR_CMDS
3152 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3153 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003154 ea.cmd = cmd;
3155 p = find_ucmd(&ea, p, NULL, xp,
3156# if defined(FEAT_CMDL_COMPL)
3157 &compl
3158# else
3159 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003161 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003162 if (p == NULL)
3163 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 }
3165#endif
3166 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003167 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 {
3169 /* Not still touching the command and it was an illegal one */
3170 xp->xp_context = EXPAND_UNSUCCESSFUL;
3171 return NULL;
3172 }
3173
3174 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3175
3176 if (*p == '!') /* forced commands */
3177 {
3178 forceit = TRUE;
3179 ++p;
3180 }
3181
3182/*
3183 * 5. parse arguments
3184 */
3185#ifdef FEAT_USR_CMDS
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003186 if (!USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003188 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189
3190 arg = skipwhite(p);
3191
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003192 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 {
3194 if (*arg == '>') /* append */
3195 {
3196 if (*++arg == '>')
3197 ++arg;
3198 arg = skipwhite(arg);
3199 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003200 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 {
3202 ++arg;
3203 usefilter = TRUE;
3204 }
3205 }
3206
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003207 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 {
3209 usefilter = forceit; /* :r! filter if forced */
3210 if (*arg == '!') /* :r !filter */
3211 {
3212 ++arg;
3213 usefilter = TRUE;
3214 }
3215 }
3216
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003217 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 {
3219 while (*arg == *cmd) /* allow any number of '>' or '<' */
3220 ++arg;
3221 arg = skipwhite(arg);
3222 }
3223
3224 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003225 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 {
3227 /* Check if we're in the +command */
3228 p = arg + 1;
3229 arg = skip_cmd_arg(arg, FALSE);
3230
3231 /* Still touching the command after '+'? */
3232 if (*arg == NUL)
3233 return p;
3234
3235 /* Skip space(s) after +command to get to the real argument */
3236 arg = skipwhite(arg);
3237 }
3238
3239 /*
3240 * Check for '|' to separate commands and '"' to start comments.
3241 * Don't do this for ":read !cmd" and ":write !cmd".
3242 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003243 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 {
3245 p = arg;
3246 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003247 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 p += 2;
3249 while (*p)
3250 {
3251 if (*p == Ctrl_V)
3252 {
3253 if (p[1] != NUL)
3254 ++p;
3255 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003256 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 || *p == '|' || *p == '\n')
3258 {
3259 if (*(p - 1) != '\\')
3260 {
3261 if (*p == '|' || *p == '\n')
3262 return p + 1;
3263 return NULL; /* It's a comment */
3264 }
3265 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003266 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267 }
3268 }
3269
3270 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003271 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003272 vim_strchr((char_u *)"|\"", *arg) == NULL)
3273 return NULL;
3274
3275 /* Find start of last argument (argument just before cursor): */
3276 p = buff + STRLEN(buff);
3277 while (p != arg && *p != ' ' && *p != TAB)
3278 p--;
3279 if (*p == ' ' || *p == TAB)
3280 p++;
3281 xp->xp_pattern = p;
3282
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003283 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003285 int c;
3286 int in_quote = FALSE;
3287 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003288
3289 /*
3290 * Allow spaces within back-quotes to count as part of the argument
3291 * being expanded.
3292 */
3293 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003294 p = xp->xp_pattern;
3295 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003296 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003297#ifdef FEAT_MBYTE
3298 if (has_mbyte)
3299 c = mb_ptr2char(p);
3300 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003302 c = *p;
3303 if (c == '\\' && p[1] != NUL)
3304 ++p;
3305 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 {
3307 if (!in_quote)
3308 {
3309 xp->xp_pattern = p;
3310 bow = p + 1;
3311 }
3312 in_quote = !in_quote;
3313 }
Bram Moolenaar6529c102007-08-18 15:47:34 +00003314#ifdef SPACE_IN_FILENAME
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003315 else if (!vim_isfilec_or_wc(c)
3316 && (!(ea.argt & NOSPC) || usefilter))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003317#else
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003318 else if (!vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003319#endif
3320 {
3321 while (*p != NUL)
3322 {
3323#ifdef FEAT_MBYTE
3324 if (has_mbyte)
3325 c = mb_ptr2char(p);
3326 else
3327#endif
3328 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003329 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003330 break;
3331#ifdef FEAT_MBYTE
3332 if (has_mbyte)
3333 len = (*mb_ptr2len)(p);
3334 else
3335#endif
3336 len = 1;
3337 mb_ptr_adv(p);
3338 }
3339 if (in_quote)
3340 bow = p;
3341 else
3342 xp->xp_pattern = p;
3343 p -= len;
3344 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003345 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 }
3347
3348 /*
3349 * If we are still inside the quotes, and we passed a space, just
3350 * expand from there.
3351 */
3352 if (bow != NULL && in_quote)
3353 xp->xp_pattern = bow;
3354 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003355
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003356#ifndef BACKSLASH_IN_FILENAME
3357 /* For a shell command more chars need to be escaped. */
3358 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003359 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003360 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003361
3362 /* When still after the command name expand executables. */
3363 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003364 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003365 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003366#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367
3368 /* Check for environment variable */
3369 if (*xp->xp_pattern == '$'
3370#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3371 || *xp->xp_pattern == '%'
3372#endif
3373 )
3374 {
3375 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3376 if (!vim_isIDc(*p))
3377 break;
3378 if (*p == NUL)
3379 {
3380 xp->xp_context = EXPAND_ENV_VARS;
3381 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003382#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3383 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003384 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003385 compl = EXPAND_ENV_VARS;
3386#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 }
3388 }
3389 }
3390
3391/*
3392 * 6. switch on command name
3393 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003394 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 {
3396 case CMD_cd:
3397 case CMD_chdir:
3398 case CMD_lcd:
3399 case CMD_lchdir:
3400 if (xp->xp_context == EXPAND_FILES)
3401 xp->xp_context = EXPAND_DIRECTORIES;
3402 break;
3403 case CMD_help:
3404 xp->xp_context = EXPAND_HELP;
3405 xp->xp_pattern = arg;
3406 break;
3407
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003408 /* Command modifiers: return the argument.
3409 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003411 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003412 case CMD_belowright:
3413 case CMD_botright:
3414 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003415 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003417 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418 case CMD_folddoclosed:
3419 case CMD_folddoopen:
3420 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003421 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 case CMD_keepjumps:
3423 case CMD_keepmarks:
3424 case CMD_leftabove:
3425 case CMD_lockmarks:
3426 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003427 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003429 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430 case CMD_topleft:
3431 case CMD_verbose:
3432 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003433 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434 return arg;
3435
Bram Moolenaar4f688582007-07-24 12:34:30 +00003436#ifdef FEAT_CMDL_COMPL
3437# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 case CMD_match:
3439 if (*arg == NUL || !ends_excmd(*arg))
3440 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003441 /* also complete "None" */
3442 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 arg = skipwhite(skiptowhite(arg));
3444 if (*arg != NUL)
3445 {
3446 xp->xp_context = EXPAND_NOTHING;
3447 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3448 }
3449 }
3450 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003451# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453/*
3454 * All completion for the +cmdline_compl feature goes here.
3455 */
3456
3457# ifdef FEAT_USR_CMDS
3458 case CMD_command:
3459 /* Check for attributes */
3460 while (*arg == '-')
3461 {
3462 arg++; /* Skip "-" */
3463 p = skiptowhite(arg);
3464 if (*p == NUL)
3465 {
3466 /* Cursor is still in the attribute */
3467 p = vim_strchr(arg, '=');
3468 if (p == NULL)
3469 {
3470 /* No "=", so complete attribute names */
3471 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3472 xp->xp_pattern = arg;
3473 return NULL;
3474 }
3475
3476 /* For the -complete and -nargs attributes, we complete
3477 * their arguments as well.
3478 */
3479 if (STRNICMP(arg, "complete", p - arg) == 0)
3480 {
3481 xp->xp_context = EXPAND_USER_COMPLETE;
3482 xp->xp_pattern = p + 1;
3483 return NULL;
3484 }
3485 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3486 {
3487 xp->xp_context = EXPAND_USER_NARGS;
3488 xp->xp_pattern = p + 1;
3489 return NULL;
3490 }
3491 return NULL;
3492 }
3493 arg = skipwhite(p);
3494 }
3495
3496 /* After the attributes comes the new command name */
3497 p = skiptowhite(arg);
3498 if (*p == NUL)
3499 {
3500 xp->xp_context = EXPAND_USER_COMMANDS;
3501 xp->xp_pattern = arg;
3502 break;
3503 }
3504
3505 /* And finally comes a normal command */
3506 return skipwhite(p);
3507
3508 case CMD_delcommand:
3509 xp->xp_context = EXPAND_USER_COMMANDS;
3510 xp->xp_pattern = arg;
3511 break;
3512# endif
3513
3514 case CMD_global:
3515 case CMD_vglobal:
3516 delim = *arg; /* get the delimiter */
3517 if (delim)
3518 ++arg; /* skip delimiter if there is one */
3519
3520 while (arg[0] != NUL && arg[0] != delim)
3521 {
3522 if (arg[0] == '\\' && arg[1] != NUL)
3523 ++arg;
3524 ++arg;
3525 }
3526 if (arg[0] != NUL)
3527 return arg + 1;
3528 break;
3529 case CMD_and:
3530 case CMD_substitute:
3531 delim = *arg;
3532 if (delim)
3533 {
3534 /* skip "from" part */
3535 ++arg;
3536 arg = skip_regexp(arg, delim, p_magic, NULL);
3537 }
3538 /* skip "to" part */
3539 while (arg[0] != NUL && arg[0] != delim)
3540 {
3541 if (arg[0] == '\\' && arg[1] != NUL)
3542 ++arg;
3543 ++arg;
3544 }
3545 if (arg[0] != NUL) /* skip delimiter */
3546 ++arg;
3547 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3548 ++arg;
3549 if (arg[0] != NUL)
3550 return arg;
3551 break;
3552 case CMD_isearch:
3553 case CMD_dsearch:
3554 case CMD_ilist:
3555 case CMD_dlist:
3556 case CMD_ijump:
3557 case CMD_psearch:
3558 case CMD_djump:
3559 case CMD_isplit:
3560 case CMD_dsplit:
3561 arg = skipwhite(skipdigits(arg)); /* skip count */
3562 if (*arg == '/') /* Match regexp, not just whole words */
3563 {
3564 for (++arg; *arg && *arg != '/'; arg++)
3565 if (*arg == '\\' && arg[1] != NUL)
3566 arg++;
3567 if (*arg)
3568 {
3569 arg = skipwhite(arg + 1);
3570
3571 /* Check for trailing illegal characters */
3572 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3573 xp->xp_context = EXPAND_NOTHING;
3574 else
3575 return arg;
3576 }
3577 }
3578 break;
3579#ifdef FEAT_AUTOCMD
3580 case CMD_autocmd:
3581 return set_context_in_autocmd(xp, arg, FALSE);
3582
3583 case CMD_doautocmd:
3584 return set_context_in_autocmd(xp, arg, TRUE);
3585#endif
3586 case CMD_set:
3587 set_context_in_set_cmd(xp, arg, 0);
3588 break;
3589 case CMD_setglobal:
3590 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3591 break;
3592 case CMD_setlocal:
3593 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3594 break;
3595 case CMD_tag:
3596 case CMD_stag:
3597 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003598 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 case CMD_tselect:
3600 case CMD_stselect:
3601 case CMD_ptselect:
3602 case CMD_tjump:
3603 case CMD_stjump:
3604 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003605 if (*p_wop != NUL)
3606 xp->xp_context = EXPAND_TAGS_LISTFILES;
3607 else
3608 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 xp->xp_pattern = arg;
3610 break;
3611 case CMD_augroup:
3612 xp->xp_context = EXPAND_AUGROUP;
3613 xp->xp_pattern = arg;
3614 break;
3615#ifdef FEAT_SYN_HL
3616 case CMD_syntax:
3617 set_context_in_syntax_cmd(xp, arg);
3618 break;
3619#endif
3620#ifdef FEAT_EVAL
3621 case CMD_let:
3622 case CMD_if:
3623 case CMD_elseif:
3624 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003625 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 case CMD_echo:
3627 case CMD_echon:
3628 case CMD_execute:
3629 case CMD_echomsg:
3630 case CMD_echoerr:
3631 case CMD_call:
3632 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003633 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003634 break;
3635
3636 case CMD_unlet:
3637 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3638 arg = xp->xp_pattern + 1;
3639 xp->xp_context = EXPAND_USER_VARS;
3640 xp->xp_pattern = arg;
3641 break;
3642
3643 case CMD_function:
3644 case CMD_delfunction:
3645 xp->xp_context = EXPAND_USER_FUNC;
3646 xp->xp_pattern = arg;
3647 break;
3648
3649 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00003650 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003651 break;
3652#endif
3653 case CMD_highlight:
3654 set_context_in_highlight_cmd(xp, arg);
3655 break;
3656#ifdef FEAT_LISTCMDS
3657 case CMD_bdelete:
3658 case CMD_bwipeout:
3659 case CMD_bunload:
3660 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3661 arg = xp->xp_pattern + 1;
3662 /*FALLTHROUGH*/
3663 case CMD_buffer:
3664 case CMD_sbuffer:
3665 case CMD_checktime:
3666 xp->xp_context = EXPAND_BUFFERS;
3667 xp->xp_pattern = arg;
3668 break;
3669#endif
3670#ifdef FEAT_USR_CMDS
3671 case CMD_USER:
3672 case CMD_USER_BUF:
3673 if (compl != EXPAND_NOTHING)
3674 {
3675 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003676 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003677 {
3678# ifdef FEAT_MENU
3679 if (compl == EXPAND_MENUS)
3680 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3681# endif
3682 if (compl == EXPAND_COMMANDS)
3683 return arg;
3684 if (compl == EXPAND_MAPPINGS)
3685 return set_context_in_map_cmd(xp, (char_u *)"map",
3686 arg, forceit, FALSE, FALSE, CMD_map);
3687 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3688 arg = xp->xp_pattern + 1;
3689 xp->xp_pattern = arg;
3690 }
3691 xp->xp_context = compl;
3692 }
3693 break;
3694#endif
3695 case CMD_map: case CMD_noremap:
3696 case CMD_nmap: case CMD_nnoremap:
3697 case CMD_vmap: case CMD_vnoremap:
3698 case CMD_omap: case CMD_onoremap:
3699 case CMD_imap: case CMD_inoremap:
3700 case CMD_cmap: case CMD_cnoremap:
3701 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003702 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 case CMD_unmap:
3704 case CMD_nunmap:
3705 case CMD_vunmap:
3706 case CMD_ounmap:
3707 case CMD_iunmap:
3708 case CMD_cunmap:
3709 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003710 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 case CMD_abbreviate: case CMD_noreabbrev:
3712 case CMD_cabbrev: case CMD_cnoreabbrev:
3713 case CMD_iabbrev: case CMD_inoreabbrev:
3714 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003715 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 case CMD_unabbreviate:
3717 case CMD_cunabbrev:
3718 case CMD_iunabbrev:
3719 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003720 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721#ifdef FEAT_MENU
3722 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3723 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3724 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3725 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3726 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3727 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3728 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3729 case CMD_tmenu: case CMD_tunmenu:
3730 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3731 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3732#endif
3733
3734 case CMD_colorscheme:
3735 xp->xp_context = EXPAND_COLORS;
3736 xp->xp_pattern = arg;
3737 break;
3738
3739 case CMD_compiler:
3740 xp->xp_context = EXPAND_COMPILER;
3741 xp->xp_pattern = arg;
3742 break;
3743
3744#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3745 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3746 case CMD_language:
3747 if (*skiptowhite(arg) == NUL)
3748 {
3749 xp->xp_context = EXPAND_LANGUAGE;
3750 xp->xp_pattern = arg;
3751 }
3752 else
3753 xp->xp_context = EXPAND_NOTHING;
3754 break;
3755#endif
3756
3757#endif /* FEAT_CMDL_COMPL */
3758
3759 default:
3760 break;
3761 }
3762 return NULL;
3763}
3764
3765/*
3766 * skip a range specifier of the form: addr [,addr] [;addr] ..
3767 *
3768 * Backslashed delimiters after / or ? will be skipped, and commands will
3769 * not be expanded between /'s and ?'s or after "'".
3770 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003771 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 * Returns the "cmd" pointer advanced to beyond the range.
3773 */
3774 char_u *
3775skip_range(cmd, ctx)
3776 char_u *cmd;
3777 int *ctx; /* pointer to xp_context or NULL */
3778{
3779 int delim;
3780
Bram Moolenaardf177f62005-02-22 08:39:57 +00003781 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003782 {
3783 if (*cmd == '\'')
3784 {
3785 if (*++cmd == NUL && ctx != NULL)
3786 *ctx = EXPAND_NOTHING;
3787 }
3788 else if (*cmd == '/' || *cmd == '?')
3789 {
3790 delim = *cmd++;
3791 while (*cmd != NUL && *cmd != delim)
3792 if (*cmd++ == '\\' && *cmd != NUL)
3793 ++cmd;
3794 if (*cmd == NUL && ctx != NULL)
3795 *ctx = EXPAND_NOTHING;
3796 }
3797 if (*cmd != NUL)
3798 ++cmd;
3799 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003800
3801 /* Skip ":" and white space. */
3802 while (*cmd == ':')
3803 cmd = skipwhite(cmd + 1);
3804
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 return cmd;
3806}
3807
3808/*
3809 * get a single EX address
3810 *
3811 * Set ptr to the next character after the part that was interpreted.
3812 * Set ptr to NULL when an error is encountered.
3813 *
3814 * Return MAXLNUM when no Ex address was found.
3815 */
3816 static linenr_T
3817get_address(ptr, skip, to_other_file)
3818 char_u **ptr;
3819 int skip; /* only skip the address, don't use it */
3820 int to_other_file; /* flag: may jump to other file */
3821{
3822 int c;
3823 int i;
3824 long n;
3825 char_u *cmd;
3826 pos_T pos;
3827 pos_T *fp;
3828 linenr_T lnum;
3829
3830 cmd = skipwhite(*ptr);
3831 lnum = MAXLNUM;
3832 do
3833 {
3834 switch (*cmd)
3835 {
3836 case '.': /* '.' - Cursor position */
3837 ++cmd;
3838 lnum = curwin->w_cursor.lnum;
3839 break;
3840
3841 case '$': /* '$' - last line */
3842 ++cmd;
3843 lnum = curbuf->b_ml.ml_line_count;
3844 break;
3845
3846 case '\'': /* ''' - mark */
3847 if (*++cmd == NUL)
3848 {
3849 cmd = NULL;
3850 goto error;
3851 }
3852 if (skip)
3853 ++cmd;
3854 else
3855 {
3856 /* Only accept a mark in another file when it is
3857 * used by itself: ":'M". */
3858 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3859 ++cmd;
3860 if (fp == (pos_T *)-1)
3861 /* Jumped to another file. */
3862 lnum = curwin->w_cursor.lnum;
3863 else
3864 {
3865 if (check_mark(fp) == FAIL)
3866 {
3867 cmd = NULL;
3868 goto error;
3869 }
3870 lnum = fp->lnum;
3871 }
3872 }
3873 break;
3874
3875 case '/':
3876 case '?': /* '/' or '?' - search */
3877 c = *cmd++;
3878 if (skip) /* skip "/pat/" */
3879 {
3880 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3881 if (*cmd == c)
3882 ++cmd;
3883 }
3884 else
3885 {
3886 pos = curwin->w_cursor; /* save curwin->w_cursor */
3887 /*
3888 * When '/' or '?' follows another address, start
3889 * from there.
3890 */
3891 if (lnum != MAXLNUM)
3892 curwin->w_cursor.lnum = lnum;
3893 /*
3894 * Start a forward search at the end of the line.
3895 * Start a backward search at the start of the line.
3896 * This makes sure we never match in the current
3897 * line, and can match anywhere in the
3898 * next/previous line.
3899 */
3900 if (c == '/')
3901 curwin->w_cursor.col = MAXCOL;
3902 else
3903 curwin->w_cursor.col = 0;
3904 searchcmdlen = 0;
3905 if (!do_search(NULL, c, cmd, 1L,
3906 SEARCH_HIS + SEARCH_MSG + SEARCH_START))
3907 {
3908 curwin->w_cursor = pos;
3909 cmd = NULL;
3910 goto error;
3911 }
3912 lnum = curwin->w_cursor.lnum;
3913 curwin->w_cursor = pos;
3914 /* adjust command string pointer */
3915 cmd += searchcmdlen;
3916 }
3917 break;
3918
3919 case '\\': /* "\?", "\/" or "\&", repeat search */
3920 ++cmd;
3921 if (*cmd == '&')
3922 i = RE_SUBST;
3923 else if (*cmd == '?' || *cmd == '/')
3924 i = RE_SEARCH;
3925 else
3926 {
3927 EMSG(_(e_backslash));
3928 cmd = NULL;
3929 goto error;
3930 }
3931
3932 if (!skip)
3933 {
3934 /*
3935 * When search follows another address, start from
3936 * there.
3937 */
3938 if (lnum != MAXLNUM)
3939 pos.lnum = lnum;
3940 else
3941 pos.lnum = curwin->w_cursor.lnum;
3942
3943 /*
3944 * Start the search just like for the above
3945 * do_search().
3946 */
3947 if (*cmd != '?')
3948 pos.col = MAXCOL;
3949 else
3950 pos.col = 0;
3951 if (searchit(curwin, curbuf, &pos,
3952 *cmd == '?' ? BACKWARD : FORWARD,
3953 (char_u *)"", 1L,
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003954 SEARCH_MSG + SEARCH_START,
3955 i, (linenr_T)0) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 lnum = pos.lnum;
3957 else
3958 {
3959 cmd = NULL;
3960 goto error;
3961 }
3962 }
3963 ++cmd;
3964 break;
3965
3966 default:
3967 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3968 lnum = getdigits(&cmd);
3969 }
3970
3971 for (;;)
3972 {
3973 cmd = skipwhite(cmd);
3974 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
3975 break;
3976
3977 if (lnum == MAXLNUM)
3978 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
3979 if (VIM_ISDIGIT(*cmd))
3980 i = '+'; /* "number" is same as "+number" */
3981 else
3982 i = *cmd++;
3983 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
3984 n = 1;
3985 else
3986 n = getdigits(&cmd);
3987 if (i == '-')
3988 lnum -= n;
3989 else
3990 lnum += n;
3991 }
3992 } while (*cmd == '/' || *cmd == '?');
3993
3994error:
3995 *ptr = cmd;
3996 return lnum;
3997}
3998
3999/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004000 * Get flags from an Ex command argument.
4001 */
4002 static void
4003get_flags(eap)
4004 exarg_T *eap;
4005{
4006 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4007 {
4008 if (*eap->arg == 'l')
4009 eap->flags |= EXFLAG_LIST;
4010 else if (*eap->arg == 'p')
4011 eap->flags |= EXFLAG_PRINT;
4012 else
4013 eap->flags |= EXFLAG_NR;
4014 eap->arg = skipwhite(eap->arg + 1);
4015 }
4016}
4017
4018/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 * Function called for command which is Not Implemented. NI!
4020 */
4021 void
4022ex_ni(eap)
4023 exarg_T *eap;
4024{
4025 if (!eap->skip)
4026 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4027}
4028
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004029#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030/*
4031 * Function called for script command which is Not Implemented. NI!
4032 * Skips over ":perl <<EOF" constructs.
4033 */
4034 static void
4035ex_script_ni(eap)
4036 exarg_T *eap;
4037{
4038 if (!eap->skip)
4039 ex_ni(eap);
4040 else
4041 vim_free(script_get(eap, eap->arg));
4042}
4043#endif
4044
4045/*
4046 * Check range in Ex command for validity.
4047 * Return NULL when valid, error message when invalid.
4048 */
4049 static char_u *
4050invalid_range(eap)
4051 exarg_T *eap;
4052{
4053 if ( eap->line1 < 0
4054 || eap->line2 < 0
4055 || eap->line1 > eap->line2
4056 || ((eap->argt & RANGE)
4057 && !(eap->argt & NOTADR)
4058 && eap->line2 > curbuf->b_ml.ml_line_count
4059#ifdef FEAT_DIFF
4060 + (eap->cmdidx == CMD_diffget)
4061#endif
4062 ))
4063 return (char_u *)_(e_invrange);
4064 return NULL;
4065}
4066
4067/*
4068 * Correct the range for zero line number, if required.
4069 */
4070 static void
4071correct_range(eap)
4072 exarg_T *eap;
4073{
4074 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4075 {
4076 if (eap->line1 == 0)
4077 eap->line1 = 1;
4078 if (eap->line2 == 0)
4079 eap->line2 = 1;
4080 }
4081}
4082
Bram Moolenaar748bf032005-02-02 23:04:36 +00004083#ifdef FEAT_QUICKFIX
4084static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4085
4086/*
4087 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4088 * pattern. Otherwise return eap->arg.
4089 */
4090 static char_u *
4091skip_grep_pat(eap)
4092 exarg_T *eap;
4093{
4094 char_u *p = eap->arg;
4095
Bram Moolenaara37420f2006-02-04 22:37:47 +00004096 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4097 || eap->cmdidx == CMD_vimgrepadd
4098 || eap->cmdidx == CMD_lvimgrepadd
4099 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004100 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004101 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004102 if (p == NULL)
4103 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004104 }
4105 return p;
4106}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004107
4108/*
4109 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4110 * in the command line, so that things like % get expanded.
4111 */
4112 static char_u *
4113replace_makeprg(eap, p, cmdlinep)
4114 exarg_T *eap;
4115 char_u *p;
4116 char_u **cmdlinep;
4117{
4118 char_u *new_cmdline;
4119 char_u *program;
4120 char_u *pos;
4121 char_u *ptr;
4122 int len;
4123 int i;
4124
4125 /*
4126 * Don't do it when ":vimgrep" is used for ":grep".
4127 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004128 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4129 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4130 || eap->cmdidx == CMD_grepadd
4131 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004132 && !grep_internal(eap->cmdidx))
4133 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004134 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4135 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004136 {
4137 if (*curbuf->b_p_gp == NUL)
4138 program = p_gp;
4139 else
4140 program = curbuf->b_p_gp;
4141 }
4142 else
4143 {
4144 if (*curbuf->b_p_mp == NUL)
4145 program = p_mp;
4146 else
4147 program = curbuf->b_p_mp;
4148 }
4149
4150 p = skipwhite(p);
4151
4152 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4153 {
4154 /* replace $* by given arguments */
4155 i = 1;
4156 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4157 ++i;
4158 len = (int)STRLEN(p);
4159 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4160 if (new_cmdline == NULL)
4161 return NULL; /* out of memory */
4162 ptr = new_cmdline;
4163 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4164 {
4165 i = (int)(pos - program);
4166 STRNCPY(ptr, program, i);
4167 STRCPY(ptr += i, p);
4168 ptr += len;
4169 program = pos + 2;
4170 }
4171 STRCPY(ptr, program);
4172 }
4173 else
4174 {
4175 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4176 if (new_cmdline == NULL)
4177 return NULL; /* out of memory */
4178 STRCPY(new_cmdline, program);
4179 STRCAT(new_cmdline, " ");
4180 STRCAT(new_cmdline, p);
4181 }
4182 msg_make(p);
4183
4184 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4185 vim_free(*cmdlinep);
4186 *cmdlinep = new_cmdline;
4187 p = new_cmdline;
4188 }
4189 return p;
4190}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004191#endif
4192
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193/*
4194 * Expand file name in Ex command argument.
4195 * Return FAIL for failure, OK otherwise.
4196 */
4197 int
4198expand_filename(eap, cmdlinep, errormsgp)
4199 exarg_T *eap;
4200 char_u **cmdlinep;
4201 char_u **errormsgp;
4202{
4203 int has_wildcards; /* need to expand wildcards */
4204 char_u *repl;
4205 int srclen;
4206 char_u *p;
4207 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004208 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209
Bram Moolenaar748bf032005-02-02 23:04:36 +00004210#ifdef FEAT_QUICKFIX
4211 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4212 p = skip_grep_pat(eap);
4213#else
4214 p = eap->arg;
4215#endif
4216
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 /*
4218 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4219 * the file name contains a wildcard it should not cause expanding.
4220 * (it will be expanded anyway if there is a wildcard before replacing).
4221 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004222 has_wildcards = mch_has_wildcard(p);
4223 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004225#ifdef FEAT_EVAL
4226 /* Skip over `=expr`, wildcards in it are not expanded. */
4227 if (p[0] == '`' && p[1] == '=')
4228 {
4229 p += 2;
4230 (void)skip_expr(&p);
4231 if (*p == '`')
4232 ++p;
4233 continue;
4234 }
4235#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 /*
4237 * Quick check if this cannot be the start of a special string.
4238 * Also removes backslash before '%', '#' and '<'.
4239 */
4240 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4241 {
4242 ++p;
4243 continue;
4244 }
4245
4246 /*
4247 * Try to find a match at this position.
4248 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004249 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4250 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 if (*errormsgp != NULL) /* error detected */
4252 return FAIL;
4253 if (repl == NULL) /* no match found */
4254 {
4255 p += srclen;
4256 continue;
4257 }
4258
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004259 /* Wildcards won't be expanded below, the replacement is taken
4260 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4261 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4262 {
4263 char_u *l = repl;
4264
4265 repl = expand_env_save(repl);
4266 vim_free(l);
4267 }
4268
Bram Moolenaar63b92542007-03-27 14:57:09 +00004269 /* Need to escape white space et al. with a backslash.
4270 * Don't do this for:
4271 * - replacement that already has been escaped: "##"
4272 * - shell commands (may have to use quotes instead).
4273 * - non-unix systems when there is a single argument (spaces don't
4274 * separate arguments then).
4275 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004276 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004277 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 && eap->cmdidx != CMD_bang
4279 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004280 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004282 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004284 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285#ifndef UNIX
4286 && !(eap->argt & NOSPC)
4287#endif
4288 )
4289 {
4290 char_u *l;
4291#ifdef BACKSLASH_IN_FILENAME
4292 /* Don't escape a backslash here, because rem_backslash() doesn't
4293 * remove it later. */
4294 static char_u *nobslash = (char_u *)" \t\"|";
4295# define ESCAPE_CHARS nobslash
4296#else
4297# define ESCAPE_CHARS escape_chars
4298#endif
4299
4300 for (l = repl; *l; ++l)
4301 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4302 {
4303 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4304 if (l != NULL)
4305 {
4306 vim_free(repl);
4307 repl = l;
4308 }
4309 break;
4310 }
4311 }
4312
4313 /* For a shell command a '!' must be escaped. */
4314 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004315 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 {
4317 char_u *l;
4318
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004319 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320 if (l != NULL)
4321 {
4322 vim_free(repl);
4323 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004324 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 if (strstr((char *)p_sh, "sh") != NULL)
4326 {
4327 l = vim_strsave_escaped(repl, (char_u *)"!");
4328 if (l != NULL)
4329 {
4330 vim_free(repl);
4331 repl = l;
4332 }
4333 }
4334 }
4335 }
4336
4337 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4338 vim_free(repl);
4339 if (p == NULL)
4340 return FAIL;
4341 }
4342
4343 /*
4344 * One file argument: Expand wildcards.
4345 * Don't do this with ":r !command" or ":w !command".
4346 */
4347 if ((eap->argt & NOSPC) && !eap->usefilter)
4348 {
4349 /*
4350 * May do this twice:
4351 * 1. Replace environment variables.
4352 * 2. Replace any other wildcards, remove backslashes.
4353 */
4354 for (n = 1; n <= 2; ++n)
4355 {
4356 if (n == 2)
4357 {
4358#ifdef UNIX
4359 /*
4360 * Only for Unix we check for more than one file name.
4361 * For other systems spaces are considered to be part
4362 * of the file name.
4363 * Only check here if there is no wildcard, otherwise
4364 * ExpandOne() will check for errors. This allows
4365 * ":e `ls ve*.c`" on Unix.
4366 */
4367 if (!has_wildcards)
4368 for (p = eap->arg; *p; ++p)
4369 {
4370 /* skip escaped characters */
4371 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4372 ++p;
4373 else if (vim_iswhite(*p))
4374 {
4375 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4376 return FAIL;
4377 }
4378 }
4379#endif
4380
4381 /*
4382 * Halve the number of backslashes (this is Vi compatible).
4383 * For Unix and OS/2, when wildcards are expanded, this is
4384 * done by ExpandOne() below.
4385 */
4386#if defined(UNIX) || defined(OS2)
4387 if (!has_wildcards)
4388#endif
4389 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 }
4391
4392 if (has_wildcards)
4393 {
4394 if (n == 1)
4395 {
4396 /*
4397 * First loop: May expand environment variables. This
4398 * can be done much faster with expand_env() than with
4399 * something else (e.g., calling a shell).
4400 * After expanding environment variables, check again
4401 * if there are still wildcards present.
4402 */
4403 if (vim_strchr(eap->arg, '$') != NULL
4404 || vim_strchr(eap->arg, '~') != NULL)
4405 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004406 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004407 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 has_wildcards = mch_has_wildcard(NameBuff);
4409 p = NameBuff;
4410 }
4411 else
4412 p = NULL;
4413 }
4414 else /* n == 2 */
4415 {
4416 expand_T xpc;
4417
4418 ExpandInit(&xpc);
4419 xpc.xp_context = EXPAND_FILES;
4420 p = ExpandOne(&xpc, eap->arg, NULL,
4421 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4422 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 if (p == NULL)
4424 return FAIL;
4425 }
4426 if (p != NULL)
4427 {
4428 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4429 p, cmdlinep);
4430 if (n == 2) /* p came from ExpandOne() */
4431 vim_free(p);
4432 }
4433 }
4434 }
4435 }
4436 return OK;
4437}
4438
4439/*
4440 * Replace part of the command line, keeping eap->cmd, eap->arg and
4441 * eap->nextcmd correct.
4442 * "src" points to the part that is to be replaced, of length "srclen".
4443 * "repl" is the replacement string.
4444 * Returns a pointer to the character after the replaced string.
4445 * Returns NULL for failure.
4446 */
4447 static char_u *
4448repl_cmdline(eap, src, srclen, repl, cmdlinep)
4449 exarg_T *eap;
4450 char_u *src;
4451 int srclen;
4452 char_u *repl;
4453 char_u **cmdlinep;
4454{
4455 int len;
4456 int i;
4457 char_u *new_cmdline;
4458
4459 /*
4460 * The new command line is build in new_cmdline[].
4461 * First allocate it.
4462 * Careful: a "+cmd" argument may have been NUL terminated.
4463 */
4464 len = (int)STRLEN(repl);
4465 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004466 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4468 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4469 return NULL; /* out of memory! */
4470
4471 /*
4472 * Copy the stuff before the expanded part.
4473 * Copy the expanded stuff.
4474 * Copy what came after the expanded part.
4475 * Copy the next commands, if there are any.
4476 */
4477 i = (int)(src - *cmdlinep); /* length of part before match */
4478 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004479
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 mch_memmove(new_cmdline + i, repl, (size_t)len);
4481 i += len; /* remember the end of the string */
4482 STRCPY(new_cmdline + i, src + srclen);
4483 src = new_cmdline + i; /* remember where to continue */
4484
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004485 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 {
4487 i = (int)STRLEN(new_cmdline) + 1;
4488 STRCPY(new_cmdline + i, eap->nextcmd);
4489 eap->nextcmd = new_cmdline + i;
4490 }
4491 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4492 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4493 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4494 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4495 vim_free(*cmdlinep);
4496 *cmdlinep = new_cmdline;
4497
4498 return src;
4499}
4500
4501/*
4502 * Check for '|' to separate commands and '"' to start comments.
4503 */
4504 void
4505separate_nextcmd(eap)
4506 exarg_T *eap;
4507{
4508 char_u *p;
4509
Bram Moolenaar86b68352004-12-27 21:59:20 +00004510#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004511 p = skip_grep_pat(eap);
4512#else
4513 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004514#endif
4515
4516 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 {
4518 if (*p == Ctrl_V)
4519 {
4520 if (eap->argt & (USECTRLV | XFILE))
4521 ++p; /* skip CTRL-V and next char */
4522 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00004523 /* remove CTRL-V and skip next char */
4524 mch_memmove(p, p + 1, STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 if (*p == NUL) /* stop at NUL after CTRL-V */
4526 break;
4527 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004528
4529#ifdef FEAT_EVAL
4530 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004531 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004532 {
4533 p += 2;
4534 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004535 }
4536#endif
4537
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 /* Check for '"': start of comment or '|': next command */
4539 /* :@" and :*" do not start a comment!
4540 * :redir @" doesn't either. */
4541 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4542 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4543 || p != eap->arg)
4544 && (eap->cmdidx != CMD_redir
4545 || p != eap->arg + 1 || p[-1] != '@'))
4546 || *p == '|' || *p == '\n')
4547 {
4548 /*
4549 * We remove the '\' before the '|', unless USECTRLV is used
4550 * AND 'b' is present in 'cpoptions'.
4551 */
4552 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4553 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4554 {
4555 mch_memmove(p - 1, p, STRLEN(p) + 1); /* remove the '\' */
4556 --p;
4557 }
4558 else
4559 {
4560 eap->nextcmd = check_nextcmd(p);
4561 *p = NUL;
4562 break;
4563 }
4564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004566
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4568 del_trailing_spaces(eap->arg);
4569}
4570
4571/*
4572 * get + command from ex argument
4573 */
4574 static char_u *
4575getargcmd(argp)
4576 char_u **argp;
4577{
4578 char_u *arg = *argp;
4579 char_u *command = NULL;
4580
4581 if (*arg == '+') /* +[command] */
4582 {
4583 ++arg;
4584 if (vim_isspace(*arg))
4585 command = dollar_command;
4586 else
4587 {
4588 command = arg;
4589 arg = skip_cmd_arg(command, TRUE);
4590 if (*arg != NUL)
4591 *arg++ = NUL; /* terminate command with NUL */
4592 }
4593
4594 arg = skipwhite(arg); /* skip over spaces */
4595 *argp = arg;
4596 }
4597 return command;
4598}
4599
4600/*
4601 * Find end of "+command" argument. Skip over "\ " and "\\".
4602 */
4603 static char_u *
4604skip_cmd_arg(p, rembs)
4605 char_u *p;
4606 int rembs; /* TRUE to halve the number of backslashes */
4607{
4608 while (*p && !vim_isspace(*p))
4609 {
4610 if (*p == '\\' && p[1] != NUL)
4611 {
4612 if (rembs)
4613 mch_memmove(p, p + 1, STRLEN(p));
4614 else
4615 ++p;
4616 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004617 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 }
4619 return p;
4620}
4621
4622/*
4623 * Get "++opt=arg" argument.
4624 * Return FAIL or OK.
4625 */
4626 static int
4627getargopt(eap)
4628 exarg_T *eap;
4629{
4630 char_u *arg = eap->arg + 2;
4631 int *pp = NULL;
4632#ifdef FEAT_MBYTE
4633 char_u *p;
4634#endif
4635
4636 /* ":edit ++[no]bin[ary] file" */
4637 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4638 {
4639 if (*arg == 'n')
4640 {
4641 arg += 2;
4642 eap->force_bin = FORCE_NOBIN;
4643 }
4644 else
4645 eap->force_bin = FORCE_BIN;
4646 if (!checkforcmd(&arg, "binary", 3))
4647 return FAIL;
4648 eap->arg = skipwhite(arg);
4649 return OK;
4650 }
4651
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004652 /* ":read ++edit file" */
4653 if (STRNCMP(arg, "edit", 4) == 0)
4654 {
4655 eap->read_edit = TRUE;
4656 eap->arg = skipwhite(arg + 4);
4657 return OK;
4658 }
4659
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 if (STRNCMP(arg, "ff", 2) == 0)
4661 {
4662 arg += 2;
4663 pp = &eap->force_ff;
4664 }
4665 else if (STRNCMP(arg, "fileformat", 10) == 0)
4666 {
4667 arg += 10;
4668 pp = &eap->force_ff;
4669 }
4670#ifdef FEAT_MBYTE
4671 else if (STRNCMP(arg, "enc", 3) == 0)
4672 {
4673 arg += 3;
4674 pp = &eap->force_enc;
4675 }
4676 else if (STRNCMP(arg, "encoding", 8) == 0)
4677 {
4678 arg += 8;
4679 pp = &eap->force_enc;
4680 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004681 else if (STRNCMP(arg, "bad", 3) == 0)
4682 {
4683 arg += 3;
4684 pp = &eap->bad_char;
4685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686#endif
4687
4688 if (pp == NULL || *arg != '=')
4689 return FAIL;
4690
4691 ++arg;
4692 *pp = (int)(arg - eap->cmd);
4693 arg = skip_cmd_arg(arg, FALSE);
4694 eap->arg = skipwhite(arg);
4695 *arg = NUL;
4696
4697#ifdef FEAT_MBYTE
4698 if (pp == &eap->force_ff)
4699 {
4700#endif
4701 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4702 return FAIL;
4703#ifdef FEAT_MBYTE
4704 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004705 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 {
4707 /* Make 'fileencoding' lower case. */
4708 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4709 *p = TOLOWER_ASC(*p);
4710 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004711 else
4712 {
4713 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4714 * "drop". */
4715 p = eap->cmd + eap->bad_char;
4716 if (STRICMP(p, "keep") == 0)
4717 eap->bad_char = BAD_KEEP;
4718 else if (STRICMP(p, "drop") == 0)
4719 eap->bad_char = BAD_DROP;
4720 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4721 eap->bad_char = *p;
4722 else
4723 return FAIL;
4724 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004725#endif
4726
4727 return OK;
4728}
4729
4730/*
4731 * ":abbreviate" and friends.
4732 */
4733 static void
4734ex_abbreviate(eap)
4735 exarg_T *eap;
4736{
4737 do_exmap(eap, TRUE); /* almost the same as mapping */
4738}
4739
4740/*
4741 * ":map" and friends.
4742 */
4743 static void
4744ex_map(eap)
4745 exarg_T *eap;
4746{
4747 /*
4748 * If we are sourcing .exrc or .vimrc in current directory we
4749 * print the mappings for security reasons.
4750 */
4751 if (secure)
4752 {
4753 secure = 2;
4754 msg_outtrans(eap->cmd);
4755 msg_putchar('\n');
4756 }
4757 do_exmap(eap, FALSE);
4758}
4759
4760/*
4761 * ":unmap" and friends.
4762 */
4763 static void
4764ex_unmap(eap)
4765 exarg_T *eap;
4766{
4767 do_exmap(eap, FALSE);
4768}
4769
4770/*
4771 * ":mapclear" and friends.
4772 */
4773 static void
4774ex_mapclear(eap)
4775 exarg_T *eap;
4776{
4777 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4778}
4779
4780/*
4781 * ":abclear" and friends.
4782 */
4783 static void
4784ex_abclear(eap)
4785 exarg_T *eap;
4786{
4787 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4788}
4789
4790#ifdef FEAT_AUTOCMD
4791 static void
4792ex_autocmd(eap)
4793 exarg_T *eap;
4794{
4795 /*
4796 * Disallow auto commands from .exrc and .vimrc in current
4797 * directory for security reasons.
4798 */
4799 if (secure)
4800 {
4801 secure = 2;
4802 eap->errmsg = e_curdir;
4803 }
4804 else if (eap->cmdidx == CMD_autocmd)
4805 do_autocmd(eap->arg, eap->forceit);
4806 else
4807 do_augroup(eap->arg, eap->forceit);
4808}
4809
4810/*
4811 * ":doautocmd": Apply the automatic commands to the current buffer.
4812 */
4813 static void
4814ex_doautocmd(eap)
4815 exarg_T *eap;
4816{
4817 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004818 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004819}
4820#endif
4821
4822#ifdef FEAT_LISTCMDS
4823/*
4824 * :[N]bunload[!] [N] [bufname] unload buffer
4825 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4826 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4827 */
4828 static void
4829ex_bunload(eap)
4830 exarg_T *eap;
4831{
4832 eap->errmsg = do_bufdel(
4833 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4834 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4835 : DOBUF_UNLOAD, eap->arg,
4836 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4837}
4838
4839/*
4840 * :[N]buffer [N] to buffer N
4841 * :[N]sbuffer [N] to buffer N
4842 */
4843 static void
4844ex_buffer(eap)
4845 exarg_T *eap;
4846{
4847 if (*eap->arg)
4848 eap->errmsg = e_trailing;
4849 else
4850 {
4851 if (eap->addr_count == 0) /* default is current buffer */
4852 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4853 else
4854 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4855 }
4856}
4857
4858/*
4859 * :[N]bmodified [N] to next mod. buffer
4860 * :[N]sbmodified [N] to next mod. buffer
4861 */
4862 static void
4863ex_bmodified(eap)
4864 exarg_T *eap;
4865{
4866 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4867}
4868
4869/*
4870 * :[N]bnext [N] to next buffer
4871 * :[N]sbnext [N] split and to next buffer
4872 */
4873 static void
4874ex_bnext(eap)
4875 exarg_T *eap;
4876{
4877 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4878}
4879
4880/*
4881 * :[N]bNext [N] to previous buffer
4882 * :[N]bprevious [N] to previous buffer
4883 * :[N]sbNext [N] split and to previous buffer
4884 * :[N]sbprevious [N] split and to previous buffer
4885 */
4886 static void
4887ex_bprevious(eap)
4888 exarg_T *eap;
4889{
4890 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4891}
4892
4893/*
4894 * :brewind to first buffer
4895 * :bfirst to first buffer
4896 * :sbrewind split and to first buffer
4897 * :sbfirst split and to first buffer
4898 */
4899 static void
4900ex_brewind(eap)
4901 exarg_T *eap;
4902{
4903 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4904}
4905
4906/*
4907 * :blast to last buffer
4908 * :sblast split and to last buffer
4909 */
4910 static void
4911ex_blast(eap)
4912 exarg_T *eap;
4913{
4914 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4915}
4916#endif
4917
4918 int
4919ends_excmd(c)
4920 int c;
4921{
4922 return (c == NUL || c == '|' || c == '"' || c == '\n');
4923}
4924
4925#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4926 || defined(PROTO)
4927/*
4928 * Return the next command, after the first '|' or '\n'.
4929 * Return NULL if not found.
4930 */
4931 char_u *
4932find_nextcmd(p)
4933 char_u *p;
4934{
4935 while (*p != '|' && *p != '\n')
4936 {
4937 if (*p == NUL)
4938 return NULL;
4939 ++p;
4940 }
4941 return (p + 1);
4942}
4943#endif
4944
4945/*
4946 * Check if *p is a separator between Ex commands.
4947 * Return NULL if it isn't, (p + 1) if it is.
4948 */
4949 char_u *
4950check_nextcmd(p)
4951 char_u *p;
4952{
4953 p = skipwhite(p);
4954 if (*p == '|' || *p == '\n')
4955 return (p + 1);
4956 else
4957 return NULL;
4958}
4959
4960/*
4961 * - if there are more files to edit
4962 * - and this is the last window
4963 * - and forceit not used
4964 * - and not repeated twice on a row
4965 * return FAIL and give error message if 'message' TRUE
4966 * return OK otherwise
4967 */
4968 static int
4969check_more(message, forceit)
4970 int message; /* when FALSE check only, no messages */
4971 int forceit;
4972{
4973 int n = ARGCOUNT - curwin->w_arg_idx - 1;
4974
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004975 if (!forceit && only_one_window()
4976 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 {
4978 if (message)
4979 {
4980#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4981 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
4982 {
4983 char_u buff[IOSIZE];
4984
4985 if (n == 1)
4986 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
4987 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004988 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 _("%d more files to edit. Quit anyway?"), n);
4990 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
4991 return OK;
4992 return FAIL;
4993 }
4994#endif
4995 if (n == 1)
4996 EMSG(_("E173: 1 more file to edit"));
4997 else
4998 EMSGN(_("E173: %ld more files to edit"), n);
4999 quitmore = 2; /* next try to quit is allowed */
5000 }
5001 return FAIL;
5002 }
5003 return OK;
5004}
5005
5006#ifdef FEAT_CMDL_COMPL
5007/*
5008 * Function given to ExpandGeneric() to obtain the list of command names.
5009 */
5010/*ARGSUSED*/
5011 char_u *
5012get_command_name(xp, idx)
5013 expand_T *xp;
5014 int idx;
5015{
5016 if (idx >= (int)CMD_SIZE)
5017# ifdef FEAT_USR_CMDS
5018 return get_user_command_name(idx);
5019# else
5020 return NULL;
5021# endif
5022 return cmdnames[idx].cmd_name;
5023}
5024#endif
5025
5026#if defined(FEAT_USR_CMDS) || defined(PROTO)
5027static 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));
5028static void uc_list __ARGS((char_u *name, size_t name_len));
5029static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5030static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5031static 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));
5032
5033 static int
5034uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5035 char_u *name;
5036 size_t name_len;
5037 char_u *rep;
5038 long argt;
5039 long def;
5040 int flags;
5041 int compl;
5042 char_u *compl_arg;
5043 int force;
5044{
5045 ucmd_T *cmd = NULL;
5046 char_u *p;
5047 int i;
5048 int cmp = 1;
5049 char_u *rep_buf = NULL;
5050 garray_T *gap;
5051
Bram Moolenaar9c102382006-05-03 21:26:49 +00005052 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 if (rep_buf == NULL)
5054 {
5055 /* Can't replace termcodes - try using the string as is */
5056 rep_buf = vim_strsave(rep);
5057
5058 /* Give up if out of memory */
5059 if (rep_buf == NULL)
5060 return FAIL;
5061 }
5062
5063 /* get address of growarray: global or in curbuf */
5064 if (flags & UC_BUFFER)
5065 {
5066 gap = &curbuf->b_ucmds;
5067 if (gap->ga_itemsize == 0)
5068 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5069 }
5070 else
5071 gap = &ucmds;
5072
5073 /* Search for the command in the already defined commands. */
5074 for (i = 0; i < gap->ga_len; ++i)
5075 {
5076 size_t len;
5077
5078 cmd = USER_CMD_GA(gap, i);
5079 len = STRLEN(cmd->uc_name);
5080 cmp = STRNCMP(name, cmd->uc_name, name_len);
5081 if (cmp == 0)
5082 {
5083 if (name_len < len)
5084 cmp = -1;
5085 else if (name_len > len)
5086 cmp = 1;
5087 }
5088
5089 if (cmp == 0)
5090 {
5091 if (!force)
5092 {
5093 EMSG(_("E174: Command already exists: add ! to replace it"));
5094 goto fail;
5095 }
5096
5097 vim_free(cmd->uc_rep);
5098 cmd->uc_rep = 0;
5099 break;
5100 }
5101
5102 /* Stop as soon as we pass the name to add */
5103 if (cmp < 0)
5104 break;
5105 }
5106
5107 /* Extend the array unless we're replacing an existing command */
5108 if (cmp != 0)
5109 {
5110 if (ga_grow(gap, 1) != OK)
5111 goto fail;
5112 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5113 goto fail;
5114
5115 cmd = USER_CMD_GA(gap, i);
5116 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5117
5118 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119
5120 cmd->uc_name = p;
5121 }
5122
5123 cmd->uc_rep = rep_buf;
5124 cmd->uc_argt = argt;
5125 cmd->uc_def = def;
5126 cmd->uc_compl = compl;
5127#ifdef FEAT_EVAL
5128 cmd->uc_scriptID = current_SID;
5129# ifdef FEAT_CMDL_COMPL
5130 cmd->uc_compl_arg = compl_arg;
5131# endif
5132#endif
5133
5134 return OK;
5135
5136fail:
5137 vim_free(rep_buf);
5138#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5139 vim_free(compl_arg);
5140#endif
5141 return FAIL;
5142}
5143
5144/*
5145 * List of names for completion for ":command" with the EXPAND_ flag.
5146 * Must be alphabetical for completion.
5147 */
5148static struct
5149{
5150 int expand;
5151 char *name;
5152} command_complete[] =
5153{
5154 {EXPAND_AUGROUP, "augroup"},
5155 {EXPAND_BUFFERS, "buffer"},
5156 {EXPAND_COMMANDS, "command"},
5157#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5158 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005159 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160#endif
5161 {EXPAND_DIRECTORIES, "dir"},
5162 {EXPAND_ENV_VARS, "environment"},
5163 {EXPAND_EVENTS, "event"},
5164 {EXPAND_EXPRESSION, "expression"},
5165 {EXPAND_FILES, "file"},
5166 {EXPAND_FUNCTIONS, "function"},
5167 {EXPAND_HELP, "help"},
5168 {EXPAND_HIGHLIGHT, "highlight"},
5169 {EXPAND_MAPPINGS, "mapping"},
5170 {EXPAND_MENUS, "menu"},
5171 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005172 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 {EXPAND_TAGS, "tag"},
5174 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5175 {EXPAND_USER_VARS, "var"},
5176 {0, NULL}
5177};
5178
5179 static void
5180uc_list(name, name_len)
5181 char_u *name;
5182 size_t name_len;
5183{
5184 int i, j;
5185 int found = FALSE;
5186 ucmd_T *cmd;
5187 int len;
5188 long a;
5189 garray_T *gap;
5190
5191 gap = &curbuf->b_ucmds;
5192 for (;;)
5193 {
5194 for (i = 0; i < gap->ga_len; ++i)
5195 {
5196 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005197 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005198
5199 /* Skip commands which don't match the requested prefix */
5200 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5201 continue;
5202
5203 /* Put out the title first time */
5204 if (!found)
5205 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5206 found = TRUE;
5207 msg_putchar('\n');
5208 if (got_int)
5209 break;
5210
5211 /* Special cases */
5212 msg_putchar(a & BANG ? '!' : ' ');
5213 msg_putchar(a & REGSTR ? '"' : ' ');
5214 msg_putchar(gap != &ucmds ? 'b' : ' ');
5215 msg_putchar(' ');
5216
5217 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5218 len = (int)STRLEN(cmd->uc_name) + 4;
5219
5220 do {
5221 msg_putchar(' ');
5222 ++len;
5223 } while (len < 16);
5224
5225 len = 0;
5226
5227 /* Arguments */
5228 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5229 {
5230 case 0: IObuff[len++] = '0'; break;
5231 case (EXTRA): IObuff[len++] = '*'; break;
5232 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5233 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5234 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5235 }
5236
5237 do {
5238 IObuff[len++] = ' ';
5239 } while (len < 5);
5240
5241 /* Range */
5242 if (a & (RANGE|COUNT))
5243 {
5244 if (a & COUNT)
5245 {
5246 /* -count=N */
5247 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5248 len += (int)STRLEN(IObuff + len);
5249 }
5250 else if (a & DFLALL)
5251 IObuff[len++] = '%';
5252 else if (cmd->uc_def >= 0)
5253 {
5254 /* -range=N */
5255 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5256 len += (int)STRLEN(IObuff + len);
5257 }
5258 else
5259 IObuff[len++] = '.';
5260 }
5261
5262 do {
5263 IObuff[len++] = ' ';
5264 } while (len < 11);
5265
5266 /* Completion */
5267 for (j = 0; command_complete[j].expand != 0; ++j)
5268 if (command_complete[j].expand == cmd->uc_compl)
5269 {
5270 STRCPY(IObuff + len, command_complete[j].name);
5271 len += (int)STRLEN(IObuff + len);
5272 break;
5273 }
5274
5275 do {
5276 IObuff[len++] = ' ';
5277 } while (len < 21);
5278
5279 IObuff[len] = '\0';
5280 msg_outtrans(IObuff);
5281
5282 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005283#ifdef FEAT_EVAL
5284 if (p_verbose > 0)
5285 last_set_msg(cmd->uc_scriptID);
5286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 out_flush();
5288 ui_breakcheck();
5289 if (got_int)
5290 break;
5291 }
5292 if (gap == &ucmds || i < gap->ga_len)
5293 break;
5294 gap = &ucmds;
5295 }
5296
5297 if (!found)
5298 MSG(_("No user-defined commands found"));
5299}
5300
5301 static char_u *
5302uc_fun_cmd()
5303{
5304 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5305 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5306 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5307 0xb9, 0x7f, 0};
5308 int i;
5309
5310 for (i = 0; fcmd[i]; ++i)
5311 IObuff[i] = fcmd[i] - 0x40;
5312 IObuff[i] = 0;
5313 return IObuff;
5314}
5315
5316 static int
5317uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5318 char_u *attr;
5319 size_t len;
5320 long *argt;
5321 long *def;
5322 int *flags;
5323 int *compl;
5324 char_u **compl_arg;
5325{
5326 char_u *p;
5327
5328 if (len == 0)
5329 {
5330 EMSG(_("E175: No attribute specified"));
5331 return FAIL;
5332 }
5333
5334 /* First, try the simple attributes (no arguments) */
5335 if (STRNICMP(attr, "bang", len) == 0)
5336 *argt |= BANG;
5337 else if (STRNICMP(attr, "buffer", len) == 0)
5338 *flags |= UC_BUFFER;
5339 else if (STRNICMP(attr, "register", len) == 0)
5340 *argt |= REGSTR;
5341 else if (STRNICMP(attr, "bar", len) == 0)
5342 *argt |= TRLBAR;
5343 else
5344 {
5345 int i;
5346 char_u *val = NULL;
5347 size_t vallen = 0;
5348 size_t attrlen = len;
5349
5350 /* Look for the attribute name - which is the part before any '=' */
5351 for (i = 0; i < (int)len; ++i)
5352 {
5353 if (attr[i] == '=')
5354 {
5355 val = &attr[i + 1];
5356 vallen = len - i - 1;
5357 attrlen = i;
5358 break;
5359 }
5360 }
5361
5362 if (STRNICMP(attr, "nargs", attrlen) == 0)
5363 {
5364 if (vallen == 1)
5365 {
5366 if (*val == '0')
5367 /* Do nothing - this is the default */;
5368 else if (*val == '1')
5369 *argt |= (EXTRA | NOSPC | NEEDARG);
5370 else if (*val == '*')
5371 *argt |= EXTRA;
5372 else if (*val == '?')
5373 *argt |= (EXTRA | NOSPC);
5374 else if (*val == '+')
5375 *argt |= (EXTRA | NEEDARG);
5376 else
5377 goto wrong_nargs;
5378 }
5379 else
5380 {
5381wrong_nargs:
5382 EMSG(_("E176: Invalid number of arguments"));
5383 return FAIL;
5384 }
5385 }
5386 else if (STRNICMP(attr, "range", attrlen) == 0)
5387 {
5388 *argt |= RANGE;
5389 if (vallen == 1 && *val == '%')
5390 *argt |= DFLALL;
5391 else if (val != NULL)
5392 {
5393 p = val;
5394 if (*def >= 0)
5395 {
5396two_count:
5397 EMSG(_("E177: Count cannot be specified twice"));
5398 return FAIL;
5399 }
5400
5401 *def = getdigits(&p);
5402 *argt |= (ZEROR | NOTADR);
5403
5404 if (p != val + vallen || vallen == 0)
5405 {
5406invalid_count:
5407 EMSG(_("E178: Invalid default value for count"));
5408 return FAIL;
5409 }
5410 }
5411 }
5412 else if (STRNICMP(attr, "count", attrlen) == 0)
5413 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005414 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415
5416 if (val != NULL)
5417 {
5418 p = val;
5419 if (*def >= 0)
5420 goto two_count;
5421
5422 *def = getdigits(&p);
5423
5424 if (p != val + vallen)
5425 goto invalid_count;
5426 }
5427
5428 if (*def < 0)
5429 *def = 0;
5430 }
5431 else if (STRNICMP(attr, "complete", attrlen) == 0)
5432 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 if (val == NULL)
5434 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005435 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005436 return FAIL;
5437 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005439 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5440 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442 }
5443 else
5444 {
5445 char_u ch = attr[len];
5446 attr[len] = '\0';
5447 EMSG2(_("E181: Invalid attribute: %s"), attr);
5448 attr[len] = ch;
5449 return FAIL;
5450 }
5451 }
5452
5453 return OK;
5454}
5455
5456 static void
5457ex_command(eap)
5458 exarg_T *eap;
5459{
5460 char_u *name;
5461 char_u *end;
5462 char_u *p;
5463 long argt = 0;
5464 long def = -1;
5465 int flags = 0;
5466 int compl = EXPAND_NOTHING;
5467 char_u *compl_arg = NULL;
5468 int has_attr = (eap->arg[0] == '-');
5469
5470 p = eap->arg;
5471
5472 /* Check for attributes */
5473 while (*p == '-')
5474 {
5475 ++p;
5476 end = skiptowhite(p);
5477 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5478 == FAIL)
5479 return;
5480 p = skipwhite(end);
5481 }
5482
5483 /* Get the name (if any) and skip to the following argument */
5484 name = p;
5485 if (ASCII_ISALPHA(*p))
5486 while (ASCII_ISALNUM(*p))
5487 ++p;
5488 if (!ends_excmd(*p) && !vim_iswhite(*p))
5489 {
5490 EMSG(_("E182: Invalid command name"));
5491 return;
5492 }
5493 end = p;
5494
5495 /* If there is nothing after the name, and no attributes were specified,
5496 * we are listing commands
5497 */
5498 p = skipwhite(end);
5499 if (!has_attr && ends_excmd(*p))
5500 {
5501 uc_list(name, end - name);
5502 }
5503 else if (!ASCII_ISUPPER(*name))
5504 {
5505 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5506 return;
5507 }
5508 else
5509 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5510 eap->forceit);
5511}
5512
5513/*
5514 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515 * Clear all user commands, global and for current buffer.
5516 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005517/*ARGSUSED*/
5518 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519ex_comclear(eap)
5520 exarg_T *eap;
5521{
5522 uc_clear(&ucmds);
5523 uc_clear(&curbuf->b_ucmds);
5524}
5525
5526/*
5527 * Clear all user commands for "gap".
5528 */
5529 void
5530uc_clear(gap)
5531 garray_T *gap;
5532{
5533 int i;
5534 ucmd_T *cmd;
5535
5536 for (i = 0; i < gap->ga_len; ++i)
5537 {
5538 cmd = USER_CMD_GA(gap, i);
5539 vim_free(cmd->uc_name);
5540 vim_free(cmd->uc_rep);
5541# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5542 vim_free(cmd->uc_compl_arg);
5543# endif
5544 }
5545 ga_clear(gap);
5546}
5547
5548 static void
5549ex_delcommand(eap)
5550 exarg_T *eap;
5551{
5552 int i = 0;
5553 ucmd_T *cmd = NULL;
5554 int cmp = -1;
5555 garray_T *gap;
5556
5557 gap = &curbuf->b_ucmds;
5558 for (;;)
5559 {
5560 for (i = 0; i < gap->ga_len; ++i)
5561 {
5562 cmd = USER_CMD_GA(gap, i);
5563 cmp = STRCMP(eap->arg, cmd->uc_name);
5564 if (cmp <= 0)
5565 break;
5566 }
5567 if (gap == &ucmds || cmp == 0)
5568 break;
5569 gap = &ucmds;
5570 }
5571
5572 if (cmp != 0)
5573 {
5574 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5575 return;
5576 }
5577
5578 vim_free(cmd->uc_name);
5579 vim_free(cmd->uc_rep);
5580# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5581 vim_free(cmd->uc_compl_arg);
5582# endif
5583
5584 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585
5586 if (i < gap->ga_len)
5587 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5588}
5589
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005590/*
5591 * split and quote args for <f-args>
5592 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 static char_u *
5594uc_split_args(arg, lenp)
5595 char_u *arg;
5596 size_t *lenp;
5597{
5598 char_u *buf;
5599 char_u *p;
5600 char_u *q;
5601 int len;
5602
5603 /* Precalculate length */
5604 p = arg;
5605 len = 2; /* Initial and final quotes */
5606
5607 while (*p)
5608 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005609 if (p[0] == '\\' && p[1] == '\\')
5610 {
5611 len += 2;
5612 p += 2;
5613 }
5614 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 {
5616 len += 1;
5617 p += 2;
5618 }
5619 else if (*p == '\\' || *p == '"')
5620 {
5621 len += 2;
5622 p += 1;
5623 }
5624 else if (vim_iswhite(*p))
5625 {
5626 p = skipwhite(p);
5627 if (*p == NUL)
5628 break;
5629 len += 3; /* "," */
5630 }
5631 else
5632 {
5633 ++len;
5634 ++p;
5635 }
5636 }
5637
5638 buf = alloc(len + 1);
5639 if (buf == NULL)
5640 {
5641 *lenp = 0;
5642 return buf;
5643 }
5644
5645 p = arg;
5646 q = buf;
5647 *q++ = '"';
5648 while (*p)
5649 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005650 if (p[0] == '\\' && p[1] == '\\')
5651 {
5652 *q++ = '\\';
5653 *q++ = '\\';
5654 p += 2;
5655 }
5656 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657 {
5658 *q++ = p[1];
5659 p += 2;
5660 }
5661 else if (*p == '\\' || *p == '"')
5662 {
5663 *q++ = '\\';
5664 *q++ = *p++;
5665 }
5666 else if (vim_iswhite(*p))
5667 {
5668 p = skipwhite(p);
5669 if (*p == NUL)
5670 break;
5671 *q++ = '"';
5672 *q++ = ',';
5673 *q++ = '"';
5674 }
5675 else
5676 {
5677 *q++ = *p++;
5678 }
5679 }
5680 *q++ = '"';
5681 *q = 0;
5682
5683 *lenp = len;
5684 return buf;
5685}
5686
5687/*
5688 * Check for a <> code in a user command.
5689 * "code" points to the '<'. "len" the length of the <> (inclusive).
5690 * "buf" is where the result is to be added.
5691 * "split_buf" points to a buffer used for splitting, caller should free it.
5692 * "split_len" is the length of what "split_buf" contains.
5693 * Returns the length of the replacement, which has been added to "buf".
5694 * Returns -1 if there was no match, and only the "<" has been copied.
5695 */
5696 static size_t
5697uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5698 char_u *code;
5699 size_t len;
5700 char_u *buf;
5701 ucmd_T *cmd; /* the user command we're expanding */
5702 exarg_T *eap; /* ex arguments */
5703 char_u **split_buf;
5704 size_t *split_len;
5705{
5706 size_t result = 0;
5707 char_u *p = code + 1;
5708 size_t l = len - 2;
5709 int quote = 0;
5710 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5711 ct_LT, ct_NONE } type = ct_NONE;
5712
5713 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5714 {
5715 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5716 p += 2;
5717 l -= 2;
5718 }
5719
Bram Moolenaar371d5402006-03-20 21:47:49 +00005720 ++l;
5721 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005723 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005725 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005727 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005728 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005729 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005730 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005731 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005732 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005733 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005735 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 type = ct_REGISTER;
5737
5738 switch (type)
5739 {
5740 case ct_ARGS:
5741 /* Simple case first */
5742 if (*eap->arg == NUL)
5743 {
5744 if (quote == 1)
5745 {
5746 result = 2;
5747 if (buf != NULL)
5748 STRCPY(buf, "''");
5749 }
5750 else
5751 result = 0;
5752 break;
5753 }
5754
5755 /* When specified there is a single argument don't split it.
5756 * Works for ":Cmd %" when % is "a b c". */
5757 if ((eap->argt & NOSPC) && quote == 2)
5758 quote = 1;
5759
5760 switch (quote)
5761 {
5762 case 0: /* No quoting, no splitting */
5763 result = STRLEN(eap->arg);
5764 if (buf != NULL)
5765 STRCPY(buf, eap->arg);
5766 break;
5767 case 1: /* Quote, but don't split */
5768 result = STRLEN(eap->arg) + 2;
5769 for (p = eap->arg; *p; ++p)
5770 {
5771 if (*p == '\\' || *p == '"')
5772 ++result;
5773 }
5774
5775 if (buf != NULL)
5776 {
5777 *buf++ = '"';
5778 for (p = eap->arg; *p; ++p)
5779 {
5780 if (*p == '\\' || *p == '"')
5781 *buf++ = '\\';
5782 *buf++ = *p;
5783 }
5784 *buf = '"';
5785 }
5786
5787 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005788 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 /* This is hard, so only do it once, and cache the result */
5790 if (*split_buf == NULL)
5791 *split_buf = uc_split_args(eap->arg, split_len);
5792
5793 result = *split_len;
5794 if (buf != NULL && result != 0)
5795 STRCPY(buf, *split_buf);
5796
5797 break;
5798 }
5799 break;
5800
5801 case ct_BANG:
5802 result = eap->forceit ? 1 : 0;
5803 if (quote)
5804 result += 2;
5805 if (buf != NULL)
5806 {
5807 if (quote)
5808 *buf++ = '"';
5809 if (eap->forceit)
5810 *buf++ = '!';
5811 if (quote)
5812 *buf = '"';
5813 }
5814 break;
5815
5816 case ct_LINE1:
5817 case ct_LINE2:
5818 case ct_COUNT:
5819 {
5820 char num_buf[20];
5821 long num = (type == ct_LINE1) ? eap->line1 :
5822 (type == ct_LINE2) ? eap->line2 :
5823 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5824 size_t num_len;
5825
5826 sprintf(num_buf, "%ld", num);
5827 num_len = STRLEN(num_buf);
5828 result = num_len;
5829
5830 if (quote)
5831 result += 2;
5832
5833 if (buf != NULL)
5834 {
5835 if (quote)
5836 *buf++ = '"';
5837 STRCPY(buf, num_buf);
5838 buf += num_len;
5839 if (quote)
5840 *buf = '"';
5841 }
5842
5843 break;
5844 }
5845
5846 case ct_REGISTER:
5847 result = eap->regname ? 1 : 0;
5848 if (quote)
5849 result += 2;
5850 if (buf != NULL)
5851 {
5852 if (quote)
5853 *buf++ = '\'';
5854 if (eap->regname)
5855 *buf++ = eap->regname;
5856 if (quote)
5857 *buf = '\'';
5858 }
5859 break;
5860
5861 case ct_LT:
5862 result = 1;
5863 if (buf != NULL)
5864 *buf = '<';
5865 break;
5866
5867 default:
5868 /* Not recognized: just copy the '<' and return -1. */
5869 result = (size_t)-1;
5870 if (buf != NULL)
5871 *buf = '<';
5872 break;
5873 }
5874
5875 return result;
5876}
5877
5878 static void
5879do_ucmd(eap)
5880 exarg_T *eap;
5881{
5882 char_u *buf;
5883 char_u *p;
5884 char_u *q;
5885
5886 char_u *start;
5887 char_u *end;
5888 size_t len, totlen;
5889
5890 size_t split_len = 0;
5891 char_u *split_buf = NULL;
5892 ucmd_T *cmd;
5893#ifdef FEAT_EVAL
5894 scid_T save_current_SID = current_SID;
5895#endif
5896
5897 if (eap->cmdidx == CMD_USER)
5898 cmd = USER_CMD(eap->useridx);
5899 else
5900 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5901
5902 /*
5903 * Replace <> in the command by the arguments.
5904 */
5905 buf = NULL;
5906 for (;;)
5907 {
5908 p = cmd->uc_rep;
5909 q = buf;
5910 totlen = 0;
5911 while ((start = vim_strchr(p, '<')) != NULL
5912 && (end = vim_strchr(start + 1, '>')) != NULL)
5913 {
5914 /* Include the '>' */
5915 ++end;
5916
5917 /* Take everything up to the '<' */
5918 len = start - p;
5919 if (buf == NULL)
5920 totlen += len;
5921 else
5922 {
5923 mch_memmove(q, p, len);
5924 q += len;
5925 }
5926
5927 len = uc_check_code(start, end - start, q, cmd, eap,
5928 &split_buf, &split_len);
5929 if (len == (size_t)-1)
5930 {
5931 /* no match, continue after '<' */
5932 p = start + 1;
5933 len = 1;
5934 }
5935 else
5936 p = end;
5937 if (buf == NULL)
5938 totlen += len;
5939 else
5940 q += len;
5941 }
5942 if (buf != NULL) /* second time here, finished */
5943 {
5944 STRCPY(q, p);
5945 break;
5946 }
5947
5948 totlen += STRLEN(p); /* Add on the trailing characters */
5949 buf = alloc((unsigned)(totlen + 1));
5950 if (buf == NULL)
5951 {
5952 vim_free(split_buf);
5953 return;
5954 }
5955 }
5956
5957#ifdef FEAT_EVAL
5958 current_SID = cmd->uc_scriptID;
5959#endif
5960 (void)do_cmdline(buf, eap->getline, eap->cookie,
5961 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5962#ifdef FEAT_EVAL
5963 current_SID = save_current_SID;
5964#endif
5965 vim_free(buf);
5966 vim_free(split_buf);
5967}
5968
5969# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5970 static char_u *
5971get_user_command_name(idx)
5972 int idx;
5973{
5974 return get_user_commands(NULL, idx - (int)CMD_SIZE);
5975}
5976
5977/*
5978 * Function given to ExpandGeneric() to obtain the list of user command names.
5979 */
5980/*ARGSUSED*/
5981 char_u *
5982get_user_commands(xp, idx)
5983 expand_T *xp;
5984 int idx;
5985{
5986 if (idx < curbuf->b_ucmds.ga_len)
5987 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
5988 idx -= curbuf->b_ucmds.ga_len;
5989 if (idx < ucmds.ga_len)
5990 return USER_CMD(idx)->uc_name;
5991 return NULL;
5992}
5993
5994/*
5995 * Function given to ExpandGeneric() to obtain the list of user command
5996 * attributes.
5997 */
5998/*ARGSUSED*/
5999 char_u *
6000get_user_cmd_flags(xp, idx)
6001 expand_T *xp;
6002 int idx;
6003{
6004 static char *user_cmd_flags[] =
6005 {"bang", "bar", "buffer", "complete", "count",
6006 "nargs", "range", "register"};
6007
6008 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
6009 return NULL;
6010 return (char_u *)user_cmd_flags[idx];
6011}
6012
6013/*
6014 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6015 */
6016/*ARGSUSED*/
6017 char_u *
6018get_user_cmd_nargs(xp, idx)
6019 expand_T *xp;
6020 int idx;
6021{
6022 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6023
6024 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
6025 return NULL;
6026 return (char_u *)user_cmd_nargs[idx];
6027}
6028
6029/*
6030 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6031 */
6032/*ARGSUSED*/
6033 char_u *
6034get_user_cmd_complete(xp, idx)
6035 expand_T *xp;
6036 int idx;
6037{
6038 return (char_u *)command_complete[idx].name;
6039}
6040# endif /* FEAT_CMDL_COMPL */
6041
6042#endif /* FEAT_USR_CMDS */
6043
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006044#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6045/*
6046 * Parse a completion argument "value[vallen]".
6047 * The detected completion goes in "*complp", argument type in "*argt".
6048 * When there is an argument, for function and user defined completion, it's
6049 * copied to allocated memory and stored in "*compl_arg".
6050 * Returns FAIL if something is wrong.
6051 */
6052 int
6053parse_compl_arg(value, vallen, complp, argt, compl_arg)
6054 char_u *value;
6055 int vallen;
6056 int *complp;
6057 long *argt;
6058 char_u **compl_arg;
6059{
6060 char_u *arg = NULL;
6061 size_t arglen = 0;
6062 int i;
6063 int valend = vallen;
6064
6065 /* Look for any argument part - which is the part after any ',' */
6066 for (i = 0; i < vallen; ++i)
6067 {
6068 if (value[i] == ',')
6069 {
6070 arg = &value[i + 1];
6071 arglen = vallen - i - 1;
6072 valend = i;
6073 break;
6074 }
6075 }
6076
6077 for (i = 0; command_complete[i].expand != 0; ++i)
6078 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006079 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006080 && STRNCMP(value, command_complete[i].name, valend) == 0)
6081 {
6082 *complp = command_complete[i].expand;
6083 if (command_complete[i].expand == EXPAND_BUFFERS)
6084 *argt |= BUFNAME;
6085 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6086 || command_complete[i].expand == EXPAND_FILES)
6087 *argt |= XFILE;
6088 break;
6089 }
6090 }
6091
6092 if (command_complete[i].expand == 0)
6093 {
6094 EMSG2(_("E180: Invalid complete value: %s"), value);
6095 return FAIL;
6096 }
6097
6098# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6099 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6100 && arg != NULL)
6101# else
6102 if (arg != NULL)
6103# endif
6104 {
6105 EMSG(_("E468: Completion argument only allowed for custom completion"));
6106 return FAIL;
6107 }
6108
6109# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6110 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6111 && arg == NULL)
6112 {
6113 EMSG(_("E467: Custom completion requires a function argument"));
6114 return FAIL;
6115 }
6116
6117 if (arg != NULL)
6118 *compl_arg = vim_strnsave(arg, (int)arglen);
6119# endif
6120 return OK;
6121}
6122#endif
6123
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124 static void
6125ex_colorscheme(eap)
6126 exarg_T *eap;
6127{
6128 if (load_colors(eap->arg) == FAIL)
6129 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6130}
6131
6132 static void
6133ex_highlight(eap)
6134 exarg_T *eap;
6135{
6136 if (*eap->arg == NUL && eap->cmd[2] == '!')
6137 MSG(_("Greetings, Vim user!"));
6138 do_highlight(eap->arg, eap->forceit, FALSE);
6139}
6140
6141
6142/*
6143 * Call this function if we thought we were going to exit, but we won't
6144 * (because of an error). May need to restore the terminal mode.
6145 */
6146 void
6147not_exiting()
6148{
6149 exiting = FALSE;
6150 settmode(TMODE_RAW);
6151}
6152
6153/*
6154 * ":quit": quit current window, quit Vim if closed the last window.
6155 */
6156 static void
6157ex_quit(eap)
6158 exarg_T *eap;
6159{
6160#ifdef FEAT_CMDWIN
6161 if (cmdwin_type != 0)
6162 {
6163 cmdwin_result = Ctrl_C;
6164 return;
6165 }
6166#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006167 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006168 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006169 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006170 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006171 return;
6172 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006173#ifdef FEAT_AUTOCMD
6174 if (curbuf_locked())
6175 return;
6176#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177
6178#ifdef FEAT_NETBEANS_INTG
6179 netbeansForcedQuit = eap->forceit;
6180#endif
6181
6182 /*
6183 * If there are more files or windows we won't exit.
6184 */
6185 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6186 exiting = TRUE;
6187 if ((!P_HID(curbuf)
6188 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6189 || check_more(TRUE, eap->forceit) == FAIL
6190 || (only_one_window() && check_changed_any(eap->forceit)))
6191 {
6192 not_exiting();
6193 }
6194 else
6195 {
6196#ifdef FEAT_WINDOWS
6197 if (only_one_window()) /* quit last window */
6198#endif
6199 getout(0);
6200#ifdef FEAT_WINDOWS
6201# ifdef FEAT_GUI
6202 need_mouse_correct = TRUE;
6203# endif
6204 /* close window; may free buffer */
6205 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6206#endif
6207 }
6208}
6209
6210/*
6211 * ":cquit".
6212 */
6213/*ARGSUSED*/
6214 static void
6215ex_cquit(eap)
6216 exarg_T *eap;
6217{
6218 getout(1); /* this does not always pass on the exit code to the Manx
6219 compiler. why? */
6220}
6221
6222/*
6223 * ":qall": try to quit all windows
6224 */
6225 static void
6226ex_quit_all(eap)
6227 exarg_T *eap;
6228{
6229# ifdef FEAT_CMDWIN
6230 if (cmdwin_type != 0)
6231 {
6232 if (eap->forceit)
6233 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6234 else
6235 cmdwin_result = K_XF2;
6236 return;
6237 }
6238# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006239
6240 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006241 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006242 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006243 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006244 return;
6245 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006246#ifdef FEAT_AUTOCMD
6247 if (curbuf_locked())
6248 return;
6249#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006250
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251 exiting = TRUE;
6252 if (eap->forceit || !check_changed_any(FALSE))
6253 getout(0);
6254 not_exiting();
6255}
6256
Bram Moolenaard9967712006-03-11 21:18:15 +00006257#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258/*
6259 * ":close": close current window, unless it is the last one
6260 */
6261 static void
6262ex_close(eap)
6263 exarg_T *eap;
6264{
6265# ifdef FEAT_CMDWIN
6266 if (cmdwin_type != 0)
6267 cmdwin_result = K_IGNORE;
6268 else
6269# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006270 if (!text_locked()
6271#ifdef FEAT_AUTOCMD
6272 && !curbuf_locked()
6273#endif
6274 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006275 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276}
6277
Bram Moolenaard9967712006-03-11 21:18:15 +00006278# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006279/*
6280 * ":pclose": Close any preview window.
6281 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006283ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006285{
6286 win_T *win;
6287
6288 for (win = firstwin; win != NULL; win = win->w_next)
6289 if (win->w_p_pvw)
6290 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006291 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006292 break;
6293 }
6294}
Bram Moolenaard9967712006-03-11 21:18:15 +00006295# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006296
Bram Moolenaarf740b292006-02-16 22:11:02 +00006297/*
6298 * Close window "win" and take care of handling closing the last window for a
6299 * modified buffer.
6300 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006301 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006302ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006303 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006305 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306{
6307 int need_hide;
6308 buf_T *buf = win->w_buffer;
6309
6310 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006311 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006313# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006314 if ((p_confirm || cmdmod.confirm) && p_write)
6315 {
6316 dialog_changed(buf, FALSE);
6317 if (buf_valid(buf) && bufIsChanged(buf))
6318 return;
6319 need_hide = FALSE;
6320 }
6321 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006322# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323 {
6324 EMSG(_(e_nowrtmsg));
6325 return;
6326 }
6327 }
6328
Bram Moolenaard9967712006-03-11 21:18:15 +00006329# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006331# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006332
Bram Moolenaar071d4272004-06-13 20:20:40 +00006333 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006334 if (tp == NULL)
6335 win_close(win, !need_hide && !P_HID(buf));
6336 else
6337 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338}
6339
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006341 * ":tabclose": close current tab page, unless it is the last one.
6342 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343 */
6344 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006345ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346 exarg_T *eap;
6347{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006348 tabpage_T *tp;
6349
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006350# ifdef FEAT_CMDWIN
6351 if (cmdwin_type != 0)
6352 cmdwin_result = K_IGNORE;
6353 else
6354# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006355 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006356 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006357 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006359 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006360 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006361 tp = find_tabpage((int)eap->line2);
6362 if (tp == NULL)
6363 {
6364 beep_flush();
6365 return;
6366 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006367 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006368 {
6369 tabpage_close_other(tp, eap->forceit);
6370 return;
6371 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006372 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006373 if (!text_locked()
6374#ifdef FEAT_AUTOCMD
6375 && !curbuf_locked()
6376#endif
6377 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006378 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006380}
6381
6382/*
6383 * ":tabonly": close all tab pages except the current one
6384 */
6385 static void
6386ex_tabonly(eap)
6387 exarg_T *eap;
6388{
6389 tabpage_T *tp;
6390 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006391
6392# ifdef FEAT_CMDWIN
6393 if (cmdwin_type != 0)
6394 cmdwin_result = K_IGNORE;
6395 else
6396# endif
6397 if (first_tabpage->tp_next == NULL)
6398 MSG(_("Already only one tab page"));
6399 else
6400 {
6401 /* Repeat this up to a 1000 times, because autocommands may mess
6402 * up the lists. */
6403 for (done = 0; done < 1000; ++done)
6404 {
6405 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6406 if (tp->tp_topframe != topframe)
6407 {
6408 tabpage_close_other(tp, eap->forceit);
6409 /* if we failed to close it quit */
6410 if (valid_tabpage(tp))
6411 done = 1000;
6412 /* start over, "tp" is now invalid */
6413 break;
6414 }
6415 if (first_tabpage->tp_next == NULL)
6416 break;
6417 }
6418 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420
6421/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006422 * Close the current tab page.
6423 */
6424 void
6425tabpage_close(forceit)
6426 int forceit;
6427{
6428 /* First close all the windows but the current one. If that worked then
6429 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006430 if (lastwin != firstwin)
6431 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006432 if (lastwin == firstwin)
6433 ex_win_close(forceit, curwin, NULL);
6434# ifdef FEAT_GUI
6435 need_mouse_correct = TRUE;
6436# endif
6437}
6438
6439/*
6440 * Close tab page "tp", which is not the current tab page.
6441 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006442 * Also takes care of the tab pages line disappearing when closing the
6443 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006444 */
6445 void
6446tabpage_close_other(tp, forceit)
6447 tabpage_T *tp;
6448 int forceit;
6449{
6450 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006451 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006452 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006453
6454 /* Limit to 1000 windows, autocommands may add a window while we close
6455 * one. OK, so I'm paranoid... */
6456 while (++done < 1000)
6457 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006458 wp = tp->tp_firstwin;
6459 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006460
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006461 /* Autocommands may delete the tab page under our fingers and we may
6462 * fail to close a window with a modified buffer. */
6463 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006464 break;
6465 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006466
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006467 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006468 if (h != tabline_height())
6469 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006470}
6471
6472/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006473 * ":only".
6474 */
6475 static void
6476ex_only(eap)
6477 exarg_T *eap;
6478{
6479# ifdef FEAT_GUI
6480 need_mouse_correct = TRUE;
6481# endif
6482 close_others(TRUE, eap->forceit);
6483}
6484
6485/*
6486 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006487 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006489 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006490ex_all(eap)
6491 exarg_T *eap;
6492{
6493 if (eap->addr_count == 0)
6494 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006495 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496}
6497#endif /* FEAT_WINDOWS */
6498
6499 static void
6500ex_hide(eap)
6501 exarg_T *eap;
6502{
6503 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6504 eap->errmsg = e_invarg;
6505 else
6506 {
6507 /* ":hide" or ":hide | cmd": hide current window */
6508 eap->nextcmd = check_nextcmd(eap->arg);
6509#ifdef FEAT_WINDOWS
6510 if (!eap->skip)
6511 {
6512# ifdef FEAT_GUI
6513 need_mouse_correct = TRUE;
6514# endif
6515 win_close(curwin, FALSE); /* don't free buffer */
6516 }
6517#endif
6518 }
6519}
6520
6521/*
6522 * ":stop" and ":suspend": Suspend Vim.
6523 */
6524 static void
6525ex_stop(eap)
6526 exarg_T *eap;
6527{
6528 /*
6529 * Disallow suspending for "rvim".
6530 */
6531 if (!check_restricted()
6532#ifdef WIN3264
6533 /*
6534 * Check if external commands are allowed now.
6535 */
6536 && can_end_termcap_mode(TRUE)
6537#endif
6538 )
6539 {
6540 if (!eap->forceit)
6541 autowrite_all();
6542 windgoto((int)Rows - 1, 0);
6543 out_char('\n');
6544 out_flush();
6545 stoptermcap();
6546 out_flush(); /* needed for SUN to restore xterm buffer */
6547#ifdef FEAT_TITLE
6548 mch_restore_title(3); /* restore window titles */
6549#endif
6550 ui_suspend(); /* call machine specific function */
6551#ifdef FEAT_TITLE
6552 maketitle();
6553 resettitle(); /* force updating the title */
6554#endif
6555 starttermcap();
6556 scroll_start(); /* scroll screen before redrawing */
6557 redraw_later_clear();
6558 shell_resized(); /* may have resized window */
6559 }
6560}
6561
6562/*
6563 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6564 */
6565 static void
6566ex_exit(eap)
6567 exarg_T *eap;
6568{
6569#ifdef FEAT_CMDWIN
6570 if (cmdwin_type != 0)
6571 {
6572 cmdwin_result = Ctrl_C;
6573 return;
6574 }
6575#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006576 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006577 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006578 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006579 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006580 return;
6581 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006582#ifdef FEAT_AUTOCMD
6583 if (curbuf_locked())
6584 return;
6585#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586
6587 /*
6588 * if more files or windows we won't exit
6589 */
6590 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6591 exiting = TRUE;
6592 if ( ((eap->cmdidx == CMD_wq
6593 || curbufIsChanged())
6594 && do_write(eap) == FAIL)
6595 || check_more(TRUE, eap->forceit) == FAIL
6596 || (only_one_window() && check_changed_any(eap->forceit)))
6597 {
6598 not_exiting();
6599 }
6600 else
6601 {
6602#ifdef FEAT_WINDOWS
6603 if (only_one_window()) /* quit last window, exit Vim */
6604#endif
6605 getout(0);
6606#ifdef FEAT_WINDOWS
6607# ifdef FEAT_GUI
6608 need_mouse_correct = TRUE;
6609# endif
6610 /* quit current window, may free buffer */
6611 win_close(curwin, !P_HID(curwin->w_buffer));
6612#endif
6613 }
6614}
6615
6616/*
6617 * ":print", ":list", ":number".
6618 */
6619 static void
6620ex_print(eap)
6621 exarg_T *eap;
6622{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006623 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6624 EMSG(_(e_emptybuf));
6625 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006627 for ( ;!got_int; ui_breakcheck())
6628 {
6629 print_line(eap->line1,
6630 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6631 || (eap->flags & EXFLAG_NR)),
6632 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6633 if (++eap->line1 > eap->line2)
6634 break;
6635 out_flush(); /* show one line at a time */
6636 }
6637 setpcmark();
6638 /* put cursor at last line */
6639 curwin->w_cursor.lnum = eap->line2;
6640 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 }
6642
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644}
6645
6646#ifdef FEAT_BYTEOFF
6647 static void
6648ex_goto(eap)
6649 exarg_T *eap;
6650{
6651 goto_byte(eap->line2);
6652}
6653#endif
6654
6655/*
6656 * ":shell".
6657 */
6658/*ARGSUSED*/
6659 static void
6660ex_shell(eap)
6661 exarg_T *eap;
6662{
6663 do_shell(NULL, 0);
6664}
6665
6666#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6667 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006668 || defined(FEAT_GUI_MSWIN) \
6669 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670 || defined(PROTO)
6671
6672/*
6673 * Handle a file drop. The code is here because a drop is *nearly* like an
6674 * :args command, but not quite (we have a list of exact filenames, so we
6675 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6676 * code is very similar to :args and hence needs access to a lot of the static
6677 * functions in this file.
6678 *
6679 * The list should be allocated using alloc(), as should each item in the
6680 * list. This function takes over responsibility for freeing the list.
6681 *
Bram Moolenaar81870892007-11-11 18:17:28 +00006682 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00006683 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6684 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6685 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6686 * file functionality is (currently) not in EMX this is not presently a
6687 * problem.
6688 */
6689 void
6690handle_drop(filec, filev, split)
6691 int filec; /* the number of files dropped */
6692 char_u **filev; /* the list of files dropped */
6693 int split; /* force splitting the window */
6694{
6695 exarg_T ea;
6696 int save_msg_scroll = msg_scroll;
6697
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006698 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006699 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006700 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006701#ifdef FEAT_AUTOCMD
6702 if (curbuf_locked())
6703 return;
6704#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006705
6706 /* Check whether the current buffer is changed. If so, we will need
6707 * to split the current window or data could be lost.
6708 * We don't need to check if the 'hidden' option is set, as in this
6709 * case the buffer won't be lost.
6710 */
6711 if (!P_HID(curbuf) && !split)
6712 {
6713 ++emsg_off;
6714 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6715 --emsg_off;
6716 }
6717 if (split)
6718 {
6719# ifdef FEAT_WINDOWS
6720 if (win_split(0, 0) == FAIL)
6721 return;
6722# ifdef FEAT_SCROLLBIND
6723 curwin->w_p_scb = FALSE;
6724# endif
6725
6726 /* When splitting the window, create a new alist. Otherwise the
6727 * existing one is overwritten. */
6728 alist_unlink(curwin->w_alist);
6729 alist_new();
6730# else
6731 return; /* can't split, always fail */
6732# endif
6733 }
6734
6735 /*
6736 * Set up the new argument list.
6737 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006738 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006739
6740 /*
6741 * Move to the first file.
6742 */
6743 /* Fake up a minimal "next" command for do_argfile() */
6744 vim_memset(&ea, 0, sizeof(ea));
6745 ea.cmd = (char_u *)"next";
6746 do_argfile(&ea, 0);
6747
6748 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6749 * mode that is not needed here. */
6750 need_start_insertmode = FALSE;
6751
6752 /* Restore msg_scroll, otherwise a following command may cause scrolling
6753 * unexpectedly. The screen will be redrawn by the caller, thus
6754 * msg_scroll being set by displaying a message is irrelevant. */
6755 msg_scroll = save_msg_scroll;
6756}
6757#endif
6758
Bram Moolenaar071d4272004-06-13 20:20:40 +00006759/*
6760 * Clear an argument list: free all file names and reset it to zero entries.
6761 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006762 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006763alist_clear(al)
6764 alist_T *al;
6765{
6766 while (--al->al_ga.ga_len >= 0)
6767 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6768 ga_clear(&al->al_ga);
6769}
6770
6771/*
6772 * Init an argument list.
6773 */
6774 void
6775alist_init(al)
6776 alist_T *al;
6777{
6778 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6779}
6780
6781#if defined(FEAT_WINDOWS) || defined(PROTO)
6782
6783/*
6784 * Remove a reference from an argument list.
6785 * Ignored when the argument list is the global one.
6786 * If the argument list is no longer used by any window, free it.
6787 */
6788 void
6789alist_unlink(al)
6790 alist_T *al;
6791{
6792 if (al != &global_alist && --al->al_refcount <= 0)
6793 {
6794 alist_clear(al);
6795 vim_free(al);
6796 }
6797}
6798
6799# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6800/*
6801 * Create a new argument list and use it for the current window.
6802 */
6803 void
6804alist_new()
6805{
6806 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6807 if (curwin->w_alist == NULL)
6808 {
6809 curwin->w_alist = &global_alist;
6810 ++global_alist.al_refcount;
6811 }
6812 else
6813 {
6814 curwin->w_alist->al_refcount = 1;
6815 alist_init(curwin->w_alist);
6816 }
6817}
6818# endif
6819#endif
6820
6821#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6822/*
6823 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006824 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6825 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 */
6827 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006828alist_expand(fnum_list, fnum_len)
6829 int *fnum_list;
6830 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006831{
6832 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006833 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006834 char_u **new_arg_files;
6835 int new_arg_file_count;
6836 char_u *save_p_su = p_su;
6837 int i;
6838
6839 /* Don't use 'suffixes' here. This should work like the shell did the
6840 * expansion. Also, the vimrc file isn't read yet, thus the user
6841 * can't set the options. */
6842 p_su = empty_option;
6843 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6844 if (old_arg_files != NULL)
6845 {
6846 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006847 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6848 old_arg_count = GARGCOUNT;
6849 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006850 &new_arg_file_count, &new_arg_files,
6851 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6852 && new_arg_file_count > 0)
6853 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006854 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6855 TRUE, fnum_list, fnum_len);
6856 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006857 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006858 }
6859 p_su = save_p_su;
6860}
6861#endif
6862
6863/*
6864 * Set the argument list for the current window.
6865 * Takes over the allocated files[] and the allocated fnames in it.
6866 */
6867 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006868alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006869 alist_T *al;
6870 int count;
6871 char_u **files;
6872 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006873 int *fnum_list;
6874 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875{
6876 int i;
6877
6878 alist_clear(al);
6879 if (ga_grow(&al->al_ga, count) == OK)
6880 {
6881 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006882 {
6883 if (got_int)
6884 {
6885 /* When adding many buffers this can take a long time. Allow
6886 * interrupting here. */
6887 while (i < count)
6888 vim_free(files[i++]);
6889 break;
6890 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006891
6892 /* May set buffer name of a buffer previously used for the
6893 * argument list, so that it's re-used by alist_add. */
6894 if (fnum_list != NULL && i < fnum_len)
6895 buf_set_name(fnum_list[i], files[i]);
6896
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006898 ui_breakcheck();
6899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900 vim_free(files);
6901 }
6902 else
6903 FreeWild(count, files);
6904#ifdef FEAT_WINDOWS
6905 if (al == &global_alist)
6906#endif
6907 arg_had_last = FALSE;
6908}
6909
6910/*
6911 * Add file "fname" to argument list "al".
6912 * "fname" must have been allocated and "al" must have been checked for room.
6913 */
6914 void
6915alist_add(al, fname, set_fnum)
6916 alist_T *al;
6917 char_u *fname;
6918 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6919{
6920 if (fname == NULL) /* don't add NULL file names */
6921 return;
6922#ifdef BACKSLASH_IN_FILENAME
6923 slash_adjust(fname);
6924#endif
6925 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6926 if (set_fnum > 0)
6927 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6928 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6929 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930}
6931
6932#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6933/*
6934 * Adjust slashes in file names. Called after 'shellslash' was set.
6935 */
6936 void
6937alist_slash_adjust()
6938{
6939 int i;
6940# ifdef FEAT_WINDOWS
6941 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006942 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943# endif
6944
6945 for (i = 0; i < GARGCOUNT; ++i)
6946 if (GARGLIST[i].ae_fname != NULL)
6947 slash_adjust(GARGLIST[i].ae_fname);
6948# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006949 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 if (wp->w_alist != &global_alist)
6951 for (i = 0; i < WARGCOUNT(wp); ++i)
6952 if (WARGLIST(wp)[i].ae_fname != NULL)
6953 slash_adjust(WARGLIST(wp)[i].ae_fname);
6954# endif
6955}
6956#endif
6957
6958/*
6959 * ":preserve".
6960 */
6961/*ARGSUSED*/
6962 static void
6963ex_preserve(eap)
6964 exarg_T *eap;
6965{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006966 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006967 ml_preserve(curbuf, TRUE);
6968}
6969
6970/*
6971 * ":recover".
6972 */
6973 static void
6974ex_recover(eap)
6975 exarg_T *eap;
6976{
6977 /* Set recoverymode right away to avoid the ATTENTION prompt. */
6978 recoverymode = TRUE;
6979 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
6980 && (*eap->arg == NUL
6981 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
6982 ml_recover();
6983 recoverymode = FALSE;
6984}
6985
6986/*
6987 * Command modifier used in a wrong way.
6988 */
6989 static void
6990ex_wrongmodifier(eap)
6991 exarg_T *eap;
6992{
6993 eap->errmsg = e_invcmd;
6994}
6995
6996#ifdef FEAT_WINDOWS
6997/*
6998 * :sview [+command] file split window with new file, read-only
6999 * :split [[+command] file] split window with current or new file
7000 * :vsplit [[+command] file] split window vertically with current or new file
7001 * :new [[+command] file] split window with no or new file
7002 * :vnew [[+command] file] split vertically window with no or new file
7003 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007004 *
7005 * :tabedit open new Tab page with empty window
7006 * :tabedit [+command] file open new Tab page and edit "file"
7007 * :tabnew [[+command] file] just like :tabedit
7008 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 */
7010 void
7011ex_splitview(eap)
7012 exarg_T *eap;
7013{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007014 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007015# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007017# endif
7018# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007019 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007020# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007022# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7024 {
7025 ex_ni(eap);
7026 return;
7027 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007028# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007030# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007032# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007034# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035 /* A ":split" in the quickfix window works like ":new". Don't want two
7036 * quickfix windows. */
7037 if (bt_quickfix(curbuf))
7038 {
7039 if (eap->cmdidx == CMD_split)
7040 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007041# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007042 if (eap->cmdidx == CMD_vsplit)
7043 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007044# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007046# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007048# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007049 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 {
7051 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7052 FNAME_MESS, TRUE, curbuf->b_ffname);
7053 if (fname == NULL)
7054 goto theend;
7055 eap->arg = fname;
7056 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007057# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007059# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007061# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007063# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007065# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066 && eap->cmdidx != CMD_new)
7067 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007068 if (
7069# ifdef FEAT_GUI
7070 !gui.in_use &&
7071# endif
7072 au_has_group((char_u *)"FileExplorer"))
7073 {
7074 /* No browsing supported but we do have the file explorer:
7075 * Edit the directory. */
7076 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7077 eap->arg = (char_u *)".";
7078 }
7079 else
7080 {
7081 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007083 if (fname == NULL)
7084 goto theend;
7085 eap->arg = fname;
7086 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 }
7088 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007089# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007091 /*
7092 * Either open new tab page or split the window.
7093 */
7094 if (eap->cmdidx == CMD_tabedit
7095 || eap->cmdidx == CMD_tabfind
7096 || eap->cmdidx == CMD_tabnew)
7097 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007098 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7099 : eap->addr_count == 0 ? 0
7100 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007101 {
7102 do_exedit(eap, NULL);
7103
7104 /* set the alternate buffer for the window we came from */
7105 if (curwin != old_curwin
7106 && win_valid(old_curwin)
7107 && old_curwin->w_buffer != curbuf
7108 && !cmdmod.keepalt)
7109 old_curwin->w_alt_fnum = curbuf->b_fnum;
7110 }
7111 }
7112 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007113 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7114 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007115# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 /* Reset 'scrollbind' when editing another file, but keep it when
7117 * doing ":split" without arguments. */
7118 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007119# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007121# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007122 )
7123 curwin->w_p_scb = FALSE;
7124 else
7125 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007126# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007127 do_exedit(eap, old_curwin);
7128 }
7129
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007130# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007132# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007133
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007134# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135theend:
7136 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007137# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007138}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007139
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007140#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007141/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007142 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007143 */
7144 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007145tabpage_new()
7146{
7147 exarg_T ea;
7148
7149 vim_memset(&ea, 0, sizeof(ea));
7150 ea.cmdidx = CMD_tabnew;
7151 ea.cmd = (char_u *)"tabn";
7152 ea.arg = (char_u *)"";
7153 ex_splitview(&ea);
7154}
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007155#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007156
7157/*
7158 * :tabnext command
7159 */
7160 static void
7161ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007162 exarg_T *eap;
7163{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007164 switch (eap->cmdidx)
7165 {
7166 case CMD_tabfirst:
7167 case CMD_tabrewind:
7168 goto_tabpage(1);
7169 break;
7170 case CMD_tablast:
7171 goto_tabpage(9999);
7172 break;
7173 case CMD_tabprevious:
7174 case CMD_tabNext:
7175 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7176 break;
7177 default: /* CMD_tabnext */
7178 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7179 break;
7180 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007181}
7182
7183/*
7184 * :tabmove command
7185 */
7186 static void
7187ex_tabmove(eap)
7188 exarg_T *eap;
7189{
7190 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007191}
7192
7193/*
7194 * :tabs command: List tabs and their contents.
7195 */
7196/*ARGSUSED*/
7197 static void
7198ex_tabs(eap)
7199 exarg_T *eap;
7200{
7201 tabpage_T *tp;
7202 win_T *wp;
7203 int tabcount = 1;
7204
7205 msg_start();
7206 msg_scroll = TRUE;
7207 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7208 {
7209 msg_putchar('\n');
7210 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7211 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7212 out_flush(); /* output one line at a time */
7213 ui_breakcheck();
7214
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007215 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007216 wp = firstwin;
7217 else
7218 wp = tp->tp_firstwin;
7219 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7220 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007221 msg_putchar('\n');
7222 msg_putchar(wp == curwin ? '>' : ' ');
7223 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007224 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7225 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007226 if (buf_spname(wp->w_buffer) != NULL)
7227 STRCPY(IObuff, buf_spname(wp->w_buffer));
7228 else
7229 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7230 IObuff, IOSIZE, TRUE);
7231 msg_outtrans(IObuff);
7232 out_flush(); /* output one line at a time */
7233 ui_breakcheck();
7234 }
7235 }
7236}
7237
7238#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007239
7240/*
7241 * ":mode": Set screen mode.
7242 * If no argument given, just get the screen size and redraw.
7243 */
7244 static void
7245ex_mode(eap)
7246 exarg_T *eap;
7247{
7248 if (*eap->arg == NUL)
7249 shell_resized();
7250 else
7251 mch_screenmode(eap->arg);
7252}
7253
7254#ifdef FEAT_WINDOWS
7255/*
7256 * ":resize".
7257 * set, increment or decrement current window height
7258 */
7259 static void
7260ex_resize(eap)
7261 exarg_T *eap;
7262{
7263 int n;
7264 win_T *wp = curwin;
7265
7266 if (eap->addr_count > 0)
7267 {
7268 n = eap->line2;
7269 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7270 ;
7271 }
7272
7273#ifdef FEAT_GUI
7274 need_mouse_correct = TRUE;
7275#endif
7276 n = atol((char *)eap->arg);
7277#ifdef FEAT_VERTSPLIT
7278 if (cmdmod.split & WSP_VERT)
7279 {
7280 if (*eap->arg == '-' || *eap->arg == '+')
7281 n += W_WIDTH(curwin);
7282 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7283 n = 9999;
7284 win_setwidth_win((int)n, wp);
7285 }
7286 else
7287#endif
7288 {
7289 if (*eap->arg == '-' || *eap->arg == '+')
7290 n += curwin->w_height;
7291 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7292 n = 9999;
7293 win_setheight_win((int)n, wp);
7294 }
7295}
7296#endif
7297
7298/*
7299 * ":find [+command] <file>" command.
7300 */
7301 static void
7302ex_find(eap)
7303 exarg_T *eap;
7304{
7305#ifdef FEAT_SEARCHPATH
7306 char_u *fname;
7307 int count;
7308
7309 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7310 TRUE, curbuf->b_ffname);
7311 if (eap->addr_count > 0)
7312 {
7313 /* Repeat finding the file "count" times. This matters when it
7314 * appears several times in the path. */
7315 count = eap->line2;
7316 while (fname != NULL && --count > 0)
7317 {
7318 vim_free(fname);
7319 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7320 FALSE, curbuf->b_ffname);
7321 }
7322 }
7323
7324 if (fname != NULL)
7325 {
7326 eap->arg = fname;
7327#endif
7328 do_exedit(eap, NULL);
7329#ifdef FEAT_SEARCHPATH
7330 vim_free(fname);
7331 }
7332#endif
7333}
7334
7335/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007336 * ":open" simulation: for now just work like ":visual".
7337 */
7338 static void
7339ex_open(eap)
7340 exarg_T *eap;
7341{
7342 regmatch_T regmatch;
7343 char_u *p;
7344
7345 curwin->w_cursor.lnum = eap->line2;
7346 beginline(BL_SOL | BL_FIX);
7347 if (*eap->arg == '/')
7348 {
7349 /* ":open /pattern/": put cursor in column found with pattern */
7350 ++eap->arg;
7351 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7352 *p = NUL;
7353 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7354 if (regmatch.regprog != NULL)
7355 {
7356 regmatch.rm_ic = p_ic;
7357 p = ml_get_curline();
7358 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007359 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007360 else
7361 EMSG(_(e_nomatch));
7362 vim_free(regmatch.regprog);
7363 }
7364 /* Move to the NUL, ignore any other arguments. */
7365 eap->arg += STRLEN(eap->arg);
7366 }
7367 check_cursor();
7368
7369 eap->cmdidx = CMD_visual;
7370 do_exedit(eap, NULL);
7371}
7372
7373/*
7374 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007375 */
7376 static void
7377ex_edit(eap)
7378 exarg_T *eap;
7379{
7380 do_exedit(eap, NULL);
7381}
7382
7383/*
7384 * ":edit <file>" command and alikes.
7385 */
7386/*ARGSUSED*/
7387 void
7388do_exedit(eap, old_curwin)
7389 exarg_T *eap;
7390 win_T *old_curwin; /* curwin before doing a split or NULL */
7391{
7392 int n;
7393#ifdef FEAT_WINDOWS
7394 int need_hide;
7395#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007396 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007397
7398 /*
7399 * ":vi" command ends Ex mode.
7400 */
7401 if (exmode_active && (eap->cmdidx == CMD_visual
7402 || eap->cmdidx == CMD_view))
7403 {
7404 exmode_active = FALSE;
7405 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007406 {
7407 /* Special case: ":global/pat/visual\NLvi-commands" */
7408 if (global_busy)
7409 {
7410 int rd = RedrawingDisabled;
7411 int nwr = no_wait_return;
7412 int ms = msg_scroll;
7413#ifdef FEAT_GUI
7414 int he = hold_gui_events;
7415#endif
7416
7417 if (eap->nextcmd != NULL)
7418 {
7419 stuffReadbuff(eap->nextcmd);
7420 eap->nextcmd = NULL;
7421 }
7422
7423 if (exmode_was != EXMODE_VIM)
7424 settmode(TMODE_RAW);
7425 RedrawingDisabled = 0;
7426 no_wait_return = 0;
7427 need_wait_return = FALSE;
7428 msg_scroll = 0;
7429#ifdef FEAT_GUI
7430 hold_gui_events = 0;
7431#endif
7432 must_redraw = CLEAR;
7433
7434 main_loop(FALSE, TRUE);
7435
7436 RedrawingDisabled = rd;
7437 no_wait_return = nwr;
7438 msg_scroll = ms;
7439#ifdef FEAT_GUI
7440 hold_gui_events = he;
7441#endif
7442 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007444 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007445 }
7446
7447 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007448 || eap->cmdidx == CMD_tabnew
7449 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450#ifdef FEAT_VERTSPLIT
7451 || eap->cmdidx == CMD_vnew
7452#endif
7453 ) && *eap->arg == NUL)
7454 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007455 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007456 setpcmark();
7457 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7458 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7459 }
7460 else if ((eap->cmdidx != CMD_split
7461#ifdef FEAT_VERTSPLIT
7462 && eap->cmdidx != CMD_vsplit
7463#endif
7464 )
7465 || *eap->arg != NUL
7466#ifdef FEAT_BROWSE
7467 || cmdmod.browse
7468#endif
7469 )
7470 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007471#ifdef FEAT_AUTOCMD
7472 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7473 * can bring us here, others are stopped earlier. */
7474 if (*eap->arg != NUL && curbuf_locked())
7475 return;
7476#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007477 n = readonlymode;
7478 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7479 readonlymode = TRUE;
7480 else if (eap->cmdidx == CMD_enew)
7481 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7482 empty buffer */
7483 setpcmark();
7484 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7485 NULL, eap,
7486 /* ":edit" goes to first line if Vi compatible */
7487 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7488 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7489 ? ECMD_ONE : eap->do_ecmd_lnum,
7490 (P_HID(curbuf) ? ECMD_HIDE : 0)
7491 + (eap->forceit ? ECMD_FORCEIT : 0)
7492#ifdef FEAT_LISTCMDS
7493 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7494#endif
7495 ) == FAIL)
7496 {
7497 /* Editing the file failed. If the window was split, close it. */
7498#ifdef FEAT_WINDOWS
7499 if (old_curwin != NULL)
7500 {
7501 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7502 if (!need_hide || P_HID(curbuf))
7503 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007504# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7505 cleanup_T cs;
7506
7507 /* Reset the error/interrupt/exception state here so that
7508 * aborting() returns FALSE when closing a window. */
7509 enter_cleanup(&cs);
7510# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007511# ifdef FEAT_GUI
7512 need_mouse_correct = TRUE;
7513# endif
7514 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007515
7516# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7517 /* Restore the error/interrupt/exception state if not
7518 * discarded by a new aborting error, interrupt, or
7519 * uncaught exception. */
7520 leave_cleanup(&cs);
7521# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007522 }
7523 }
7524#endif
7525 }
7526 else if (readonlymode && curbuf->b_nwindows == 1)
7527 {
7528 /* When editing an already visited buffer, 'readonly' won't be set
7529 * but the previous value is kept. With ":view" and ":sview" we
7530 * want the file to be readonly, except when another window is
7531 * editing the same buffer. */
7532 curbuf->b_p_ro = TRUE;
7533 }
7534 readonlymode = n;
7535 }
7536 else
7537 {
7538 if (eap->do_ecmd_cmd != NULL)
7539 do_cmdline_cmd(eap->do_ecmd_cmd);
7540#ifdef FEAT_TITLE
7541 n = curwin->w_arg_idx_invalid;
7542#endif
7543 check_arg_idx(curwin);
7544#ifdef FEAT_TITLE
7545 if (n != curwin->w_arg_idx_invalid)
7546 maketitle();
7547#endif
7548 }
7549
7550#ifdef FEAT_WINDOWS
7551 /*
7552 * if ":split file" worked, set alternate file name in old window to new
7553 * file
7554 */
7555 if (old_curwin != NULL
7556 && *eap->arg != NUL
7557 && curwin != old_curwin
7558 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007559 && old_curwin->w_buffer != curbuf
7560 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007561 old_curwin->w_alt_fnum = curbuf->b_fnum;
7562#endif
7563
7564 ex_no_reprint = TRUE;
7565}
7566
7567#ifndef FEAT_GUI
7568/*
7569 * ":gui" and ":gvim" when there is no GUI.
7570 */
7571 static void
7572ex_nogui(eap)
7573 exarg_T *eap;
7574{
7575 eap->errmsg = e_nogvim;
7576}
7577#endif
7578
7579#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7580 static void
7581ex_tearoff(eap)
7582 exarg_T *eap;
7583{
7584 gui_make_tearoff(eap->arg);
7585}
7586#endif
7587
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007588#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007589 static void
7590ex_popup(eap)
7591 exarg_T *eap;
7592{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007593 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007594}
7595#endif
7596
7597/*ARGSUSED*/
7598 static void
7599ex_swapname(eap)
7600 exarg_T *eap;
7601{
7602 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7603 MSG(_("No swap file"));
7604 else
7605 msg(curbuf->b_ml.ml_mfp->mf_fname);
7606}
7607
7608/*
7609 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7610 * offset.
7611 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7612 */
7613/*ARGSUSED*/
7614 static void
7615ex_syncbind(eap)
7616 exarg_T *eap;
7617{
7618#ifdef FEAT_SCROLLBIND
7619 win_T *wp;
7620 long topline;
7621 long y;
7622 linenr_T old_linenr = curwin->w_cursor.lnum;
7623
7624 setpcmark();
7625
7626 /*
7627 * determine max topline
7628 */
7629 if (curwin->w_p_scb)
7630 {
7631 topline = curwin->w_topline;
7632 for (wp = firstwin; wp; wp = wp->w_next)
7633 {
7634 if (wp->w_p_scb && wp->w_buffer)
7635 {
7636 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7637 if (topline > y)
7638 topline = y;
7639 }
7640 }
7641 if (topline < 1)
7642 topline = 1;
7643 }
7644 else
7645 {
7646 topline = 1;
7647 }
7648
7649
7650 /*
7651 * set all scrollbind windows to the same topline
7652 */
7653 wp = curwin;
7654 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7655 {
7656 if (curwin->w_p_scb)
7657 {
7658 y = topline - curwin->w_topline;
7659 if (y > 0)
7660 scrollup(y, TRUE);
7661 else
7662 scrolldown(-y, TRUE);
7663 curwin->w_scbind_pos = topline;
7664 redraw_later(VALID);
7665 cursor_correct();
7666#ifdef FEAT_WINDOWS
7667 curwin->w_redr_status = TRUE;
7668#endif
7669 }
7670 }
7671 curwin = wp;
7672 if (curwin->w_p_scb)
7673 {
7674 did_syncbind = TRUE;
7675 checkpcmark();
7676 if (old_linenr != curwin->w_cursor.lnum)
7677 {
7678 char_u ctrl_o[2];
7679
7680 ctrl_o[0] = Ctrl_O;
7681 ctrl_o[1] = 0;
7682 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7683 }
7684 }
7685#endif
7686}
7687
7688
7689 static void
7690ex_read(eap)
7691 exarg_T *eap;
7692{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007693 int i;
7694 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7695 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007696
7697 if (eap->usefilter) /* :r!cmd */
7698 do_bang(1, eap, FALSE, FALSE, TRUE);
7699 else
7700 {
7701 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7702 return;
7703
7704#ifdef FEAT_BROWSE
7705 if (cmdmod.browse)
7706 {
7707 char_u *browseFile;
7708
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007709 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007710 NULL, NULL, NULL, curbuf);
7711 if (browseFile != NULL)
7712 {
7713 i = readfile(browseFile, NULL,
7714 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7715 vim_free(browseFile);
7716 }
7717 else
7718 i = OK;
7719 }
7720 else
7721#endif
7722 if (*eap->arg == NUL)
7723 {
7724 if (check_fname() == FAIL) /* check for no file name */
7725 return;
7726 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7727 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7728 }
7729 else
7730 {
7731 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7732 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7733 i = readfile(eap->arg, NULL,
7734 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7735
7736 }
7737 if (i == FAIL)
7738 {
7739#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7740 if (!aborting())
7741#endif
7742 EMSG2(_(e_notopen), eap->arg);
7743 }
7744 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007745 {
7746 if (empty && exmode_active)
7747 {
7748 /* Delete the empty line that remains. Historically ex does
7749 * this but vi doesn't. */
7750 if (eap->line2 == 0)
7751 lnum = curbuf->b_ml.ml_line_count;
7752 else
7753 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007754 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007755 {
7756 ml_delete(lnum, FALSE);
7757 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007758 if (curwin->w_cursor.lnum > 1
7759 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007760 --curwin->w_cursor.lnum;
7761 }
7762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007763 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007765 }
7766}
7767
Bram Moolenaarea408852005-06-25 22:49:46 +00007768static char_u *prev_dir = NULL;
7769
7770#if defined(EXITFREE) || defined(PROTO)
7771 void
7772free_cd_dir()
7773{
7774 vim_free(prev_dir);
7775}
7776#endif
7777
7778
Bram Moolenaar071d4272004-06-13 20:20:40 +00007779/*
7780 * ":cd", ":lcd", ":chdir" and ":lchdir".
7781 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00007782 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007783ex_cd(eap)
7784 exarg_T *eap;
7785{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007786 char_u *new_dir;
7787 char_u *tofree;
7788
7789 new_dir = eap->arg;
7790#if !defined(UNIX) && !defined(VMS)
7791 /* for non-UNIX ":cd" means: print current directory */
7792 if (*new_dir == NUL)
7793 ex_pwd(NULL);
7794 else
7795#endif
7796 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007797 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7798 && !eap->forceit)
7799 {
Bram Moolenaar81870892007-11-11 18:17:28 +00007800 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00007801 return;
7802 }
7803
Bram Moolenaar071d4272004-06-13 20:20:40 +00007804 /* ":cd -": Change to previous directory */
7805 if (STRCMP(new_dir, "-") == 0)
7806 {
7807 if (prev_dir == NULL)
7808 {
7809 EMSG(_("E186: No previous directory"));
7810 return;
7811 }
7812 new_dir = prev_dir;
7813 }
7814
7815 /* Save current directory for next ":cd -" */
7816 tofree = prev_dir;
7817 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7818 prev_dir = vim_strsave(NameBuff);
7819 else
7820 prev_dir = NULL;
7821
7822#if defined(UNIX) || defined(VMS)
7823 /* for UNIX ":cd" means: go to home directory */
7824 if (*new_dir == NUL)
7825 {
7826 /* use NameBuff for home directory name */
7827# ifdef VMS
7828 char_u *p;
7829
7830 p = mch_getenv((char_u *)"SYS$LOGIN");
7831 if (p == NULL || *p == NUL) /* empty is the same as not set */
7832 NameBuff[0] = NUL;
7833 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007834 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007835# else
7836 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7837# endif
7838 new_dir = NameBuff;
7839 }
7840#endif
7841 if (new_dir == NULL || vim_chdir(new_dir))
7842 EMSG(_(e_failed));
7843 else
7844 {
7845 vim_free(curwin->w_localdir);
7846 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7847 {
7848 /* If still in global directory, need to remember current
7849 * directory as global directory. */
7850 if (globaldir == NULL && prev_dir != NULL)
7851 globaldir = vim_strsave(prev_dir);
7852 /* Remember this local directory for the window. */
7853 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7854 curwin->w_localdir = vim_strsave(NameBuff);
7855 }
7856 else
7857 {
7858 /* We are now in the global directory, no need to remember its
7859 * name. */
7860 vim_free(globaldir);
7861 globaldir = NULL;
7862 curwin->w_localdir = NULL;
7863 }
7864
7865 shorten_fnames(TRUE);
7866
7867 /* Echo the new current directory if the command was typed. */
7868 if (KeyTyped)
7869 ex_pwd(eap);
7870 }
7871 vim_free(tofree);
7872 }
7873}
7874
7875/*
7876 * ":pwd".
7877 */
7878/*ARGSUSED*/
7879 static void
7880ex_pwd(eap)
7881 exarg_T *eap;
7882{
7883 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7884 {
7885#ifdef BACKSLASH_IN_FILENAME
7886 slash_adjust(NameBuff);
7887#endif
7888 msg(NameBuff);
7889 }
7890 else
7891 EMSG(_("E187: Unknown"));
7892}
7893
7894/*
7895 * ":=".
7896 */
7897 static void
7898ex_equal(eap)
7899 exarg_T *eap;
7900{
7901 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007902 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007903}
7904
7905 static void
7906ex_sleep(eap)
7907 exarg_T *eap;
7908{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007909 int n;
7910 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007911
7912 if (cursor_valid())
7913 {
7914 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7915 if (n >= 0)
7916 windgoto((int)n, curwin->w_wcol);
7917 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007918
7919 len = eap->line2;
7920 switch (*eap->arg)
7921 {
7922 case 'm': break;
7923 case NUL: len *= 1000L; break;
7924 default: EMSG2(_(e_invarg2), eap->arg); return;
7925 }
7926 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007927}
7928
7929/*
7930 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7931 */
7932 void
7933do_sleep(msec)
7934 long msec;
7935{
7936 long done;
7937
7938 cursor_on();
7939 out_flush();
7940 for (done = 0; !got_int && done < msec; done += 1000L)
7941 {
7942 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7943 ui_breakcheck();
7944 }
7945}
7946
7947 static void
7948do_exmap(eap, isabbrev)
7949 exarg_T *eap;
7950 int isabbrev;
7951{
7952 int mode;
7953 char_u *cmdp;
7954
7955 cmdp = eap->cmd;
7956 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7957
7958 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7959 eap->arg, mode, isabbrev))
7960 {
7961 case 1: EMSG(_(e_invarg));
7962 break;
7963 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7964 break;
7965 }
7966}
7967
7968/*
7969 * ":winsize" command (obsolete).
7970 */
7971 static void
7972ex_winsize(eap)
7973 exarg_T *eap;
7974{
7975 int w, h;
7976 char_u *arg = eap->arg;
7977 char_u *p;
7978
7979 w = getdigits(&arg);
7980 arg = skipwhite(arg);
7981 p = arg;
7982 h = getdigits(&arg);
7983 if (*p != NUL && *arg == NUL)
7984 set_shellsize(w, h, TRUE);
7985 else
7986 EMSG(_("E465: :winsize requires two number arguments"));
7987}
7988
7989#ifdef FEAT_WINDOWS
7990 static void
7991ex_wincmd(eap)
7992 exarg_T *eap;
7993{
7994 int xchar = NUL;
7995 char_u *p;
7996
7997 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
7998 {
7999 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8000 if (eap->arg[1] == NUL)
8001 {
8002 EMSG(_(e_invarg));
8003 return;
8004 }
8005 xchar = eap->arg[1];
8006 p = eap->arg + 2;
8007 }
8008 else
8009 p = eap->arg + 1;
8010
8011 eap->nextcmd = check_nextcmd(p);
8012 p = skipwhite(p);
8013 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8014 EMSG(_(e_invarg));
8015 else
8016 {
8017 /* Pass flags on for ":vertical wincmd ]". */
8018 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008019 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008020 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8021 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008022 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008023 }
8024}
8025#endif
8026
Bram Moolenaar843ee412004-06-30 16:16:41 +00008027#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008028/*
8029 * ":winpos".
8030 */
8031 static void
8032ex_winpos(eap)
8033 exarg_T *eap;
8034{
8035 int x, y;
8036 char_u *arg = eap->arg;
8037 char_u *p;
8038
8039 if (*arg == NUL)
8040 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008041# if defined(FEAT_GUI) || defined(MSWIN)
8042# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008043 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008044# else
8045 if (mch_get_winpos(&x, &y) != FAIL)
8046# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008047 {
8048 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8049 msg(IObuff);
8050 }
8051 else
8052# endif
8053 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8054 }
8055 else
8056 {
8057 x = getdigits(&arg);
8058 arg = skipwhite(arg);
8059 p = arg;
8060 y = getdigits(&arg);
8061 if (*p == NUL || *arg != NUL)
8062 {
8063 EMSG(_("E466: :winpos requires two number arguments"));
8064 return;
8065 }
8066# ifdef FEAT_GUI
8067 if (gui.in_use)
8068 gui_mch_set_winpos(x, y);
8069 else if (gui.starting)
8070 {
8071 /* Remember the coordinates for when the window is opened. */
8072 gui_win_x = x;
8073 gui_win_y = y;
8074 }
8075# ifdef HAVE_TGETENT
8076 else
8077# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008078# else
8079# ifdef MSWIN
8080 mch_set_winpos(x, y);
8081# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008082# endif
8083# ifdef HAVE_TGETENT
8084 if (*T_CWP)
8085 term_set_winpos(x, y);
8086# endif
8087 }
8088}
8089#endif
8090
8091/*
8092 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8093 */
8094 static void
8095ex_operators(eap)
8096 exarg_T *eap;
8097{
8098 oparg_T oa;
8099
8100 clear_oparg(&oa);
8101 oa.regname = eap->regname;
8102 oa.start.lnum = eap->line1;
8103 oa.end.lnum = eap->line2;
8104 oa.line_count = eap->line2 - eap->line1 + 1;
8105 oa.motion_type = MLINE;
8106#ifdef FEAT_VIRTUALEDIT
8107 virtual_op = FALSE;
8108#endif
8109 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8110 {
8111 setpcmark();
8112 curwin->w_cursor.lnum = eap->line1;
8113 beginline(BL_SOL | BL_FIX);
8114 }
8115
8116 switch (eap->cmdidx)
8117 {
8118 case CMD_delete:
8119 oa.op_type = OP_DELETE;
8120 op_delete(&oa);
8121 break;
8122
8123 case CMD_yank:
8124 oa.op_type = OP_YANK;
8125 (void)op_yank(&oa, FALSE, TRUE);
8126 break;
8127
8128 default: /* CMD_rshift or CMD_lshift */
8129 if ((eap->cmdidx == CMD_rshift)
8130#ifdef FEAT_RIGHTLEFT
8131 ^ curwin->w_p_rl
8132#endif
8133 )
8134 oa.op_type = OP_RSHIFT;
8135 else
8136 oa.op_type = OP_LSHIFT;
8137 op_shift(&oa, FALSE, eap->amount);
8138 break;
8139 }
8140#ifdef FEAT_VIRTUALEDIT
8141 virtual_op = MAYBE;
8142#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008143 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008144}
8145
8146/*
8147 * ":put".
8148 */
8149 static void
8150ex_put(eap)
8151 exarg_T *eap;
8152{
8153 /* ":0put" works like ":1put!". */
8154 if (eap->line2 == 0)
8155 {
8156 eap->line2 = 1;
8157 eap->forceit = TRUE;
8158 }
8159 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008160 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8161 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008162}
8163
8164/*
8165 * Handle ":copy" and ":move".
8166 */
8167 static void
8168ex_copymove(eap)
8169 exarg_T *eap;
8170{
8171 long n;
8172
8173 n = get_address(&eap->arg, FALSE, FALSE);
8174 if (eap->arg == NULL) /* error detected */
8175 {
8176 eap->nextcmd = NULL;
8177 return;
8178 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008179 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008180
8181 /*
8182 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8183 */
8184 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8185 {
8186 EMSG(_(e_invaddr));
8187 return;
8188 }
8189
8190 if (eap->cmdidx == CMD_move)
8191 {
8192 if (do_move(eap->line1, eap->line2, n) == FAIL)
8193 return;
8194 }
8195 else
8196 ex_copy(eap->line1, eap->line2, n);
8197 u_clearline();
8198 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008199 ex_may_print(eap);
8200}
8201
8202/*
8203 * Print the current line if flags were given to the Ex command.
8204 */
8205 static void
8206ex_may_print(eap)
8207 exarg_T *eap;
8208{
8209 if (eap->flags != 0)
8210 {
8211 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8212 (eap->flags & EXFLAG_LIST));
8213 ex_no_reprint = TRUE;
8214 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008215}
8216
8217/*
8218 * ":smagic" and ":snomagic".
8219 */
8220 static void
8221ex_submagic(eap)
8222 exarg_T *eap;
8223{
8224 int magic_save = p_magic;
8225
8226 p_magic = (eap->cmdidx == CMD_smagic);
8227 do_sub(eap);
8228 p_magic = magic_save;
8229}
8230
8231/*
8232 * ":join".
8233 */
8234 static void
8235ex_join(eap)
8236 exarg_T *eap;
8237{
8238 curwin->w_cursor.lnum = eap->line1;
8239 if (eap->line1 == eap->line2)
8240 {
8241 if (eap->addr_count >= 2) /* :2,2join does nothing */
8242 return;
8243 if (eap->line2 == curbuf->b_ml.ml_line_count)
8244 {
8245 beep_flush();
8246 return;
8247 }
8248 ++eap->line2;
8249 }
8250 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8251 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008252 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008253}
8254
8255/*
8256 * ":[addr]@r" or ":[addr]*r": execute register
8257 */
8258 static void
8259ex_at(eap)
8260 exarg_T *eap;
8261{
8262 int c;
8263
8264 curwin->w_cursor.lnum = eap->line2;
8265
8266#ifdef USE_ON_FLY_SCROLL
8267 dont_scroll = TRUE; /* disallow scrolling here */
8268#endif
8269
8270 /* get the register name. No name means to use the previous one */
8271 c = *eap->arg;
8272 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8273 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008274 /* Put the register in the typeahead buffer with the "silent" flag. */
8275 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8276 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008277 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008278 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008279 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008280 else
8281 {
8282 int save_efr = exec_from_reg;
8283
8284 exec_from_reg = TRUE;
8285
8286 /*
8287 * Execute from the typeahead buffer.
8288 * Originally this didn't check for the typeahead buffer to be empty,
8289 * thus could read more Ex commands from stdin. It's not clear why,
8290 * it is certainly unexpected.
8291 */
8292 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8293 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8294
8295 exec_from_reg = save_efr;
8296 }
8297}
8298
8299/*
8300 * ":!".
8301 */
8302 static void
8303ex_bang(eap)
8304 exarg_T *eap;
8305{
8306 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8307}
8308
8309/*
8310 * ":undo".
8311 */
8312/*ARGSUSED*/
8313 static void
8314ex_undo(eap)
8315 exarg_T *eap;
8316{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008317 if (eap->addr_count == 1) /* :undo 123 */
8318 undo_time(eap->line2, FALSE, TRUE);
8319 else
8320 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008321}
8322
8323/*
8324 * ":redo".
8325 */
8326/*ARGSUSED*/
8327 static void
8328ex_redo(eap)
8329 exarg_T *eap;
8330{
8331 u_redo(1);
8332}
8333
8334/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008335 * ":earlier" and ":later".
8336 */
8337/*ARGSUSED*/
8338 static void
8339ex_later(eap)
8340 exarg_T *eap;
8341{
8342 long count = 0;
8343 int sec = FALSE;
8344 char_u *p = eap->arg;
8345
8346 if (*p == NUL)
8347 count = 1;
8348 else if (isdigit(*p))
8349 {
8350 count = getdigits(&p);
8351 switch (*p)
8352 {
8353 case 's': ++p; sec = TRUE; break;
8354 case 'm': ++p; sec = TRUE; count *= 60; break;
8355 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8356 }
8357 }
8358
8359 if (*p != NUL)
8360 EMSG2(_(e_invarg2), eap->arg);
8361 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008362 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008363}
8364
8365/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008366 * ":redir": start/stop redirection.
8367 */
8368 static void
8369ex_redir(eap)
8370 exarg_T *eap;
8371{
8372 char *mode;
8373 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008374 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008375
8376 if (STRICMP(eap->arg, "END") == 0)
8377 close_redir();
8378 else
8379 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008380 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008381 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008382 ++arg;
8383 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008384 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008385 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008386 mode = "a";
8387 }
8388 else
8389 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008390 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008391
8392 close_redir();
8393
8394 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008395 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008396 if (fname == NULL)
8397 return;
8398#ifdef FEAT_BROWSE
8399 if (cmdmod.browse)
8400 {
8401 char_u *browseFile;
8402
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008403 browseFile = do_browse(BROWSE_SAVE,
8404 (char_u *)_("Save Redirection"),
8405 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008406 if (browseFile == NULL)
8407 return; /* operation cancelled */
8408 vim_free(fname);
8409 fname = browseFile;
8410 eap->forceit = TRUE; /* since dialog already asked */
8411 }
8412#endif
8413
8414 redir_fd = open_exfile(fname, eap->forceit, mode);
8415 vim_free(fname);
8416 }
8417#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008418 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008419 {
8420 /* redirect to a register a-z (resp. A-Z for appending) */
8421 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008422 ++arg;
8423 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008424# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008425 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008426 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008427# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008428 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008429 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008430 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008431 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00008432 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008433 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008434 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00008435 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008436 if (*arg == '>')
8437 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008438 /* Make register empty when not using @A-@Z and the
8439 * command is valid. */
8440 if (*arg == NUL && !isupper(redir_reg))
8441 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008442 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008443 }
8444 if (*arg != NUL)
8445 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008446 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008447 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008448 }
8449 }
8450 else if (*arg == '=' && arg[1] == '>')
8451 {
8452 int append;
8453
8454 /* redirect to a variable */
8455 close_redir();
8456 arg += 2;
8457
8458 if (*arg == '>')
8459 {
8460 ++arg;
8461 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008462 }
8463 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008464 append = FALSE;
8465
8466 if (var_redir_start(skipwhite(arg), append) == OK)
8467 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008468 }
8469#endif
8470
8471 /* TODO: redirect to a buffer */
8472
Bram Moolenaar071d4272004-06-13 20:20:40 +00008473 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008474 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008475 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008476
8477 /* Make sure redirection is not off. Can happen for cmdline completion
8478 * that indirectly invokes a command to catch its output. */
8479 if (redir_fd != NULL
8480#ifdef FEAT_EVAL
8481 || redir_reg || redir_vname
8482#endif
8483 )
8484 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008485}
8486
8487/*
8488 * ":redraw": force redraw
8489 */
8490 static void
8491ex_redraw(eap)
8492 exarg_T *eap;
8493{
8494 int r = RedrawingDisabled;
8495 int p = p_lz;
8496
8497 RedrawingDisabled = 0;
8498 p_lz = FALSE;
8499 update_topline();
8500 update_screen(eap->forceit ? CLEAR :
8501#ifdef FEAT_VISUAL
8502 VIsual_active ? INVERTED :
8503#endif
8504 0);
8505#ifdef FEAT_TITLE
8506 if (need_maketitle)
8507 maketitle();
8508#endif
8509 RedrawingDisabled = r;
8510 p_lz = p;
8511
8512 /* Reset msg_didout, so that a message that's there is overwritten. */
8513 msg_didout = FALSE;
8514 msg_col = 0;
8515
8516 out_flush();
8517}
8518
8519/*
8520 * ":redrawstatus": force redraw of status line(s)
8521 */
8522/*ARGSUSED*/
8523 static void
8524ex_redrawstatus(eap)
8525 exarg_T *eap;
8526{
8527#if defined(FEAT_WINDOWS)
8528 int r = RedrawingDisabled;
8529 int p = p_lz;
8530
8531 RedrawingDisabled = 0;
8532 p_lz = FALSE;
8533 if (eap->forceit)
8534 status_redraw_all();
8535 else
8536 status_redraw_curbuf();
8537 update_screen(
8538# ifdef FEAT_VISUAL
8539 VIsual_active ? INVERTED :
8540# endif
8541 0);
8542 RedrawingDisabled = r;
8543 p_lz = p;
8544 out_flush();
8545#endif
8546}
8547
8548 static void
8549close_redir()
8550{
8551 if (redir_fd != NULL)
8552 {
8553 fclose(redir_fd);
8554 redir_fd = NULL;
8555 }
8556#ifdef FEAT_EVAL
8557 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008558 if (redir_vname)
8559 {
8560 var_redir_stop();
8561 redir_vname = 0;
8562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008563#endif
8564}
8565
8566#if defined(FEAT_SESSION) && defined(USE_CRNL)
8567# define MKSESSION_NL
8568static int mksession_nl = FALSE; /* use NL only in put_eol() */
8569#endif
8570
8571/*
8572 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8573 */
8574 static void
8575ex_mkrc(eap)
8576 exarg_T *eap;
8577{
8578 FILE *fd;
8579 int failed = FALSE;
8580 char_u *fname;
8581#ifdef FEAT_BROWSE
8582 char_u *browseFile = NULL;
8583#endif
8584#ifdef FEAT_SESSION
8585 int view_session = FALSE;
8586 int using_vdir = FALSE; /* using 'viewdir'? */
8587 char_u *viewFile = NULL;
8588 unsigned *flagp;
8589#endif
8590
8591 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8592 {
8593#ifdef FEAT_SESSION
8594 view_session = TRUE;
8595#else
8596 ex_ni(eap);
8597 return;
8598#endif
8599 }
8600
8601#ifdef FEAT_SESSION
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008602 did_lcd = FALSE;
8603
Bram Moolenaar071d4272004-06-13 20:20:40 +00008604 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8605 if (eap->cmdidx == CMD_mkview
8606 && (*eap->arg == NUL
8607 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8608 {
8609 eap->forceit = TRUE;
8610 fname = get_view_file(*eap->arg);
8611 if (fname == NULL)
8612 return;
8613 viewFile = fname;
8614 using_vdir = TRUE;
8615 }
8616 else
8617#endif
8618 if (*eap->arg != NUL)
8619 fname = eap->arg;
8620 else if (eap->cmdidx == CMD_mkvimrc)
8621 fname = (char_u *)VIMRC_FILE;
8622#ifdef FEAT_SESSION
8623 else if (eap->cmdidx == CMD_mksession)
8624 fname = (char_u *)SESSION_FILE;
8625#endif
8626 else
8627 fname = (char_u *)EXRC_FILE;
8628
8629#ifdef FEAT_BROWSE
8630 if (cmdmod.browse)
8631 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008632 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008633# ifdef FEAT_SESSION
8634 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8635 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8636# endif
8637 (char_u *)_("Save Setup"),
8638 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8639 if (browseFile == NULL)
8640 goto theend;
8641 fname = browseFile;
8642 eap->forceit = TRUE; /* since dialog already asked */
8643 }
8644#endif
8645
8646#if defined(FEAT_SESSION) && defined(vim_mkdir)
8647 /* When using 'viewdir' may have to create the directory. */
8648 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008649 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008650#endif
8651
8652 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8653 if (fd != NULL)
8654 {
8655#ifdef FEAT_SESSION
8656 if (eap->cmdidx == CMD_mkview)
8657 flagp = &vop_flags;
8658 else
8659 flagp = &ssop_flags;
8660#endif
8661
8662#ifdef MKSESSION_NL
8663 /* "unix" in 'sessionoptions': use NL line separator */
8664 if (view_session && (*flagp & SSOP_UNIX))
8665 mksession_nl = TRUE;
8666#endif
8667
8668 /* Write the version command for :mkvimrc */
8669 if (eap->cmdidx == CMD_mkvimrc)
8670 (void)put_line(fd, "version 6.0");
8671
8672#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008673 if (eap->cmdidx == CMD_mksession)
8674 {
8675 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8676 failed = TRUE;
8677 }
8678
Bram Moolenaar071d4272004-06-13 20:20:40 +00008679 if (eap->cmdidx != CMD_mkview)
8680#endif
8681 {
8682 /* Write setting 'compatible' first, because it has side effects.
8683 * For that same reason only do it when needed. */
8684 if (p_cp)
8685 (void)put_line(fd, "if !&cp | set cp | endif");
8686 else
8687 (void)put_line(fd, "if &cp | set nocp | endif");
8688 }
8689
8690#ifdef FEAT_SESSION
8691 if (!view_session
8692 || (eap->cmdidx == CMD_mksession
8693 && (*flagp & SSOP_OPTIONS)))
8694#endif
8695 failed |= (makemap(fd, NULL) == FAIL
8696 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8697
8698#ifdef FEAT_SESSION
8699 if (!failed && view_session)
8700 {
8701 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8702 failed = TRUE;
8703 if (eap->cmdidx == CMD_mksession)
8704 {
8705 char_u dirnow[MAXPATHL]; /* current directory */
8706
8707 /*
8708 * Change to session file's dir.
8709 */
8710 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8711 || mch_chdir((char *)dirnow) != 0)
8712 *dirnow = NUL;
8713 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8714 {
8715 if (vim_chdirfile(fname) == OK)
8716 shorten_fnames(TRUE);
8717 }
8718 else if (*dirnow != NUL
8719 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8720 {
8721 (void)mch_chdir((char *)globaldir);
8722 shorten_fnames(TRUE);
8723 }
8724
8725 failed |= (makeopens(fd, dirnow) == FAIL);
8726
8727 /* restore original dir */
8728 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8729 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8730 {
8731 if (mch_chdir((char *)dirnow) != 0)
8732 EMSG(_(e_prev_dir));
8733 shorten_fnames(TRUE);
8734 }
8735 }
8736 else
8737 {
8738 failed |= (put_view(fd, curwin, !using_vdir, flagp) == FAIL);
8739 }
8740 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8741 == FAIL)
8742 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008743 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8744 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008745 if (eap->cmdidx == CMD_mksession)
8746 {
8747 if (put_line(fd, "unlet SessionLoad") == FAIL)
8748 failed = TRUE;
8749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008750 }
8751#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008752 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8753 failed = TRUE;
8754
Bram Moolenaar071d4272004-06-13 20:20:40 +00008755 failed |= fclose(fd);
8756
8757 if (failed)
8758 EMSG(_(e_write));
8759#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8760 else if (eap->cmdidx == CMD_mksession)
8761 {
8762 /* successful session write - set this_session var */
8763 char_u tbuf[MAXPATHL];
8764
8765 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8766 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8767 }
8768#endif
8769#ifdef MKSESSION_NL
8770 mksession_nl = FALSE;
8771#endif
8772 }
8773
8774#ifdef FEAT_BROWSE
8775theend:
8776 vim_free(browseFile);
8777#endif
8778#ifdef FEAT_SESSION
8779 vim_free(viewFile);
8780#endif
8781}
8782
Bram Moolenaardf177f62005-02-22 08:39:57 +00008783#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8784 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008785/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008786 int
8787vim_mkdir_emsg(name, prot)
8788 char_u *name;
8789 int prot;
8790{
8791 if (vim_mkdir(name, prot) != 0)
8792 {
8793 EMSG2(_("E739: Cannot create directory: %s"), name);
8794 return FAIL;
8795 }
8796 return OK;
8797}
8798#endif
8799
Bram Moolenaar071d4272004-06-13 20:20:40 +00008800/*
8801 * Open a file for writing for an Ex command, with some checks.
8802 * Return file descriptor, or NULL on failure.
8803 */
8804 FILE *
8805open_exfile(fname, forceit, mode)
8806 char_u *fname;
8807 int forceit;
8808 char *mode; /* "w" for create new file or "a" for append */
8809{
8810 FILE *fd;
8811
8812#ifdef UNIX
8813 /* with Unix it is possible to open a directory */
8814 if (mch_isdir(fname))
8815 {
8816 EMSG2(_(e_isadir2), fname);
8817 return NULL;
8818 }
8819#endif
8820 if (!forceit && *mode != 'a' && vim_fexists(fname))
8821 {
8822 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8823 return NULL;
8824 }
8825
8826 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8827 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8828
8829 return fd;
8830}
8831
8832/*
8833 * ":mark" and ":k".
8834 */
8835 static void
8836ex_mark(eap)
8837 exarg_T *eap;
8838{
8839 pos_T pos;
8840
8841 if (*eap->arg == NUL) /* No argument? */
8842 EMSG(_(e_argreq));
8843 else if (eap->arg[1] != NUL) /* more than one character? */
8844 EMSG(_(e_trailing));
8845 else
8846 {
8847 pos = curwin->w_cursor; /* save curwin->w_cursor */
8848 curwin->w_cursor.lnum = eap->line2;
8849 beginline(BL_WHITE | BL_FIX);
8850 if (setmark(*eap->arg) == FAIL) /* set mark */
8851 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8852 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8853 }
8854}
8855
8856/*
8857 * Update w_topline, w_leftcol and the cursor position.
8858 */
8859 void
8860update_topline_cursor()
8861{
8862 check_cursor(); /* put cursor on valid line */
8863 update_topline();
8864 if (!curwin->w_p_wrap)
8865 validate_cursor();
8866 update_curswant();
8867}
8868
8869#ifdef FEAT_EX_EXTRA
8870/*
8871 * ":normal[!] {commands}": Execute normal mode commands.
8872 */
8873 static void
8874ex_normal(eap)
8875 exarg_T *eap;
8876{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008877 int save_msg_scroll = msg_scroll;
8878 int save_restart_edit = restart_edit;
8879 int save_msg_didout = msg_didout;
8880 int save_State = State;
8881 tasave_T tabuf;
8882 int save_insertmode = p_im;
8883 int save_finish_op = finish_op;
8884#ifdef FEAT_MBYTE
8885 char_u *arg = NULL;
8886 int l;
8887 char_u *p;
8888#endif
8889
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008890 if (ex_normal_lock > 0)
8891 {
8892 EMSG(_(e_secure));
8893 return;
8894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008895 if (ex_normal_busy >= p_mmd)
8896 {
8897 EMSG(_("E192: Recursive use of :normal too deep"));
8898 return;
8899 }
8900 ++ex_normal_busy;
8901
8902 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8903 restart_edit = 0; /* don't go to Insert mode */
8904 p_im = FALSE; /* don't use 'insertmode' */
8905
8906#ifdef FEAT_MBYTE
8907 /*
8908 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8909 * this for the K_SPECIAL leading byte, otherwise special keys will not
8910 * work.
8911 */
8912 if (has_mbyte)
8913 {
8914 int len = 0;
8915
8916 /* Count the number of characters to be escaped. */
8917 for (p = eap->arg; *p != NUL; ++p)
8918 {
8919# ifdef FEAT_GUI
8920 if (*p == CSI) /* leadbyte CSI */
8921 len += 2;
8922# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008923 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008924 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8925# ifdef FEAT_GUI
8926 || *p == CSI
8927# endif
8928 )
8929 len += 2;
8930 }
8931 if (len > 0)
8932 {
8933 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8934 if (arg != NULL)
8935 {
8936 len = 0;
8937 for (p = eap->arg; *p != NUL; ++p)
8938 {
8939 arg[len++] = *p;
8940# ifdef FEAT_GUI
8941 if (*p == CSI)
8942 {
8943 arg[len++] = KS_EXTRA;
8944 arg[len++] = (int)KE_CSI;
8945 }
8946# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008947 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008948 {
8949 arg[len++] = *++p;
8950 if (*p == K_SPECIAL)
8951 {
8952 arg[len++] = KS_SPECIAL;
8953 arg[len++] = KE_FILLER;
8954 }
8955# ifdef FEAT_GUI
8956 else if (*p == CSI)
8957 {
8958 arg[len++] = KS_EXTRA;
8959 arg[len++] = (int)KE_CSI;
8960 }
8961# endif
8962 }
8963 arg[len] = NUL;
8964 }
8965 }
8966 }
8967 }
8968#endif
8969
8970 /*
8971 * Save the current typeahead. This is required to allow using ":normal"
8972 * from an event handler and makes sure we don't hang when the argument
8973 * ends with half a command.
8974 */
8975 save_typeahead(&tabuf);
8976 if (tabuf.typebuf_valid)
8977 {
8978 /*
8979 * Repeat the :normal command for each line in the range. When no
8980 * range given, execute it just once, without positioning the cursor
8981 * first.
8982 */
8983 do
8984 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008985 if (eap->addr_count != 0)
8986 {
8987 curwin->w_cursor.lnum = eap->line1++;
8988 curwin->w_cursor.col = 0;
8989 }
8990
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008991 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00008992#ifdef FEAT_MBYTE
8993 arg != NULL ? arg :
8994#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008995 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008996 }
8997 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
8998 }
8999
9000 /* Might not return to the main loop when in an event handler. */
9001 update_topline_cursor();
9002
9003 /* Restore the previous typeahead. */
9004 restore_typeahead(&tabuf);
9005
9006 --ex_normal_busy;
9007 msg_scroll = save_msg_scroll;
9008 restart_edit = save_restart_edit;
9009 p_im = save_insertmode;
9010 finish_op = save_finish_op;
9011 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9012
9013 /* Restore the state (needed when called from a function executed for
9014 * 'indentexpr'). */
9015 State = save_State;
9016#ifdef FEAT_MBYTE
9017 vim_free(arg);
9018#endif
9019}
9020
9021/*
Bram Moolenaar64969662005-12-14 21:59:55 +00009022 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00009023 */
9024 static void
9025ex_startinsert(eap)
9026 exarg_T *eap;
9027{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009028 if (eap->forceit)
9029 {
9030 coladvance((colnr_T)MAXCOL);
9031 curwin->w_curswant = MAXCOL;
9032 curwin->w_set_curswant = FALSE;
9033 }
9034
Bram Moolenaara40c5002005-01-09 21:16:21 +00009035 /* Ignore the command when already in Insert mode. Inserting an
9036 * expression register that invokes a function can do this. */
9037 if (State & INSERT)
9038 return;
9039
Bram Moolenaar64969662005-12-14 21:59:55 +00009040 if (eap->cmdidx == CMD_startinsert)
9041 restart_edit = 'a';
9042 else if (eap->cmdidx == CMD_startreplace)
9043 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009044 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009045 restart_edit = 'V';
9046
9047 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009048 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009049 if (eap->cmdidx == CMD_startinsert)
9050 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009051 curwin->w_curswant = 0; /* avoid MAXCOL */
9052 }
9053}
9054
9055/*
9056 * ":stopinsert"
9057 */
9058/*ARGSUSED*/
9059 static void
9060ex_stopinsert(eap)
9061 exarg_T *eap;
9062{
9063 restart_edit = 0;
9064 stop_insert_mode = TRUE;
9065}
9066#endif
9067
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009068#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9069/*
9070 * Execute normal mode command "cmd".
9071 * "remap" can be REMAP_NONE or REMAP_YES.
9072 */
9073 void
9074exec_normal_cmd(cmd, remap, silent)
9075 char_u *cmd;
9076 int remap;
9077 int silent;
9078{
9079 oparg_T oa;
9080
9081 /*
9082 * Stuff the argument into the typeahead buffer.
9083 * Execute normal_cmd() until there is no typeahead left.
9084 */
9085 clear_oparg(&oa);
9086 finish_op = FALSE;
9087 ins_typebuf(cmd, remap, 0, TRUE, silent);
9088 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9089 && !got_int)
9090 {
9091 update_topline_cursor();
9092 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9093 }
9094}
9095#endif
9096
Bram Moolenaar071d4272004-06-13 20:20:40 +00009097#ifdef FEAT_FIND_ID
9098 static void
9099ex_checkpath(eap)
9100 exarg_T *eap;
9101{
9102 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9103 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9104 (linenr_T)1, (linenr_T)MAXLNUM);
9105}
9106
9107#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9108/*
9109 * ":psearch"
9110 */
9111 static void
9112ex_psearch(eap)
9113 exarg_T *eap;
9114{
9115 g_do_tagpreview = p_pvh;
9116 ex_findpat(eap);
9117 g_do_tagpreview = 0;
9118}
9119#endif
9120
9121 static void
9122ex_findpat(eap)
9123 exarg_T *eap;
9124{
9125 int whole = TRUE;
9126 long n;
9127 char_u *p;
9128 int action;
9129
9130 switch (cmdnames[eap->cmdidx].cmd_name[2])
9131 {
9132 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9133 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9134 action = ACTION_GOTO;
9135 else
9136 action = ACTION_SHOW;
9137 break;
9138 case 'i': /* ":ilist" and ":dlist" */
9139 action = ACTION_SHOW_ALL;
9140 break;
9141 case 'u': /* ":ijump" and ":djump" */
9142 action = ACTION_GOTO;
9143 break;
9144 default: /* ":isplit" and ":dsplit" */
9145 action = ACTION_SPLIT;
9146 break;
9147 }
9148
9149 n = 1;
9150 if (vim_isdigit(*eap->arg)) /* get count */
9151 {
9152 n = getdigits(&eap->arg);
9153 eap->arg = skipwhite(eap->arg);
9154 }
9155 if (*eap->arg == '/') /* Match regexp, not just whole words */
9156 {
9157 whole = FALSE;
9158 ++eap->arg;
9159 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9160 if (*p)
9161 {
9162 *p++ = NUL;
9163 p = skipwhite(p);
9164
9165 /* Check for trailing illegal characters */
9166 if (!ends_excmd(*p))
9167 eap->errmsg = e_trailing;
9168 else
9169 eap->nextcmd = check_nextcmd(p);
9170 }
9171 }
9172 if (!eap->skip)
9173 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9174 whole, !eap->forceit,
9175 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9176 n, action, eap->line1, eap->line2);
9177}
9178#endif
9179
9180#ifdef FEAT_WINDOWS
9181
9182# ifdef FEAT_QUICKFIX
9183/*
9184 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9185 */
9186 static void
9187ex_ptag(eap)
9188 exarg_T *eap;
9189{
9190 g_do_tagpreview = p_pvh;
9191 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9192}
9193
9194/*
9195 * ":pedit"
9196 */
9197 static void
9198ex_pedit(eap)
9199 exarg_T *eap;
9200{
9201 win_T *curwin_save = curwin;
9202
9203 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009204 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009205 keep_help_flag = curwin_save->w_buffer->b_help;
9206 do_exedit(eap, NULL);
9207 keep_help_flag = FALSE;
9208 if (curwin != curwin_save && win_valid(curwin_save))
9209 {
9210 /* Return cursor to where we were */
9211 validate_cursor();
9212 redraw_later(VALID);
9213 win_enter(curwin_save, TRUE);
9214 }
9215 g_do_tagpreview = 0;
9216}
9217# endif
9218
9219/*
9220 * ":stag", ":stselect" and ":stjump".
9221 */
9222 static void
9223ex_stag(eap)
9224 exarg_T *eap;
9225{
9226 postponed_split = -1;
9227 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009228 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009229 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9230 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009231 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009232}
9233#endif
9234
9235/*
9236 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9237 */
9238 static void
9239ex_tag(eap)
9240 exarg_T *eap;
9241{
9242 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9243}
9244
9245 static void
9246ex_tag_cmd(eap, name)
9247 exarg_T *eap;
9248 char_u *name;
9249{
9250 int cmd;
9251
9252 switch (name[1])
9253 {
9254 case 'j': cmd = DT_JUMP; /* ":tjump" */
9255 break;
9256 case 's': cmd = DT_SELECT; /* ":tselect" */
9257 break;
9258 case 'p': cmd = DT_PREV; /* ":tprevious" */
9259 break;
9260 case 'N': cmd = DT_PREV; /* ":tNext" */
9261 break;
9262 case 'n': cmd = DT_NEXT; /* ":tnext" */
9263 break;
9264 case 'o': cmd = DT_POP; /* ":pop" */
9265 break;
9266 case 'f': /* ":tfirst" */
9267 case 'r': cmd = DT_FIRST; /* ":trewind" */
9268 break;
9269 case 'l': cmd = DT_LAST; /* ":tlast" */
9270 break;
9271 default: /* ":tag" */
9272#ifdef FEAT_CSCOPE
9273 if (p_cst)
9274 {
9275 do_cstag(eap);
9276 return;
9277 }
9278#endif
9279 cmd = DT_TAG;
9280 break;
9281 }
9282
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009283 if (name[0] == 'l')
9284 {
9285#ifndef FEAT_QUICKFIX
9286 ex_ni(eap);
9287 return;
9288#else
9289 cmd = DT_LTAG;
9290#endif
9291 }
9292
Bram Moolenaar071d4272004-06-13 20:20:40 +00009293 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9294 eap->forceit, TRUE);
9295}
9296
9297/*
9298 * Evaluate cmdline variables.
9299 *
9300 * change '%' to curbuf->b_ffname
9301 * '#' to curwin->w_altfile
9302 * '<cword>' to word under the cursor
9303 * '<cWORD>' to WORD under the cursor
9304 * '<cfile>' to path name under the cursor
9305 * '<sfile>' to sourced file name
9306 * '<afile>' to file name for autocommand
9307 * '<abuf>' to buffer number for autocommand
9308 * '<amatch>' to matching name for autocommand
9309 *
9310 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9311 * "" for error without a message) and NULL is returned.
9312 * Returns an allocated string if a valid match was found.
9313 * Returns NULL if no match was found. "usedlen" then still contains the
9314 * number of characters to skip.
9315 */
9316 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009317eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009318 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009319 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009320 int *usedlen; /* characters after src that are used */
9321 linenr_T *lnump; /* line number for :e command, or NULL */
9322 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009323 int *escaped; /* return value has escaped white space (can
9324 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009325{
9326 int i;
9327 char_u *s;
9328 char_u *result;
9329 char_u *resultbuf = NULL;
9330 int resultlen;
9331 buf_T *buf;
9332 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9333 int spec_idx;
9334#ifdef FEAT_MODIFY_FNAME
9335 int skip_mod = FALSE;
9336#endif
9337 static char *(spec_str[]) =
9338 {
9339 "%",
9340#define SPEC_PERC 0
9341 "#",
9342#define SPEC_HASH 1
9343 "<cword>", /* cursor word */
9344#define SPEC_CWORD 2
9345 "<cWORD>", /* cursor WORD */
9346#define SPEC_CCWORD 3
9347 "<cfile>", /* cursor path name */
9348#define SPEC_CFILE 4
9349 "<sfile>", /* ":so" file name */
9350#define SPEC_SFILE 5
9351#ifdef FEAT_AUTOCMD
9352 "<afile>", /* autocommand file name */
9353# define SPEC_AFILE 6
9354 "<abuf>", /* autocommand buffer number */
9355# define SPEC_ABUF 7
9356 "<amatch>", /* autocommand match name */
9357# define SPEC_AMATCH 8
9358#endif
9359#ifdef FEAT_CLIENTSERVER
9360 "<client>"
9361# define SPEC_CLIENT 9
9362#endif
9363 };
9364#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9365
9366#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9367 char_u strbuf[30];
9368#endif
9369
9370 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009371 if (escaped != NULL)
9372 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009373
9374 /*
9375 * Check if there is something to do.
9376 */
9377 for (spec_idx = 0; spec_idx < SPEC_COUNT; ++spec_idx)
9378 {
9379 *usedlen = (int)STRLEN(spec_str[spec_idx]);
9380 if (STRNCMP(src, spec_str[spec_idx], *usedlen) == 0)
9381 break;
9382 }
9383 if (spec_idx == SPEC_COUNT) /* no match */
9384 {
9385 *usedlen = 1;
9386 return NULL;
9387 }
9388
9389 /*
9390 * Skip when preceded with a backslash "\%" and "\#".
9391 * Note: In "\\%" the % is also not recognized!
9392 */
9393 if (src > srcstart && src[-1] == '\\')
9394 {
9395 *usedlen = 0;
Bram Moolenaar81870892007-11-11 18:17:28 +00009396 mch_memmove(src - 1, src, STRLEN(src) + 1); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009397 return NULL;
9398 }
9399
9400 /*
9401 * word or WORD under cursor
9402 */
9403 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9404 {
9405 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9406 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9407 if (resultlen == 0)
9408 {
9409 *errormsg = (char_u *)"";
9410 return NULL;
9411 }
9412 }
9413
9414 /*
9415 * '#': Alternate file name
9416 * '%': Current file name
9417 * File name under the cursor
9418 * File name for autocommand
9419 * and following modifiers
9420 */
9421 else
9422 {
9423 switch (spec_idx)
9424 {
9425 case SPEC_PERC: /* '%': current file */
9426 if (curbuf->b_fname == NULL)
9427 {
9428 result = (char_u *)"";
9429 valid = 0; /* Must have ":p:h" to be valid */
9430 }
9431 else
9432#ifdef RISCOS
9433 /* Always use the full path for RISC OS if possible. */
9434 result = curbuf->b_ffname;
9435 if (result == NULL)
9436 result = curbuf->b_fname;
9437#else
9438 result = curbuf->b_fname;
9439#endif
9440 break;
9441
9442 case SPEC_HASH: /* '#' or "#99": alternate file */
9443 if (src[1] == '#') /* "##": the argument list */
9444 {
9445 result = arg_all();
9446 resultbuf = result;
9447 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009448 if (escaped != NULL)
9449 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009450#ifdef FEAT_MODIFY_FNAME
9451 skip_mod = TRUE;
9452#endif
9453 break;
9454 }
9455 s = src + 1;
9456 i = (int)getdigits(&s);
9457 *usedlen = (int)(s - src); /* length of what we expand */
9458
9459 buf = buflist_findnr(i);
9460 if (buf == NULL)
9461 {
9462 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9463 return NULL;
9464 }
9465 if (lnump != NULL)
9466 *lnump = ECMD_LAST;
9467 if (buf->b_fname == NULL)
9468 {
9469 result = (char_u *)"";
9470 valid = 0; /* Must have ":p:h" to be valid */
9471 }
9472 else
9473 result = buf->b_fname;
9474 break;
9475
9476#ifdef FEAT_SEARCHPATH
9477 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009478 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009479 if (result == NULL)
9480 {
9481 *errormsg = (char_u *)"";
9482 return NULL;
9483 }
9484 resultbuf = result; /* remember allocated string */
9485 break;
9486#endif
9487
9488#ifdef FEAT_AUTOCMD
9489 case SPEC_AFILE: /* file name for autocommand */
9490 result = autocmd_fname;
9491 if (result == NULL)
9492 {
9493 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9494 return NULL;
9495 }
9496 break;
9497
9498 case SPEC_ABUF: /* buffer number for autocommand */
9499 if (autocmd_bufnr <= 0)
9500 {
9501 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9502 return NULL;
9503 }
9504 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9505 result = strbuf;
9506 break;
9507
9508 case SPEC_AMATCH: /* match name for autocommand */
9509 result = autocmd_match;
9510 if (result == NULL)
9511 {
9512 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9513 return NULL;
9514 }
9515 break;
9516
9517#endif
9518 case SPEC_SFILE: /* file name for ":so" command */
9519 result = sourcing_name;
9520 if (result == NULL)
9521 {
9522 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9523 return NULL;
9524 }
9525 break;
9526#if defined(FEAT_CLIENTSERVER)
9527 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009528 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9529 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009530 result = strbuf;
9531 break;
9532#endif
9533 }
9534
9535 resultlen = (int)STRLEN(result); /* length of new string */
9536 if (src[*usedlen] == '<') /* remove the file name extension */
9537 {
9538 ++*usedlen;
9539#ifdef RISCOS
9540 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9541#else
9542 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9543#endif
9544 resultlen = (int)(s - result);
9545 }
9546#ifdef FEAT_MODIFY_FNAME
9547 else if (!skip_mod)
9548 {
9549 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9550 &resultlen);
9551 if (result == NULL)
9552 {
9553 *errormsg = (char_u *)"";
9554 return NULL;
9555 }
9556 }
9557#endif
9558 }
9559
9560 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9561 {
9562 if (valid != VALID_HEAD + VALID_PATH)
9563 /* xgettext:no-c-format */
9564 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9565 else
9566 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9567 result = NULL;
9568 }
9569 else
9570 result = vim_strnsave(result, resultlen);
9571 vim_free(resultbuf);
9572 return result;
9573}
9574
9575/*
9576 * Concatenate all files in the argument list, separated by spaces, and return
9577 * it in one allocated string.
9578 * Spaces and backslashes in the file names are escaped with a backslash.
9579 * Returns NULL when out of memory.
9580 */
9581 static char_u *
9582arg_all()
9583{
9584 int len;
9585 int idx;
9586 char_u *retval = NULL;
9587 char_u *p;
9588
9589 /*
9590 * Do this loop two times:
9591 * first time: compute the total length
9592 * second time: concatenate the names
9593 */
9594 for (;;)
9595 {
9596 len = 0;
9597 for (idx = 0; idx < ARGCOUNT; ++idx)
9598 {
9599 p = alist_name(&ARGLIST[idx]);
9600 if (p != NULL)
9601 {
9602 if (len > 0)
9603 {
9604 /* insert a space in between names */
9605 if (retval != NULL)
9606 retval[len] = ' ';
9607 ++len;
9608 }
9609 for ( ; *p != NUL; ++p)
9610 {
9611 if (*p == ' ' || *p == '\\')
9612 {
9613 /* insert a backslash */
9614 if (retval != NULL)
9615 retval[len] = '\\';
9616 ++len;
9617 }
9618 if (retval != NULL)
9619 retval[len] = *p;
9620 ++len;
9621 }
9622 }
9623 }
9624
9625 /* second time: break here */
9626 if (retval != NULL)
9627 {
9628 retval[len] = NUL;
9629 break;
9630 }
9631
9632 /* allocate memory */
9633 retval = alloc(len + 1);
9634 if (retval == NULL)
9635 break;
9636 }
9637
9638 return retval;
9639}
9640
9641#if defined(FEAT_AUTOCMD) || defined(PROTO)
9642/*
9643 * Expand the <sfile> string in "arg".
9644 *
9645 * Returns an allocated string, or NULL for any error.
9646 */
9647 char_u *
9648expand_sfile(arg)
9649 char_u *arg;
9650{
9651 char_u *errormsg;
9652 int len;
9653 char_u *result;
9654 char_u *newres;
9655 char_u *repl;
9656 int srclen;
9657 char_u *p;
9658
9659 result = vim_strsave(arg);
9660 if (result == NULL)
9661 return NULL;
9662
9663 for (p = result; *p; )
9664 {
9665 if (STRNCMP(p, "<sfile>", 7) != 0)
9666 ++p;
9667 else
9668 {
9669 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009670 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009671 if (errormsg != NULL)
9672 {
9673 if (*errormsg)
9674 emsg(errormsg);
9675 vim_free(result);
9676 return NULL;
9677 }
9678 if (repl == NULL) /* no match (cannot happen) */
9679 {
9680 p += srclen;
9681 continue;
9682 }
9683 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9684 newres = alloc(len);
9685 if (newres == NULL)
9686 {
9687 vim_free(repl);
9688 vim_free(result);
9689 return NULL;
9690 }
9691 mch_memmove(newres, result, (size_t)(p - result));
9692 STRCPY(newres + (p - result), repl);
9693 len = (int)STRLEN(newres);
9694 STRCAT(newres, p + srclen);
9695 vim_free(repl);
9696 vim_free(result);
9697 result = newres;
9698 p = newres + len; /* continue after the match */
9699 }
9700 }
9701
9702 return result;
9703}
9704#endif
9705
9706#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009707static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9708 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009709static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9710static frame_T *ses_skipframe __ARGS((frame_T *fr));
9711static int ses_do_frame __ARGS((frame_T *fr));
9712static int ses_do_win __ARGS((win_T *wp));
9713static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9714static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9715static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9716
9717/*
9718 * Write openfile commands for the current buffers to an .exrc file.
9719 * Return FAIL on error, OK otherwise.
9720 */
9721 static int
9722makeopens(fd, dirnow)
9723 FILE *fd;
9724 char_u *dirnow; /* Current directory name */
9725{
9726 buf_T *buf;
9727 int only_save_windows = TRUE;
9728 int nr;
9729 int cnr = 1;
9730 int restore_size = TRUE;
9731 win_T *wp;
9732 char_u *sname;
9733 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009734 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009735 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009736 frame_T *tab_topframe;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009737
9738 if (ssop_flags & SSOP_BUFFERS)
9739 only_save_windows = FALSE; /* Save ALL buffers */
9740
9741 /*
9742 * Begin by setting the this_session variable, and then other
9743 * sessionable variables.
9744 */
9745#ifdef FEAT_EVAL
9746 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9747 return FAIL;
9748 if (ssop_flags & SSOP_GLOBALS)
9749 if (store_session_globals(fd) == FAIL)
9750 return FAIL;
9751#endif
9752
9753 /*
9754 * Close all windows but one.
9755 */
9756 if (put_line(fd, "silent only") == FAIL)
9757 return FAIL;
9758
9759 /*
9760 * Now a :cd command to the session directory or the current directory
9761 */
9762 if (ssop_flags & SSOP_SESDIR)
9763 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009764 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9765 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009766 return FAIL;
9767 }
9768 else if (ssop_flags & SSOP_CURDIR)
9769 {
9770 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9771 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009772 || fputs("cd ", fd) < 0
9773 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9774 || put_eol(fd) == FAIL)
9775 {
9776 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009777 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009779 vim_free(sname);
9780 }
9781
9782 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009783 * If there is an empty, unnamed buffer we will wipe it out later.
9784 * Remember the buffer number.
9785 */
9786 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9787 return FAIL;
9788 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9789 return FAIL;
9790 if (put_line(fd, "endif") == FAIL)
9791 return FAIL;
9792
9793 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009794 * Now save the current files, current buffer first.
9795 */
9796 if (put_line(fd, "set shortmess=aoO") == FAIL)
9797 return FAIL;
9798
9799 /* Now put the other buffers into the buffer list */
9800 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9801 {
9802 if (!(only_save_windows && buf->b_nwindows == 0)
9803 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9804 && buf->b_fname != NULL
9805 && buf->b_p_bl)
9806 {
9807 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9808 : buf->b_wininfo->wi_fpos.lnum) < 0
9809 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9810 return FAIL;
9811 }
9812 }
9813
9814 /* the global argument list */
9815 if (ses_arglist(fd, "args", &global_alist.al_ga,
9816 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9817 return FAIL;
9818
9819 if (ssop_flags & SSOP_RESIZE)
9820 {
9821 /* Note: after the restore we still check it worked!*/
9822 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9823 || put_eol(fd) == FAIL)
9824 return FAIL;
9825 }
9826
9827#ifdef FEAT_GUI
9828 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9829 {
9830 int x, y;
9831
9832 if (gui_mch_get_winpos(&x, &y) == OK)
9833 {
9834 /* Note: after the restore we still check it worked!*/
9835 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9836 return FAIL;
9837 }
9838 }
9839#endif
9840
9841 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009842 * May repeat putting Windows for each tab, when "tabpages" is in
9843 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009844 * Don't use goto_tabpage(), it may change directory and trigger
9845 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009846 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009847 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009848 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009849 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009850 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009851 int need_tabnew = FALSE;
9852
Bram Moolenaar18144c82006-04-12 21:52:12 +00009853 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009854 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009855 tabpage_T *tp = find_tabpage(tabnr);
9856
9857 if (tp == NULL)
9858 break; /* done all tab pages */
9859 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009860 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009861 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009862 tab_topframe = topframe;
9863 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009864 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009865 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009866 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009867 tab_topframe = tp->tp_topframe;
9868 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009869 if (tabnr > 1)
9870 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009871 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009872
Bram Moolenaar18144c82006-04-12 21:52:12 +00009873 /*
9874 * Before creating the window layout, try loading one file. If this
9875 * is aborted we don't end up with a number of useless windows.
9876 * This may have side effects! (e.g., compressed or network file).
9877 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009878 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009879 {
9880 if (ses_do_win(wp)
9881 && wp->w_buffer->b_ffname != NULL
9882 && !wp->w_buffer->b_help
9883#ifdef FEAT_QUICKFIX
9884 && !bt_nofile(wp->w_buffer)
9885#endif
9886 )
9887 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009888 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009889 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9890 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009891 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009892 if (!wp->w_arg_idx_invalid)
9893 edited_win = wp;
9894 break;
9895 }
9896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009897
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009898 /* If no file got edited create an empty tab page. */
9899 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9900 return FAIL;
9901
Bram Moolenaar18144c82006-04-12 21:52:12 +00009902 /*
9903 * Save current window layout.
9904 */
9905 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009906 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009907 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009908 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009909 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
9910 return FAIL;
9911 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
9912 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009913
Bram Moolenaar18144c82006-04-12 21:52:12 +00009914 /*
9915 * Check if window sizes can be restored (no windows omitted).
9916 * Remember the window number of the current window after restoring.
9917 */
9918 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009919 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009920 {
9921 if (ses_do_win(wp))
9922 ++nr;
9923 else
9924 restore_size = FALSE;
9925 if (curwin == wp)
9926 cnr = nr;
9927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009928
Bram Moolenaar18144c82006-04-12 21:52:12 +00009929 /* Go to the first window. */
9930 if (put_line(fd, "wincmd t") == FAIL)
9931 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009932
Bram Moolenaar18144c82006-04-12 21:52:12 +00009933 /*
9934 * If more than one window, see if sizes can be restored.
9935 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
9936 * resized when moving between windows.
9937 * Do this before restoring the view, so that the topline and the
9938 * cursor can be set. This is done again below.
9939 */
9940 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
9941 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009942 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009943 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009944
Bram Moolenaar18144c82006-04-12 21:52:12 +00009945 /*
9946 * Restore the view of the window (options, file, cursor, etc.).
9947 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009948 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009949 {
9950 if (!ses_do_win(wp))
9951 continue;
9952 if (put_view(fd, wp, wp != edited_win, &ssop_flags) == FAIL)
9953 return FAIL;
9954 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
9955 return FAIL;
9956 }
9957
9958 /*
9959 * Restore cursor to the current window if it's not the first one.
9960 */
9961 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
9962 || put_eol(fd) == FAIL))
9963 return FAIL;
9964
9965 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009966 * Restore window sizes again after jumping around in windows, because
9967 * the current window has a minimum size while others may not.
9968 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009969 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009970 return FAIL;
9971
Bram Moolenaar18144c82006-04-12 21:52:12 +00009972 /* Don't continue in another tab page when doing only the current one
9973 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009974 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009975 break;
9976 }
9977
9978 if (ssop_flags & SSOP_TABPAGES)
9979 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00009980 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
9981 || put_eol(fd) == FAIL)
9982 return FAIL;
9983 }
9984
Bram Moolenaar9c102382006-05-03 21:26:49 +00009985 /*
9986 * Wipe out an empty unnamed buffer we started in.
9987 */
9988 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
9989 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00009990 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +00009991 return FAIL;
9992 if (put_line(fd, "endif") == FAIL)
9993 return FAIL;
9994 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
9995 return FAIL;
9996
9997 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
9998 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
9999 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10000 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010001
10002 /*
10003 * Lastly, execute the x.vim file if it exists.
10004 */
10005 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10006 || put_line(fd, "if file_readable(s:sx)") == FAIL
10007 || put_line(fd, " exe \"source \" . s:sx") == FAIL
10008 || put_line(fd, "endif") == FAIL)
10009 return FAIL;
10010
10011 return OK;
10012}
10013
10014 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010015ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010016 FILE *fd;
10017 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010018 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010019{
10020 int n = 0;
10021 win_T *wp;
10022
10023 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10024 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010025 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010026 {
10027 if (!ses_do_win(wp))
10028 continue;
10029 ++n;
10030
10031 /* restore height when not full height */
10032 if (wp->w_height + wp->w_status_height < topframe->fr_height
10033 && (fprintf(fd,
10034 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10035 n, (long)wp->w_height, Rows / 2, Rows) < 0
10036 || put_eol(fd) == FAIL))
10037 return FAIL;
10038
10039 /* restore width when not full width */
10040 if (wp->w_width < Columns && (fprintf(fd,
10041 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10042 n, (long)wp->w_width, Columns / 2, Columns) < 0
10043 || put_eol(fd) == FAIL))
10044 return FAIL;
10045 }
10046 }
10047 else
10048 {
10049 /* Just equalise window sizes */
10050 if (put_line(fd, "wincmd =") == FAIL)
10051 return FAIL;
10052 }
10053 return OK;
10054}
10055
10056/*
10057 * Write commands to "fd" to recursively create windows for frame "fr",
10058 * horizontally and vertically split.
10059 * After the commands the last window in the frame is the current window.
10060 * Returns FAIL when writing the commands to "fd" fails.
10061 */
10062 static int
10063ses_win_rec(fd, fr)
10064 FILE *fd;
10065 frame_T *fr;
10066{
10067 frame_T *frc;
10068 int count = 0;
10069
10070 if (fr->fr_layout != FR_LEAF)
10071 {
10072 /* Find first frame that's not skipped and then create a window for
10073 * each following one (first frame is already there). */
10074 frc = ses_skipframe(fr->fr_child);
10075 if (frc != NULL)
10076 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10077 {
10078 /* Make window as big as possible so that we have lots of room
10079 * to split. */
10080 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10081 || put_line(fd, fr->fr_layout == FR_COL
10082 ? "split" : "vsplit") == FAIL)
10083 return FAIL;
10084 ++count;
10085 }
10086
10087 /* Go back to the first window. */
10088 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10089 ? "%dwincmd k" : "%dwincmd h", count) < 0
10090 || put_eol(fd) == FAIL))
10091 return FAIL;
10092
10093 /* Recursively create frames/windows in each window of this column or
10094 * row. */
10095 frc = ses_skipframe(fr->fr_child);
10096 while (frc != NULL)
10097 {
10098 ses_win_rec(fd, frc);
10099 frc = ses_skipframe(frc->fr_next);
10100 /* Go to next window. */
10101 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10102 return FAIL;
10103 }
10104 }
10105 return OK;
10106}
10107
10108/*
10109 * Skip frames that don't contain windows we want to save in the Session.
10110 * Returns NULL when there none.
10111 */
10112 static frame_T *
10113ses_skipframe(fr)
10114 frame_T *fr;
10115{
10116 frame_T *frc;
10117
10118 for (frc = fr; frc != NULL; frc = frc->fr_next)
10119 if (ses_do_frame(frc))
10120 break;
10121 return frc;
10122}
10123
10124/*
10125 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10126 * the Session.
10127 */
10128 static int
10129ses_do_frame(fr)
10130 frame_T *fr;
10131{
10132 frame_T *frc;
10133
10134 if (fr->fr_layout == FR_LEAF)
10135 return ses_do_win(fr->fr_win);
10136 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10137 if (ses_do_frame(frc))
10138 return TRUE;
10139 return FALSE;
10140}
10141
10142/*
10143 * Return non-zero if window "wp" is to be stored in the Session.
10144 */
10145 static int
10146ses_do_win(wp)
10147 win_T *wp;
10148{
10149 if (wp->w_buffer->b_fname == NULL
10150#ifdef FEAT_QUICKFIX
10151 /* When 'buftype' is "nofile" can't restore the window contents. */
10152 || bt_nofile(wp->w_buffer)
10153#endif
10154 )
10155 return (ssop_flags & SSOP_BLANK);
10156 if (wp->w_buffer->b_help)
10157 return (ssop_flags & SSOP_HELP);
10158 return TRUE;
10159}
10160
10161/*
10162 * Write commands to "fd" to restore the view of a window.
10163 * Caller must make sure 'scrolloff' is zero.
10164 */
10165 static int
10166put_view(fd, wp, add_edit, flagp)
10167 FILE *fd;
10168 win_T *wp;
10169 int add_edit; /* add ":edit" command to view */
10170 unsigned *flagp; /* vop_flags or ssop_flags */
10171{
10172 win_T *save_curwin;
10173 int f;
10174 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010175 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010176
10177 /* Always restore cursor position for ":mksession". For ":mkview" only
10178 * when 'viewoptions' contains "cursor". */
10179 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10180
10181 /*
10182 * Local argument list.
10183 */
10184 if (wp->w_alist == &global_alist)
10185 {
10186 if (put_line(fd, "argglobal") == FAIL)
10187 return FAIL;
10188 }
10189 else
10190 {
10191 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10192 flagp == &vop_flags
10193 || !(*flagp & SSOP_CURDIR)
10194 || wp->w_localdir != NULL, flagp) == FAIL)
10195 return FAIL;
10196 }
10197
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010198 /* Only when part of a session: restore the argument index. Some
10199 * arguments may have been deleted, check if the index is valid. */
10200 if (wp->w_arg_idx != 0 && wp->w_arg_idx <= WARGCOUNT(wp)
10201 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010202 {
10203 if (fprintf(fd, "%ldnext", (long)wp->w_arg_idx) < 0
10204 || put_eol(fd) == FAIL)
10205 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010206 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010207 }
10208
10209 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010210 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010211 {
10212 /*
10213 * Load the file.
10214 */
10215 if (wp->w_buffer->b_ffname != NULL
10216#ifdef FEAT_QUICKFIX
10217 && !bt_nofile(wp->w_buffer)
10218#endif
10219 )
10220 {
10221 /*
10222 * Editing a file in this buffer: use ":edit file".
10223 * This may have side effects! (e.g., compressed or network file).
10224 */
10225 if (fputs("edit ", fd) < 0
10226 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10227 return FAIL;
10228 }
10229 else
10230 {
10231 /* No file in this buffer, just make it empty. */
10232 if (put_line(fd, "enew") == FAIL)
10233 return FAIL;
10234#ifdef FEAT_QUICKFIX
10235 if (wp->w_buffer->b_ffname != NULL)
10236 {
10237 /* The buffer does have a name, but it's not a file name. */
10238 if (fputs("file ", fd) < 0
10239 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10240 return FAIL;
10241 }
10242#endif
10243 do_cursor = FALSE;
10244 }
10245 }
10246
10247 /*
10248 * Local mappings and abbreviations.
10249 */
10250 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10251 && makemap(fd, wp->w_buffer) == FAIL)
10252 return FAIL;
10253
10254 /*
10255 * Local options. Need to go to the window temporarily.
10256 * Store only local values when using ":mkview" and when ":mksession" is
10257 * used and 'sessionoptions' doesn't include "options".
10258 * Some folding options are always stored when "folds" is included,
10259 * otherwise the folds would not be restored correctly.
10260 */
10261 save_curwin = curwin;
10262 curwin = wp;
10263 curbuf = curwin->w_buffer;
10264 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10265 f = makeset(fd, OPT_LOCAL,
10266 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10267#ifdef FEAT_FOLDING
10268 else if (*flagp & SSOP_FOLDS)
10269 f = makefoldset(fd);
10270#endif
10271 else
10272 f = OK;
10273 curwin = save_curwin;
10274 curbuf = curwin->w_buffer;
10275 if (f == FAIL)
10276 return FAIL;
10277
10278#ifdef FEAT_FOLDING
10279 /*
10280 * Save Folds when 'buftype' is empty and for help files.
10281 */
10282 if ((*flagp & SSOP_FOLDS)
10283 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010284# ifdef FEAT_QUICKFIX
10285 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10286# endif
10287 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010288 {
10289 if (put_folds(fd, wp) == FAIL)
10290 return FAIL;
10291 }
10292#endif
10293
10294 /*
10295 * Set the cursor after creating folds, since that moves the cursor.
10296 */
10297 if (do_cursor)
10298 {
10299
10300 /* Restore the cursor line in the file and relatively in the
10301 * window. Don't use "G", it changes the jumplist. */
10302 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10303 (long)wp->w_cursor.lnum,
10304 (long)(wp->w_cursor.lnum - wp->w_topline),
10305 (long)wp->w_height / 2, (long)wp->w_height) < 0
10306 || put_eol(fd) == FAIL
10307 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10308 || put_line(fd, "exe s:l") == FAIL
10309 || put_line(fd, "normal! zt") == FAIL
10310 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10311 || put_eol(fd) == FAIL)
10312 return FAIL;
10313 /* Restore the cursor column and left offset when not wrapping. */
10314 if (wp->w_cursor.col == 0)
10315 {
10316 if (put_line(fd, "normal! 0") == FAIL)
10317 return FAIL;
10318 }
10319 else
10320 {
10321 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10322 {
10323 if (fprintf(fd,
10324 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10325 (long)wp->w_cursor.col,
10326 (long)(wp->w_cursor.col - wp->w_leftcol),
10327 (long)wp->w_width / 2, (long)wp->w_width) < 0
10328 || put_eol(fd) == FAIL
10329 || put_line(fd, "if s:c > 0") == FAIL
10330 || fprintf(fd,
10331 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10332 (long)wp->w_cursor.col) < 0
10333 || put_eol(fd) == FAIL
10334 || put_line(fd, "else") == FAIL
10335 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10336 || put_eol(fd) == FAIL
10337 || put_line(fd, "endif") == FAIL)
10338 return FAIL;
10339 }
10340 else
10341 {
10342 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10343 || put_eol(fd) == FAIL)
10344 return FAIL;
10345 }
10346 }
10347 }
10348
10349 /*
10350 * Local directory.
10351 */
10352 if (wp->w_localdir != NULL)
10353 {
10354 if (fputs("lcd ", fd) < 0
10355 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10356 || put_eol(fd) == FAIL)
10357 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010358 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010359 }
10360
10361 return OK;
10362}
10363
10364/*
10365 * Write an argument list to the session file.
10366 * Returns FAIL if writing fails.
10367 */
10368 static int
10369ses_arglist(fd, cmd, gap, fullname, flagp)
10370 FILE *fd;
10371 char *cmd;
10372 garray_T *gap;
10373 int fullname; /* TRUE: use full path name */
10374 unsigned *flagp;
10375{
10376 int i;
10377 char_u buf[MAXPATHL];
10378 char_u *s;
10379
10380 if (gap->ga_len == 0)
10381 return put_line(fd, "silent! argdel *");
10382 if (fputs(cmd, fd) < 0)
10383 return FAIL;
10384 for (i = 0; i < gap->ga_len; ++i)
10385 {
10386 /* NULL file names are skipped (only happens when out of memory). */
10387 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10388 if (s != NULL)
10389 {
10390 if (fullname)
10391 {
10392 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10393 s = buf;
10394 }
10395 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10396 return FAIL;
10397 }
10398 }
10399 return put_eol(fd);
10400}
10401
10402/*
10403 * Write a buffer name to the session file.
10404 * Also ends the line.
10405 * Returns FAIL if writing fails.
10406 */
10407 static int
10408ses_fname(fd, buf, flagp)
10409 FILE *fd;
10410 buf_T *buf;
10411 unsigned *flagp;
10412{
10413 char_u *name;
10414
10415 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010416 * the session file will be sourced.
10417 * Don't do this for ":mkview", we don't know the current directory.
10418 * Don't do this after ":lcd", we don't keep track of what the current
10419 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010420 if (buf->b_sfname != NULL
10421 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010422 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10423 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010424 name = buf->b_sfname;
10425 else
10426 name = buf->b_ffname;
10427 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10428 return FAIL;
10429 return OK;
10430}
10431
10432/*
10433 * Write a file name to the session file.
10434 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10435 * characters.
10436 * Returns FAIL if writing fails.
10437 */
10438 static int
10439ses_put_fname(fd, name, flagp)
10440 FILE *fd;
10441 char_u *name;
10442 unsigned *flagp;
10443{
10444 char_u *sname;
10445 int retval = OK;
10446 int c;
10447
10448 sname = home_replace_save(NULL, name);
10449 if (sname != NULL)
10450 name = sname;
10451 while (*name != NUL)
10452 {
10453#ifdef FEAT_MBYTE
10454 {
10455 int l;
10456
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010457 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010458 {
10459 /* copy a multibyte char */
10460 while (--l >= 0)
10461 {
10462 if (putc(*name, fd) != *name)
10463 retval = FAIL;
10464 ++name;
10465 }
10466 continue;
10467 }
10468 }
10469#endif
10470 c = *name++;
10471 if (c == '\\' && (*flagp & SSOP_SLASH))
10472 /* change a backslash to a forward slash */
10473 c = '/';
10474 else if ((vim_strchr(escape_chars, c) != NULL
10475#ifdef BACKSLASH_IN_FILENAME
10476 && c != '\\'
10477#endif
10478 ) || c == '#' || c == '%')
10479 {
10480 /* escape a special character with a backslash */
10481 if (putc('\\', fd) != '\\')
10482 retval = FAIL;
10483 }
10484 if (putc(c, fd) != c)
10485 retval = FAIL;
10486 }
10487 vim_free(sname);
10488 return retval;
10489}
10490
10491/*
10492 * ":loadview [nr]"
10493 */
10494 static void
10495ex_loadview(eap)
10496 exarg_T *eap;
10497{
10498 char_u *fname;
10499
10500 fname = get_view_file(*eap->arg);
10501 if (fname != NULL)
10502 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010503 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010504 vim_free(fname);
10505 }
10506}
10507
10508/*
10509 * Get the name of the view file for the current buffer.
10510 */
10511 static char_u *
10512get_view_file(c)
10513 int c;
10514{
10515 int len = 0;
10516 char_u *p, *s;
10517 char_u *retval;
10518 char_u *sname;
10519
10520 if (curbuf->b_ffname == NULL)
10521 {
10522 EMSG(_(e_noname));
10523 return NULL;
10524 }
10525 sname = home_replace_save(NULL, curbuf->b_ffname);
10526 if (sname == NULL)
10527 return NULL;
10528
10529 /*
10530 * We want a file name without separators, because we're not going to make
10531 * a directory.
10532 * "normal" path separator -> "=+"
10533 * "=" -> "=="
10534 * ":" path separator -> "=-"
10535 */
10536 for (p = sname; *p; ++p)
10537 if (*p == '=' || vim_ispathsep(*p))
10538 ++len;
10539 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10540 if (retval != NULL)
10541 {
10542 STRCPY(retval, p_vdir);
10543 add_pathsep(retval);
10544 s = retval + STRLEN(retval);
10545 for (p = sname; *p; ++p)
10546 {
10547 if (*p == '=')
10548 {
10549 *s++ = '=';
10550 *s++ = '=';
10551 }
10552 else if (vim_ispathsep(*p))
10553 {
10554 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010555#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010556 || defined(VMS)
10557 if (*p == ':')
10558 *s++ = '-';
10559 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010560#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010561 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010562 }
10563 else
10564 *s++ = *p;
10565 }
10566 *s++ = '=';
10567 *s++ = c;
10568 STRCPY(s, ".vim");
10569 }
10570
10571 vim_free(sname);
10572 return retval;
10573}
10574
10575#endif /* FEAT_SESSION */
10576
10577/*
10578 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10579 * Return FAIL for a write error.
10580 */
10581 int
10582put_eol(fd)
10583 FILE *fd;
10584{
10585 if (
10586#ifdef USE_CRNL
10587 (
10588# ifdef MKSESSION_NL
10589 !mksession_nl &&
10590# endif
10591 (putc('\r', fd) < 0)) ||
10592#endif
10593 (putc('\n', fd) < 0))
10594 return FAIL;
10595 return OK;
10596}
10597
10598/*
10599 * Write a line to "fd".
10600 * Return FAIL for a write error.
10601 */
10602 int
10603put_line(fd, s)
10604 FILE *fd;
10605 char *s;
10606{
10607 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10608 return FAIL;
10609 return OK;
10610}
10611
10612#ifdef FEAT_VIMINFO
10613/*
10614 * ":rviminfo" and ":wviminfo".
10615 */
10616 static void
10617ex_viminfo(eap)
10618 exarg_T *eap;
10619{
10620 char_u *save_viminfo;
10621
10622 save_viminfo = p_viminfo;
10623 if (*p_viminfo == NUL)
10624 p_viminfo = (char_u *)"'100";
10625 if (eap->cmdidx == CMD_rviminfo)
10626 {
10627 if (read_viminfo(eap->arg, TRUE, TRUE, eap->forceit) == FAIL)
10628 EMSG(_("E195: Cannot open viminfo file for reading"));
10629 }
10630 else
10631 write_viminfo(eap->arg, eap->forceit);
10632 p_viminfo = save_viminfo;
10633}
10634#endif
10635
10636#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010637/*
10638 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010639 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010640 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010641 void
10642dialog_msg(buff, format, fname)
10643 char_u *buff;
10644 char *format;
10645 char_u *fname;
10646{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010647 if (fname == NULL)
10648 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010649 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010650}
10651#endif
10652
10653/*
10654 * ":behave {mswin,xterm}"
10655 */
10656 static void
10657ex_behave(eap)
10658 exarg_T *eap;
10659{
10660 if (STRCMP(eap->arg, "mswin") == 0)
10661 {
10662 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10663 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10664 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10665 set_option_value((char_u *)"keymodel", 0L,
10666 (char_u *)"startsel,stopsel", 0);
10667 }
10668 else if (STRCMP(eap->arg, "xterm") == 0)
10669 {
10670 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10671 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10672 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10673 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10674 }
10675 else
10676 EMSG2(_(e_invarg2), eap->arg);
10677}
10678
10679#ifdef FEAT_AUTOCMD
10680static int filetype_detect = FALSE;
10681static int filetype_plugin = FALSE;
10682static int filetype_indent = FALSE;
10683
10684/*
10685 * ":filetype [plugin] [indent] {on,off,detect}"
10686 * on: Load the filetype.vim file to install autocommands for file types.
10687 * off: Load the ftoff.vim file to remove all autocommands for file types.
10688 * plugin on: load filetype.vim and ftplugin.vim
10689 * plugin off: load ftplugof.vim
10690 * indent on: load filetype.vim and indent.vim
10691 * indent off: load indoff.vim
10692 */
10693 static void
10694ex_filetype(eap)
10695 exarg_T *eap;
10696{
10697 char_u *arg = eap->arg;
10698 int plugin = FALSE;
10699 int indent = FALSE;
10700
10701 if (*eap->arg == NUL)
10702 {
10703 /* Print current status. */
10704 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10705 filetype_detect ? "ON" : "OFF",
10706 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10707 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10708 return;
10709 }
10710
10711 /* Accept "plugin" and "indent" in any order. */
10712 for (;;)
10713 {
10714 if (STRNCMP(arg, "plugin", 6) == 0)
10715 {
10716 plugin = TRUE;
10717 arg = skipwhite(arg + 6);
10718 continue;
10719 }
10720 if (STRNCMP(arg, "indent", 6) == 0)
10721 {
10722 indent = TRUE;
10723 arg = skipwhite(arg + 6);
10724 continue;
10725 }
10726 break;
10727 }
10728 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10729 {
10730 if (*arg == 'o' || !filetype_detect)
10731 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010732 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010733 filetype_detect = TRUE;
10734 if (plugin)
10735 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010736 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010737 filetype_plugin = TRUE;
10738 }
10739 if (indent)
10740 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010741 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010742 filetype_indent = TRUE;
10743 }
10744 }
10745 if (*arg == 'd')
10746 {
10747 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010748 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010749 }
10750 }
10751 else if (STRCMP(arg, "off") == 0)
10752 {
10753 if (plugin || indent)
10754 {
10755 if (plugin)
10756 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010757 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010758 filetype_plugin = FALSE;
10759 }
10760 if (indent)
10761 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010762 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010763 filetype_indent = FALSE;
10764 }
10765 }
10766 else
10767 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010768 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010769 filetype_detect = FALSE;
10770 }
10771 }
10772 else
10773 EMSG2(_(e_invarg2), arg);
10774}
10775
10776/*
10777 * ":setfiletype {name}"
10778 */
10779 static void
10780ex_setfiletype(eap)
10781 exarg_T *eap;
10782{
10783 if (!did_filetype)
10784 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10785}
10786#endif
10787
10788/*ARGSUSED*/
10789 static void
10790ex_digraphs(eap)
10791 exarg_T *eap;
10792{
10793#ifdef FEAT_DIGRAPHS
10794 if (*eap->arg != NUL)
10795 putdigraph(eap->arg);
10796 else
10797 listdigraphs();
10798#else
10799 EMSG(_("E196: No digraphs in this version"));
10800#endif
10801}
10802
10803 static void
10804ex_set(eap)
10805 exarg_T *eap;
10806{
10807 int flags = 0;
10808
10809 if (eap->cmdidx == CMD_setlocal)
10810 flags = OPT_LOCAL;
10811 else if (eap->cmdidx == CMD_setglobal)
10812 flags = OPT_GLOBAL;
10813#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10814 if (cmdmod.browse && flags == 0)
10815 ex_options(eap);
10816 else
10817#endif
10818 (void)do_set(eap->arg, flags);
10819}
10820
10821#ifdef FEAT_SEARCH_EXTRA
10822/*
10823 * ":nohlsearch"
10824 */
10825/*ARGSUSED*/
10826 static void
10827ex_nohlsearch(eap)
10828 exarg_T *eap;
10829{
10830 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010831 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010832}
10833
10834/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010835 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010836 * Sets nextcmd to the start of the next command, if any. Also called when
10837 * skipping commands to find the next command.
10838 */
10839 static void
10840ex_match(eap)
10841 exarg_T *eap;
10842{
10843 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000010844 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010845 char_u *end;
10846 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010847 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010848
10849 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010850 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010851 else
10852 {
10853 EMSG(e_invcmd);
10854 return;
10855 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010856
10857 /* First clear any old pattern. */
10858 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010859 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010860
10861 if (ends_excmd(*eap->arg))
10862 end = eap->arg;
10863 else if ((STRNICMP(eap->arg, "none", 4) == 0
10864 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10865 end = eap->arg + 4;
10866 else
10867 {
10868 p = skiptowhite(eap->arg);
10869 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010870 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010871 p = skipwhite(p);
10872 if (*p == NUL)
10873 {
10874 /* There must be two arguments. */
10875 EMSG2(_(e_invarg2), eap->arg);
10876 return;
10877 }
10878 end = skip_regexp(p + 1, *p, TRUE, NULL);
10879 if (!eap->skip)
10880 {
10881 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10882 {
10883 eap->errmsg = e_trailing;
10884 return;
10885 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010886 if (*end != *p)
10887 {
10888 EMSG2(_(e_invarg2), p);
10889 return;
10890 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010891
10892 c = *end;
10893 *end = NUL;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010894 match_add(curwin, g, p + 1, 10, id);
10895 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010896 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010897 }
10898 }
10899 eap->nextcmd = find_nextcmd(end);
10900}
10901#endif
10902
10903#ifdef FEAT_CRYPT
10904/*
10905 * ":X": Get crypt key
10906 */
10907/*ARGSUSED*/
10908 static void
10909ex_X(eap)
10910 exarg_T *eap;
10911{
10912 (void)get_crypt_key(TRUE, TRUE);
10913}
10914#endif
10915
10916#ifdef FEAT_FOLDING
10917 static void
10918ex_fold(eap)
10919 exarg_T *eap;
10920{
10921 if (foldManualAllowed(TRUE))
10922 foldCreate(eap->line1, eap->line2);
10923}
10924
10925 static void
10926ex_foldopen(eap)
10927 exarg_T *eap;
10928{
10929 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
10930 eap->forceit, FALSE);
10931}
10932
10933 static void
10934ex_folddo(eap)
10935 exarg_T *eap;
10936{
10937 linenr_T lnum;
10938
10939 /* First set the marks for all lines closed/open. */
10940 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
10941 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
10942 ml_setmarked(lnum);
10943
10944 /* Execute the command on the marked lines. */
10945 global_exe(eap->arg);
10946 ml_clearmarked(); /* clear rest of the marks */
10947}
10948#endif