blob: d53c51eb8774fc5763721feb58de671b92ce0cd7 [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 Moolenaar071d4272004-06-13 20:20:40 +0000136static void ex_script_ni __ARGS((exarg_T *eap));
137#endif
138static char_u *invalid_range __ARGS((exarg_T *eap));
139static void correct_range __ARGS((exarg_T *eap));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000140#ifdef FEAT_QUICKFIX
141static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
142#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
144static void ex_highlight __ARGS((exarg_T *eap));
145static void ex_colorscheme __ARGS((exarg_T *eap));
146static void ex_quit __ARGS((exarg_T *eap));
147static void ex_cquit __ARGS((exarg_T *eap));
148static void ex_quit_all __ARGS((exarg_T *eap));
149#ifdef FEAT_WINDOWS
150static void ex_close __ARGS((exarg_T *eap));
Bram Moolenaarf740b292006-02-16 22:11:02 +0000151static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152static void ex_only __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153static void ex_resize __ARGS((exarg_T *eap));
154static void ex_stag __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000155static void ex_tabclose __ARGS((exarg_T *eap));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000156static void ex_tabonly __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000157static void ex_tabnext __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000158static void ex_tabmove __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000159static void ex_tabs __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160#else
161# define ex_close ex_ni
162# define ex_only ex_ni
163# define ex_all ex_ni
164# define ex_resize ex_ni
165# define ex_splitview ex_ni
166# define ex_stag ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000167# define ex_tabnext ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000168# define ex_tabmove ex_ni
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000169# define ex_tabs ex_ni
170# define ex_tabclose ex_ni
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000171# define ex_tabonly ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172#endif
173#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
174static void ex_pclose __ARGS((exarg_T *eap));
175static void ex_ptag __ARGS((exarg_T *eap));
176static void ex_pedit __ARGS((exarg_T *eap));
177#else
178# define ex_pclose ex_ni
179# define ex_ptag ex_ni
180# define ex_pedit ex_ni
181#endif
182static void ex_hide __ARGS((exarg_T *eap));
183static void ex_stop __ARGS((exarg_T *eap));
184static void ex_exit __ARGS((exarg_T *eap));
185static void ex_print __ARGS((exarg_T *eap));
186#ifdef FEAT_BYTEOFF
187static void ex_goto __ARGS((exarg_T *eap));
188#else
189# define ex_goto ex_ni
190#endif
191static void ex_shell __ARGS((exarg_T *eap));
192static void ex_preserve __ARGS((exarg_T *eap));
193static void ex_recover __ARGS((exarg_T *eap));
194#ifndef FEAT_LISTCMDS
195# define ex_argedit ex_ni
196# define ex_argadd ex_ni
197# define ex_argdelete ex_ni
198# define ex_listdo ex_ni
199#endif
200static void ex_mode __ARGS((exarg_T *eap));
201static void ex_wrongmodifier __ARGS((exarg_T *eap));
202static void ex_find __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000203static void ex_open __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204static void ex_edit __ARGS((exarg_T *eap));
205#if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
206# define ex_drop ex_ni
207#endif
208#ifndef FEAT_GUI
209# define ex_gui ex_nogui
210static void ex_nogui __ARGS((exarg_T *eap));
211#endif
212#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
213static void ex_tearoff __ARGS((exarg_T *eap));
214#else
215# define ex_tearoff ex_ni
216#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000217#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218static void ex_popup __ARGS((exarg_T *eap));
219#else
220# define ex_popup ex_ni
221#endif
222#ifndef FEAT_GUI_MSWIN
223# define ex_simalt ex_ni
224#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000225#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226# define gui_mch_find_dialog ex_ni
227# define gui_mch_replace_dialog ex_ni
228#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000229#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230# define ex_helpfind ex_ni
231#endif
232#ifndef FEAT_CSCOPE
233# define do_cscope ex_ni
234# define do_scscope ex_ni
235# define do_cstag ex_ni
236#endif
237#ifndef FEAT_SYN_HL
238# define ex_syntax ex_ni
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000239#endif
240#ifndef FEAT_SPELL
Bram Moolenaarb765d632005-06-07 21:00:02 +0000241# define ex_spell ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000242# define ex_mkspell ex_ni
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000243# define ex_spelldump ex_ni
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000244# define ex_spellinfo ex_ni
Bram Moolenaara1ba8112005-06-28 23:23:32 +0000245# define ex_spellrepall ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000246#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000247#ifndef FEAT_MZSCHEME
248# define ex_mzscheme ex_script_ni
249# define ex_mzfile ex_ni
250#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251#ifndef FEAT_PERL
252# define ex_perl ex_script_ni
253# define ex_perldo ex_ni
254#endif
255#ifndef FEAT_PYTHON
256# define ex_python ex_script_ni
257# define ex_pyfile ex_ni
258#endif
259#ifndef FEAT_TCL
260# define ex_tcl ex_script_ni
261# define ex_tcldo ex_ni
262# define ex_tclfile ex_ni
263#endif
264#ifndef FEAT_RUBY
265# define ex_ruby ex_script_ni
266# define ex_rubydo ex_ni
267# define ex_rubyfile ex_ni
268#endif
269#ifndef FEAT_SNIFF
270# define ex_sniff ex_ni
271#endif
272#ifndef FEAT_KEYMAP
273# define ex_loadkeymap ex_ni
274#endif
275static void ex_swapname __ARGS((exarg_T *eap));
276static void ex_syncbind __ARGS((exarg_T *eap));
277static void ex_read __ARGS((exarg_T *eap));
278static void ex_cd __ARGS((exarg_T *eap));
279static 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
669 * output doensn't contain empty lines. */
670 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 /*
1243 * If the outermost try conditional (accross function calls and sourced
1244 * 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 Moolenaar071d4272004-06-13 20:20:40 +00001596 * function that's orignally used to obtain the lines. This may be nested
1597 * 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 Moolenaar071d4272004-06-13 20:20:40 +00001627 * cookie that's orignally used to obtain the lines. This may be nested
1628 * 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 */
1744 if (*ea.cmd == '"' || *ea.cmd == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001745 {
1746 ex_pressedreturn = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749
1750/*
1751 * 2. handle command modifiers.
1752 */
1753 p = ea.cmd;
1754 if (VIM_ISDIGIT(*ea.cmd))
1755 p = skipwhite(skipdigits(ea.cmd));
1756 switch (*p)
1757 {
1758 /* When adding an entry, also modify cmd_exists(). */
1759 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1760 break;
1761#ifdef FEAT_WINDOWS
1762 cmdmod.split |= WSP_ABOVE;
1763#endif
1764 continue;
1765
1766 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1767 {
1768#ifdef FEAT_WINDOWS
1769 cmdmod.split |= WSP_BELOW;
1770#endif
1771 continue;
1772 }
1773 if (checkforcmd(&ea.cmd, "browse", 3))
1774 {
1775#ifdef FEAT_BROWSE
1776 cmdmod.browse = TRUE;
1777#endif
1778 continue;
1779 }
1780 if (!checkforcmd(&ea.cmd, "botright", 2))
1781 break;
1782#ifdef FEAT_WINDOWS
1783 cmdmod.split |= WSP_BOT;
1784#endif
1785 continue;
1786
1787 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1788 break;
1789#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1790 cmdmod.confirm = TRUE;
1791#endif
1792 continue;
1793
1794 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1795 {
1796 cmdmod.keepmarks = TRUE;
1797 continue;
1798 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001799 if (checkforcmd(&ea.cmd, "keepalt", 5))
1800 {
1801 cmdmod.keepalt = TRUE;
1802 continue;
1803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1805 break;
1806 cmdmod.keepjumps = TRUE;
1807 continue;
1808
1809 /* ":hide" and ":hide | cmd" are not modifiers */
1810 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1811 || *p == NUL || ends_excmd(*p))
1812 break;
1813 ea.cmd = p;
1814 cmdmod.hide = TRUE;
1815 continue;
1816
1817 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1818 {
1819 cmdmod.lockmarks = TRUE;
1820 continue;
1821 }
1822
1823 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1824 break;
1825#ifdef FEAT_WINDOWS
1826 cmdmod.split |= WSP_ABOVE;
1827#endif
1828 continue;
1829
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001830 case 'n': if (!checkforcmd(&ea.cmd, "noautocmd", 3))
1831 break;
1832#ifdef FEAT_AUTOCMD
1833 if (cmdmod.save_ei == NULL)
1834 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001835 /* Set 'eventignore' to "all". Restore the
1836 * existing option value later. */
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001837 cmdmod.save_ei = vim_strsave(p_ei);
1838 set_string_option_direct((char_u *)"ei", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001839 (char_u *)"all", OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001840 }
1841#endif
1842 continue;
1843
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
1845 break;
1846#ifdef FEAT_WINDOWS
1847 cmdmod.split |= WSP_BELOW;
1848#endif
1849 continue;
1850
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001851 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
1852 {
1853#ifdef HAVE_SANDBOX
1854 if (!did_sandbox)
1855 ++sandbox;
1856 did_sandbox = TRUE;
1857#endif
1858 continue;
1859 }
1860 if (!checkforcmd(&ea.cmd, "silent", 3))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 break;
1862 ++did_silent;
1863 ++msg_silent;
1864 save_msg_scroll = msg_scroll;
1865 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
1866 {
1867 /* ":silent!", but not "silent !cmd" */
1868 ea.cmd = skipwhite(ea.cmd + 1);
1869 ++emsg_silent;
1870 ++did_esilent;
1871 }
1872 continue;
1873
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001874 case 't': if (checkforcmd(&p, "tab", 3))
1875 {
1876#ifdef FEAT_WINDOWS
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001877 if (vim_isdigit(*ea.cmd))
1878 cmdmod.tab = atoi((char *)ea.cmd) + 1;
1879 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001880 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001881 ea.cmd = p;
1882#endif
1883 continue;
1884 }
1885 if (!checkforcmd(&ea.cmd, "topleft", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 break;
1887#ifdef FEAT_WINDOWS
1888 cmdmod.split |= WSP_TOP;
1889#endif
1890 continue;
1891
1892 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
1893 {
1894#ifdef FEAT_VERTSPLIT
1895 cmdmod.split |= WSP_VERT;
1896#endif
1897 continue;
1898 }
1899 if (!checkforcmd(&p, "verbose", 4))
1900 break;
1901 if (verbose_save < 0)
1902 verbose_save = p_verbose;
Bram Moolenaared203462004-06-16 11:19:22 +00001903 if (vim_isdigit(*ea.cmd))
1904 p_verbose = atoi((char *)ea.cmd);
1905 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 p_verbose = 1;
1907 ea.cmd = p;
1908 continue;
1909 }
1910 break;
1911 }
1912
1913#ifdef FEAT_EVAL
1914 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1915 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1916#else
1917 ea.skip = (if_level > 0);
1918#endif
1919
1920#ifdef FEAT_EVAL
Bram Moolenaar05159a02005-02-26 23:04:13 +00001921# ifdef FEAT_PROFILE
1922 /* Count this line for profiling if ea.skip is FALSE. */
Bram Moolenaar371d5402006-03-20 21:47:49 +00001923 if (do_profiling == PROF_YES && !ea.skip)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001924 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001925 if (getline_equal(fgetline, cookie, get_func_line))
1926 func_line_exec(getline_cookie(fgetline, cookie));
1927 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +00001928 script_line_exec();
1929 }
1930#endif
1931
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 /* May go to debug mode. If this happens and the ">quit" debug command is
1933 * used, throw an interrupt exception and skip the next command. */
1934 dbg_check_breakpoint(&ea);
1935 if (!ea.skip && got_int)
1936 {
1937 ea.skip = TRUE;
1938 (void)do_intthrow(cstack);
1939 }
1940#endif
1941
1942/*
1943 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1944 *
1945 * where 'addr' is:
1946 *
1947 * % (entire file)
1948 * $ [+-NUM]
1949 * 'x [+-NUM] (where x denotes a currently defined mark)
1950 * . [+-NUM]
1951 * [+-NUM]..
1952 * NUM
1953 *
1954 * The ea.cmd pointer is updated to point to the first character following the
1955 * range spec. If an initial address is found, but no second, the upper bound
1956 * is equal to the lower.
1957 */
1958
1959 /* repeat for all ',' or ';' separated addresses */
1960 for (;;)
1961 {
1962 ea.line1 = ea.line2;
1963 ea.line2 = curwin->w_cursor.lnum; /* default is current line number */
1964 ea.cmd = skipwhite(ea.cmd);
1965 lnum = get_address(&ea.cmd, ea.skip, ea.addr_count == 0);
1966 if (ea.cmd == NULL) /* error detected */
1967 goto doend;
1968 if (lnum == MAXLNUM)
1969 {
1970 if (*ea.cmd == '%') /* '%' - all lines */
1971 {
1972 ++ea.cmd;
1973 ea.line1 = 1;
1974 ea.line2 = curbuf->b_ml.ml_line_count;
1975 ++ea.addr_count;
1976 }
1977 /* '*' - visual area */
1978 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1979 {
1980 pos_T *fp;
1981
1982 ++ea.cmd;
1983 if (!ea.skip)
1984 {
1985 fp = getmark('<', FALSE);
1986 if (check_mark(fp) == FAIL)
1987 goto doend;
1988 ea.line1 = fp->lnum;
1989 fp = getmark('>', FALSE);
1990 if (check_mark(fp) == FAIL)
1991 goto doend;
1992 ea.line2 = fp->lnum;
1993 ++ea.addr_count;
1994 }
1995 }
1996 }
1997 else
1998 ea.line2 = lnum;
1999 ea.addr_count++;
2000
2001 if (*ea.cmd == ';')
2002 {
2003 if (!ea.skip)
2004 curwin->w_cursor.lnum = ea.line2;
2005 }
2006 else if (*ea.cmd != ',')
2007 break;
2008 ++ea.cmd;
2009 }
2010
2011 /* One address given: set start and end lines */
2012 if (ea.addr_count == 1)
2013 {
2014 ea.line1 = ea.line2;
2015 /* ... but only implicit: really no address given */
2016 if (lnum == MAXLNUM)
2017 ea.addr_count = 0;
2018 }
2019
2020 /* Don't leave the cursor on an illegal line (caused by ';') */
2021 check_cursor_lnum();
2022
2023/*
2024 * 4. parse command
2025 */
2026
2027 /*
2028 * Skip ':' and any white space
2029 */
2030 ea.cmd = skipwhite(ea.cmd);
2031 while (*ea.cmd == ':')
2032 ea.cmd = skipwhite(ea.cmd + 1);
2033
2034 /*
2035 * If we got a line, but no command, then go to the line.
2036 * If we find a '|' or '\n' we set ea.nextcmd.
2037 */
2038 if (*ea.cmd == NUL || *ea.cmd == '"' ||
2039 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2040 {
2041 /*
2042 * strange vi behaviour:
2043 * ":3" jumps to line 3
2044 * ":3|..." prints line 3
2045 * ":|" prints current line
2046 */
2047 if (ea.skip) /* skip this if inside :if */
2048 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002049 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 {
2051 ea.cmdidx = CMD_print;
2052 ea.argt = RANGE+COUNT+TRLBAR;
2053 if ((errormsg = invalid_range(&ea)) == NULL)
2054 {
2055 correct_range(&ea);
2056 ex_print(&ea);
2057 }
2058 }
2059 else if (ea.addr_count != 0)
2060 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002061 if (ea.line2 > curbuf->b_ml.ml_line_count)
2062 {
2063 /* With '-' in 'cpoptions' a line number past the file is an
2064 * error, otherwise put it at the end of the file. */
2065 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2066 ea.line2 = -1;
2067 else
2068 ea.line2 = curbuf->b_ml.ml_line_count;
2069 }
2070
2071 if (ea.line2 < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002072 errormsg = (char_u *)_(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 else
2074 {
2075 if (ea.line2 == 0)
2076 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 else
2078 curwin->w_cursor.lnum = ea.line2;
2079 beginline(BL_SOL | BL_FIX);
2080 }
2081 }
2082 goto doend;
2083 }
2084
2085 /* Find the command and let "p" point to after it. */
2086 p = find_command(&ea, NULL);
2087
2088#ifdef FEAT_USR_CMDS
2089 if (p == NULL)
2090 {
2091 if (!ea.skip)
2092 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2093 goto doend;
2094 }
2095 /* Check for wrong commands. */
2096 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2097 {
2098 errormsg = uc_fun_cmd();
2099 goto doend;
2100 }
2101#endif
2102 if (ea.cmdidx == CMD_SIZE)
2103 {
2104 if (!ea.skip)
2105 {
2106 STRCPY(IObuff, _("E492: Not an editor command"));
2107 if (!sourcing)
2108 {
2109 STRCAT(IObuff, ": ");
2110 STRNCAT(IObuff, *cmdlinep, 40);
2111 }
2112 errormsg = IObuff;
2113 }
2114 goto doend;
2115 }
2116
2117 ni = (
2118#ifdef FEAT_USR_CMDS
2119 !USER_CMDIDX(ea.cmdidx) &&
2120#endif
2121 cmdnames[ea.cmdidx].cmd_func == ex_ni);
2122
2123#ifndef FEAT_EVAL
2124 /*
2125 * When the expression evaluation is disabled, recognize the ":if" and
2126 * ":endif" commands and ignore everything in between it.
2127 */
2128 if (ea.cmdidx == CMD_if)
2129 ++if_level;
2130 if (if_level)
2131 {
2132 if (ea.cmdidx == CMD_endif)
2133 --if_level;
2134 goto doend;
2135 }
2136
2137#endif
2138
2139 if (*p == '!' && ea.cmdidx != CMD_substitute) /* forced commands */
2140 {
2141 ++p;
2142 ea.forceit = TRUE;
2143 }
2144 else
2145 ea.forceit = FALSE;
2146
2147/*
2148 * 5. parse arguments
2149 */
2150#ifdef FEAT_USR_CMDS
2151 if (!USER_CMDIDX(ea.cmdidx))
2152#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002153 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154
2155 if (!ea.skip)
2156 {
2157#ifdef HAVE_SANDBOX
2158 if (sandbox != 0 && !(ea.argt & SBOXOK))
2159 {
2160 /* Command not allowed in sandbox. */
2161 errormsg = (char_u *)_(e_sandbox);
2162 goto doend;
2163 }
2164#endif
2165 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2166 {
2167 /* Command not allowed in non-'modifiable' buffer */
2168 errormsg = (char_u *)_(e_modifiable);
2169 goto doend;
2170 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002171
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002172 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173# ifdef FEAT_USR_CMDS
2174 && !USER_CMDIDX(ea.cmdidx)
2175# endif
2176 )
2177 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002178 /* Command not allowed when editing the command line. */
2179#ifdef FEAT_CMDWIN
2180 if (cmdwin_type != 0)
2181 errormsg = (char_u *)_(e_cmdwin);
2182 else
2183#endif
2184 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 goto doend;
2186 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002187#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002188 /* Disallow editing another buffer when "curbuf_lock" is set.
2189 * Do allow ":edit" (check for argument later).
2190 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002191 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002192 && ea.cmdidx != CMD_edit
2193 && ea.cmdidx != CMD_checktime
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002194# ifdef FEAT_USR_CMDS
2195 && !USER_CMDIDX(ea.cmdidx)
2196# endif
2197 && curbuf_locked())
2198 goto doend;
2199#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200
2201 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2202 {
2203 /* no range allowed */
2204 errormsg = (char_u *)_(e_norange);
2205 goto doend;
2206 }
2207 }
2208
2209 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2210 {
2211 errormsg = (char_u *)_(e_nobang);
2212 goto doend;
2213 }
2214
2215 /*
2216 * Don't complain about the range if it is not used
2217 * (could happen if line_count is accidentally set to 0).
2218 */
2219 if (!ea.skip && !ni)
2220 {
2221 /*
2222 * If the range is backwards, ask for confirmation and, if given, swap
2223 * ea.line1 & ea.line2 so it's forwards again.
2224 * When global command is busy, don't ask, will fail below.
2225 */
2226 if (!global_busy && ea.line1 > ea.line2)
2227 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002228 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002230 if (sourcing || exmode_active)
2231 {
2232 errormsg = (char_u *)_("E493: Backwards range given");
2233 goto doend;
2234 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 if (ask_yesno((char_u *)
2236 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002237 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 }
2239 lnum = ea.line1;
2240 ea.line1 = ea.line2;
2241 ea.line2 = lnum;
2242 }
2243 if ((errormsg = invalid_range(&ea)) != NULL)
2244 goto doend;
2245 }
2246
2247 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2248 ea.line2 = 1;
2249
2250 correct_range(&ea);
2251
2252#ifdef FEAT_FOLDING
2253 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2254 {
2255 /* Put the first line at the start of a closed fold, put the last line
2256 * at the end of a closed fold. */
2257 (void)hasFolding(ea.line1, &ea.line1, NULL);
2258 (void)hasFolding(ea.line2, NULL, &ea.line2);
2259 }
2260#endif
2261
2262#ifdef FEAT_QUICKFIX
2263 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002264 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002265 * option here, so things like % get expanded.
2266 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002267 p = replace_makeprg(&ea, p, cmdlinep);
2268 if (p == NULL)
2269 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270#endif
2271
2272 /*
2273 * Skip to start of argument.
2274 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2275 */
2276 if (ea.cmdidx == CMD_bang)
2277 ea.arg = p;
2278 else
2279 ea.arg = skipwhite(p);
2280
2281 /*
2282 * Check for "++opt=val" argument.
2283 * Must be first, allow ":w ++enc=utf8 !cmd"
2284 */
2285 if (ea.argt & ARGOPT)
2286 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2287 if (getargopt(&ea) == FAIL && !ni)
2288 {
2289 errormsg = (char_u *)_(e_invarg);
2290 goto doend;
2291 }
2292
2293 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2294 {
2295 if (*ea.arg == '>') /* append */
2296 {
2297 if (*++ea.arg != '>') /* typed wrong */
2298 {
2299 errormsg = (char_u *)_("E494: Use w or w>>");
2300 goto doend;
2301 }
2302 ea.arg = skipwhite(ea.arg + 1);
2303 ea.append = TRUE;
2304 }
2305 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2306 {
2307 ++ea.arg;
2308 ea.usefilter = TRUE;
2309 }
2310 }
2311
2312 if (ea.cmdidx == CMD_read)
2313 {
2314 if (ea.forceit)
2315 {
2316 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2317 ea.forceit = FALSE;
2318 }
2319 else if (*ea.arg == '!') /* :r !filter */
2320 {
2321 ++ea.arg;
2322 ea.usefilter = TRUE;
2323 }
2324 }
2325
2326 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2327 {
2328 ea.amount = 1;
2329 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2330 {
2331 ++ea.arg;
2332 ++ea.amount;
2333 }
2334 ea.arg = skipwhite(ea.arg);
2335 }
2336
2337 /*
2338 * Check for "+command" argument, before checking for next command.
2339 * Don't do this for ":read !cmd" and ":write !cmd".
2340 */
2341 if ((ea.argt & EDITCMD) && !ea.usefilter)
2342 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2343
2344 /*
2345 * Check for '|' to separate commands and '"' to start comments.
2346 * Don't do this for ":read !cmd" and ":write !cmd".
2347 */
2348 if ((ea.argt & TRLBAR) && !ea.usefilter)
2349 separate_nextcmd(&ea);
2350
2351 /*
2352 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002353 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2354 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002356 else if (ea.cmdidx == CMD_bang
2357 || ea.cmdidx == CMD_global
2358 || ea.cmdidx == CMD_vglobal
2359 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 {
2361 for (p = ea.arg; *p; ++p)
2362 {
2363 /* Remove one backslash before a newline, so that it's possible to
2364 * pass a newline to the shell and also a newline that is preceded
2365 * with a backslash. This makes it impossible to end a shell
2366 * command in a backslash, but that doesn't appear useful.
2367 * Halving the number of backslashes is incompatible with previous
2368 * versions. */
2369 if (*p == '\\' && p[1] == '\n')
2370 mch_memmove(p, p + 1, STRLEN(p));
2371 else if (*p == '\n')
2372 {
2373 ea.nextcmd = p + 1;
2374 *p = NUL;
2375 break;
2376 }
2377 }
2378 }
2379
2380 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2381 {
2382 ea.line1 = 1;
2383 ea.line2 = curbuf->b_ml.ml_line_count;
2384 }
2385
2386 /* accept numbered register only when no count allowed (:put) */
2387 if ( (ea.argt & REGSTR)
2388 && *ea.arg != NUL
2389#ifdef FEAT_USR_CMDS
2390 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2391 && USER_CMDIDX(ea.cmdidx)))
2392 /* Do not allow register = for user commands */
2393 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2394#else
2395 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2396#endif
2397 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2398 {
2399 ea.regname = *ea.arg++;
2400#ifdef FEAT_EVAL
2401 /* for '=' register: accept the rest of the line as an expression */
2402 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2403 {
2404 set_expr_line(vim_strsave(ea.arg));
2405 ea.arg += STRLEN(ea.arg);
2406 }
2407#endif
2408 ea.arg = skipwhite(ea.arg);
2409 }
2410
2411 /*
2412 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2413 * count, it's a buffer name.
2414 */
2415 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2416 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2417 || vim_iswhite(*p)))
2418 {
2419 n = getdigits(&ea.arg);
2420 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002421 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 {
2423 errormsg = (char_u *)_(e_zerocount);
2424 goto doend;
2425 }
2426 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2427 {
2428 ea.line2 = n;
2429 if (ea.addr_count == 0)
2430 ea.addr_count = 1;
2431 }
2432 else
2433 {
2434 ea.line1 = ea.line2;
2435 ea.line2 += n - 1;
2436 ++ea.addr_count;
2437 /*
2438 * Be vi compatible: no error message for out of range.
2439 */
2440 if (ea.line2 > curbuf->b_ml.ml_line_count)
2441 ea.line2 = curbuf->b_ml.ml_line_count;
2442 }
2443 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002444
2445 /*
2446 * Check for flags: 'l', 'p' and '#'.
2447 */
2448 if (ea.argt & EXFLAGS)
2449 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002451 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002452 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 {
2454 errormsg = (char_u *)_(e_trailing);
2455 goto doend;
2456 }
2457
2458 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2459 {
2460 errormsg = (char_u *)_(e_argreq);
2461 goto doend;
2462 }
2463
2464#ifdef FEAT_EVAL
2465 /*
2466 * Skip the command when it's not going to be executed.
2467 * The commands like :if, :endif, etc. always need to be executed.
2468 * Also make an exception for commands that handle a trailing command
2469 * themselves.
2470 */
2471 if (ea.skip)
2472 {
2473 switch (ea.cmdidx)
2474 {
2475 /* commands that need evaluation */
2476 case CMD_while:
2477 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002478 case CMD_for:
2479 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480 case CMD_if:
2481 case CMD_elseif:
2482 case CMD_else:
2483 case CMD_endif:
2484 case CMD_try:
2485 case CMD_catch:
2486 case CMD_finally:
2487 case CMD_endtry:
2488 case CMD_function:
2489 break;
2490
2491 /* Commands that handle '|' themselves. Check: A command should
2492 * either have the TRLBAR flag, appear in this list or appear in
2493 * the list at ":help :bar". */
2494 case CMD_aboveleft:
2495 case CMD_and:
2496 case CMD_belowright:
2497 case CMD_botright:
2498 case CMD_browse:
2499 case CMD_call:
2500 case CMD_confirm:
2501 case CMD_delfunction:
2502 case CMD_djump:
2503 case CMD_dlist:
2504 case CMD_dsearch:
2505 case CMD_dsplit:
2506 case CMD_echo:
2507 case CMD_echoerr:
2508 case CMD_echomsg:
2509 case CMD_echon:
2510 case CMD_execute:
2511 case CMD_help:
2512 case CMD_hide:
2513 case CMD_ijump:
2514 case CMD_ilist:
2515 case CMD_isearch:
2516 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002517 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 case CMD_keepjumps:
2519 case CMD_keepmarks:
2520 case CMD_leftabove:
2521 case CMD_let:
2522 case CMD_lockmarks:
2523 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002524 case CMD_mzscheme:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 case CMD_perl:
2526 case CMD_psearch:
2527 case CMD_python:
2528 case CMD_return:
2529 case CMD_rightbelow:
2530 case CMD_ruby:
2531 case CMD_silent:
2532 case CMD_smagic:
2533 case CMD_snomagic:
2534 case CMD_substitute:
2535 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002536 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002537 case CMD_tcl:
2538 case CMD_throw:
2539 case CMD_tilde:
2540 case CMD_topleft:
2541 case CMD_unlet:
2542 case CMD_verbose:
2543 case CMD_vertical:
2544 break;
2545
2546 default: goto doend;
2547 }
2548 }
2549#endif
2550
2551 if (ea.argt & XFILE)
2552 {
2553 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2554 goto doend;
2555 }
2556
2557#ifdef FEAT_LISTCMDS
2558 /*
2559 * Accept buffer name. Cannot be used at the same time with a buffer
2560 * number. Don't do this for a user command.
2561 */
2562 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2563# ifdef FEAT_USR_CMDS
2564 && !USER_CMDIDX(ea.cmdidx)
2565# endif
2566 )
2567 {
2568 /*
2569 * :bdelete, :bwipeout and :bunload take several arguments, separated
2570 * by spaces: find next space (skipping over escaped characters).
2571 * The others take one argument: ignore trailing spaces.
2572 */
2573 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2574 || ea.cmdidx == CMD_bunload)
2575 p = skiptowhite_esc(ea.arg);
2576 else
2577 {
2578 p = ea.arg + STRLEN(ea.arg);
2579 while (p > ea.arg && vim_iswhite(p[-1]))
2580 --p;
2581 }
2582 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2583 if (ea.line2 < 0) /* failed */
2584 goto doend;
2585 ea.addr_count = 1;
2586 ea.arg = skipwhite(p);
2587 }
2588#endif
2589
2590/*
2591 * 6. switch on command name
2592 *
2593 * The "ea" structure holds the arguments that can be used.
2594 */
2595 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002596 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 ea.cookie = cookie;
2598#ifdef FEAT_EVAL
2599 ea.cstack = cstack;
2600#endif
2601
2602#ifdef FEAT_USR_CMDS
2603 if (USER_CMDIDX(ea.cmdidx))
2604 {
2605 /*
2606 * Execute a user-defined command.
2607 */
2608 do_ucmd(&ea);
2609 }
2610 else
2611#endif
2612 {
2613 /*
2614 * Call the function to execute the command.
2615 */
2616 ea.errmsg = NULL;
2617 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2618 if (ea.errmsg != NULL)
2619 errormsg = (char_u *)_(ea.errmsg);
2620 }
2621
2622#ifdef FEAT_EVAL
2623 /*
2624 * If the command just executed called do_cmdline(), any throw or ":return"
2625 * or ":finish" encountered there must also check the cstack of the still
2626 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2627 * exception, or reanimate a returned function or finished script file and
2628 * return or finish it again.
2629 */
2630 if (need_rethrow)
2631 do_throw(cstack);
2632 else if (check_cstack)
2633 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002634 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002636 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 && current_func_returned())
2638 do_return(&ea, TRUE, FALSE, NULL);
2639 }
2640 need_rethrow = check_cstack = FALSE;
2641#endif
2642
2643doend:
2644 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2645 curwin->w_cursor.lnum = 1;
2646
2647 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2648 {
2649 if (sourcing)
2650 {
2651 if (errormsg != IObuff)
2652 {
2653 STRCPY(IObuff, errormsg);
2654 errormsg = IObuff;
2655 }
2656 STRCAT(errormsg, ": ");
2657 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff));
2658 }
2659 emsg(errormsg);
2660 }
2661#ifdef FEAT_EVAL
2662 do_errthrow(cstack,
2663 (ea.cmdidx != CMD_SIZE
2664# ifdef FEAT_USR_CMDS
2665 && !USER_CMDIDX(ea.cmdidx)
2666# endif
2667 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2668#endif
2669
2670 if (verbose_save >= 0)
2671 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002672#ifdef FEAT_AUTOCMD
2673 if (cmdmod.save_ei != NULL)
2674 {
2675 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002676 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2677 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002678 free_string_option(cmdmod.save_ei);
2679 }
2680#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681
2682 cmdmod = save_cmdmod;
2683
2684 if (did_silent > 0)
2685 {
2686 /* messages could be enabled for a serious error, need to check if the
2687 * counters don't become negative */
2688 msg_silent -= did_silent;
2689 if (msg_silent < 0)
2690 msg_silent = 0;
2691 emsg_silent -= did_esilent;
2692 if (emsg_silent < 0)
2693 emsg_silent = 0;
2694 /* Restore msg_scroll, it's set by file I/O commands, even when no
2695 * message is actually displayed. */
2696 msg_scroll = save_msg_scroll;
2697 }
2698
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002699#ifdef HAVE_SANDBOX
2700 if (did_sandbox)
2701 --sandbox;
2702#endif
2703
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2705 ea.nextcmd = NULL;
2706
2707#ifdef FEAT_EVAL
2708 --ex_nesting_level;
2709#endif
2710
2711 return ea.nextcmd;
2712}
2713#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00002714 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715#endif
2716
2717/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002718 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 * If there is a match advance "pp" to the argument and return TRUE.
2720 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002721 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002723 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 char *cmd; /* name of command */
2725 int len; /* required length */
2726{
2727 int i;
2728
2729 for (i = 0; cmd[i] != NUL; ++i)
2730 if (cmd[i] != (*pp)[i])
2731 break;
2732 if (i >= len && !isalpha((*pp)[i]))
2733 {
2734 *pp = skipwhite(*pp + i);
2735 return TRUE;
2736 }
2737 return FALSE;
2738}
2739
2740/*
2741 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002742 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002744 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745 * Returns NULL for an ambiguous user command.
2746 */
2747/*ARGSUSED*/
2748 static char_u *
2749find_command(eap, full)
2750 exarg_T *eap;
2751 int *full;
2752{
2753 int len;
2754 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002755 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002756
2757 /*
2758 * Isolate the command and search for it in the command table.
2759 * Exeptions:
2760 * - the 'k' command can directly be followed by any character.
2761 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2762 * but :sre[wind] is another command, as are :scrip[tnames],
2763 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00002764 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 */
2766 p = eap->cmd;
2767 if (*p == 'k')
2768 {
2769 eap->cmdidx = CMD_k;
2770 ++p;
2771 }
2772 else if (p[0] == 's'
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002773 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2774 && p[3] != 'i' && p[4] != 'p')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 || p[1] == 'g'
2776 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2777 || p[1] == 'I'
2778 || (p[1] == 'r' && p[2] != 'e')))
2779 {
2780 eap->cmdidx = CMD_substitute;
2781 ++p;
2782 }
2783 else
2784 {
2785 while (ASCII_ISALPHA(*p))
2786 ++p;
2787 /* check for non-alpha command */
2788 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2789 ++p;
2790 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00002791 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2792 {
2793 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2794 * :delete with the 'l' flag. Same for 'p'. */
2795 for (i = 0; i < len; ++i)
2796 if (eap->cmd[i] != "delete"[i])
2797 break;
2798 if (i == len - 1)
2799 {
2800 --len;
2801 if (p[-1] == 'l')
2802 eap->flags |= EXFLAG_LIST;
2803 else
2804 eap->flags |= EXFLAG_PRINT;
2805 }
2806 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807
2808 if (ASCII_ISLOWER(*eap->cmd))
2809 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2810 else
2811 eap->cmdidx = cmdidxs[26];
2812
2813 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2814 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2815 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2816 (size_t)len) == 0)
2817 {
2818#ifdef FEAT_EVAL
2819 if (full != NULL
2820 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2821 *full = TRUE;
2822#endif
2823 break;
2824 }
2825
2826#ifdef FEAT_USR_CMDS
2827 /* Look for a user defined command as a last resort */
2828 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2829 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002830 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831 while (ASCII_ISALNUM(*p))
2832 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002833 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 }
2835#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002836 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 eap->cmdidx = CMD_SIZE;
2838 }
2839
2840 return p;
2841}
2842
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002843#ifdef FEAT_USR_CMDS
2844/*
2845 * Search for a user command that matches "eap->cmd".
2846 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2847 * Return a pointer to just after the command.
2848 * Return NULL if there is no matching command.
2849 */
2850 static char_u *
2851find_ucmd(eap, p, full, xp, compl)
2852 exarg_T *eap;
2853 char_u *p; /* end of the command (possibly including count) */
2854 int *full; /* set to TRUE for a full match */
2855 expand_T *xp; /* used for completion, NULL otherwise */
2856 int *compl; /* completion flags or NULL */
2857{
2858 int len = (int)(p - eap->cmd);
2859 int j, k, matchlen = 0;
2860 ucmd_T *uc;
2861 int found = FALSE;
2862 int possible = FALSE;
2863 char_u *cp, *np; /* Point into typed cmd and test name */
2864 garray_T *gap;
2865 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2866 only full match global is accepted. */
2867
2868 /*
2869 * Look for buffer-local user commands first, then global ones.
2870 */
2871 gap = &curbuf->b_ucmds;
2872 for (;;)
2873 {
2874 for (j = 0; j < gap->ga_len; ++j)
2875 {
2876 uc = USER_CMD_GA(gap, j);
2877 cp = eap->cmd;
2878 np = uc->uc_name;
2879 k = 0;
2880 while (k < len && *np != NUL && *cp++ == *np++)
2881 k++;
2882 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2883 {
2884 /* If finding a second match, the command is ambiguous. But
2885 * not if a buffer-local command wasn't a full match and a
2886 * global command is a full match. */
2887 if (k == len && found && *np != NUL)
2888 {
2889 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002890 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002891 amb_local = TRUE;
2892 }
2893
2894 if (!found || (k == len && *np == NUL))
2895 {
2896 /* If we matched up to a digit, then there could
2897 * be another command including the digit that we
2898 * should use instead.
2899 */
2900 if (k == len)
2901 found = TRUE;
2902 else
2903 possible = TRUE;
2904
2905 if (gap == &ucmds)
2906 eap->cmdidx = CMD_USER;
2907 else
2908 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002909 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002910 eap->useridx = j;
2911
2912# ifdef FEAT_CMDL_COMPL
2913 if (compl != NULL)
2914 *compl = uc->uc_compl;
2915# ifdef FEAT_EVAL
2916 if (xp != NULL)
2917 {
2918 xp->xp_arg = uc->uc_compl_arg;
2919 xp->xp_scriptID = uc->uc_scriptID;
2920 }
2921# endif
2922# endif
2923 /* Do not search for further abbreviations
2924 * if this is an exact match. */
2925 matchlen = k;
2926 if (k == len && *np == NUL)
2927 {
2928 if (full != NULL)
2929 *full = TRUE;
2930 amb_local = FALSE;
2931 break;
2932 }
2933 }
2934 }
2935 }
2936
2937 /* Stop if we found a full match or searched all. */
2938 if (j < gap->ga_len || gap == &ucmds)
2939 break;
2940 gap = &ucmds;
2941 }
2942
2943 /* Only found ambiguous matches. */
2944 if (amb_local)
2945 {
2946 if (xp != NULL)
2947 xp->xp_context = EXPAND_UNSUCCESSFUL;
2948 return NULL;
2949 }
2950
2951 /* The match we found may be followed immediately by a number. Move "p"
2952 * back to point to it. */
2953 if (found || possible)
2954 return p + (matchlen - len);
2955 return p;
2956}
2957#endif
2958
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959#if defined(FEAT_EVAL) || defined(PROTO)
2960/*
2961 * Return > 0 if an Ex command "name" exists.
2962 * Return 2 if there is an exact match.
2963 * Return 3 if there is an ambiguous match.
2964 */
2965 int
2966cmd_exists(name)
2967 char_u *name;
2968{
2969 exarg_T ea;
2970 int full = FALSE;
2971 int i;
2972 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00002973 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974 static struct cmdmod
2975 {
2976 char *name;
2977 int minlen;
2978 } cmdmods[] = {
2979 {"aboveleft", 3},
2980 {"belowright", 3},
2981 {"botright", 2},
2982 {"browse", 3},
2983 {"confirm", 4},
2984 {"hide", 3},
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002985 {"keepalt", 5},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 {"keepjumps", 5},
2987 {"keepmarks", 3},
2988 {"leftabove", 5},
2989 {"lockmarks", 3},
2990 {"rightbelow", 6},
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002991 {"sandbox", 3},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992 {"silent", 3},
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002993 {"tab", 3},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 {"topleft", 2},
2995 {"verbose", 4},
2996 {"vertical", 4},
2997 };
2998
2999 /* Check command modifiers. */
3000 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3001 {
3002 for (j = 0; name[j] != NUL; ++j)
3003 if (name[j] != cmdmods[i].name[j])
3004 break;
3005 if (name[j] == NUL && j >= cmdmods[i].minlen)
3006 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3007 }
3008
Bram Moolenaara9587612006-05-04 21:47:50 +00003009 /* Check built-in commands and user defined commands.
3010 * For ":2match" and ":3match" we need to skip the number. */
3011 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003013 p = find_command(&ea, &full);
3014 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003016 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3017 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003018 if (*skipwhite(p) != NUL)
3019 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3021}
3022#endif
3023
3024/*
3025 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3026 * we don't need/want deleted. Maybe this could be done better if we didn't
3027 * repeat all this stuff. The only problem is that they may not stay
3028 * perfectly compatible with each other, but then the command line syntax
3029 * probably won't change that much -- webb.
3030 */
3031 char_u *
3032set_one_cmd_context(xp, buff)
3033 expand_T *xp;
3034 char_u *buff; /* buffer for command string */
3035{
3036 char_u *p;
3037 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003038 int len = 0;
3039 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3041 int compl = EXPAND_NOTHING;
3042#endif
3043#ifdef FEAT_CMDL_COMPL
3044 int delim;
3045#endif
3046 int forceit = FALSE;
3047 int usefilter = FALSE; /* filter instead of file name */
3048
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003049 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 xp->xp_pattern = buff;
3051 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003052 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053
3054/*
3055 * 2. skip comment lines and leading space, colons or bars
3056 */
3057 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3058 ;
3059 xp->xp_pattern = cmd;
3060
3061 if (*cmd == NUL)
3062 return NULL;
3063 if (*cmd == '"') /* ignore comment lines */
3064 {
3065 xp->xp_context = EXPAND_NOTHING;
3066 return NULL;
3067 }
3068
3069/*
3070 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3071 */
3072 cmd = skip_range(cmd, &xp->xp_context);
3073
3074/*
3075 * 4. parse command
3076 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 xp->xp_pattern = cmd;
3078 if (*cmd == NUL)
3079 return NULL;
3080 if (*cmd == '"')
3081 {
3082 xp->xp_context = EXPAND_NOTHING;
3083 return NULL;
3084 }
3085
3086 if (*cmd == '|' || *cmd == '\n')
3087 return cmd + 1; /* There's another command */
3088
3089 /*
3090 * Isolate the command and search for it in the command table.
3091 * Exceptions:
3092 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003093 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3095 */
3096 if (*cmd == 'k' && cmd[1] != 'e')
3097 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003098 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 p = cmd + 1;
3100 }
3101 else
3102 {
3103 p = cmd;
3104 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3105 ++p;
3106 /* check for non-alpha command */
3107 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3108 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003109 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003111 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112 {
3113 xp->xp_context = EXPAND_UNSUCCESSFUL;
3114 return NULL;
3115 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003116 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3117 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3118 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 break;
3120
3121#ifdef FEAT_USR_CMDS
3122 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3123 {
3124 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3125 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003126 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 }
3128#endif
3129 }
3130
3131 /*
3132 * If the cursor is touching the command, and it ends in an alpha-numeric
3133 * character, complete the command name.
3134 */
3135 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3136 return NULL;
3137
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003138 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003139 {
3140 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3141 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003142 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 p = cmd + 1;
3144 }
3145#ifdef FEAT_USR_CMDS
3146 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3147 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003148 ea.cmd = cmd;
3149 p = find_ucmd(&ea, p, NULL, xp,
3150# if defined(FEAT_CMDL_COMPL)
3151 &compl
3152# else
3153 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003154# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003155 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003156 if (p == NULL)
3157 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 }
3159#endif
3160 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003161 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 {
3163 /* Not still touching the command and it was an illegal one */
3164 xp->xp_context = EXPAND_UNSUCCESSFUL;
3165 return NULL;
3166 }
3167
3168 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3169
3170 if (*p == '!') /* forced commands */
3171 {
3172 forceit = TRUE;
3173 ++p;
3174 }
3175
3176/*
3177 * 5. parse arguments
3178 */
3179#ifdef FEAT_USR_CMDS
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003180 if (!USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003182 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183
3184 arg = skipwhite(p);
3185
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003186 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 {
3188 if (*arg == '>') /* append */
3189 {
3190 if (*++arg == '>')
3191 ++arg;
3192 arg = skipwhite(arg);
3193 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003194 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 {
3196 ++arg;
3197 usefilter = TRUE;
3198 }
3199 }
3200
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003201 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 {
3203 usefilter = forceit; /* :r! filter if forced */
3204 if (*arg == '!') /* :r !filter */
3205 {
3206 ++arg;
3207 usefilter = TRUE;
3208 }
3209 }
3210
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003211 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 {
3213 while (*arg == *cmd) /* allow any number of '>' or '<' */
3214 ++arg;
3215 arg = skipwhite(arg);
3216 }
3217
3218 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003219 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 {
3221 /* Check if we're in the +command */
3222 p = arg + 1;
3223 arg = skip_cmd_arg(arg, FALSE);
3224
3225 /* Still touching the command after '+'? */
3226 if (*arg == NUL)
3227 return p;
3228
3229 /* Skip space(s) after +command to get to the real argument */
3230 arg = skipwhite(arg);
3231 }
3232
3233 /*
3234 * Check for '|' to separate commands and '"' to start comments.
3235 * Don't do this for ":read !cmd" and ":write !cmd".
3236 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003237 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238 {
3239 p = arg;
3240 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003241 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 p += 2;
3243 while (*p)
3244 {
3245 if (*p == Ctrl_V)
3246 {
3247 if (p[1] != NUL)
3248 ++p;
3249 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003250 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 || *p == '|' || *p == '\n')
3252 {
3253 if (*(p - 1) != '\\')
3254 {
3255 if (*p == '|' || *p == '\n')
3256 return p + 1;
3257 return NULL; /* It's a comment */
3258 }
3259 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003260 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 }
3262 }
3263
3264 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003265 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 vim_strchr((char_u *)"|\"", *arg) == NULL)
3267 return NULL;
3268
3269 /* Find start of last argument (argument just before cursor): */
3270 p = buff + STRLEN(buff);
3271 while (p != arg && *p != ' ' && *p != TAB)
3272 p--;
3273 if (*p == ' ' || *p == TAB)
3274 p++;
3275 xp->xp_pattern = p;
3276
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003277 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 {
3279 int in_quote = FALSE;
3280 char_u *bow = NULL; /* Beginning of word */
3281
3282 /*
3283 * Allow spaces within back-quotes to count as part of the argument
3284 * being expanded.
3285 */
3286 xp->xp_pattern = skipwhite(arg);
3287 for (p = xp->xp_pattern; *p; )
3288 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003289 if (*p == '\\' && p[1] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 ++p;
3291#ifdef SPACE_IN_FILENAME
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003292 else if (vim_iswhite(*p) && (!(ea.argt & NOSPC) || usefilter))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293#else
3294 else if (vim_iswhite(*p))
3295#endif
3296 {
3297 p = skipwhite(p);
3298 if (in_quote)
3299 bow = p;
3300 else
3301 xp->xp_pattern = p;
3302 --p;
3303 }
3304 else if (*p == '`')
3305 {
3306 if (!in_quote)
3307 {
3308 xp->xp_pattern = p;
3309 bow = p + 1;
3310 }
3311 in_quote = !in_quote;
3312 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003313 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314 }
3315
3316 /*
3317 * If we are still inside the quotes, and we passed a space, just
3318 * expand from there.
3319 */
3320 if (bow != NULL && in_quote)
3321 xp->xp_pattern = bow;
3322 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003323
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003324#ifndef BACKSLASH_IN_FILENAME
3325 /* For a shell command more chars need to be escaped. */
3326 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003327 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003328 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003329
3330 /* When still after the command name expand executables. */
3331 if (xp->xp_pattern == skipwhite(arg))
3332 xp->xp_context = EXPAND_SHELLCMD;
3333 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335
3336 /* Check for environment variable */
3337 if (*xp->xp_pattern == '$'
3338#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3339 || *xp->xp_pattern == '%'
3340#endif
3341 )
3342 {
3343 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3344 if (!vim_isIDc(*p))
3345 break;
3346 if (*p == NUL)
3347 {
3348 xp->xp_context = EXPAND_ENV_VARS;
3349 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003350#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3351 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003352 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003353 compl = EXPAND_ENV_VARS;
3354#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 }
3356 }
3357 }
3358
3359/*
3360 * 6. switch on command name
3361 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003362 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003363 {
3364 case CMD_cd:
3365 case CMD_chdir:
3366 case CMD_lcd:
3367 case CMD_lchdir:
3368 if (xp->xp_context == EXPAND_FILES)
3369 xp->xp_context = EXPAND_DIRECTORIES;
3370 break;
3371 case CMD_help:
3372 xp->xp_context = EXPAND_HELP;
3373 xp->xp_pattern = arg;
3374 break;
3375
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003376 /* Command modifiers: return the argument.
3377 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003378 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003379 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380 case CMD_belowright:
3381 case CMD_botright:
3382 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003383 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003384 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003385 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 case CMD_folddoclosed:
3387 case CMD_folddoopen:
3388 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003389 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 case CMD_keepjumps:
3391 case CMD_keepmarks:
3392 case CMD_leftabove:
3393 case CMD_lockmarks:
3394 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003395 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003397 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003398 case CMD_topleft:
3399 case CMD_verbose:
3400 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003401 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 return arg;
3403
3404#ifdef FEAT_SEARCH_EXTRA
3405 case CMD_match:
3406 if (*arg == NUL || !ends_excmd(*arg))
3407 {
3408 /* Dummy call to clear variables. */
3409 set_context_in_highlight_cmd(xp, (char_u *)"link n");
3410 xp->xp_context = EXPAND_HIGHLIGHT;
3411 xp->xp_pattern = arg;
3412 arg = skipwhite(skiptowhite(arg));
3413 if (*arg != NUL)
3414 {
3415 xp->xp_context = EXPAND_NOTHING;
3416 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3417 }
3418 }
3419 return find_nextcmd(arg);
3420#endif
3421
3422#ifdef FEAT_CMDL_COMPL
3423/*
3424 * All completion for the +cmdline_compl feature goes here.
3425 */
3426
3427# ifdef FEAT_USR_CMDS
3428 case CMD_command:
3429 /* Check for attributes */
3430 while (*arg == '-')
3431 {
3432 arg++; /* Skip "-" */
3433 p = skiptowhite(arg);
3434 if (*p == NUL)
3435 {
3436 /* Cursor is still in the attribute */
3437 p = vim_strchr(arg, '=');
3438 if (p == NULL)
3439 {
3440 /* No "=", so complete attribute names */
3441 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3442 xp->xp_pattern = arg;
3443 return NULL;
3444 }
3445
3446 /* For the -complete and -nargs attributes, we complete
3447 * their arguments as well.
3448 */
3449 if (STRNICMP(arg, "complete", p - arg) == 0)
3450 {
3451 xp->xp_context = EXPAND_USER_COMPLETE;
3452 xp->xp_pattern = p + 1;
3453 return NULL;
3454 }
3455 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3456 {
3457 xp->xp_context = EXPAND_USER_NARGS;
3458 xp->xp_pattern = p + 1;
3459 return NULL;
3460 }
3461 return NULL;
3462 }
3463 arg = skipwhite(p);
3464 }
3465
3466 /* After the attributes comes the new command name */
3467 p = skiptowhite(arg);
3468 if (*p == NUL)
3469 {
3470 xp->xp_context = EXPAND_USER_COMMANDS;
3471 xp->xp_pattern = arg;
3472 break;
3473 }
3474
3475 /* And finally comes a normal command */
3476 return skipwhite(p);
3477
3478 case CMD_delcommand:
3479 xp->xp_context = EXPAND_USER_COMMANDS;
3480 xp->xp_pattern = arg;
3481 break;
3482# endif
3483
3484 case CMD_global:
3485 case CMD_vglobal:
3486 delim = *arg; /* get the delimiter */
3487 if (delim)
3488 ++arg; /* skip delimiter if there is one */
3489
3490 while (arg[0] != NUL && arg[0] != delim)
3491 {
3492 if (arg[0] == '\\' && arg[1] != NUL)
3493 ++arg;
3494 ++arg;
3495 }
3496 if (arg[0] != NUL)
3497 return arg + 1;
3498 break;
3499 case CMD_and:
3500 case CMD_substitute:
3501 delim = *arg;
3502 if (delim)
3503 {
3504 /* skip "from" part */
3505 ++arg;
3506 arg = skip_regexp(arg, delim, p_magic, NULL);
3507 }
3508 /* skip "to" part */
3509 while (arg[0] != NUL && arg[0] != delim)
3510 {
3511 if (arg[0] == '\\' && arg[1] != NUL)
3512 ++arg;
3513 ++arg;
3514 }
3515 if (arg[0] != NUL) /* skip delimiter */
3516 ++arg;
3517 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3518 ++arg;
3519 if (arg[0] != NUL)
3520 return arg;
3521 break;
3522 case CMD_isearch:
3523 case CMD_dsearch:
3524 case CMD_ilist:
3525 case CMD_dlist:
3526 case CMD_ijump:
3527 case CMD_psearch:
3528 case CMD_djump:
3529 case CMD_isplit:
3530 case CMD_dsplit:
3531 arg = skipwhite(skipdigits(arg)); /* skip count */
3532 if (*arg == '/') /* Match regexp, not just whole words */
3533 {
3534 for (++arg; *arg && *arg != '/'; arg++)
3535 if (*arg == '\\' && arg[1] != NUL)
3536 arg++;
3537 if (*arg)
3538 {
3539 arg = skipwhite(arg + 1);
3540
3541 /* Check for trailing illegal characters */
3542 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3543 xp->xp_context = EXPAND_NOTHING;
3544 else
3545 return arg;
3546 }
3547 }
3548 break;
3549#ifdef FEAT_AUTOCMD
3550 case CMD_autocmd:
3551 return set_context_in_autocmd(xp, arg, FALSE);
3552
3553 case CMD_doautocmd:
3554 return set_context_in_autocmd(xp, arg, TRUE);
3555#endif
3556 case CMD_set:
3557 set_context_in_set_cmd(xp, arg, 0);
3558 break;
3559 case CMD_setglobal:
3560 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3561 break;
3562 case CMD_setlocal:
3563 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3564 break;
3565 case CMD_tag:
3566 case CMD_stag:
3567 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003568 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 case CMD_tselect:
3570 case CMD_stselect:
3571 case CMD_ptselect:
3572 case CMD_tjump:
3573 case CMD_stjump:
3574 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003575 if (*p_wop != NUL)
3576 xp->xp_context = EXPAND_TAGS_LISTFILES;
3577 else
3578 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 xp->xp_pattern = arg;
3580 break;
3581 case CMD_augroup:
3582 xp->xp_context = EXPAND_AUGROUP;
3583 xp->xp_pattern = arg;
3584 break;
3585#ifdef FEAT_SYN_HL
3586 case CMD_syntax:
3587 set_context_in_syntax_cmd(xp, arg);
3588 break;
3589#endif
3590#ifdef FEAT_EVAL
3591 case CMD_let:
3592 case CMD_if:
3593 case CMD_elseif:
3594 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003595 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 case CMD_echo:
3597 case CMD_echon:
3598 case CMD_execute:
3599 case CMD_echomsg:
3600 case CMD_echoerr:
3601 case CMD_call:
3602 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003603 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 break;
3605
3606 case CMD_unlet:
3607 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3608 arg = xp->xp_pattern + 1;
3609 xp->xp_context = EXPAND_USER_VARS;
3610 xp->xp_pattern = arg;
3611 break;
3612
3613 case CMD_function:
3614 case CMD_delfunction:
3615 xp->xp_context = EXPAND_USER_FUNC;
3616 xp->xp_pattern = arg;
3617 break;
3618
3619 case CMD_echohl:
3620 xp->xp_context = EXPAND_HIGHLIGHT;
3621 xp->xp_pattern = arg;
3622 break;
3623#endif
3624 case CMD_highlight:
3625 set_context_in_highlight_cmd(xp, arg);
3626 break;
3627#ifdef FEAT_LISTCMDS
3628 case CMD_bdelete:
3629 case CMD_bwipeout:
3630 case CMD_bunload:
3631 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3632 arg = xp->xp_pattern + 1;
3633 /*FALLTHROUGH*/
3634 case CMD_buffer:
3635 case CMD_sbuffer:
3636 case CMD_checktime:
3637 xp->xp_context = EXPAND_BUFFERS;
3638 xp->xp_pattern = arg;
3639 break;
3640#endif
3641#ifdef FEAT_USR_CMDS
3642 case CMD_USER:
3643 case CMD_USER_BUF:
3644 if (compl != EXPAND_NOTHING)
3645 {
3646 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003647 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 {
3649# ifdef FEAT_MENU
3650 if (compl == EXPAND_MENUS)
3651 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3652# endif
3653 if (compl == EXPAND_COMMANDS)
3654 return arg;
3655 if (compl == EXPAND_MAPPINGS)
3656 return set_context_in_map_cmd(xp, (char_u *)"map",
3657 arg, forceit, FALSE, FALSE, CMD_map);
3658 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3659 arg = xp->xp_pattern + 1;
3660 xp->xp_pattern = arg;
3661 }
3662 xp->xp_context = compl;
3663 }
3664 break;
3665#endif
3666 case CMD_map: case CMD_noremap:
3667 case CMD_nmap: case CMD_nnoremap:
3668 case CMD_vmap: case CMD_vnoremap:
3669 case CMD_omap: case CMD_onoremap:
3670 case CMD_imap: case CMD_inoremap:
3671 case CMD_cmap: case CMD_cnoremap:
3672 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003673 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674 case CMD_unmap:
3675 case CMD_nunmap:
3676 case CMD_vunmap:
3677 case CMD_ounmap:
3678 case CMD_iunmap:
3679 case CMD_cunmap:
3680 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003681 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003682 case CMD_abbreviate: case CMD_noreabbrev:
3683 case CMD_cabbrev: case CMD_cnoreabbrev:
3684 case CMD_iabbrev: case CMD_inoreabbrev:
3685 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003686 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687 case CMD_unabbreviate:
3688 case CMD_cunabbrev:
3689 case CMD_iunabbrev:
3690 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003691 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692#ifdef FEAT_MENU
3693 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3694 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3695 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3696 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3697 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3698 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3699 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3700 case CMD_tmenu: case CMD_tunmenu:
3701 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3702 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3703#endif
3704
3705 case CMD_colorscheme:
3706 xp->xp_context = EXPAND_COLORS;
3707 xp->xp_pattern = arg;
3708 break;
3709
3710 case CMD_compiler:
3711 xp->xp_context = EXPAND_COMPILER;
3712 xp->xp_pattern = arg;
3713 break;
3714
3715#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3716 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3717 case CMD_language:
3718 if (*skiptowhite(arg) == NUL)
3719 {
3720 xp->xp_context = EXPAND_LANGUAGE;
3721 xp->xp_pattern = arg;
3722 }
3723 else
3724 xp->xp_context = EXPAND_NOTHING;
3725 break;
3726#endif
3727
3728#endif /* FEAT_CMDL_COMPL */
3729
3730 default:
3731 break;
3732 }
3733 return NULL;
3734}
3735
3736/*
3737 * skip a range specifier of the form: addr [,addr] [;addr] ..
3738 *
3739 * Backslashed delimiters after / or ? will be skipped, and commands will
3740 * not be expanded between /'s and ?'s or after "'".
3741 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003742 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 * Returns the "cmd" pointer advanced to beyond the range.
3744 */
3745 char_u *
3746skip_range(cmd, ctx)
3747 char_u *cmd;
3748 int *ctx; /* pointer to xp_context or NULL */
3749{
3750 int delim;
3751
Bram Moolenaardf177f62005-02-22 08:39:57 +00003752 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 {
3754 if (*cmd == '\'')
3755 {
3756 if (*++cmd == NUL && ctx != NULL)
3757 *ctx = EXPAND_NOTHING;
3758 }
3759 else if (*cmd == '/' || *cmd == '?')
3760 {
3761 delim = *cmd++;
3762 while (*cmd != NUL && *cmd != delim)
3763 if (*cmd++ == '\\' && *cmd != NUL)
3764 ++cmd;
3765 if (*cmd == NUL && ctx != NULL)
3766 *ctx = EXPAND_NOTHING;
3767 }
3768 if (*cmd != NUL)
3769 ++cmd;
3770 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003771
3772 /* Skip ":" and white space. */
3773 while (*cmd == ':')
3774 cmd = skipwhite(cmd + 1);
3775
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 return cmd;
3777}
3778
3779/*
3780 * get a single EX address
3781 *
3782 * Set ptr to the next character after the part that was interpreted.
3783 * Set ptr to NULL when an error is encountered.
3784 *
3785 * Return MAXLNUM when no Ex address was found.
3786 */
3787 static linenr_T
3788get_address(ptr, skip, to_other_file)
3789 char_u **ptr;
3790 int skip; /* only skip the address, don't use it */
3791 int to_other_file; /* flag: may jump to other file */
3792{
3793 int c;
3794 int i;
3795 long n;
3796 char_u *cmd;
3797 pos_T pos;
3798 pos_T *fp;
3799 linenr_T lnum;
3800
3801 cmd = skipwhite(*ptr);
3802 lnum = MAXLNUM;
3803 do
3804 {
3805 switch (*cmd)
3806 {
3807 case '.': /* '.' - Cursor position */
3808 ++cmd;
3809 lnum = curwin->w_cursor.lnum;
3810 break;
3811
3812 case '$': /* '$' - last line */
3813 ++cmd;
3814 lnum = curbuf->b_ml.ml_line_count;
3815 break;
3816
3817 case '\'': /* ''' - mark */
3818 if (*++cmd == NUL)
3819 {
3820 cmd = NULL;
3821 goto error;
3822 }
3823 if (skip)
3824 ++cmd;
3825 else
3826 {
3827 /* Only accept a mark in another file when it is
3828 * used by itself: ":'M". */
3829 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3830 ++cmd;
3831 if (fp == (pos_T *)-1)
3832 /* Jumped to another file. */
3833 lnum = curwin->w_cursor.lnum;
3834 else
3835 {
3836 if (check_mark(fp) == FAIL)
3837 {
3838 cmd = NULL;
3839 goto error;
3840 }
3841 lnum = fp->lnum;
3842 }
3843 }
3844 break;
3845
3846 case '/':
3847 case '?': /* '/' or '?' - search */
3848 c = *cmd++;
3849 if (skip) /* skip "/pat/" */
3850 {
3851 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3852 if (*cmd == c)
3853 ++cmd;
3854 }
3855 else
3856 {
3857 pos = curwin->w_cursor; /* save curwin->w_cursor */
3858 /*
3859 * When '/' or '?' follows another address, start
3860 * from there.
3861 */
3862 if (lnum != MAXLNUM)
3863 curwin->w_cursor.lnum = lnum;
3864 /*
3865 * Start a forward search at the end of the line.
3866 * Start a backward search at the start of the line.
3867 * This makes sure we never match in the current
3868 * line, and can match anywhere in the
3869 * next/previous line.
3870 */
3871 if (c == '/')
3872 curwin->w_cursor.col = MAXCOL;
3873 else
3874 curwin->w_cursor.col = 0;
3875 searchcmdlen = 0;
3876 if (!do_search(NULL, c, cmd, 1L,
3877 SEARCH_HIS + SEARCH_MSG + SEARCH_START))
3878 {
3879 curwin->w_cursor = pos;
3880 cmd = NULL;
3881 goto error;
3882 }
3883 lnum = curwin->w_cursor.lnum;
3884 curwin->w_cursor = pos;
3885 /* adjust command string pointer */
3886 cmd += searchcmdlen;
3887 }
3888 break;
3889
3890 case '\\': /* "\?", "\/" or "\&", repeat search */
3891 ++cmd;
3892 if (*cmd == '&')
3893 i = RE_SUBST;
3894 else if (*cmd == '?' || *cmd == '/')
3895 i = RE_SEARCH;
3896 else
3897 {
3898 EMSG(_(e_backslash));
3899 cmd = NULL;
3900 goto error;
3901 }
3902
3903 if (!skip)
3904 {
3905 /*
3906 * When search follows another address, start from
3907 * there.
3908 */
3909 if (lnum != MAXLNUM)
3910 pos.lnum = lnum;
3911 else
3912 pos.lnum = curwin->w_cursor.lnum;
3913
3914 /*
3915 * Start the search just like for the above
3916 * do_search().
3917 */
3918 if (*cmd != '?')
3919 pos.col = MAXCOL;
3920 else
3921 pos.col = 0;
3922 if (searchit(curwin, curbuf, &pos,
3923 *cmd == '?' ? BACKWARD : FORWARD,
3924 (char_u *)"", 1L,
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003925 SEARCH_MSG + SEARCH_START,
3926 i, (linenr_T)0) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 lnum = pos.lnum;
3928 else
3929 {
3930 cmd = NULL;
3931 goto error;
3932 }
3933 }
3934 ++cmd;
3935 break;
3936
3937 default:
3938 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3939 lnum = getdigits(&cmd);
3940 }
3941
3942 for (;;)
3943 {
3944 cmd = skipwhite(cmd);
3945 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
3946 break;
3947
3948 if (lnum == MAXLNUM)
3949 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
3950 if (VIM_ISDIGIT(*cmd))
3951 i = '+'; /* "number" is same as "+number" */
3952 else
3953 i = *cmd++;
3954 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
3955 n = 1;
3956 else
3957 n = getdigits(&cmd);
3958 if (i == '-')
3959 lnum -= n;
3960 else
3961 lnum += n;
3962 }
3963 } while (*cmd == '/' || *cmd == '?');
3964
3965error:
3966 *ptr = cmd;
3967 return lnum;
3968}
3969
3970/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003971 * Get flags from an Ex command argument.
3972 */
3973 static void
3974get_flags(eap)
3975 exarg_T *eap;
3976{
3977 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
3978 {
3979 if (*eap->arg == 'l')
3980 eap->flags |= EXFLAG_LIST;
3981 else if (*eap->arg == 'p')
3982 eap->flags |= EXFLAG_PRINT;
3983 else
3984 eap->flags |= EXFLAG_NR;
3985 eap->arg = skipwhite(eap->arg + 1);
3986 }
3987}
3988
3989/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 * Function called for command which is Not Implemented. NI!
3991 */
3992 void
3993ex_ni(eap)
3994 exarg_T *eap;
3995{
3996 if (!eap->skip)
3997 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
3998}
3999
4000#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004001 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002/*
4003 * Function called for script command which is Not Implemented. NI!
4004 * Skips over ":perl <<EOF" constructs.
4005 */
4006 static void
4007ex_script_ni(eap)
4008 exarg_T *eap;
4009{
4010 if (!eap->skip)
4011 ex_ni(eap);
4012 else
4013 vim_free(script_get(eap, eap->arg));
4014}
4015#endif
4016
4017/*
4018 * Check range in Ex command for validity.
4019 * Return NULL when valid, error message when invalid.
4020 */
4021 static char_u *
4022invalid_range(eap)
4023 exarg_T *eap;
4024{
4025 if ( eap->line1 < 0
4026 || eap->line2 < 0
4027 || eap->line1 > eap->line2
4028 || ((eap->argt & RANGE)
4029 && !(eap->argt & NOTADR)
4030 && eap->line2 > curbuf->b_ml.ml_line_count
4031#ifdef FEAT_DIFF
4032 + (eap->cmdidx == CMD_diffget)
4033#endif
4034 ))
4035 return (char_u *)_(e_invrange);
4036 return NULL;
4037}
4038
4039/*
4040 * Correct the range for zero line number, if required.
4041 */
4042 static void
4043correct_range(eap)
4044 exarg_T *eap;
4045{
4046 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4047 {
4048 if (eap->line1 == 0)
4049 eap->line1 = 1;
4050 if (eap->line2 == 0)
4051 eap->line2 = 1;
4052 }
4053}
4054
Bram Moolenaar748bf032005-02-02 23:04:36 +00004055#ifdef FEAT_QUICKFIX
4056static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4057
4058/*
4059 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4060 * pattern. Otherwise return eap->arg.
4061 */
4062 static char_u *
4063skip_grep_pat(eap)
4064 exarg_T *eap;
4065{
4066 char_u *p = eap->arg;
4067
Bram Moolenaara37420f2006-02-04 22:37:47 +00004068 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4069 || eap->cmdidx == CMD_vimgrepadd
4070 || eap->cmdidx == CMD_lvimgrepadd
4071 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004072 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004073 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004074 if (p == NULL)
4075 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004076 }
4077 return p;
4078}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004079
4080/*
4081 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4082 * in the command line, so that things like % get expanded.
4083 */
4084 static char_u *
4085replace_makeprg(eap, p, cmdlinep)
4086 exarg_T *eap;
4087 char_u *p;
4088 char_u **cmdlinep;
4089{
4090 char_u *new_cmdline;
4091 char_u *program;
4092 char_u *pos;
4093 char_u *ptr;
4094 int len;
4095 int i;
4096
4097 /*
4098 * Don't do it when ":vimgrep" is used for ":grep".
4099 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004100 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4101 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4102 || eap->cmdidx == CMD_grepadd
4103 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004104 && !grep_internal(eap->cmdidx))
4105 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004106 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4107 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004108 {
4109 if (*curbuf->b_p_gp == NUL)
4110 program = p_gp;
4111 else
4112 program = curbuf->b_p_gp;
4113 }
4114 else
4115 {
4116 if (*curbuf->b_p_mp == NUL)
4117 program = p_mp;
4118 else
4119 program = curbuf->b_p_mp;
4120 }
4121
4122 p = skipwhite(p);
4123
4124 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4125 {
4126 /* replace $* by given arguments */
4127 i = 1;
4128 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4129 ++i;
4130 len = (int)STRLEN(p);
4131 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4132 if (new_cmdline == NULL)
4133 return NULL; /* out of memory */
4134 ptr = new_cmdline;
4135 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4136 {
4137 i = (int)(pos - program);
4138 STRNCPY(ptr, program, i);
4139 STRCPY(ptr += i, p);
4140 ptr += len;
4141 program = pos + 2;
4142 }
4143 STRCPY(ptr, program);
4144 }
4145 else
4146 {
4147 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4148 if (new_cmdline == NULL)
4149 return NULL; /* out of memory */
4150 STRCPY(new_cmdline, program);
4151 STRCAT(new_cmdline, " ");
4152 STRCAT(new_cmdline, p);
4153 }
4154 msg_make(p);
4155
4156 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4157 vim_free(*cmdlinep);
4158 *cmdlinep = new_cmdline;
4159 p = new_cmdline;
4160 }
4161 return p;
4162}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004163#endif
4164
Bram Moolenaar071d4272004-06-13 20:20:40 +00004165/*
4166 * Expand file name in Ex command argument.
4167 * Return FAIL for failure, OK otherwise.
4168 */
4169 int
4170expand_filename(eap, cmdlinep, errormsgp)
4171 exarg_T *eap;
4172 char_u **cmdlinep;
4173 char_u **errormsgp;
4174{
4175 int has_wildcards; /* need to expand wildcards */
4176 char_u *repl;
4177 int srclen;
4178 char_u *p;
4179 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004180 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181
Bram Moolenaar748bf032005-02-02 23:04:36 +00004182#ifdef FEAT_QUICKFIX
4183 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4184 p = skip_grep_pat(eap);
4185#else
4186 p = eap->arg;
4187#endif
4188
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 /*
4190 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4191 * the file name contains a wildcard it should not cause expanding.
4192 * (it will be expanded anyway if there is a wildcard before replacing).
4193 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004194 has_wildcards = mch_has_wildcard(p);
4195 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004197#ifdef FEAT_EVAL
4198 /* Skip over `=expr`, wildcards in it are not expanded. */
4199 if (p[0] == '`' && p[1] == '=')
4200 {
4201 p += 2;
4202 (void)skip_expr(&p);
4203 if (*p == '`')
4204 ++p;
4205 continue;
4206 }
4207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 /*
4209 * Quick check if this cannot be the start of a special string.
4210 * Also removes backslash before '%', '#' and '<'.
4211 */
4212 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4213 {
4214 ++p;
4215 continue;
4216 }
4217
4218 /*
4219 * Try to find a match at this position.
4220 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004221 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4222 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 if (*errormsgp != NULL) /* error detected */
4224 return FAIL;
4225 if (repl == NULL) /* no match found */
4226 {
4227 p += srclen;
4228 continue;
4229 }
4230
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004231 /* Wildcards won't be expanded below, the replacement is taken
4232 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4233 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4234 {
4235 char_u *l = repl;
4236
4237 repl = expand_env_save(repl);
4238 vim_free(l);
4239 }
4240
Bram Moolenaar63b92542007-03-27 14:57:09 +00004241 /* Need to escape white space et al. with a backslash.
4242 * Don't do this for:
4243 * - replacement that already has been escaped: "##"
4244 * - shell commands (may have to use quotes instead).
4245 * - non-unix systems when there is a single argument (spaces don't
4246 * separate arguments then).
4247 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004248 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004249 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 && eap->cmdidx != CMD_bang
4251 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004252 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004254 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004256 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257#ifndef UNIX
4258 && !(eap->argt & NOSPC)
4259#endif
4260 )
4261 {
4262 char_u *l;
4263#ifdef BACKSLASH_IN_FILENAME
4264 /* Don't escape a backslash here, because rem_backslash() doesn't
4265 * remove it later. */
4266 static char_u *nobslash = (char_u *)" \t\"|";
4267# define ESCAPE_CHARS nobslash
4268#else
4269# define ESCAPE_CHARS escape_chars
4270#endif
4271
4272 for (l = repl; *l; ++l)
4273 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4274 {
4275 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4276 if (l != NULL)
4277 {
4278 vim_free(repl);
4279 repl = l;
4280 }
4281 break;
4282 }
4283 }
4284
4285 /* For a shell command a '!' must be escaped. */
4286 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004287 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 {
4289 char_u *l;
4290
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004291 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292 if (l != NULL)
4293 {
4294 vim_free(repl);
4295 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004296 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004297 if (strstr((char *)p_sh, "sh") != NULL)
4298 {
4299 l = vim_strsave_escaped(repl, (char_u *)"!");
4300 if (l != NULL)
4301 {
4302 vim_free(repl);
4303 repl = l;
4304 }
4305 }
4306 }
4307 }
4308
4309 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4310 vim_free(repl);
4311 if (p == NULL)
4312 return FAIL;
4313 }
4314
4315 /*
4316 * One file argument: Expand wildcards.
4317 * Don't do this with ":r !command" or ":w !command".
4318 */
4319 if ((eap->argt & NOSPC) && !eap->usefilter)
4320 {
4321 /*
4322 * May do this twice:
4323 * 1. Replace environment variables.
4324 * 2. Replace any other wildcards, remove backslashes.
4325 */
4326 for (n = 1; n <= 2; ++n)
4327 {
4328 if (n == 2)
4329 {
4330#ifdef UNIX
4331 /*
4332 * Only for Unix we check for more than one file name.
4333 * For other systems spaces are considered to be part
4334 * of the file name.
4335 * Only check here if there is no wildcard, otherwise
4336 * ExpandOne() will check for errors. This allows
4337 * ":e `ls ve*.c`" on Unix.
4338 */
4339 if (!has_wildcards)
4340 for (p = eap->arg; *p; ++p)
4341 {
4342 /* skip escaped characters */
4343 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4344 ++p;
4345 else if (vim_iswhite(*p))
4346 {
4347 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4348 return FAIL;
4349 }
4350 }
4351#endif
4352
4353 /*
4354 * Halve the number of backslashes (this is Vi compatible).
4355 * For Unix and OS/2, when wildcards are expanded, this is
4356 * done by ExpandOne() below.
4357 */
4358#if defined(UNIX) || defined(OS2)
4359 if (!has_wildcards)
4360#endif
4361 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362 }
4363
4364 if (has_wildcards)
4365 {
4366 if (n == 1)
4367 {
4368 /*
4369 * First loop: May expand environment variables. This
4370 * can be done much faster with expand_env() than with
4371 * something else (e.g., calling a shell).
4372 * After expanding environment variables, check again
4373 * if there are still wildcards present.
4374 */
4375 if (vim_strchr(eap->arg, '$') != NULL
4376 || vim_strchr(eap->arg, '~') != NULL)
4377 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004378 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
4379 TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004380 has_wildcards = mch_has_wildcard(NameBuff);
4381 p = NameBuff;
4382 }
4383 else
4384 p = NULL;
4385 }
4386 else /* n == 2 */
4387 {
4388 expand_T xpc;
4389
4390 ExpandInit(&xpc);
4391 xpc.xp_context = EXPAND_FILES;
4392 p = ExpandOne(&xpc, eap->arg, NULL,
4393 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4394 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395 if (p == NULL)
4396 return FAIL;
4397 }
4398 if (p != NULL)
4399 {
4400 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4401 p, cmdlinep);
4402 if (n == 2) /* p came from ExpandOne() */
4403 vim_free(p);
4404 }
4405 }
4406 }
4407 }
4408 return OK;
4409}
4410
4411/*
4412 * Replace part of the command line, keeping eap->cmd, eap->arg and
4413 * eap->nextcmd correct.
4414 * "src" points to the part that is to be replaced, of length "srclen".
4415 * "repl" is the replacement string.
4416 * Returns a pointer to the character after the replaced string.
4417 * Returns NULL for failure.
4418 */
4419 static char_u *
4420repl_cmdline(eap, src, srclen, repl, cmdlinep)
4421 exarg_T *eap;
4422 char_u *src;
4423 int srclen;
4424 char_u *repl;
4425 char_u **cmdlinep;
4426{
4427 int len;
4428 int i;
4429 char_u *new_cmdline;
4430
4431 /*
4432 * The new command line is build in new_cmdline[].
4433 * First allocate it.
4434 * Careful: a "+cmd" argument may have been NUL terminated.
4435 */
4436 len = (int)STRLEN(repl);
4437 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004438 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4440 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4441 return NULL; /* out of memory! */
4442
4443 /*
4444 * Copy the stuff before the expanded part.
4445 * Copy the expanded stuff.
4446 * Copy what came after the expanded part.
4447 * Copy the next commands, if there are any.
4448 */
4449 i = (int)(src - *cmdlinep); /* length of part before match */
4450 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004451
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 mch_memmove(new_cmdline + i, repl, (size_t)len);
4453 i += len; /* remember the end of the string */
4454 STRCPY(new_cmdline + i, src + srclen);
4455 src = new_cmdline + i; /* remember where to continue */
4456
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004457 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 {
4459 i = (int)STRLEN(new_cmdline) + 1;
4460 STRCPY(new_cmdline + i, eap->nextcmd);
4461 eap->nextcmd = new_cmdline + i;
4462 }
4463 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4464 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4465 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4466 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4467 vim_free(*cmdlinep);
4468 *cmdlinep = new_cmdline;
4469
4470 return src;
4471}
4472
4473/*
4474 * Check for '|' to separate commands and '"' to start comments.
4475 */
4476 void
4477separate_nextcmd(eap)
4478 exarg_T *eap;
4479{
4480 char_u *p;
4481
Bram Moolenaar86b68352004-12-27 21:59:20 +00004482#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004483 p = skip_grep_pat(eap);
4484#else
4485 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004486#endif
4487
4488 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004489 {
4490 if (*p == Ctrl_V)
4491 {
4492 if (eap->argt & (USECTRLV | XFILE))
4493 ++p; /* skip CTRL-V and next char */
4494 else
4495 STRCPY(p, p + 1); /* remove CTRL-V and skip next char */
4496 if (*p == NUL) /* stop at NUL after CTRL-V */
4497 break;
4498 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004499
4500#ifdef FEAT_EVAL
4501 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004502 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004503 {
4504 p += 2;
4505 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004506 }
4507#endif
4508
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 /* Check for '"': start of comment or '|': next command */
4510 /* :@" and :*" do not start a comment!
4511 * :redir @" doesn't either. */
4512 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4513 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4514 || p != eap->arg)
4515 && (eap->cmdidx != CMD_redir
4516 || p != eap->arg + 1 || p[-1] != '@'))
4517 || *p == '|' || *p == '\n')
4518 {
4519 /*
4520 * We remove the '\' before the '|', unless USECTRLV is used
4521 * AND 'b' is present in 'cpoptions'.
4522 */
4523 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4524 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4525 {
4526 mch_memmove(p - 1, p, STRLEN(p) + 1); /* remove the '\' */
4527 --p;
4528 }
4529 else
4530 {
4531 eap->nextcmd = check_nextcmd(p);
4532 *p = NUL;
4533 break;
4534 }
4535 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004537
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4539 del_trailing_spaces(eap->arg);
4540}
4541
4542/*
4543 * get + command from ex argument
4544 */
4545 static char_u *
4546getargcmd(argp)
4547 char_u **argp;
4548{
4549 char_u *arg = *argp;
4550 char_u *command = NULL;
4551
4552 if (*arg == '+') /* +[command] */
4553 {
4554 ++arg;
4555 if (vim_isspace(*arg))
4556 command = dollar_command;
4557 else
4558 {
4559 command = arg;
4560 arg = skip_cmd_arg(command, TRUE);
4561 if (*arg != NUL)
4562 *arg++ = NUL; /* terminate command with NUL */
4563 }
4564
4565 arg = skipwhite(arg); /* skip over spaces */
4566 *argp = arg;
4567 }
4568 return command;
4569}
4570
4571/*
4572 * Find end of "+command" argument. Skip over "\ " and "\\".
4573 */
4574 static char_u *
4575skip_cmd_arg(p, rembs)
4576 char_u *p;
4577 int rembs; /* TRUE to halve the number of backslashes */
4578{
4579 while (*p && !vim_isspace(*p))
4580 {
4581 if (*p == '\\' && p[1] != NUL)
4582 {
4583 if (rembs)
4584 mch_memmove(p, p + 1, STRLEN(p));
4585 else
4586 ++p;
4587 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004588 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004589 }
4590 return p;
4591}
4592
4593/*
4594 * Get "++opt=arg" argument.
4595 * Return FAIL or OK.
4596 */
4597 static int
4598getargopt(eap)
4599 exarg_T *eap;
4600{
4601 char_u *arg = eap->arg + 2;
4602 int *pp = NULL;
4603#ifdef FEAT_MBYTE
4604 char_u *p;
4605#endif
4606
4607 /* ":edit ++[no]bin[ary] file" */
4608 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4609 {
4610 if (*arg == 'n')
4611 {
4612 arg += 2;
4613 eap->force_bin = FORCE_NOBIN;
4614 }
4615 else
4616 eap->force_bin = FORCE_BIN;
4617 if (!checkforcmd(&arg, "binary", 3))
4618 return FAIL;
4619 eap->arg = skipwhite(arg);
4620 return OK;
4621 }
4622
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004623 /* ":read ++edit file" */
4624 if (STRNCMP(arg, "edit", 4) == 0)
4625 {
4626 eap->read_edit = TRUE;
4627 eap->arg = skipwhite(arg + 4);
4628 return OK;
4629 }
4630
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 if (STRNCMP(arg, "ff", 2) == 0)
4632 {
4633 arg += 2;
4634 pp = &eap->force_ff;
4635 }
4636 else if (STRNCMP(arg, "fileformat", 10) == 0)
4637 {
4638 arg += 10;
4639 pp = &eap->force_ff;
4640 }
4641#ifdef FEAT_MBYTE
4642 else if (STRNCMP(arg, "enc", 3) == 0)
4643 {
4644 arg += 3;
4645 pp = &eap->force_enc;
4646 }
4647 else if (STRNCMP(arg, "encoding", 8) == 0)
4648 {
4649 arg += 8;
4650 pp = &eap->force_enc;
4651 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004652 else if (STRNCMP(arg, "bad", 3) == 0)
4653 {
4654 arg += 3;
4655 pp = &eap->bad_char;
4656 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657#endif
4658
4659 if (pp == NULL || *arg != '=')
4660 return FAIL;
4661
4662 ++arg;
4663 *pp = (int)(arg - eap->cmd);
4664 arg = skip_cmd_arg(arg, FALSE);
4665 eap->arg = skipwhite(arg);
4666 *arg = NUL;
4667
4668#ifdef FEAT_MBYTE
4669 if (pp == &eap->force_ff)
4670 {
4671#endif
4672 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4673 return FAIL;
4674#ifdef FEAT_MBYTE
4675 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004676 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 {
4678 /* Make 'fileencoding' lower case. */
4679 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4680 *p = TOLOWER_ASC(*p);
4681 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004682 else
4683 {
4684 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4685 * "drop". */
4686 p = eap->cmd + eap->bad_char;
4687 if (STRICMP(p, "keep") == 0)
4688 eap->bad_char = BAD_KEEP;
4689 else if (STRICMP(p, "drop") == 0)
4690 eap->bad_char = BAD_DROP;
4691 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4692 eap->bad_char = *p;
4693 else
4694 return FAIL;
4695 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696#endif
4697
4698 return OK;
4699}
4700
4701/*
4702 * ":abbreviate" and friends.
4703 */
4704 static void
4705ex_abbreviate(eap)
4706 exarg_T *eap;
4707{
4708 do_exmap(eap, TRUE); /* almost the same as mapping */
4709}
4710
4711/*
4712 * ":map" and friends.
4713 */
4714 static void
4715ex_map(eap)
4716 exarg_T *eap;
4717{
4718 /*
4719 * If we are sourcing .exrc or .vimrc in current directory we
4720 * print the mappings for security reasons.
4721 */
4722 if (secure)
4723 {
4724 secure = 2;
4725 msg_outtrans(eap->cmd);
4726 msg_putchar('\n');
4727 }
4728 do_exmap(eap, FALSE);
4729}
4730
4731/*
4732 * ":unmap" and friends.
4733 */
4734 static void
4735ex_unmap(eap)
4736 exarg_T *eap;
4737{
4738 do_exmap(eap, FALSE);
4739}
4740
4741/*
4742 * ":mapclear" and friends.
4743 */
4744 static void
4745ex_mapclear(eap)
4746 exarg_T *eap;
4747{
4748 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4749}
4750
4751/*
4752 * ":abclear" and friends.
4753 */
4754 static void
4755ex_abclear(eap)
4756 exarg_T *eap;
4757{
4758 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4759}
4760
4761#ifdef FEAT_AUTOCMD
4762 static void
4763ex_autocmd(eap)
4764 exarg_T *eap;
4765{
4766 /*
4767 * Disallow auto commands from .exrc and .vimrc in current
4768 * directory for security reasons.
4769 */
4770 if (secure)
4771 {
4772 secure = 2;
4773 eap->errmsg = e_curdir;
4774 }
4775 else if (eap->cmdidx == CMD_autocmd)
4776 do_autocmd(eap->arg, eap->forceit);
4777 else
4778 do_augroup(eap->arg, eap->forceit);
4779}
4780
4781/*
4782 * ":doautocmd": Apply the automatic commands to the current buffer.
4783 */
4784 static void
4785ex_doautocmd(eap)
4786 exarg_T *eap;
4787{
4788 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004789 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790}
4791#endif
4792
4793#ifdef FEAT_LISTCMDS
4794/*
4795 * :[N]bunload[!] [N] [bufname] unload buffer
4796 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4797 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4798 */
4799 static void
4800ex_bunload(eap)
4801 exarg_T *eap;
4802{
4803 eap->errmsg = do_bufdel(
4804 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4805 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4806 : DOBUF_UNLOAD, eap->arg,
4807 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4808}
4809
4810/*
4811 * :[N]buffer [N] to buffer N
4812 * :[N]sbuffer [N] to buffer N
4813 */
4814 static void
4815ex_buffer(eap)
4816 exarg_T *eap;
4817{
4818 if (*eap->arg)
4819 eap->errmsg = e_trailing;
4820 else
4821 {
4822 if (eap->addr_count == 0) /* default is current buffer */
4823 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4824 else
4825 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4826 }
4827}
4828
4829/*
4830 * :[N]bmodified [N] to next mod. buffer
4831 * :[N]sbmodified [N] to next mod. buffer
4832 */
4833 static void
4834ex_bmodified(eap)
4835 exarg_T *eap;
4836{
4837 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4838}
4839
4840/*
4841 * :[N]bnext [N] to next buffer
4842 * :[N]sbnext [N] split and to next buffer
4843 */
4844 static void
4845ex_bnext(eap)
4846 exarg_T *eap;
4847{
4848 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4849}
4850
4851/*
4852 * :[N]bNext [N] to previous buffer
4853 * :[N]bprevious [N] to previous buffer
4854 * :[N]sbNext [N] split and to previous buffer
4855 * :[N]sbprevious [N] split and to previous buffer
4856 */
4857 static void
4858ex_bprevious(eap)
4859 exarg_T *eap;
4860{
4861 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4862}
4863
4864/*
4865 * :brewind to first buffer
4866 * :bfirst to first buffer
4867 * :sbrewind split and to first buffer
4868 * :sbfirst split and to first buffer
4869 */
4870 static void
4871ex_brewind(eap)
4872 exarg_T *eap;
4873{
4874 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4875}
4876
4877/*
4878 * :blast to last buffer
4879 * :sblast split and to last buffer
4880 */
4881 static void
4882ex_blast(eap)
4883 exarg_T *eap;
4884{
4885 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4886}
4887#endif
4888
4889 int
4890ends_excmd(c)
4891 int c;
4892{
4893 return (c == NUL || c == '|' || c == '"' || c == '\n');
4894}
4895
4896#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4897 || defined(PROTO)
4898/*
4899 * Return the next command, after the first '|' or '\n'.
4900 * Return NULL if not found.
4901 */
4902 char_u *
4903find_nextcmd(p)
4904 char_u *p;
4905{
4906 while (*p != '|' && *p != '\n')
4907 {
4908 if (*p == NUL)
4909 return NULL;
4910 ++p;
4911 }
4912 return (p + 1);
4913}
4914#endif
4915
4916/*
4917 * Check if *p is a separator between Ex commands.
4918 * Return NULL if it isn't, (p + 1) if it is.
4919 */
4920 char_u *
4921check_nextcmd(p)
4922 char_u *p;
4923{
4924 p = skipwhite(p);
4925 if (*p == '|' || *p == '\n')
4926 return (p + 1);
4927 else
4928 return NULL;
4929}
4930
4931/*
4932 * - if there are more files to edit
4933 * - and this is the last window
4934 * - and forceit not used
4935 * - and not repeated twice on a row
4936 * return FAIL and give error message if 'message' TRUE
4937 * return OK otherwise
4938 */
4939 static int
4940check_more(message, forceit)
4941 int message; /* when FALSE check only, no messages */
4942 int forceit;
4943{
4944 int n = ARGCOUNT - curwin->w_arg_idx - 1;
4945
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004946 if (!forceit && only_one_window()
4947 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 {
4949 if (message)
4950 {
4951#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4952 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
4953 {
4954 char_u buff[IOSIZE];
4955
4956 if (n == 1)
4957 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
4958 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004959 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 _("%d more files to edit. Quit anyway?"), n);
4961 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
4962 return OK;
4963 return FAIL;
4964 }
4965#endif
4966 if (n == 1)
4967 EMSG(_("E173: 1 more file to edit"));
4968 else
4969 EMSGN(_("E173: %ld more files to edit"), n);
4970 quitmore = 2; /* next try to quit is allowed */
4971 }
4972 return FAIL;
4973 }
4974 return OK;
4975}
4976
4977#ifdef FEAT_CMDL_COMPL
4978/*
4979 * Function given to ExpandGeneric() to obtain the list of command names.
4980 */
4981/*ARGSUSED*/
4982 char_u *
4983get_command_name(xp, idx)
4984 expand_T *xp;
4985 int idx;
4986{
4987 if (idx >= (int)CMD_SIZE)
4988# ifdef FEAT_USR_CMDS
4989 return get_user_command_name(idx);
4990# else
4991 return NULL;
4992# endif
4993 return cmdnames[idx].cmd_name;
4994}
4995#endif
4996
4997#if defined(FEAT_USR_CMDS) || defined(PROTO)
4998static 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));
4999static void uc_list __ARGS((char_u *name, size_t name_len));
5000static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5001static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5002static 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));
5003
5004 static int
5005uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5006 char_u *name;
5007 size_t name_len;
5008 char_u *rep;
5009 long argt;
5010 long def;
5011 int flags;
5012 int compl;
5013 char_u *compl_arg;
5014 int force;
5015{
5016 ucmd_T *cmd = NULL;
5017 char_u *p;
5018 int i;
5019 int cmp = 1;
5020 char_u *rep_buf = NULL;
5021 garray_T *gap;
5022
Bram Moolenaar9c102382006-05-03 21:26:49 +00005023 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 if (rep_buf == NULL)
5025 {
5026 /* Can't replace termcodes - try using the string as is */
5027 rep_buf = vim_strsave(rep);
5028
5029 /* Give up if out of memory */
5030 if (rep_buf == NULL)
5031 return FAIL;
5032 }
5033
5034 /* get address of growarray: global or in curbuf */
5035 if (flags & UC_BUFFER)
5036 {
5037 gap = &curbuf->b_ucmds;
5038 if (gap->ga_itemsize == 0)
5039 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5040 }
5041 else
5042 gap = &ucmds;
5043
5044 /* Search for the command in the already defined commands. */
5045 for (i = 0; i < gap->ga_len; ++i)
5046 {
5047 size_t len;
5048
5049 cmd = USER_CMD_GA(gap, i);
5050 len = STRLEN(cmd->uc_name);
5051 cmp = STRNCMP(name, cmd->uc_name, name_len);
5052 if (cmp == 0)
5053 {
5054 if (name_len < len)
5055 cmp = -1;
5056 else if (name_len > len)
5057 cmp = 1;
5058 }
5059
5060 if (cmp == 0)
5061 {
5062 if (!force)
5063 {
5064 EMSG(_("E174: Command already exists: add ! to replace it"));
5065 goto fail;
5066 }
5067
5068 vim_free(cmd->uc_rep);
5069 cmd->uc_rep = 0;
5070 break;
5071 }
5072
5073 /* Stop as soon as we pass the name to add */
5074 if (cmp < 0)
5075 break;
5076 }
5077
5078 /* Extend the array unless we're replacing an existing command */
5079 if (cmp != 0)
5080 {
5081 if (ga_grow(gap, 1) != OK)
5082 goto fail;
5083 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5084 goto fail;
5085
5086 cmd = USER_CMD_GA(gap, i);
5087 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5088
5089 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090
5091 cmd->uc_name = p;
5092 }
5093
5094 cmd->uc_rep = rep_buf;
5095 cmd->uc_argt = argt;
5096 cmd->uc_def = def;
5097 cmd->uc_compl = compl;
5098#ifdef FEAT_EVAL
5099 cmd->uc_scriptID = current_SID;
5100# ifdef FEAT_CMDL_COMPL
5101 cmd->uc_compl_arg = compl_arg;
5102# endif
5103#endif
5104
5105 return OK;
5106
5107fail:
5108 vim_free(rep_buf);
5109#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5110 vim_free(compl_arg);
5111#endif
5112 return FAIL;
5113}
5114
5115/*
5116 * List of names for completion for ":command" with the EXPAND_ flag.
5117 * Must be alphabetical for completion.
5118 */
5119static struct
5120{
5121 int expand;
5122 char *name;
5123} command_complete[] =
5124{
5125 {EXPAND_AUGROUP, "augroup"},
5126 {EXPAND_BUFFERS, "buffer"},
5127 {EXPAND_COMMANDS, "command"},
5128#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5129 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005130 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131#endif
5132 {EXPAND_DIRECTORIES, "dir"},
5133 {EXPAND_ENV_VARS, "environment"},
5134 {EXPAND_EVENTS, "event"},
5135 {EXPAND_EXPRESSION, "expression"},
5136 {EXPAND_FILES, "file"},
5137 {EXPAND_FUNCTIONS, "function"},
5138 {EXPAND_HELP, "help"},
5139 {EXPAND_HIGHLIGHT, "highlight"},
5140 {EXPAND_MAPPINGS, "mapping"},
5141 {EXPAND_MENUS, "menu"},
5142 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005143 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 {EXPAND_TAGS, "tag"},
5145 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5146 {EXPAND_USER_VARS, "var"},
5147 {0, NULL}
5148};
5149
5150 static void
5151uc_list(name, name_len)
5152 char_u *name;
5153 size_t name_len;
5154{
5155 int i, j;
5156 int found = FALSE;
5157 ucmd_T *cmd;
5158 int len;
5159 long a;
5160 garray_T *gap;
5161
5162 gap = &curbuf->b_ucmds;
5163 for (;;)
5164 {
5165 for (i = 0; i < gap->ga_len; ++i)
5166 {
5167 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005168 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169
5170 /* Skip commands which don't match the requested prefix */
5171 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5172 continue;
5173
5174 /* Put out the title first time */
5175 if (!found)
5176 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5177 found = TRUE;
5178 msg_putchar('\n');
5179 if (got_int)
5180 break;
5181
5182 /* Special cases */
5183 msg_putchar(a & BANG ? '!' : ' ');
5184 msg_putchar(a & REGSTR ? '"' : ' ');
5185 msg_putchar(gap != &ucmds ? 'b' : ' ');
5186 msg_putchar(' ');
5187
5188 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5189 len = (int)STRLEN(cmd->uc_name) + 4;
5190
5191 do {
5192 msg_putchar(' ');
5193 ++len;
5194 } while (len < 16);
5195
5196 len = 0;
5197
5198 /* Arguments */
5199 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5200 {
5201 case 0: IObuff[len++] = '0'; break;
5202 case (EXTRA): IObuff[len++] = '*'; break;
5203 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5204 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5205 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5206 }
5207
5208 do {
5209 IObuff[len++] = ' ';
5210 } while (len < 5);
5211
5212 /* Range */
5213 if (a & (RANGE|COUNT))
5214 {
5215 if (a & COUNT)
5216 {
5217 /* -count=N */
5218 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5219 len += (int)STRLEN(IObuff + len);
5220 }
5221 else if (a & DFLALL)
5222 IObuff[len++] = '%';
5223 else if (cmd->uc_def >= 0)
5224 {
5225 /* -range=N */
5226 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5227 len += (int)STRLEN(IObuff + len);
5228 }
5229 else
5230 IObuff[len++] = '.';
5231 }
5232
5233 do {
5234 IObuff[len++] = ' ';
5235 } while (len < 11);
5236
5237 /* Completion */
5238 for (j = 0; command_complete[j].expand != 0; ++j)
5239 if (command_complete[j].expand == cmd->uc_compl)
5240 {
5241 STRCPY(IObuff + len, command_complete[j].name);
5242 len += (int)STRLEN(IObuff + len);
5243 break;
5244 }
5245
5246 do {
5247 IObuff[len++] = ' ';
5248 } while (len < 21);
5249
5250 IObuff[len] = '\0';
5251 msg_outtrans(IObuff);
5252
5253 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005254#ifdef FEAT_EVAL
5255 if (p_verbose > 0)
5256 last_set_msg(cmd->uc_scriptID);
5257#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 out_flush();
5259 ui_breakcheck();
5260 if (got_int)
5261 break;
5262 }
5263 if (gap == &ucmds || i < gap->ga_len)
5264 break;
5265 gap = &ucmds;
5266 }
5267
5268 if (!found)
5269 MSG(_("No user-defined commands found"));
5270}
5271
5272 static char_u *
5273uc_fun_cmd()
5274{
5275 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5276 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5277 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5278 0xb9, 0x7f, 0};
5279 int i;
5280
5281 for (i = 0; fcmd[i]; ++i)
5282 IObuff[i] = fcmd[i] - 0x40;
5283 IObuff[i] = 0;
5284 return IObuff;
5285}
5286
5287 static int
5288uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5289 char_u *attr;
5290 size_t len;
5291 long *argt;
5292 long *def;
5293 int *flags;
5294 int *compl;
5295 char_u **compl_arg;
5296{
5297 char_u *p;
5298
5299 if (len == 0)
5300 {
5301 EMSG(_("E175: No attribute specified"));
5302 return FAIL;
5303 }
5304
5305 /* First, try the simple attributes (no arguments) */
5306 if (STRNICMP(attr, "bang", len) == 0)
5307 *argt |= BANG;
5308 else if (STRNICMP(attr, "buffer", len) == 0)
5309 *flags |= UC_BUFFER;
5310 else if (STRNICMP(attr, "register", len) == 0)
5311 *argt |= REGSTR;
5312 else if (STRNICMP(attr, "bar", len) == 0)
5313 *argt |= TRLBAR;
5314 else
5315 {
5316 int i;
5317 char_u *val = NULL;
5318 size_t vallen = 0;
5319 size_t attrlen = len;
5320
5321 /* Look for the attribute name - which is the part before any '=' */
5322 for (i = 0; i < (int)len; ++i)
5323 {
5324 if (attr[i] == '=')
5325 {
5326 val = &attr[i + 1];
5327 vallen = len - i - 1;
5328 attrlen = i;
5329 break;
5330 }
5331 }
5332
5333 if (STRNICMP(attr, "nargs", attrlen) == 0)
5334 {
5335 if (vallen == 1)
5336 {
5337 if (*val == '0')
5338 /* Do nothing - this is the default */;
5339 else if (*val == '1')
5340 *argt |= (EXTRA | NOSPC | NEEDARG);
5341 else if (*val == '*')
5342 *argt |= EXTRA;
5343 else if (*val == '?')
5344 *argt |= (EXTRA | NOSPC);
5345 else if (*val == '+')
5346 *argt |= (EXTRA | NEEDARG);
5347 else
5348 goto wrong_nargs;
5349 }
5350 else
5351 {
5352wrong_nargs:
5353 EMSG(_("E176: Invalid number of arguments"));
5354 return FAIL;
5355 }
5356 }
5357 else if (STRNICMP(attr, "range", attrlen) == 0)
5358 {
5359 *argt |= RANGE;
5360 if (vallen == 1 && *val == '%')
5361 *argt |= DFLALL;
5362 else if (val != NULL)
5363 {
5364 p = val;
5365 if (*def >= 0)
5366 {
5367two_count:
5368 EMSG(_("E177: Count cannot be specified twice"));
5369 return FAIL;
5370 }
5371
5372 *def = getdigits(&p);
5373 *argt |= (ZEROR | NOTADR);
5374
5375 if (p != val + vallen || vallen == 0)
5376 {
5377invalid_count:
5378 EMSG(_("E178: Invalid default value for count"));
5379 return FAIL;
5380 }
5381 }
5382 }
5383 else if (STRNICMP(attr, "count", attrlen) == 0)
5384 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005385 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386
5387 if (val != NULL)
5388 {
5389 p = val;
5390 if (*def >= 0)
5391 goto two_count;
5392
5393 *def = getdigits(&p);
5394
5395 if (p != val + vallen)
5396 goto invalid_count;
5397 }
5398
5399 if (*def < 0)
5400 *def = 0;
5401 }
5402 else if (STRNICMP(attr, "complete", attrlen) == 0)
5403 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 if (val == NULL)
5405 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005406 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005407 return FAIL;
5408 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005410 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5411 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 }
5414 else
5415 {
5416 char_u ch = attr[len];
5417 attr[len] = '\0';
5418 EMSG2(_("E181: Invalid attribute: %s"), attr);
5419 attr[len] = ch;
5420 return FAIL;
5421 }
5422 }
5423
5424 return OK;
5425}
5426
5427 static void
5428ex_command(eap)
5429 exarg_T *eap;
5430{
5431 char_u *name;
5432 char_u *end;
5433 char_u *p;
5434 long argt = 0;
5435 long def = -1;
5436 int flags = 0;
5437 int compl = EXPAND_NOTHING;
5438 char_u *compl_arg = NULL;
5439 int has_attr = (eap->arg[0] == '-');
5440
5441 p = eap->arg;
5442
5443 /* Check for attributes */
5444 while (*p == '-')
5445 {
5446 ++p;
5447 end = skiptowhite(p);
5448 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5449 == FAIL)
5450 return;
5451 p = skipwhite(end);
5452 }
5453
5454 /* Get the name (if any) and skip to the following argument */
5455 name = p;
5456 if (ASCII_ISALPHA(*p))
5457 while (ASCII_ISALNUM(*p))
5458 ++p;
5459 if (!ends_excmd(*p) && !vim_iswhite(*p))
5460 {
5461 EMSG(_("E182: Invalid command name"));
5462 return;
5463 }
5464 end = p;
5465
5466 /* If there is nothing after the name, and no attributes were specified,
5467 * we are listing commands
5468 */
5469 p = skipwhite(end);
5470 if (!has_attr && ends_excmd(*p))
5471 {
5472 uc_list(name, end - name);
5473 }
5474 else if (!ASCII_ISUPPER(*name))
5475 {
5476 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5477 return;
5478 }
5479 else
5480 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5481 eap->forceit);
5482}
5483
5484/*
5485 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 * Clear all user commands, global and for current buffer.
5487 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005488/*ARGSUSED*/
5489 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490ex_comclear(eap)
5491 exarg_T *eap;
5492{
5493 uc_clear(&ucmds);
5494 uc_clear(&curbuf->b_ucmds);
5495}
5496
5497/*
5498 * Clear all user commands for "gap".
5499 */
5500 void
5501uc_clear(gap)
5502 garray_T *gap;
5503{
5504 int i;
5505 ucmd_T *cmd;
5506
5507 for (i = 0; i < gap->ga_len; ++i)
5508 {
5509 cmd = USER_CMD_GA(gap, i);
5510 vim_free(cmd->uc_name);
5511 vim_free(cmd->uc_rep);
5512# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5513 vim_free(cmd->uc_compl_arg);
5514# endif
5515 }
5516 ga_clear(gap);
5517}
5518
5519 static void
5520ex_delcommand(eap)
5521 exarg_T *eap;
5522{
5523 int i = 0;
5524 ucmd_T *cmd = NULL;
5525 int cmp = -1;
5526 garray_T *gap;
5527
5528 gap = &curbuf->b_ucmds;
5529 for (;;)
5530 {
5531 for (i = 0; i < gap->ga_len; ++i)
5532 {
5533 cmd = USER_CMD_GA(gap, i);
5534 cmp = STRCMP(eap->arg, cmd->uc_name);
5535 if (cmp <= 0)
5536 break;
5537 }
5538 if (gap == &ucmds || cmp == 0)
5539 break;
5540 gap = &ucmds;
5541 }
5542
5543 if (cmp != 0)
5544 {
5545 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5546 return;
5547 }
5548
5549 vim_free(cmd->uc_name);
5550 vim_free(cmd->uc_rep);
5551# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5552 vim_free(cmd->uc_compl_arg);
5553# endif
5554
5555 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556
5557 if (i < gap->ga_len)
5558 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5559}
5560
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005561/*
5562 * split and quote args for <f-args>
5563 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 static char_u *
5565uc_split_args(arg, lenp)
5566 char_u *arg;
5567 size_t *lenp;
5568{
5569 char_u *buf;
5570 char_u *p;
5571 char_u *q;
5572 int len;
5573
5574 /* Precalculate length */
5575 p = arg;
5576 len = 2; /* Initial and final quotes */
5577
5578 while (*p)
5579 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005580 if (p[0] == '\\' && p[1] == '\\')
5581 {
5582 len += 2;
5583 p += 2;
5584 }
5585 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 {
5587 len += 1;
5588 p += 2;
5589 }
5590 else if (*p == '\\' || *p == '"')
5591 {
5592 len += 2;
5593 p += 1;
5594 }
5595 else if (vim_iswhite(*p))
5596 {
5597 p = skipwhite(p);
5598 if (*p == NUL)
5599 break;
5600 len += 3; /* "," */
5601 }
5602 else
5603 {
5604 ++len;
5605 ++p;
5606 }
5607 }
5608
5609 buf = alloc(len + 1);
5610 if (buf == NULL)
5611 {
5612 *lenp = 0;
5613 return buf;
5614 }
5615
5616 p = arg;
5617 q = buf;
5618 *q++ = '"';
5619 while (*p)
5620 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005621 if (p[0] == '\\' && p[1] == '\\')
5622 {
5623 *q++ = '\\';
5624 *q++ = '\\';
5625 p += 2;
5626 }
5627 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005628 {
5629 *q++ = p[1];
5630 p += 2;
5631 }
5632 else if (*p == '\\' || *p == '"')
5633 {
5634 *q++ = '\\';
5635 *q++ = *p++;
5636 }
5637 else if (vim_iswhite(*p))
5638 {
5639 p = skipwhite(p);
5640 if (*p == NUL)
5641 break;
5642 *q++ = '"';
5643 *q++ = ',';
5644 *q++ = '"';
5645 }
5646 else
5647 {
5648 *q++ = *p++;
5649 }
5650 }
5651 *q++ = '"';
5652 *q = 0;
5653
5654 *lenp = len;
5655 return buf;
5656}
5657
5658/*
5659 * Check for a <> code in a user command.
5660 * "code" points to the '<'. "len" the length of the <> (inclusive).
5661 * "buf" is where the result is to be added.
5662 * "split_buf" points to a buffer used for splitting, caller should free it.
5663 * "split_len" is the length of what "split_buf" contains.
5664 * Returns the length of the replacement, which has been added to "buf".
5665 * Returns -1 if there was no match, and only the "<" has been copied.
5666 */
5667 static size_t
5668uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5669 char_u *code;
5670 size_t len;
5671 char_u *buf;
5672 ucmd_T *cmd; /* the user command we're expanding */
5673 exarg_T *eap; /* ex arguments */
5674 char_u **split_buf;
5675 size_t *split_len;
5676{
5677 size_t result = 0;
5678 char_u *p = code + 1;
5679 size_t l = len - 2;
5680 int quote = 0;
5681 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5682 ct_LT, ct_NONE } type = ct_NONE;
5683
5684 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5685 {
5686 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5687 p += 2;
5688 l -= 2;
5689 }
5690
Bram Moolenaar371d5402006-03-20 21:47:49 +00005691 ++l;
5692 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005694 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005696 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005698 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005700 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005702 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005704 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005706 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 type = ct_REGISTER;
5708
5709 switch (type)
5710 {
5711 case ct_ARGS:
5712 /* Simple case first */
5713 if (*eap->arg == NUL)
5714 {
5715 if (quote == 1)
5716 {
5717 result = 2;
5718 if (buf != NULL)
5719 STRCPY(buf, "''");
5720 }
5721 else
5722 result = 0;
5723 break;
5724 }
5725
5726 /* When specified there is a single argument don't split it.
5727 * Works for ":Cmd %" when % is "a b c". */
5728 if ((eap->argt & NOSPC) && quote == 2)
5729 quote = 1;
5730
5731 switch (quote)
5732 {
5733 case 0: /* No quoting, no splitting */
5734 result = STRLEN(eap->arg);
5735 if (buf != NULL)
5736 STRCPY(buf, eap->arg);
5737 break;
5738 case 1: /* Quote, but don't split */
5739 result = STRLEN(eap->arg) + 2;
5740 for (p = eap->arg; *p; ++p)
5741 {
5742 if (*p == '\\' || *p == '"')
5743 ++result;
5744 }
5745
5746 if (buf != NULL)
5747 {
5748 *buf++ = '"';
5749 for (p = eap->arg; *p; ++p)
5750 {
5751 if (*p == '\\' || *p == '"')
5752 *buf++ = '\\';
5753 *buf++ = *p;
5754 }
5755 *buf = '"';
5756 }
5757
5758 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005759 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 /* This is hard, so only do it once, and cache the result */
5761 if (*split_buf == NULL)
5762 *split_buf = uc_split_args(eap->arg, split_len);
5763
5764 result = *split_len;
5765 if (buf != NULL && result != 0)
5766 STRCPY(buf, *split_buf);
5767
5768 break;
5769 }
5770 break;
5771
5772 case ct_BANG:
5773 result = eap->forceit ? 1 : 0;
5774 if (quote)
5775 result += 2;
5776 if (buf != NULL)
5777 {
5778 if (quote)
5779 *buf++ = '"';
5780 if (eap->forceit)
5781 *buf++ = '!';
5782 if (quote)
5783 *buf = '"';
5784 }
5785 break;
5786
5787 case ct_LINE1:
5788 case ct_LINE2:
5789 case ct_COUNT:
5790 {
5791 char num_buf[20];
5792 long num = (type == ct_LINE1) ? eap->line1 :
5793 (type == ct_LINE2) ? eap->line2 :
5794 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5795 size_t num_len;
5796
5797 sprintf(num_buf, "%ld", num);
5798 num_len = STRLEN(num_buf);
5799 result = num_len;
5800
5801 if (quote)
5802 result += 2;
5803
5804 if (buf != NULL)
5805 {
5806 if (quote)
5807 *buf++ = '"';
5808 STRCPY(buf, num_buf);
5809 buf += num_len;
5810 if (quote)
5811 *buf = '"';
5812 }
5813
5814 break;
5815 }
5816
5817 case ct_REGISTER:
5818 result = eap->regname ? 1 : 0;
5819 if (quote)
5820 result += 2;
5821 if (buf != NULL)
5822 {
5823 if (quote)
5824 *buf++ = '\'';
5825 if (eap->regname)
5826 *buf++ = eap->regname;
5827 if (quote)
5828 *buf = '\'';
5829 }
5830 break;
5831
5832 case ct_LT:
5833 result = 1;
5834 if (buf != NULL)
5835 *buf = '<';
5836 break;
5837
5838 default:
5839 /* Not recognized: just copy the '<' and return -1. */
5840 result = (size_t)-1;
5841 if (buf != NULL)
5842 *buf = '<';
5843 break;
5844 }
5845
5846 return result;
5847}
5848
5849 static void
5850do_ucmd(eap)
5851 exarg_T *eap;
5852{
5853 char_u *buf;
5854 char_u *p;
5855 char_u *q;
5856
5857 char_u *start;
5858 char_u *end;
5859 size_t len, totlen;
5860
5861 size_t split_len = 0;
5862 char_u *split_buf = NULL;
5863 ucmd_T *cmd;
5864#ifdef FEAT_EVAL
5865 scid_T save_current_SID = current_SID;
5866#endif
5867
5868 if (eap->cmdidx == CMD_USER)
5869 cmd = USER_CMD(eap->useridx);
5870 else
5871 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5872
5873 /*
5874 * Replace <> in the command by the arguments.
5875 */
5876 buf = NULL;
5877 for (;;)
5878 {
5879 p = cmd->uc_rep;
5880 q = buf;
5881 totlen = 0;
5882 while ((start = vim_strchr(p, '<')) != NULL
5883 && (end = vim_strchr(start + 1, '>')) != NULL)
5884 {
5885 /* Include the '>' */
5886 ++end;
5887
5888 /* Take everything up to the '<' */
5889 len = start - p;
5890 if (buf == NULL)
5891 totlen += len;
5892 else
5893 {
5894 mch_memmove(q, p, len);
5895 q += len;
5896 }
5897
5898 len = uc_check_code(start, end - start, q, cmd, eap,
5899 &split_buf, &split_len);
5900 if (len == (size_t)-1)
5901 {
5902 /* no match, continue after '<' */
5903 p = start + 1;
5904 len = 1;
5905 }
5906 else
5907 p = end;
5908 if (buf == NULL)
5909 totlen += len;
5910 else
5911 q += len;
5912 }
5913 if (buf != NULL) /* second time here, finished */
5914 {
5915 STRCPY(q, p);
5916 break;
5917 }
5918
5919 totlen += STRLEN(p); /* Add on the trailing characters */
5920 buf = alloc((unsigned)(totlen + 1));
5921 if (buf == NULL)
5922 {
5923 vim_free(split_buf);
5924 return;
5925 }
5926 }
5927
5928#ifdef FEAT_EVAL
5929 current_SID = cmd->uc_scriptID;
5930#endif
5931 (void)do_cmdline(buf, eap->getline, eap->cookie,
5932 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5933#ifdef FEAT_EVAL
5934 current_SID = save_current_SID;
5935#endif
5936 vim_free(buf);
5937 vim_free(split_buf);
5938}
5939
5940# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5941 static char_u *
5942get_user_command_name(idx)
5943 int idx;
5944{
5945 return get_user_commands(NULL, idx - (int)CMD_SIZE);
5946}
5947
5948/*
5949 * Function given to ExpandGeneric() to obtain the list of user command names.
5950 */
5951/*ARGSUSED*/
5952 char_u *
5953get_user_commands(xp, idx)
5954 expand_T *xp;
5955 int idx;
5956{
5957 if (idx < curbuf->b_ucmds.ga_len)
5958 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
5959 idx -= curbuf->b_ucmds.ga_len;
5960 if (idx < ucmds.ga_len)
5961 return USER_CMD(idx)->uc_name;
5962 return NULL;
5963}
5964
5965/*
5966 * Function given to ExpandGeneric() to obtain the list of user command
5967 * attributes.
5968 */
5969/*ARGSUSED*/
5970 char_u *
5971get_user_cmd_flags(xp, idx)
5972 expand_T *xp;
5973 int idx;
5974{
5975 static char *user_cmd_flags[] =
5976 {"bang", "bar", "buffer", "complete", "count",
5977 "nargs", "range", "register"};
5978
5979 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
5980 return NULL;
5981 return (char_u *)user_cmd_flags[idx];
5982}
5983
5984/*
5985 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
5986 */
5987/*ARGSUSED*/
5988 char_u *
5989get_user_cmd_nargs(xp, idx)
5990 expand_T *xp;
5991 int idx;
5992{
5993 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
5994
5995 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
5996 return NULL;
5997 return (char_u *)user_cmd_nargs[idx];
5998}
5999
6000/*
6001 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6002 */
6003/*ARGSUSED*/
6004 char_u *
6005get_user_cmd_complete(xp, idx)
6006 expand_T *xp;
6007 int idx;
6008{
6009 return (char_u *)command_complete[idx].name;
6010}
6011# endif /* FEAT_CMDL_COMPL */
6012
6013#endif /* FEAT_USR_CMDS */
6014
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006015#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6016/*
6017 * Parse a completion argument "value[vallen]".
6018 * The detected completion goes in "*complp", argument type in "*argt".
6019 * When there is an argument, for function and user defined completion, it's
6020 * copied to allocated memory and stored in "*compl_arg".
6021 * Returns FAIL if something is wrong.
6022 */
6023 int
6024parse_compl_arg(value, vallen, complp, argt, compl_arg)
6025 char_u *value;
6026 int vallen;
6027 int *complp;
6028 long *argt;
6029 char_u **compl_arg;
6030{
6031 char_u *arg = NULL;
6032 size_t arglen = 0;
6033 int i;
6034 int valend = vallen;
6035
6036 /* Look for any argument part - which is the part after any ',' */
6037 for (i = 0; i < vallen; ++i)
6038 {
6039 if (value[i] == ',')
6040 {
6041 arg = &value[i + 1];
6042 arglen = vallen - i - 1;
6043 valend = i;
6044 break;
6045 }
6046 }
6047
6048 for (i = 0; command_complete[i].expand != 0; ++i)
6049 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006050 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006051 && STRNCMP(value, command_complete[i].name, valend) == 0)
6052 {
6053 *complp = command_complete[i].expand;
6054 if (command_complete[i].expand == EXPAND_BUFFERS)
6055 *argt |= BUFNAME;
6056 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6057 || command_complete[i].expand == EXPAND_FILES)
6058 *argt |= XFILE;
6059 break;
6060 }
6061 }
6062
6063 if (command_complete[i].expand == 0)
6064 {
6065 EMSG2(_("E180: Invalid complete value: %s"), value);
6066 return FAIL;
6067 }
6068
6069# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6070 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6071 && arg != NULL)
6072# else
6073 if (arg != NULL)
6074# endif
6075 {
6076 EMSG(_("E468: Completion argument only allowed for custom completion"));
6077 return FAIL;
6078 }
6079
6080# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6081 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6082 && arg == NULL)
6083 {
6084 EMSG(_("E467: Custom completion requires a function argument"));
6085 return FAIL;
6086 }
6087
6088 if (arg != NULL)
6089 *compl_arg = vim_strnsave(arg, (int)arglen);
6090# endif
6091 return OK;
6092}
6093#endif
6094
Bram Moolenaar071d4272004-06-13 20:20:40 +00006095 static void
6096ex_colorscheme(eap)
6097 exarg_T *eap;
6098{
6099 if (load_colors(eap->arg) == FAIL)
6100 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6101}
6102
6103 static void
6104ex_highlight(eap)
6105 exarg_T *eap;
6106{
6107 if (*eap->arg == NUL && eap->cmd[2] == '!')
6108 MSG(_("Greetings, Vim user!"));
6109 do_highlight(eap->arg, eap->forceit, FALSE);
6110}
6111
6112
6113/*
6114 * Call this function if we thought we were going to exit, but we won't
6115 * (because of an error). May need to restore the terminal mode.
6116 */
6117 void
6118not_exiting()
6119{
6120 exiting = FALSE;
6121 settmode(TMODE_RAW);
6122}
6123
6124/*
6125 * ":quit": quit current window, quit Vim if closed the last window.
6126 */
6127 static void
6128ex_quit(eap)
6129 exarg_T *eap;
6130{
6131#ifdef FEAT_CMDWIN
6132 if (cmdwin_type != 0)
6133 {
6134 cmdwin_result = Ctrl_C;
6135 return;
6136 }
6137#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006138 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006139 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006140 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006141 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006142 return;
6143 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006144#ifdef FEAT_AUTOCMD
6145 if (curbuf_locked())
6146 return;
6147#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006148
6149#ifdef FEAT_NETBEANS_INTG
6150 netbeansForcedQuit = eap->forceit;
6151#endif
6152
6153 /*
6154 * If there are more files or windows we won't exit.
6155 */
6156 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6157 exiting = TRUE;
6158 if ((!P_HID(curbuf)
6159 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6160 || check_more(TRUE, eap->forceit) == FAIL
6161 || (only_one_window() && check_changed_any(eap->forceit)))
6162 {
6163 not_exiting();
6164 }
6165 else
6166 {
6167#ifdef FEAT_WINDOWS
6168 if (only_one_window()) /* quit last window */
6169#endif
6170 getout(0);
6171#ifdef FEAT_WINDOWS
6172# ifdef FEAT_GUI
6173 need_mouse_correct = TRUE;
6174# endif
6175 /* close window; may free buffer */
6176 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6177#endif
6178 }
6179}
6180
6181/*
6182 * ":cquit".
6183 */
6184/*ARGSUSED*/
6185 static void
6186ex_cquit(eap)
6187 exarg_T *eap;
6188{
6189 getout(1); /* this does not always pass on the exit code to the Manx
6190 compiler. why? */
6191}
6192
6193/*
6194 * ":qall": try to quit all windows
6195 */
6196 static void
6197ex_quit_all(eap)
6198 exarg_T *eap;
6199{
6200# ifdef FEAT_CMDWIN
6201 if (cmdwin_type != 0)
6202 {
6203 if (eap->forceit)
6204 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6205 else
6206 cmdwin_result = K_XF2;
6207 return;
6208 }
6209# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006210
6211 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006212 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006213 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006214 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006215 return;
6216 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006217#ifdef FEAT_AUTOCMD
6218 if (curbuf_locked())
6219 return;
6220#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006221
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222 exiting = TRUE;
6223 if (eap->forceit || !check_changed_any(FALSE))
6224 getout(0);
6225 not_exiting();
6226}
6227
Bram Moolenaard9967712006-03-11 21:18:15 +00006228#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229/*
6230 * ":close": close current window, unless it is the last one
6231 */
6232 static void
6233ex_close(eap)
6234 exarg_T *eap;
6235{
6236# ifdef FEAT_CMDWIN
6237 if (cmdwin_type != 0)
6238 cmdwin_result = K_IGNORE;
6239 else
6240# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006241 if (!text_locked()
6242#ifdef FEAT_AUTOCMD
6243 && !curbuf_locked()
6244#endif
6245 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006246 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247}
6248
Bram Moolenaard9967712006-03-11 21:18:15 +00006249# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006250/*
6251 * ":pclose": Close any preview window.
6252 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006254ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006256{
6257 win_T *win;
6258
6259 for (win = firstwin; win != NULL; win = win->w_next)
6260 if (win->w_p_pvw)
6261 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006262 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006263 break;
6264 }
6265}
Bram Moolenaard9967712006-03-11 21:18:15 +00006266# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006267
Bram Moolenaarf740b292006-02-16 22:11:02 +00006268/*
6269 * Close window "win" and take care of handling closing the last window for a
6270 * modified buffer.
6271 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006272 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006273ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006274 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006276 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277{
6278 int need_hide;
6279 buf_T *buf = win->w_buffer;
6280
6281 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006282 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006284# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 if ((p_confirm || cmdmod.confirm) && p_write)
6286 {
6287 dialog_changed(buf, FALSE);
6288 if (buf_valid(buf) && bufIsChanged(buf))
6289 return;
6290 need_hide = FALSE;
6291 }
6292 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006293# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006294 {
6295 EMSG(_(e_nowrtmsg));
6296 return;
6297 }
6298 }
6299
Bram Moolenaard9967712006-03-11 21:18:15 +00006300# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006302# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006303
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006305 if (tp == NULL)
6306 win_close(win, !need_hide && !P_HID(buf));
6307 else
6308 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309}
6310
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006312 * ":tabclose": close current tab page, unless it is the last one.
6313 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006314 */
6315 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006316ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 exarg_T *eap;
6318{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006319 tabpage_T *tp;
6320
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006321# ifdef FEAT_CMDWIN
6322 if (cmdwin_type != 0)
6323 cmdwin_result = K_IGNORE;
6324 else
6325# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006326 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006327 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006328 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006329 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006330 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006331 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006332 tp = find_tabpage((int)eap->line2);
6333 if (tp == NULL)
6334 {
6335 beep_flush();
6336 return;
6337 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006338 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006339 {
6340 tabpage_close_other(tp, eap->forceit);
6341 return;
6342 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006343 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006344 if (!text_locked()
6345#ifdef FEAT_AUTOCMD
6346 && !curbuf_locked()
6347#endif
6348 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006349 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006351}
6352
6353/*
6354 * ":tabonly": close all tab pages except the current one
6355 */
6356 static void
6357ex_tabonly(eap)
6358 exarg_T *eap;
6359{
6360 tabpage_T *tp;
6361 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006362
6363# ifdef FEAT_CMDWIN
6364 if (cmdwin_type != 0)
6365 cmdwin_result = K_IGNORE;
6366 else
6367# endif
6368 if (first_tabpage->tp_next == NULL)
6369 MSG(_("Already only one tab page"));
6370 else
6371 {
6372 /* Repeat this up to a 1000 times, because autocommands may mess
6373 * up the lists. */
6374 for (done = 0; done < 1000; ++done)
6375 {
6376 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6377 if (tp->tp_topframe != topframe)
6378 {
6379 tabpage_close_other(tp, eap->forceit);
6380 /* if we failed to close it quit */
6381 if (valid_tabpage(tp))
6382 done = 1000;
6383 /* start over, "tp" is now invalid */
6384 break;
6385 }
6386 if (first_tabpage->tp_next == NULL)
6387 break;
6388 }
6389 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391
6392/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006393 * Close the current tab page.
6394 */
6395 void
6396tabpage_close(forceit)
6397 int forceit;
6398{
6399 /* First close all the windows but the current one. If that worked then
6400 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006401 if (lastwin != firstwin)
6402 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006403 if (lastwin == firstwin)
6404 ex_win_close(forceit, curwin, NULL);
6405# ifdef FEAT_GUI
6406 need_mouse_correct = TRUE;
6407# endif
6408}
6409
6410/*
6411 * Close tab page "tp", which is not the current tab page.
6412 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006413 * Also takes care of the tab pages line disappearing when closing the
6414 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006415 */
6416 void
6417tabpage_close_other(tp, forceit)
6418 tabpage_T *tp;
6419 int forceit;
6420{
6421 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006422 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006423 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006424
6425 /* Limit to 1000 windows, autocommands may add a window while we close
6426 * one. OK, so I'm paranoid... */
6427 while (++done < 1000)
6428 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006429 wp = tp->tp_firstwin;
6430 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006431
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006432 /* Autocommands may delete the tab page under our fingers and we may
6433 * fail to close a window with a modified buffer. */
6434 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006435 break;
6436 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006437
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006438 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006439 if (h != tabline_height())
6440 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006441}
6442
6443/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006444 * ":only".
6445 */
6446 static void
6447ex_only(eap)
6448 exarg_T *eap;
6449{
6450# ifdef FEAT_GUI
6451 need_mouse_correct = TRUE;
6452# endif
6453 close_others(TRUE, eap->forceit);
6454}
6455
6456/*
6457 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006458 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006460 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461ex_all(eap)
6462 exarg_T *eap;
6463{
6464 if (eap->addr_count == 0)
6465 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006466 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006467}
6468#endif /* FEAT_WINDOWS */
6469
6470 static void
6471ex_hide(eap)
6472 exarg_T *eap;
6473{
6474 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6475 eap->errmsg = e_invarg;
6476 else
6477 {
6478 /* ":hide" or ":hide | cmd": hide current window */
6479 eap->nextcmd = check_nextcmd(eap->arg);
6480#ifdef FEAT_WINDOWS
6481 if (!eap->skip)
6482 {
6483# ifdef FEAT_GUI
6484 need_mouse_correct = TRUE;
6485# endif
6486 win_close(curwin, FALSE); /* don't free buffer */
6487 }
6488#endif
6489 }
6490}
6491
6492/*
6493 * ":stop" and ":suspend": Suspend Vim.
6494 */
6495 static void
6496ex_stop(eap)
6497 exarg_T *eap;
6498{
6499 /*
6500 * Disallow suspending for "rvim".
6501 */
6502 if (!check_restricted()
6503#ifdef WIN3264
6504 /*
6505 * Check if external commands are allowed now.
6506 */
6507 && can_end_termcap_mode(TRUE)
6508#endif
6509 )
6510 {
6511 if (!eap->forceit)
6512 autowrite_all();
6513 windgoto((int)Rows - 1, 0);
6514 out_char('\n');
6515 out_flush();
6516 stoptermcap();
6517 out_flush(); /* needed for SUN to restore xterm buffer */
6518#ifdef FEAT_TITLE
6519 mch_restore_title(3); /* restore window titles */
6520#endif
6521 ui_suspend(); /* call machine specific function */
6522#ifdef FEAT_TITLE
6523 maketitle();
6524 resettitle(); /* force updating the title */
6525#endif
6526 starttermcap();
6527 scroll_start(); /* scroll screen before redrawing */
6528 redraw_later_clear();
6529 shell_resized(); /* may have resized window */
6530 }
6531}
6532
6533/*
6534 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6535 */
6536 static void
6537ex_exit(eap)
6538 exarg_T *eap;
6539{
6540#ifdef FEAT_CMDWIN
6541 if (cmdwin_type != 0)
6542 {
6543 cmdwin_result = Ctrl_C;
6544 return;
6545 }
6546#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006547 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006548 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006549 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006550 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006551 return;
6552 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006553#ifdef FEAT_AUTOCMD
6554 if (curbuf_locked())
6555 return;
6556#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006557
6558 /*
6559 * if more files or windows we won't exit
6560 */
6561 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6562 exiting = TRUE;
6563 if ( ((eap->cmdidx == CMD_wq
6564 || curbufIsChanged())
6565 && do_write(eap) == FAIL)
6566 || check_more(TRUE, eap->forceit) == FAIL
6567 || (only_one_window() && check_changed_any(eap->forceit)))
6568 {
6569 not_exiting();
6570 }
6571 else
6572 {
6573#ifdef FEAT_WINDOWS
6574 if (only_one_window()) /* quit last window, exit Vim */
6575#endif
6576 getout(0);
6577#ifdef FEAT_WINDOWS
6578# ifdef FEAT_GUI
6579 need_mouse_correct = TRUE;
6580# endif
6581 /* quit current window, may free buffer */
6582 win_close(curwin, !P_HID(curwin->w_buffer));
6583#endif
6584 }
6585}
6586
6587/*
6588 * ":print", ":list", ":number".
6589 */
6590 static void
6591ex_print(eap)
6592 exarg_T *eap;
6593{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006594 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6595 EMSG(_(e_emptybuf));
6596 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006598 for ( ;!got_int; ui_breakcheck())
6599 {
6600 print_line(eap->line1,
6601 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6602 || (eap->flags & EXFLAG_NR)),
6603 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6604 if (++eap->line1 > eap->line2)
6605 break;
6606 out_flush(); /* show one line at a time */
6607 }
6608 setpcmark();
6609 /* put cursor at last line */
6610 curwin->w_cursor.lnum = eap->line2;
6611 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612 }
6613
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615}
6616
6617#ifdef FEAT_BYTEOFF
6618 static void
6619ex_goto(eap)
6620 exarg_T *eap;
6621{
6622 goto_byte(eap->line2);
6623}
6624#endif
6625
6626/*
6627 * ":shell".
6628 */
6629/*ARGSUSED*/
6630 static void
6631ex_shell(eap)
6632 exarg_T *eap;
6633{
6634 do_shell(NULL, 0);
6635}
6636
6637#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6638 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006639 || defined(FEAT_GUI_MSWIN) \
6640 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 || defined(PROTO)
6642
6643/*
6644 * Handle a file drop. The code is here because a drop is *nearly* like an
6645 * :args command, but not quite (we have a list of exact filenames, so we
6646 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6647 * code is very similar to :args and hence needs access to a lot of the static
6648 * functions in this file.
6649 *
6650 * The list should be allocated using alloc(), as should each item in the
6651 * list. This function takes over responsibility for freeing the list.
6652 *
6653 * XXX The list is made into the arggument list. This is freed using
6654 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6655 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6656 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6657 * file functionality is (currently) not in EMX this is not presently a
6658 * problem.
6659 */
6660 void
6661handle_drop(filec, filev, split)
6662 int filec; /* the number of files dropped */
6663 char_u **filev; /* the list of files dropped */
6664 int split; /* force splitting the window */
6665{
6666 exarg_T ea;
6667 int save_msg_scroll = msg_scroll;
6668
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006669 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006670 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006672#ifdef FEAT_AUTOCMD
6673 if (curbuf_locked())
6674 return;
6675#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676
6677 /* Check whether the current buffer is changed. If so, we will need
6678 * to split the current window or data could be lost.
6679 * We don't need to check if the 'hidden' option is set, as in this
6680 * case the buffer won't be lost.
6681 */
6682 if (!P_HID(curbuf) && !split)
6683 {
6684 ++emsg_off;
6685 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6686 --emsg_off;
6687 }
6688 if (split)
6689 {
6690# ifdef FEAT_WINDOWS
6691 if (win_split(0, 0) == FAIL)
6692 return;
6693# ifdef FEAT_SCROLLBIND
6694 curwin->w_p_scb = FALSE;
6695# endif
6696
6697 /* When splitting the window, create a new alist. Otherwise the
6698 * existing one is overwritten. */
6699 alist_unlink(curwin->w_alist);
6700 alist_new();
6701# else
6702 return; /* can't split, always fail */
6703# endif
6704 }
6705
6706 /*
6707 * Set up the new argument list.
6708 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006709 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710
6711 /*
6712 * Move to the first file.
6713 */
6714 /* Fake up a minimal "next" command for do_argfile() */
6715 vim_memset(&ea, 0, sizeof(ea));
6716 ea.cmd = (char_u *)"next";
6717 do_argfile(&ea, 0);
6718
6719 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6720 * mode that is not needed here. */
6721 need_start_insertmode = FALSE;
6722
6723 /* Restore msg_scroll, otherwise a following command may cause scrolling
6724 * unexpectedly. The screen will be redrawn by the caller, thus
6725 * msg_scroll being set by displaying a message is irrelevant. */
6726 msg_scroll = save_msg_scroll;
6727}
6728#endif
6729
Bram Moolenaar071d4272004-06-13 20:20:40 +00006730/*
6731 * Clear an argument list: free all file names and reset it to zero entries.
6732 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006733 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734alist_clear(al)
6735 alist_T *al;
6736{
6737 while (--al->al_ga.ga_len >= 0)
6738 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6739 ga_clear(&al->al_ga);
6740}
6741
6742/*
6743 * Init an argument list.
6744 */
6745 void
6746alist_init(al)
6747 alist_T *al;
6748{
6749 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6750}
6751
6752#if defined(FEAT_WINDOWS) || defined(PROTO)
6753
6754/*
6755 * Remove a reference from an argument list.
6756 * Ignored when the argument list is the global one.
6757 * If the argument list is no longer used by any window, free it.
6758 */
6759 void
6760alist_unlink(al)
6761 alist_T *al;
6762{
6763 if (al != &global_alist && --al->al_refcount <= 0)
6764 {
6765 alist_clear(al);
6766 vim_free(al);
6767 }
6768}
6769
6770# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6771/*
6772 * Create a new argument list and use it for the current window.
6773 */
6774 void
6775alist_new()
6776{
6777 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6778 if (curwin->w_alist == NULL)
6779 {
6780 curwin->w_alist = &global_alist;
6781 ++global_alist.al_refcount;
6782 }
6783 else
6784 {
6785 curwin->w_alist->al_refcount = 1;
6786 alist_init(curwin->w_alist);
6787 }
6788}
6789# endif
6790#endif
6791
6792#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6793/*
6794 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006795 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6796 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006797 */
6798 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006799alist_expand(fnum_list, fnum_len)
6800 int *fnum_list;
6801 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802{
6803 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006804 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805 char_u **new_arg_files;
6806 int new_arg_file_count;
6807 char_u *save_p_su = p_su;
6808 int i;
6809
6810 /* Don't use 'suffixes' here. This should work like the shell did the
6811 * expansion. Also, the vimrc file isn't read yet, thus the user
6812 * can't set the options. */
6813 p_su = empty_option;
6814 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6815 if (old_arg_files != NULL)
6816 {
6817 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006818 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6819 old_arg_count = GARGCOUNT;
6820 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 &new_arg_file_count, &new_arg_files,
6822 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6823 && new_arg_file_count > 0)
6824 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006825 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6826 TRUE, fnum_list, fnum_len);
6827 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006828 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006829 }
6830 p_su = save_p_su;
6831}
6832#endif
6833
6834/*
6835 * Set the argument list for the current window.
6836 * Takes over the allocated files[] and the allocated fnames in it.
6837 */
6838 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006839alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006840 alist_T *al;
6841 int count;
6842 char_u **files;
6843 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006844 int *fnum_list;
6845 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846{
6847 int i;
6848
6849 alist_clear(al);
6850 if (ga_grow(&al->al_ga, count) == OK)
6851 {
6852 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006853 {
6854 if (got_int)
6855 {
6856 /* When adding many buffers this can take a long time. Allow
6857 * interrupting here. */
6858 while (i < count)
6859 vim_free(files[i++]);
6860 break;
6861 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006862
6863 /* May set buffer name of a buffer previously used for the
6864 * argument list, so that it's re-used by alist_add. */
6865 if (fnum_list != NULL && i < fnum_len)
6866 buf_set_name(fnum_list[i], files[i]);
6867
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006869 ui_breakcheck();
6870 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006871 vim_free(files);
6872 }
6873 else
6874 FreeWild(count, files);
6875#ifdef FEAT_WINDOWS
6876 if (al == &global_alist)
6877#endif
6878 arg_had_last = FALSE;
6879}
6880
6881/*
6882 * Add file "fname" to argument list "al".
6883 * "fname" must have been allocated and "al" must have been checked for room.
6884 */
6885 void
6886alist_add(al, fname, set_fnum)
6887 alist_T *al;
6888 char_u *fname;
6889 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6890{
6891 if (fname == NULL) /* don't add NULL file names */
6892 return;
6893#ifdef BACKSLASH_IN_FILENAME
6894 slash_adjust(fname);
6895#endif
6896 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6897 if (set_fnum > 0)
6898 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6899 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6900 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006901}
6902
6903#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6904/*
6905 * Adjust slashes in file names. Called after 'shellslash' was set.
6906 */
6907 void
6908alist_slash_adjust()
6909{
6910 int i;
6911# ifdef FEAT_WINDOWS
6912 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006913 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914# endif
6915
6916 for (i = 0; i < GARGCOUNT; ++i)
6917 if (GARGLIST[i].ae_fname != NULL)
6918 slash_adjust(GARGLIST[i].ae_fname);
6919# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006920 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 if (wp->w_alist != &global_alist)
6922 for (i = 0; i < WARGCOUNT(wp); ++i)
6923 if (WARGLIST(wp)[i].ae_fname != NULL)
6924 slash_adjust(WARGLIST(wp)[i].ae_fname);
6925# endif
6926}
6927#endif
6928
6929/*
6930 * ":preserve".
6931 */
6932/*ARGSUSED*/
6933 static void
6934ex_preserve(eap)
6935 exarg_T *eap;
6936{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006937 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006938 ml_preserve(curbuf, TRUE);
6939}
6940
6941/*
6942 * ":recover".
6943 */
6944 static void
6945ex_recover(eap)
6946 exarg_T *eap;
6947{
6948 /* Set recoverymode right away to avoid the ATTENTION prompt. */
6949 recoverymode = TRUE;
6950 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
6951 && (*eap->arg == NUL
6952 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
6953 ml_recover();
6954 recoverymode = FALSE;
6955}
6956
6957/*
6958 * Command modifier used in a wrong way.
6959 */
6960 static void
6961ex_wrongmodifier(eap)
6962 exarg_T *eap;
6963{
6964 eap->errmsg = e_invcmd;
6965}
6966
6967#ifdef FEAT_WINDOWS
6968/*
6969 * :sview [+command] file split window with new file, read-only
6970 * :split [[+command] file] split window with current or new file
6971 * :vsplit [[+command] file] split window vertically with current or new file
6972 * :new [[+command] file] split window with no or new file
6973 * :vnew [[+command] file] split vertically window with no or new file
6974 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006975 *
6976 * :tabedit open new Tab page with empty window
6977 * :tabedit [+command] file open new Tab page and edit "file"
6978 * :tabnew [[+command] file] just like :tabedit
6979 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980 */
6981 void
6982ex_splitview(eap)
6983 exarg_T *eap;
6984{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006985 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006986# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006988# endif
6989# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006990 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006991# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006993# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
6995 {
6996 ex_ni(eap);
6997 return;
6998 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006999# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007001# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007003# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007005# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 /* A ":split" in the quickfix window works like ":new". Don't want two
7007 * quickfix windows. */
7008 if (bt_quickfix(curbuf))
7009 {
7010 if (eap->cmdidx == CMD_split)
7011 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007012# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013 if (eap->cmdidx == CMD_vsplit)
7014 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007015# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007016 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007017# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007019# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007020 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021 {
7022 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7023 FNAME_MESS, TRUE, curbuf->b_ffname);
7024 if (fname == NULL)
7025 goto theend;
7026 eap->arg = fname;
7027 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007028# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007030# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007032# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007034# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007036# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037 && eap->cmdidx != CMD_new)
7038 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007039 if (
7040# ifdef FEAT_GUI
7041 !gui.in_use &&
7042# endif
7043 au_has_group((char_u *)"FileExplorer"))
7044 {
7045 /* No browsing supported but we do have the file explorer:
7046 * Edit the directory. */
7047 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7048 eap->arg = (char_u *)".";
7049 }
7050 else
7051 {
7052 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007054 if (fname == NULL)
7055 goto theend;
7056 eap->arg = fname;
7057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058 }
7059 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007062 /*
7063 * Either open new tab page or split the window.
7064 */
7065 if (eap->cmdidx == CMD_tabedit
7066 || eap->cmdidx == CMD_tabfind
7067 || eap->cmdidx == CMD_tabnew)
7068 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007069 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7070 : eap->addr_count == 0 ? 0
7071 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007072 {
7073 do_exedit(eap, NULL);
7074
7075 /* set the alternate buffer for the window we came from */
7076 if (curwin != old_curwin
7077 && win_valid(old_curwin)
7078 && old_curwin->w_buffer != curbuf
7079 && !cmdmod.keepalt)
7080 old_curwin->w_alt_fnum = curbuf->b_fnum;
7081 }
7082 }
7083 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7085 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007086# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087 /* Reset 'scrollbind' when editing another file, but keep it when
7088 * doing ":split" without arguments. */
7089 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007090# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007092# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 )
7094 curwin->w_p_scb = FALSE;
7095 else
7096 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007097# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098 do_exedit(eap, old_curwin);
7099 }
7100
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007101# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007103# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007105# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106theend:
7107 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007108# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007110
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007111#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007112/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007113 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007114 */
7115 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007116tabpage_new()
7117{
7118 exarg_T ea;
7119
7120 vim_memset(&ea, 0, sizeof(ea));
7121 ea.cmdidx = CMD_tabnew;
7122 ea.cmd = (char_u *)"tabn";
7123 ea.arg = (char_u *)"";
7124 ex_splitview(&ea);
7125}
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007126#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007127
7128/*
7129 * :tabnext command
7130 */
7131 static void
7132ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007133 exarg_T *eap;
7134{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007135 switch (eap->cmdidx)
7136 {
7137 case CMD_tabfirst:
7138 case CMD_tabrewind:
7139 goto_tabpage(1);
7140 break;
7141 case CMD_tablast:
7142 goto_tabpage(9999);
7143 break;
7144 case CMD_tabprevious:
7145 case CMD_tabNext:
7146 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7147 break;
7148 default: /* CMD_tabnext */
7149 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7150 break;
7151 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007152}
7153
7154/*
7155 * :tabmove command
7156 */
7157 static void
7158ex_tabmove(eap)
7159 exarg_T *eap;
7160{
7161 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007162}
7163
7164/*
7165 * :tabs command: List tabs and their contents.
7166 */
7167/*ARGSUSED*/
7168 static void
7169ex_tabs(eap)
7170 exarg_T *eap;
7171{
7172 tabpage_T *tp;
7173 win_T *wp;
7174 int tabcount = 1;
7175
7176 msg_start();
7177 msg_scroll = TRUE;
7178 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7179 {
7180 msg_putchar('\n');
7181 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7182 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7183 out_flush(); /* output one line at a time */
7184 ui_breakcheck();
7185
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007186 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007187 wp = firstwin;
7188 else
7189 wp = tp->tp_firstwin;
7190 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7191 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007192 msg_putchar('\n');
7193 msg_putchar(wp == curwin ? '>' : ' ');
7194 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007195 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7196 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007197 if (buf_spname(wp->w_buffer) != NULL)
7198 STRCPY(IObuff, buf_spname(wp->w_buffer));
7199 else
7200 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7201 IObuff, IOSIZE, TRUE);
7202 msg_outtrans(IObuff);
7203 out_flush(); /* output one line at a time */
7204 ui_breakcheck();
7205 }
7206 }
7207}
7208
7209#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210
7211/*
7212 * ":mode": Set screen mode.
7213 * If no argument given, just get the screen size and redraw.
7214 */
7215 static void
7216ex_mode(eap)
7217 exarg_T *eap;
7218{
7219 if (*eap->arg == NUL)
7220 shell_resized();
7221 else
7222 mch_screenmode(eap->arg);
7223}
7224
7225#ifdef FEAT_WINDOWS
7226/*
7227 * ":resize".
7228 * set, increment or decrement current window height
7229 */
7230 static void
7231ex_resize(eap)
7232 exarg_T *eap;
7233{
7234 int n;
7235 win_T *wp = curwin;
7236
7237 if (eap->addr_count > 0)
7238 {
7239 n = eap->line2;
7240 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7241 ;
7242 }
7243
7244#ifdef FEAT_GUI
7245 need_mouse_correct = TRUE;
7246#endif
7247 n = atol((char *)eap->arg);
7248#ifdef FEAT_VERTSPLIT
7249 if (cmdmod.split & WSP_VERT)
7250 {
7251 if (*eap->arg == '-' || *eap->arg == '+')
7252 n += W_WIDTH(curwin);
7253 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7254 n = 9999;
7255 win_setwidth_win((int)n, wp);
7256 }
7257 else
7258#endif
7259 {
7260 if (*eap->arg == '-' || *eap->arg == '+')
7261 n += curwin->w_height;
7262 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7263 n = 9999;
7264 win_setheight_win((int)n, wp);
7265 }
7266}
7267#endif
7268
7269/*
7270 * ":find [+command] <file>" command.
7271 */
7272 static void
7273ex_find(eap)
7274 exarg_T *eap;
7275{
7276#ifdef FEAT_SEARCHPATH
7277 char_u *fname;
7278 int count;
7279
7280 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7281 TRUE, curbuf->b_ffname);
7282 if (eap->addr_count > 0)
7283 {
7284 /* Repeat finding the file "count" times. This matters when it
7285 * appears several times in the path. */
7286 count = eap->line2;
7287 while (fname != NULL && --count > 0)
7288 {
7289 vim_free(fname);
7290 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7291 FALSE, curbuf->b_ffname);
7292 }
7293 }
7294
7295 if (fname != NULL)
7296 {
7297 eap->arg = fname;
7298#endif
7299 do_exedit(eap, NULL);
7300#ifdef FEAT_SEARCHPATH
7301 vim_free(fname);
7302 }
7303#endif
7304}
7305
7306/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007307 * ":open" simulation: for now just work like ":visual".
7308 */
7309 static void
7310ex_open(eap)
7311 exarg_T *eap;
7312{
7313 regmatch_T regmatch;
7314 char_u *p;
7315
7316 curwin->w_cursor.lnum = eap->line2;
7317 beginline(BL_SOL | BL_FIX);
7318 if (*eap->arg == '/')
7319 {
7320 /* ":open /pattern/": put cursor in column found with pattern */
7321 ++eap->arg;
7322 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7323 *p = NUL;
7324 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7325 if (regmatch.regprog != NULL)
7326 {
7327 regmatch.rm_ic = p_ic;
7328 p = ml_get_curline();
7329 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007330 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007331 else
7332 EMSG(_(e_nomatch));
7333 vim_free(regmatch.regprog);
7334 }
7335 /* Move to the NUL, ignore any other arguments. */
7336 eap->arg += STRLEN(eap->arg);
7337 }
7338 check_cursor();
7339
7340 eap->cmdidx = CMD_visual;
7341 do_exedit(eap, NULL);
7342}
7343
7344/*
7345 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007346 */
7347 static void
7348ex_edit(eap)
7349 exarg_T *eap;
7350{
7351 do_exedit(eap, NULL);
7352}
7353
7354/*
7355 * ":edit <file>" command and alikes.
7356 */
7357/*ARGSUSED*/
7358 void
7359do_exedit(eap, old_curwin)
7360 exarg_T *eap;
7361 win_T *old_curwin; /* curwin before doing a split or NULL */
7362{
7363 int n;
7364#ifdef FEAT_WINDOWS
7365 int need_hide;
7366#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007367 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007368
7369 /*
7370 * ":vi" command ends Ex mode.
7371 */
7372 if (exmode_active && (eap->cmdidx == CMD_visual
7373 || eap->cmdidx == CMD_view))
7374 {
7375 exmode_active = FALSE;
7376 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007377 {
7378 /* Special case: ":global/pat/visual\NLvi-commands" */
7379 if (global_busy)
7380 {
7381 int rd = RedrawingDisabled;
7382 int nwr = no_wait_return;
7383 int ms = msg_scroll;
7384#ifdef FEAT_GUI
7385 int he = hold_gui_events;
7386#endif
7387
7388 if (eap->nextcmd != NULL)
7389 {
7390 stuffReadbuff(eap->nextcmd);
7391 eap->nextcmd = NULL;
7392 }
7393
7394 if (exmode_was != EXMODE_VIM)
7395 settmode(TMODE_RAW);
7396 RedrawingDisabled = 0;
7397 no_wait_return = 0;
7398 need_wait_return = FALSE;
7399 msg_scroll = 0;
7400#ifdef FEAT_GUI
7401 hold_gui_events = 0;
7402#endif
7403 must_redraw = CLEAR;
7404
7405 main_loop(FALSE, TRUE);
7406
7407 RedrawingDisabled = rd;
7408 no_wait_return = nwr;
7409 msg_scroll = ms;
7410#ifdef FEAT_GUI
7411 hold_gui_events = he;
7412#endif
7413 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007416 }
7417
7418 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007419 || eap->cmdidx == CMD_tabnew
7420 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421#ifdef FEAT_VERTSPLIT
7422 || eap->cmdidx == CMD_vnew
7423#endif
7424 ) && *eap->arg == NUL)
7425 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007426 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007427 setpcmark();
7428 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7429 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7430 }
7431 else if ((eap->cmdidx != CMD_split
7432#ifdef FEAT_VERTSPLIT
7433 && eap->cmdidx != CMD_vsplit
7434#endif
7435 )
7436 || *eap->arg != NUL
7437#ifdef FEAT_BROWSE
7438 || cmdmod.browse
7439#endif
7440 )
7441 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007442#ifdef FEAT_AUTOCMD
7443 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7444 * can bring us here, others are stopped earlier. */
7445 if (*eap->arg != NUL && curbuf_locked())
7446 return;
7447#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007448 n = readonlymode;
7449 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7450 readonlymode = TRUE;
7451 else if (eap->cmdidx == CMD_enew)
7452 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7453 empty buffer */
7454 setpcmark();
7455 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7456 NULL, eap,
7457 /* ":edit" goes to first line if Vi compatible */
7458 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7459 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7460 ? ECMD_ONE : eap->do_ecmd_lnum,
7461 (P_HID(curbuf) ? ECMD_HIDE : 0)
7462 + (eap->forceit ? ECMD_FORCEIT : 0)
7463#ifdef FEAT_LISTCMDS
7464 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7465#endif
7466 ) == FAIL)
7467 {
7468 /* Editing the file failed. If the window was split, close it. */
7469#ifdef FEAT_WINDOWS
7470 if (old_curwin != NULL)
7471 {
7472 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7473 if (!need_hide || P_HID(curbuf))
7474 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007475# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7476 cleanup_T cs;
7477
7478 /* Reset the error/interrupt/exception state here so that
7479 * aborting() returns FALSE when closing a window. */
7480 enter_cleanup(&cs);
7481# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482# ifdef FEAT_GUI
7483 need_mouse_correct = TRUE;
7484# endif
7485 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007486
7487# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7488 /* Restore the error/interrupt/exception state if not
7489 * discarded by a new aborting error, interrupt, or
7490 * uncaught exception. */
7491 leave_cleanup(&cs);
7492# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007493 }
7494 }
7495#endif
7496 }
7497 else if (readonlymode && curbuf->b_nwindows == 1)
7498 {
7499 /* When editing an already visited buffer, 'readonly' won't be set
7500 * but the previous value is kept. With ":view" and ":sview" we
7501 * want the file to be readonly, except when another window is
7502 * editing the same buffer. */
7503 curbuf->b_p_ro = TRUE;
7504 }
7505 readonlymode = n;
7506 }
7507 else
7508 {
7509 if (eap->do_ecmd_cmd != NULL)
7510 do_cmdline_cmd(eap->do_ecmd_cmd);
7511#ifdef FEAT_TITLE
7512 n = curwin->w_arg_idx_invalid;
7513#endif
7514 check_arg_idx(curwin);
7515#ifdef FEAT_TITLE
7516 if (n != curwin->w_arg_idx_invalid)
7517 maketitle();
7518#endif
7519 }
7520
7521#ifdef FEAT_WINDOWS
7522 /*
7523 * if ":split file" worked, set alternate file name in old window to new
7524 * file
7525 */
7526 if (old_curwin != NULL
7527 && *eap->arg != NUL
7528 && curwin != old_curwin
7529 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007530 && old_curwin->w_buffer != curbuf
7531 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007532 old_curwin->w_alt_fnum = curbuf->b_fnum;
7533#endif
7534
7535 ex_no_reprint = TRUE;
7536}
7537
7538#ifndef FEAT_GUI
7539/*
7540 * ":gui" and ":gvim" when there is no GUI.
7541 */
7542 static void
7543ex_nogui(eap)
7544 exarg_T *eap;
7545{
7546 eap->errmsg = e_nogvim;
7547}
7548#endif
7549
7550#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7551 static void
7552ex_tearoff(eap)
7553 exarg_T *eap;
7554{
7555 gui_make_tearoff(eap->arg);
7556}
7557#endif
7558
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007559#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 static void
7561ex_popup(eap)
7562 exarg_T *eap;
7563{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007564 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007565}
7566#endif
7567
7568/*ARGSUSED*/
7569 static void
7570ex_swapname(eap)
7571 exarg_T *eap;
7572{
7573 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7574 MSG(_("No swap file"));
7575 else
7576 msg(curbuf->b_ml.ml_mfp->mf_fname);
7577}
7578
7579/*
7580 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7581 * offset.
7582 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7583 */
7584/*ARGSUSED*/
7585 static void
7586ex_syncbind(eap)
7587 exarg_T *eap;
7588{
7589#ifdef FEAT_SCROLLBIND
7590 win_T *wp;
7591 long topline;
7592 long y;
7593 linenr_T old_linenr = curwin->w_cursor.lnum;
7594
7595 setpcmark();
7596
7597 /*
7598 * determine max topline
7599 */
7600 if (curwin->w_p_scb)
7601 {
7602 topline = curwin->w_topline;
7603 for (wp = firstwin; wp; wp = wp->w_next)
7604 {
7605 if (wp->w_p_scb && wp->w_buffer)
7606 {
7607 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7608 if (topline > y)
7609 topline = y;
7610 }
7611 }
7612 if (topline < 1)
7613 topline = 1;
7614 }
7615 else
7616 {
7617 topline = 1;
7618 }
7619
7620
7621 /*
7622 * set all scrollbind windows to the same topline
7623 */
7624 wp = curwin;
7625 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7626 {
7627 if (curwin->w_p_scb)
7628 {
7629 y = topline - curwin->w_topline;
7630 if (y > 0)
7631 scrollup(y, TRUE);
7632 else
7633 scrolldown(-y, TRUE);
7634 curwin->w_scbind_pos = topline;
7635 redraw_later(VALID);
7636 cursor_correct();
7637#ifdef FEAT_WINDOWS
7638 curwin->w_redr_status = TRUE;
7639#endif
7640 }
7641 }
7642 curwin = wp;
7643 if (curwin->w_p_scb)
7644 {
7645 did_syncbind = TRUE;
7646 checkpcmark();
7647 if (old_linenr != curwin->w_cursor.lnum)
7648 {
7649 char_u ctrl_o[2];
7650
7651 ctrl_o[0] = Ctrl_O;
7652 ctrl_o[1] = 0;
7653 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7654 }
7655 }
7656#endif
7657}
7658
7659
7660 static void
7661ex_read(eap)
7662 exarg_T *eap;
7663{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007664 int i;
7665 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7666 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007667
7668 if (eap->usefilter) /* :r!cmd */
7669 do_bang(1, eap, FALSE, FALSE, TRUE);
7670 else
7671 {
7672 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7673 return;
7674
7675#ifdef FEAT_BROWSE
7676 if (cmdmod.browse)
7677 {
7678 char_u *browseFile;
7679
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007680 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007681 NULL, NULL, NULL, curbuf);
7682 if (browseFile != NULL)
7683 {
7684 i = readfile(browseFile, NULL,
7685 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7686 vim_free(browseFile);
7687 }
7688 else
7689 i = OK;
7690 }
7691 else
7692#endif
7693 if (*eap->arg == NUL)
7694 {
7695 if (check_fname() == FAIL) /* check for no file name */
7696 return;
7697 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7698 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7699 }
7700 else
7701 {
7702 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7703 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7704 i = readfile(eap->arg, NULL,
7705 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7706
7707 }
7708 if (i == FAIL)
7709 {
7710#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7711 if (!aborting())
7712#endif
7713 EMSG2(_(e_notopen), eap->arg);
7714 }
7715 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007716 {
7717 if (empty && exmode_active)
7718 {
7719 /* Delete the empty line that remains. Historically ex does
7720 * this but vi doesn't. */
7721 if (eap->line2 == 0)
7722 lnum = curbuf->b_ml.ml_line_count;
7723 else
7724 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007725 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007726 {
7727 ml_delete(lnum, FALSE);
7728 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007729 if (curwin->w_cursor.lnum > 1
7730 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007731 --curwin->w_cursor.lnum;
7732 }
7733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007734 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007735 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007736 }
7737}
7738
Bram Moolenaarea408852005-06-25 22:49:46 +00007739static char_u *prev_dir = NULL;
7740
7741#if defined(EXITFREE) || defined(PROTO)
7742 void
7743free_cd_dir()
7744{
7745 vim_free(prev_dir);
7746}
7747#endif
7748
7749
Bram Moolenaar071d4272004-06-13 20:20:40 +00007750/*
7751 * ":cd", ":lcd", ":chdir" and ":lchdir".
7752 */
7753 static void
7754ex_cd(eap)
7755 exarg_T *eap;
7756{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007757 char_u *new_dir;
7758 char_u *tofree;
7759
7760 new_dir = eap->arg;
7761#if !defined(UNIX) && !defined(VMS)
7762 /* for non-UNIX ":cd" means: print current directory */
7763 if (*new_dir == NUL)
7764 ex_pwd(NULL);
7765 else
7766#endif
7767 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007768 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7769 && !eap->forceit)
7770 {
7771 EMSG(_("E747: Cannot change directory, buffer is modifed (add ! to override)"));
7772 return;
7773 }
7774
Bram Moolenaar071d4272004-06-13 20:20:40 +00007775 /* ":cd -": Change to previous directory */
7776 if (STRCMP(new_dir, "-") == 0)
7777 {
7778 if (prev_dir == NULL)
7779 {
7780 EMSG(_("E186: No previous directory"));
7781 return;
7782 }
7783 new_dir = prev_dir;
7784 }
7785
7786 /* Save current directory for next ":cd -" */
7787 tofree = prev_dir;
7788 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7789 prev_dir = vim_strsave(NameBuff);
7790 else
7791 prev_dir = NULL;
7792
7793#if defined(UNIX) || defined(VMS)
7794 /* for UNIX ":cd" means: go to home directory */
7795 if (*new_dir == NUL)
7796 {
7797 /* use NameBuff for home directory name */
7798# ifdef VMS
7799 char_u *p;
7800
7801 p = mch_getenv((char_u *)"SYS$LOGIN");
7802 if (p == NULL || *p == NUL) /* empty is the same as not set */
7803 NameBuff[0] = NUL;
7804 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007805 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007806# else
7807 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7808# endif
7809 new_dir = NameBuff;
7810 }
7811#endif
7812 if (new_dir == NULL || vim_chdir(new_dir))
7813 EMSG(_(e_failed));
7814 else
7815 {
7816 vim_free(curwin->w_localdir);
7817 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7818 {
7819 /* If still in global directory, need to remember current
7820 * directory as global directory. */
7821 if (globaldir == NULL && prev_dir != NULL)
7822 globaldir = vim_strsave(prev_dir);
7823 /* Remember this local directory for the window. */
7824 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7825 curwin->w_localdir = vim_strsave(NameBuff);
7826 }
7827 else
7828 {
7829 /* We are now in the global directory, no need to remember its
7830 * name. */
7831 vim_free(globaldir);
7832 globaldir = NULL;
7833 curwin->w_localdir = NULL;
7834 }
7835
7836 shorten_fnames(TRUE);
7837
7838 /* Echo the new current directory if the command was typed. */
7839 if (KeyTyped)
7840 ex_pwd(eap);
7841 }
7842 vim_free(tofree);
7843 }
7844}
7845
7846/*
7847 * ":pwd".
7848 */
7849/*ARGSUSED*/
7850 static void
7851ex_pwd(eap)
7852 exarg_T *eap;
7853{
7854 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7855 {
7856#ifdef BACKSLASH_IN_FILENAME
7857 slash_adjust(NameBuff);
7858#endif
7859 msg(NameBuff);
7860 }
7861 else
7862 EMSG(_("E187: Unknown"));
7863}
7864
7865/*
7866 * ":=".
7867 */
7868 static void
7869ex_equal(eap)
7870 exarg_T *eap;
7871{
7872 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007873 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007874}
7875
7876 static void
7877ex_sleep(eap)
7878 exarg_T *eap;
7879{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007880 int n;
7881 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007882
7883 if (cursor_valid())
7884 {
7885 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7886 if (n >= 0)
7887 windgoto((int)n, curwin->w_wcol);
7888 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007889
7890 len = eap->line2;
7891 switch (*eap->arg)
7892 {
7893 case 'm': break;
7894 case NUL: len *= 1000L; break;
7895 default: EMSG2(_(e_invarg2), eap->arg); return;
7896 }
7897 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007898}
7899
7900/*
7901 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7902 */
7903 void
7904do_sleep(msec)
7905 long msec;
7906{
7907 long done;
7908
7909 cursor_on();
7910 out_flush();
7911 for (done = 0; !got_int && done < msec; done += 1000L)
7912 {
7913 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7914 ui_breakcheck();
7915 }
7916}
7917
7918 static void
7919do_exmap(eap, isabbrev)
7920 exarg_T *eap;
7921 int isabbrev;
7922{
7923 int mode;
7924 char_u *cmdp;
7925
7926 cmdp = eap->cmd;
7927 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7928
7929 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7930 eap->arg, mode, isabbrev))
7931 {
7932 case 1: EMSG(_(e_invarg));
7933 break;
7934 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7935 break;
7936 }
7937}
7938
7939/*
7940 * ":winsize" command (obsolete).
7941 */
7942 static void
7943ex_winsize(eap)
7944 exarg_T *eap;
7945{
7946 int w, h;
7947 char_u *arg = eap->arg;
7948 char_u *p;
7949
7950 w = getdigits(&arg);
7951 arg = skipwhite(arg);
7952 p = arg;
7953 h = getdigits(&arg);
7954 if (*p != NUL && *arg == NUL)
7955 set_shellsize(w, h, TRUE);
7956 else
7957 EMSG(_("E465: :winsize requires two number arguments"));
7958}
7959
7960#ifdef FEAT_WINDOWS
7961 static void
7962ex_wincmd(eap)
7963 exarg_T *eap;
7964{
7965 int xchar = NUL;
7966 char_u *p;
7967
7968 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
7969 {
7970 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
7971 if (eap->arg[1] == NUL)
7972 {
7973 EMSG(_(e_invarg));
7974 return;
7975 }
7976 xchar = eap->arg[1];
7977 p = eap->arg + 2;
7978 }
7979 else
7980 p = eap->arg + 1;
7981
7982 eap->nextcmd = check_nextcmd(p);
7983 p = skipwhite(p);
7984 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
7985 EMSG(_(e_invarg));
7986 else
7987 {
7988 /* Pass flags on for ":vertical wincmd ]". */
7989 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00007990 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007991 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
7992 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00007993 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007994 }
7995}
7996#endif
7997
Bram Moolenaar843ee412004-06-30 16:16:41 +00007998#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007999/*
8000 * ":winpos".
8001 */
8002 static void
8003ex_winpos(eap)
8004 exarg_T *eap;
8005{
8006 int x, y;
8007 char_u *arg = eap->arg;
8008 char_u *p;
8009
8010 if (*arg == NUL)
8011 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008012# if defined(FEAT_GUI) || defined(MSWIN)
8013# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008014 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008015# else
8016 if (mch_get_winpos(&x, &y) != FAIL)
8017# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008018 {
8019 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8020 msg(IObuff);
8021 }
8022 else
8023# endif
8024 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8025 }
8026 else
8027 {
8028 x = getdigits(&arg);
8029 arg = skipwhite(arg);
8030 p = arg;
8031 y = getdigits(&arg);
8032 if (*p == NUL || *arg != NUL)
8033 {
8034 EMSG(_("E466: :winpos requires two number arguments"));
8035 return;
8036 }
8037# ifdef FEAT_GUI
8038 if (gui.in_use)
8039 gui_mch_set_winpos(x, y);
8040 else if (gui.starting)
8041 {
8042 /* Remember the coordinates for when the window is opened. */
8043 gui_win_x = x;
8044 gui_win_y = y;
8045 }
8046# ifdef HAVE_TGETENT
8047 else
8048# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008049# else
8050# ifdef MSWIN
8051 mch_set_winpos(x, y);
8052# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008053# endif
8054# ifdef HAVE_TGETENT
8055 if (*T_CWP)
8056 term_set_winpos(x, y);
8057# endif
8058 }
8059}
8060#endif
8061
8062/*
8063 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8064 */
8065 static void
8066ex_operators(eap)
8067 exarg_T *eap;
8068{
8069 oparg_T oa;
8070
8071 clear_oparg(&oa);
8072 oa.regname = eap->regname;
8073 oa.start.lnum = eap->line1;
8074 oa.end.lnum = eap->line2;
8075 oa.line_count = eap->line2 - eap->line1 + 1;
8076 oa.motion_type = MLINE;
8077#ifdef FEAT_VIRTUALEDIT
8078 virtual_op = FALSE;
8079#endif
8080 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8081 {
8082 setpcmark();
8083 curwin->w_cursor.lnum = eap->line1;
8084 beginline(BL_SOL | BL_FIX);
8085 }
8086
8087 switch (eap->cmdidx)
8088 {
8089 case CMD_delete:
8090 oa.op_type = OP_DELETE;
8091 op_delete(&oa);
8092 break;
8093
8094 case CMD_yank:
8095 oa.op_type = OP_YANK;
8096 (void)op_yank(&oa, FALSE, TRUE);
8097 break;
8098
8099 default: /* CMD_rshift or CMD_lshift */
8100 if ((eap->cmdidx == CMD_rshift)
8101#ifdef FEAT_RIGHTLEFT
8102 ^ curwin->w_p_rl
8103#endif
8104 )
8105 oa.op_type = OP_RSHIFT;
8106 else
8107 oa.op_type = OP_LSHIFT;
8108 op_shift(&oa, FALSE, eap->amount);
8109 break;
8110 }
8111#ifdef FEAT_VIRTUALEDIT
8112 virtual_op = MAYBE;
8113#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008114 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008115}
8116
8117/*
8118 * ":put".
8119 */
8120 static void
8121ex_put(eap)
8122 exarg_T *eap;
8123{
8124 /* ":0put" works like ":1put!". */
8125 if (eap->line2 == 0)
8126 {
8127 eap->line2 = 1;
8128 eap->forceit = TRUE;
8129 }
8130 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008131 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8132 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008133}
8134
8135/*
8136 * Handle ":copy" and ":move".
8137 */
8138 static void
8139ex_copymove(eap)
8140 exarg_T *eap;
8141{
8142 long n;
8143
8144 n = get_address(&eap->arg, FALSE, FALSE);
8145 if (eap->arg == NULL) /* error detected */
8146 {
8147 eap->nextcmd = NULL;
8148 return;
8149 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008150 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008151
8152 /*
8153 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8154 */
8155 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8156 {
8157 EMSG(_(e_invaddr));
8158 return;
8159 }
8160
8161 if (eap->cmdidx == CMD_move)
8162 {
8163 if (do_move(eap->line1, eap->line2, n) == FAIL)
8164 return;
8165 }
8166 else
8167 ex_copy(eap->line1, eap->line2, n);
8168 u_clearline();
8169 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008170 ex_may_print(eap);
8171}
8172
8173/*
8174 * Print the current line if flags were given to the Ex command.
8175 */
8176 static void
8177ex_may_print(eap)
8178 exarg_T *eap;
8179{
8180 if (eap->flags != 0)
8181 {
8182 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8183 (eap->flags & EXFLAG_LIST));
8184 ex_no_reprint = TRUE;
8185 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008186}
8187
8188/*
8189 * ":smagic" and ":snomagic".
8190 */
8191 static void
8192ex_submagic(eap)
8193 exarg_T *eap;
8194{
8195 int magic_save = p_magic;
8196
8197 p_magic = (eap->cmdidx == CMD_smagic);
8198 do_sub(eap);
8199 p_magic = magic_save;
8200}
8201
8202/*
8203 * ":join".
8204 */
8205 static void
8206ex_join(eap)
8207 exarg_T *eap;
8208{
8209 curwin->w_cursor.lnum = eap->line1;
8210 if (eap->line1 == eap->line2)
8211 {
8212 if (eap->addr_count >= 2) /* :2,2join does nothing */
8213 return;
8214 if (eap->line2 == curbuf->b_ml.ml_line_count)
8215 {
8216 beep_flush();
8217 return;
8218 }
8219 ++eap->line2;
8220 }
8221 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8222 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008223 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008224}
8225
8226/*
8227 * ":[addr]@r" or ":[addr]*r": execute register
8228 */
8229 static void
8230ex_at(eap)
8231 exarg_T *eap;
8232{
8233 int c;
8234
8235 curwin->w_cursor.lnum = eap->line2;
8236
8237#ifdef USE_ON_FLY_SCROLL
8238 dont_scroll = TRUE; /* disallow scrolling here */
8239#endif
8240
8241 /* get the register name. No name means to use the previous one */
8242 c = *eap->arg;
8243 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8244 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008245 /* Put the register in the typeahead buffer with the "silent" flag. */
8246 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8247 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008248 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008249 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008251 else
8252 {
8253 int save_efr = exec_from_reg;
8254
8255 exec_from_reg = TRUE;
8256
8257 /*
8258 * Execute from the typeahead buffer.
8259 * Originally this didn't check for the typeahead buffer to be empty,
8260 * thus could read more Ex commands from stdin. It's not clear why,
8261 * it is certainly unexpected.
8262 */
8263 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8264 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8265
8266 exec_from_reg = save_efr;
8267 }
8268}
8269
8270/*
8271 * ":!".
8272 */
8273 static void
8274ex_bang(eap)
8275 exarg_T *eap;
8276{
8277 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8278}
8279
8280/*
8281 * ":undo".
8282 */
8283/*ARGSUSED*/
8284 static void
8285ex_undo(eap)
8286 exarg_T *eap;
8287{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008288 if (eap->addr_count == 1) /* :undo 123 */
8289 undo_time(eap->line2, FALSE, TRUE);
8290 else
8291 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008292}
8293
8294/*
8295 * ":redo".
8296 */
8297/*ARGSUSED*/
8298 static void
8299ex_redo(eap)
8300 exarg_T *eap;
8301{
8302 u_redo(1);
8303}
8304
8305/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008306 * ":earlier" and ":later".
8307 */
8308/*ARGSUSED*/
8309 static void
8310ex_later(eap)
8311 exarg_T *eap;
8312{
8313 long count = 0;
8314 int sec = FALSE;
8315 char_u *p = eap->arg;
8316
8317 if (*p == NUL)
8318 count = 1;
8319 else if (isdigit(*p))
8320 {
8321 count = getdigits(&p);
8322 switch (*p)
8323 {
8324 case 's': ++p; sec = TRUE; break;
8325 case 'm': ++p; sec = TRUE; count *= 60; break;
8326 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8327 }
8328 }
8329
8330 if (*p != NUL)
8331 EMSG2(_(e_invarg2), eap->arg);
8332 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008333 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008334}
8335
8336/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008337 * ":redir": start/stop redirection.
8338 */
8339 static void
8340ex_redir(eap)
8341 exarg_T *eap;
8342{
8343 char *mode;
8344 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008345 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008346
8347 if (STRICMP(eap->arg, "END") == 0)
8348 close_redir();
8349 else
8350 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008351 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008352 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008353 ++arg;
8354 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008355 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008356 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008357 mode = "a";
8358 }
8359 else
8360 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008361 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008362
8363 close_redir();
8364
8365 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008366 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008367 if (fname == NULL)
8368 return;
8369#ifdef FEAT_BROWSE
8370 if (cmdmod.browse)
8371 {
8372 char_u *browseFile;
8373
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008374 browseFile = do_browse(BROWSE_SAVE,
8375 (char_u *)_("Save Redirection"),
8376 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008377 if (browseFile == NULL)
8378 return; /* operation cancelled */
8379 vim_free(fname);
8380 fname = browseFile;
8381 eap->forceit = TRUE; /* since dialog already asked */
8382 }
8383#endif
8384
8385 redir_fd = open_exfile(fname, eap->forceit, mode);
8386 vim_free(fname);
8387 }
8388#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008389 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008390 {
8391 /* redirect to a register a-z (resp. A-Z for appending) */
8392 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008393 ++arg;
8394 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008395# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008396 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008397 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008398# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008399 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008400 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008401 redir_reg = *arg++;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008402 if (*arg == '>' && arg[1] == '>')
8403 arg += 2;
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008404 else if ((*arg == NUL || (*arg == '>' && arg[1] == NUL)) &&
8405 (islower(redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008406# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008407 || redir_reg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008408 || redir_reg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008409# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008410 || redir_reg == '"'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008411 {
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008412 if (*arg == '>')
8413 arg++;
8414
Bram Moolenaar071d4272004-06-13 20:20:40 +00008415 /* make register empty */
8416 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
8417 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008418 }
8419 if (*arg != NUL)
8420 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008421 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008422 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008423 }
8424 }
8425 else if (*arg == '=' && arg[1] == '>')
8426 {
8427 int append;
8428
8429 /* redirect to a variable */
8430 close_redir();
8431 arg += 2;
8432
8433 if (*arg == '>')
8434 {
8435 ++arg;
8436 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008437 }
8438 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008439 append = FALSE;
8440
8441 if (var_redir_start(skipwhite(arg), append) == OK)
8442 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008443 }
8444#endif
8445
8446 /* TODO: redirect to a buffer */
8447
Bram Moolenaar071d4272004-06-13 20:20:40 +00008448 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008449 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008450 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008451
8452 /* Make sure redirection is not off. Can happen for cmdline completion
8453 * that indirectly invokes a command to catch its output. */
8454 if (redir_fd != NULL
8455#ifdef FEAT_EVAL
8456 || redir_reg || redir_vname
8457#endif
8458 )
8459 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008460}
8461
8462/*
8463 * ":redraw": force redraw
8464 */
8465 static void
8466ex_redraw(eap)
8467 exarg_T *eap;
8468{
8469 int r = RedrawingDisabled;
8470 int p = p_lz;
8471
8472 RedrawingDisabled = 0;
8473 p_lz = FALSE;
8474 update_topline();
8475 update_screen(eap->forceit ? CLEAR :
8476#ifdef FEAT_VISUAL
8477 VIsual_active ? INVERTED :
8478#endif
8479 0);
8480#ifdef FEAT_TITLE
8481 if (need_maketitle)
8482 maketitle();
8483#endif
8484 RedrawingDisabled = r;
8485 p_lz = p;
8486
8487 /* Reset msg_didout, so that a message that's there is overwritten. */
8488 msg_didout = FALSE;
8489 msg_col = 0;
8490
8491 out_flush();
8492}
8493
8494/*
8495 * ":redrawstatus": force redraw of status line(s)
8496 */
8497/*ARGSUSED*/
8498 static void
8499ex_redrawstatus(eap)
8500 exarg_T *eap;
8501{
8502#if defined(FEAT_WINDOWS)
8503 int r = RedrawingDisabled;
8504 int p = p_lz;
8505
8506 RedrawingDisabled = 0;
8507 p_lz = FALSE;
8508 if (eap->forceit)
8509 status_redraw_all();
8510 else
8511 status_redraw_curbuf();
8512 update_screen(
8513# ifdef FEAT_VISUAL
8514 VIsual_active ? INVERTED :
8515# endif
8516 0);
8517 RedrawingDisabled = r;
8518 p_lz = p;
8519 out_flush();
8520#endif
8521}
8522
8523 static void
8524close_redir()
8525{
8526 if (redir_fd != NULL)
8527 {
8528 fclose(redir_fd);
8529 redir_fd = NULL;
8530 }
8531#ifdef FEAT_EVAL
8532 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008533 if (redir_vname)
8534 {
8535 var_redir_stop();
8536 redir_vname = 0;
8537 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008538#endif
8539}
8540
8541#if defined(FEAT_SESSION) && defined(USE_CRNL)
8542# define MKSESSION_NL
8543static int mksession_nl = FALSE; /* use NL only in put_eol() */
8544#endif
8545
8546/*
8547 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8548 */
8549 static void
8550ex_mkrc(eap)
8551 exarg_T *eap;
8552{
8553 FILE *fd;
8554 int failed = FALSE;
8555 char_u *fname;
8556#ifdef FEAT_BROWSE
8557 char_u *browseFile = NULL;
8558#endif
8559#ifdef FEAT_SESSION
8560 int view_session = FALSE;
8561 int using_vdir = FALSE; /* using 'viewdir'? */
8562 char_u *viewFile = NULL;
8563 unsigned *flagp;
8564#endif
8565
8566 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8567 {
8568#ifdef FEAT_SESSION
8569 view_session = TRUE;
8570#else
8571 ex_ni(eap);
8572 return;
8573#endif
8574 }
8575
8576#ifdef FEAT_SESSION
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008577 did_lcd = FALSE;
8578
Bram Moolenaar071d4272004-06-13 20:20:40 +00008579 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8580 if (eap->cmdidx == CMD_mkview
8581 && (*eap->arg == NUL
8582 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8583 {
8584 eap->forceit = TRUE;
8585 fname = get_view_file(*eap->arg);
8586 if (fname == NULL)
8587 return;
8588 viewFile = fname;
8589 using_vdir = TRUE;
8590 }
8591 else
8592#endif
8593 if (*eap->arg != NUL)
8594 fname = eap->arg;
8595 else if (eap->cmdidx == CMD_mkvimrc)
8596 fname = (char_u *)VIMRC_FILE;
8597#ifdef FEAT_SESSION
8598 else if (eap->cmdidx == CMD_mksession)
8599 fname = (char_u *)SESSION_FILE;
8600#endif
8601 else
8602 fname = (char_u *)EXRC_FILE;
8603
8604#ifdef FEAT_BROWSE
8605 if (cmdmod.browse)
8606 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008607 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008608# ifdef FEAT_SESSION
8609 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8610 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8611# endif
8612 (char_u *)_("Save Setup"),
8613 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8614 if (browseFile == NULL)
8615 goto theend;
8616 fname = browseFile;
8617 eap->forceit = TRUE; /* since dialog already asked */
8618 }
8619#endif
8620
8621#if defined(FEAT_SESSION) && defined(vim_mkdir)
8622 /* When using 'viewdir' may have to create the directory. */
8623 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008624 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008625#endif
8626
8627 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8628 if (fd != NULL)
8629 {
8630#ifdef FEAT_SESSION
8631 if (eap->cmdidx == CMD_mkview)
8632 flagp = &vop_flags;
8633 else
8634 flagp = &ssop_flags;
8635#endif
8636
8637#ifdef MKSESSION_NL
8638 /* "unix" in 'sessionoptions': use NL line separator */
8639 if (view_session && (*flagp & SSOP_UNIX))
8640 mksession_nl = TRUE;
8641#endif
8642
8643 /* Write the version command for :mkvimrc */
8644 if (eap->cmdidx == CMD_mkvimrc)
8645 (void)put_line(fd, "version 6.0");
8646
8647#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008648 if (eap->cmdidx == CMD_mksession)
8649 {
8650 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8651 failed = TRUE;
8652 }
8653
Bram Moolenaar071d4272004-06-13 20:20:40 +00008654 if (eap->cmdidx != CMD_mkview)
8655#endif
8656 {
8657 /* Write setting 'compatible' first, because it has side effects.
8658 * For that same reason only do it when needed. */
8659 if (p_cp)
8660 (void)put_line(fd, "if !&cp | set cp | endif");
8661 else
8662 (void)put_line(fd, "if &cp | set nocp | endif");
8663 }
8664
8665#ifdef FEAT_SESSION
8666 if (!view_session
8667 || (eap->cmdidx == CMD_mksession
8668 && (*flagp & SSOP_OPTIONS)))
8669#endif
8670 failed |= (makemap(fd, NULL) == FAIL
8671 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8672
8673#ifdef FEAT_SESSION
8674 if (!failed && view_session)
8675 {
8676 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8677 failed = TRUE;
8678 if (eap->cmdidx == CMD_mksession)
8679 {
8680 char_u dirnow[MAXPATHL]; /* current directory */
8681
8682 /*
8683 * Change to session file's dir.
8684 */
8685 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8686 || mch_chdir((char *)dirnow) != 0)
8687 *dirnow = NUL;
8688 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8689 {
8690 if (vim_chdirfile(fname) == OK)
8691 shorten_fnames(TRUE);
8692 }
8693 else if (*dirnow != NUL
8694 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8695 {
8696 (void)mch_chdir((char *)globaldir);
8697 shorten_fnames(TRUE);
8698 }
8699
8700 failed |= (makeopens(fd, dirnow) == FAIL);
8701
8702 /* restore original dir */
8703 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8704 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8705 {
8706 if (mch_chdir((char *)dirnow) != 0)
8707 EMSG(_(e_prev_dir));
8708 shorten_fnames(TRUE);
8709 }
8710 }
8711 else
8712 {
8713 failed |= (put_view(fd, curwin, !using_vdir, flagp) == FAIL);
8714 }
8715 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8716 == FAIL)
8717 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008718 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8719 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008720 if (eap->cmdidx == CMD_mksession)
8721 {
8722 if (put_line(fd, "unlet SessionLoad") == FAIL)
8723 failed = TRUE;
8724 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008725 }
8726#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008727 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8728 failed = TRUE;
8729
Bram Moolenaar071d4272004-06-13 20:20:40 +00008730 failed |= fclose(fd);
8731
8732 if (failed)
8733 EMSG(_(e_write));
8734#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8735 else if (eap->cmdidx == CMD_mksession)
8736 {
8737 /* successful session write - set this_session var */
8738 char_u tbuf[MAXPATHL];
8739
8740 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8741 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8742 }
8743#endif
8744#ifdef MKSESSION_NL
8745 mksession_nl = FALSE;
8746#endif
8747 }
8748
8749#ifdef FEAT_BROWSE
8750theend:
8751 vim_free(browseFile);
8752#endif
8753#ifdef FEAT_SESSION
8754 vim_free(viewFile);
8755#endif
8756}
8757
Bram Moolenaardf177f62005-02-22 08:39:57 +00008758#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8759 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008760/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008761 int
8762vim_mkdir_emsg(name, prot)
8763 char_u *name;
8764 int prot;
8765{
8766 if (vim_mkdir(name, prot) != 0)
8767 {
8768 EMSG2(_("E739: Cannot create directory: %s"), name);
8769 return FAIL;
8770 }
8771 return OK;
8772}
8773#endif
8774
Bram Moolenaar071d4272004-06-13 20:20:40 +00008775/*
8776 * Open a file for writing for an Ex command, with some checks.
8777 * Return file descriptor, or NULL on failure.
8778 */
8779 FILE *
8780open_exfile(fname, forceit, mode)
8781 char_u *fname;
8782 int forceit;
8783 char *mode; /* "w" for create new file or "a" for append */
8784{
8785 FILE *fd;
8786
8787#ifdef UNIX
8788 /* with Unix it is possible to open a directory */
8789 if (mch_isdir(fname))
8790 {
8791 EMSG2(_(e_isadir2), fname);
8792 return NULL;
8793 }
8794#endif
8795 if (!forceit && *mode != 'a' && vim_fexists(fname))
8796 {
8797 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8798 return NULL;
8799 }
8800
8801 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8802 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8803
8804 return fd;
8805}
8806
8807/*
8808 * ":mark" and ":k".
8809 */
8810 static void
8811ex_mark(eap)
8812 exarg_T *eap;
8813{
8814 pos_T pos;
8815
8816 if (*eap->arg == NUL) /* No argument? */
8817 EMSG(_(e_argreq));
8818 else if (eap->arg[1] != NUL) /* more than one character? */
8819 EMSG(_(e_trailing));
8820 else
8821 {
8822 pos = curwin->w_cursor; /* save curwin->w_cursor */
8823 curwin->w_cursor.lnum = eap->line2;
8824 beginline(BL_WHITE | BL_FIX);
8825 if (setmark(*eap->arg) == FAIL) /* set mark */
8826 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8827 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8828 }
8829}
8830
8831/*
8832 * Update w_topline, w_leftcol and the cursor position.
8833 */
8834 void
8835update_topline_cursor()
8836{
8837 check_cursor(); /* put cursor on valid line */
8838 update_topline();
8839 if (!curwin->w_p_wrap)
8840 validate_cursor();
8841 update_curswant();
8842}
8843
8844#ifdef FEAT_EX_EXTRA
8845/*
8846 * ":normal[!] {commands}": Execute normal mode commands.
8847 */
8848 static void
8849ex_normal(eap)
8850 exarg_T *eap;
8851{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008852 int save_msg_scroll = msg_scroll;
8853 int save_restart_edit = restart_edit;
8854 int save_msg_didout = msg_didout;
8855 int save_State = State;
8856 tasave_T tabuf;
8857 int save_insertmode = p_im;
8858 int save_finish_op = finish_op;
8859#ifdef FEAT_MBYTE
8860 char_u *arg = NULL;
8861 int l;
8862 char_u *p;
8863#endif
8864
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008865 if (ex_normal_lock > 0)
8866 {
8867 EMSG(_(e_secure));
8868 return;
8869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008870 if (ex_normal_busy >= p_mmd)
8871 {
8872 EMSG(_("E192: Recursive use of :normal too deep"));
8873 return;
8874 }
8875 ++ex_normal_busy;
8876
8877 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8878 restart_edit = 0; /* don't go to Insert mode */
8879 p_im = FALSE; /* don't use 'insertmode' */
8880
8881#ifdef FEAT_MBYTE
8882 /*
8883 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8884 * this for the K_SPECIAL leading byte, otherwise special keys will not
8885 * work.
8886 */
8887 if (has_mbyte)
8888 {
8889 int len = 0;
8890
8891 /* Count the number of characters to be escaped. */
8892 for (p = eap->arg; *p != NUL; ++p)
8893 {
8894# ifdef FEAT_GUI
8895 if (*p == CSI) /* leadbyte CSI */
8896 len += 2;
8897# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008898 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008899 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8900# ifdef FEAT_GUI
8901 || *p == CSI
8902# endif
8903 )
8904 len += 2;
8905 }
8906 if (len > 0)
8907 {
8908 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8909 if (arg != NULL)
8910 {
8911 len = 0;
8912 for (p = eap->arg; *p != NUL; ++p)
8913 {
8914 arg[len++] = *p;
8915# ifdef FEAT_GUI
8916 if (*p == CSI)
8917 {
8918 arg[len++] = KS_EXTRA;
8919 arg[len++] = (int)KE_CSI;
8920 }
8921# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008922 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008923 {
8924 arg[len++] = *++p;
8925 if (*p == K_SPECIAL)
8926 {
8927 arg[len++] = KS_SPECIAL;
8928 arg[len++] = KE_FILLER;
8929 }
8930# ifdef FEAT_GUI
8931 else if (*p == CSI)
8932 {
8933 arg[len++] = KS_EXTRA;
8934 arg[len++] = (int)KE_CSI;
8935 }
8936# endif
8937 }
8938 arg[len] = NUL;
8939 }
8940 }
8941 }
8942 }
8943#endif
8944
8945 /*
8946 * Save the current typeahead. This is required to allow using ":normal"
8947 * from an event handler and makes sure we don't hang when the argument
8948 * ends with half a command.
8949 */
8950 save_typeahead(&tabuf);
8951 if (tabuf.typebuf_valid)
8952 {
8953 /*
8954 * Repeat the :normal command for each line in the range. When no
8955 * range given, execute it just once, without positioning the cursor
8956 * first.
8957 */
8958 do
8959 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008960 if (eap->addr_count != 0)
8961 {
8962 curwin->w_cursor.lnum = eap->line1++;
8963 curwin->w_cursor.col = 0;
8964 }
8965
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008966 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00008967#ifdef FEAT_MBYTE
8968 arg != NULL ? arg :
8969#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008970 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008971 }
8972 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
8973 }
8974
8975 /* Might not return to the main loop when in an event handler. */
8976 update_topline_cursor();
8977
8978 /* Restore the previous typeahead. */
8979 restore_typeahead(&tabuf);
8980
8981 --ex_normal_busy;
8982 msg_scroll = save_msg_scroll;
8983 restart_edit = save_restart_edit;
8984 p_im = save_insertmode;
8985 finish_op = save_finish_op;
8986 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
8987
8988 /* Restore the state (needed when called from a function executed for
8989 * 'indentexpr'). */
8990 State = save_State;
8991#ifdef FEAT_MBYTE
8992 vim_free(arg);
8993#endif
8994}
8995
8996/*
Bram Moolenaar64969662005-12-14 21:59:55 +00008997 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008998 */
8999 static void
9000ex_startinsert(eap)
9001 exarg_T *eap;
9002{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009003 if (eap->forceit)
9004 {
9005 coladvance((colnr_T)MAXCOL);
9006 curwin->w_curswant = MAXCOL;
9007 curwin->w_set_curswant = FALSE;
9008 }
9009
Bram Moolenaara40c5002005-01-09 21:16:21 +00009010 /* Ignore the command when already in Insert mode. Inserting an
9011 * expression register that invokes a function can do this. */
9012 if (State & INSERT)
9013 return;
9014
Bram Moolenaar64969662005-12-14 21:59:55 +00009015 if (eap->cmdidx == CMD_startinsert)
9016 restart_edit = 'a';
9017 else if (eap->cmdidx == CMD_startreplace)
9018 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009019 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009020 restart_edit = 'V';
9021
9022 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009023 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009024 if (eap->cmdidx == CMD_startinsert)
9025 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009026 curwin->w_curswant = 0; /* avoid MAXCOL */
9027 }
9028}
9029
9030/*
9031 * ":stopinsert"
9032 */
9033/*ARGSUSED*/
9034 static void
9035ex_stopinsert(eap)
9036 exarg_T *eap;
9037{
9038 restart_edit = 0;
9039 stop_insert_mode = TRUE;
9040}
9041#endif
9042
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009043#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9044/*
9045 * Execute normal mode command "cmd".
9046 * "remap" can be REMAP_NONE or REMAP_YES.
9047 */
9048 void
9049exec_normal_cmd(cmd, remap, silent)
9050 char_u *cmd;
9051 int remap;
9052 int silent;
9053{
9054 oparg_T oa;
9055
9056 /*
9057 * Stuff the argument into the typeahead buffer.
9058 * Execute normal_cmd() until there is no typeahead left.
9059 */
9060 clear_oparg(&oa);
9061 finish_op = FALSE;
9062 ins_typebuf(cmd, remap, 0, TRUE, silent);
9063 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9064 && !got_int)
9065 {
9066 update_topline_cursor();
9067 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9068 }
9069}
9070#endif
9071
Bram Moolenaar071d4272004-06-13 20:20:40 +00009072#ifdef FEAT_FIND_ID
9073 static void
9074ex_checkpath(eap)
9075 exarg_T *eap;
9076{
9077 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9078 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9079 (linenr_T)1, (linenr_T)MAXLNUM);
9080}
9081
9082#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9083/*
9084 * ":psearch"
9085 */
9086 static void
9087ex_psearch(eap)
9088 exarg_T *eap;
9089{
9090 g_do_tagpreview = p_pvh;
9091 ex_findpat(eap);
9092 g_do_tagpreview = 0;
9093}
9094#endif
9095
9096 static void
9097ex_findpat(eap)
9098 exarg_T *eap;
9099{
9100 int whole = TRUE;
9101 long n;
9102 char_u *p;
9103 int action;
9104
9105 switch (cmdnames[eap->cmdidx].cmd_name[2])
9106 {
9107 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9108 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9109 action = ACTION_GOTO;
9110 else
9111 action = ACTION_SHOW;
9112 break;
9113 case 'i': /* ":ilist" and ":dlist" */
9114 action = ACTION_SHOW_ALL;
9115 break;
9116 case 'u': /* ":ijump" and ":djump" */
9117 action = ACTION_GOTO;
9118 break;
9119 default: /* ":isplit" and ":dsplit" */
9120 action = ACTION_SPLIT;
9121 break;
9122 }
9123
9124 n = 1;
9125 if (vim_isdigit(*eap->arg)) /* get count */
9126 {
9127 n = getdigits(&eap->arg);
9128 eap->arg = skipwhite(eap->arg);
9129 }
9130 if (*eap->arg == '/') /* Match regexp, not just whole words */
9131 {
9132 whole = FALSE;
9133 ++eap->arg;
9134 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9135 if (*p)
9136 {
9137 *p++ = NUL;
9138 p = skipwhite(p);
9139
9140 /* Check for trailing illegal characters */
9141 if (!ends_excmd(*p))
9142 eap->errmsg = e_trailing;
9143 else
9144 eap->nextcmd = check_nextcmd(p);
9145 }
9146 }
9147 if (!eap->skip)
9148 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9149 whole, !eap->forceit,
9150 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9151 n, action, eap->line1, eap->line2);
9152}
9153#endif
9154
9155#ifdef FEAT_WINDOWS
9156
9157# ifdef FEAT_QUICKFIX
9158/*
9159 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9160 */
9161 static void
9162ex_ptag(eap)
9163 exarg_T *eap;
9164{
9165 g_do_tagpreview = p_pvh;
9166 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9167}
9168
9169/*
9170 * ":pedit"
9171 */
9172 static void
9173ex_pedit(eap)
9174 exarg_T *eap;
9175{
9176 win_T *curwin_save = curwin;
9177
9178 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009179 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009180 keep_help_flag = curwin_save->w_buffer->b_help;
9181 do_exedit(eap, NULL);
9182 keep_help_flag = FALSE;
9183 if (curwin != curwin_save && win_valid(curwin_save))
9184 {
9185 /* Return cursor to where we were */
9186 validate_cursor();
9187 redraw_later(VALID);
9188 win_enter(curwin_save, TRUE);
9189 }
9190 g_do_tagpreview = 0;
9191}
9192# endif
9193
9194/*
9195 * ":stag", ":stselect" and ":stjump".
9196 */
9197 static void
9198ex_stag(eap)
9199 exarg_T *eap;
9200{
9201 postponed_split = -1;
9202 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009203 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009204 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9205 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009206 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009207}
9208#endif
9209
9210/*
9211 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9212 */
9213 static void
9214ex_tag(eap)
9215 exarg_T *eap;
9216{
9217 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9218}
9219
9220 static void
9221ex_tag_cmd(eap, name)
9222 exarg_T *eap;
9223 char_u *name;
9224{
9225 int cmd;
9226
9227 switch (name[1])
9228 {
9229 case 'j': cmd = DT_JUMP; /* ":tjump" */
9230 break;
9231 case 's': cmd = DT_SELECT; /* ":tselect" */
9232 break;
9233 case 'p': cmd = DT_PREV; /* ":tprevious" */
9234 break;
9235 case 'N': cmd = DT_PREV; /* ":tNext" */
9236 break;
9237 case 'n': cmd = DT_NEXT; /* ":tnext" */
9238 break;
9239 case 'o': cmd = DT_POP; /* ":pop" */
9240 break;
9241 case 'f': /* ":tfirst" */
9242 case 'r': cmd = DT_FIRST; /* ":trewind" */
9243 break;
9244 case 'l': cmd = DT_LAST; /* ":tlast" */
9245 break;
9246 default: /* ":tag" */
9247#ifdef FEAT_CSCOPE
9248 if (p_cst)
9249 {
9250 do_cstag(eap);
9251 return;
9252 }
9253#endif
9254 cmd = DT_TAG;
9255 break;
9256 }
9257
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009258 if (name[0] == 'l')
9259 {
9260#ifndef FEAT_QUICKFIX
9261 ex_ni(eap);
9262 return;
9263#else
9264 cmd = DT_LTAG;
9265#endif
9266 }
9267
Bram Moolenaar071d4272004-06-13 20:20:40 +00009268 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9269 eap->forceit, TRUE);
9270}
9271
9272/*
9273 * Evaluate cmdline variables.
9274 *
9275 * change '%' to curbuf->b_ffname
9276 * '#' to curwin->w_altfile
9277 * '<cword>' to word under the cursor
9278 * '<cWORD>' to WORD under the cursor
9279 * '<cfile>' to path name under the cursor
9280 * '<sfile>' to sourced file name
9281 * '<afile>' to file name for autocommand
9282 * '<abuf>' to buffer number for autocommand
9283 * '<amatch>' to matching name for autocommand
9284 *
9285 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9286 * "" for error without a message) and NULL is returned.
9287 * Returns an allocated string if a valid match was found.
9288 * Returns NULL if no match was found. "usedlen" then still contains the
9289 * number of characters to skip.
9290 */
9291 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009292eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009293 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009294 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009295 int *usedlen; /* characters after src that are used */
9296 linenr_T *lnump; /* line number for :e command, or NULL */
9297 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009298 int *escaped; /* return value has escaped white space (can
9299 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009300{
9301 int i;
9302 char_u *s;
9303 char_u *result;
9304 char_u *resultbuf = NULL;
9305 int resultlen;
9306 buf_T *buf;
9307 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9308 int spec_idx;
9309#ifdef FEAT_MODIFY_FNAME
9310 int skip_mod = FALSE;
9311#endif
9312 static char *(spec_str[]) =
9313 {
9314 "%",
9315#define SPEC_PERC 0
9316 "#",
9317#define SPEC_HASH 1
9318 "<cword>", /* cursor word */
9319#define SPEC_CWORD 2
9320 "<cWORD>", /* cursor WORD */
9321#define SPEC_CCWORD 3
9322 "<cfile>", /* cursor path name */
9323#define SPEC_CFILE 4
9324 "<sfile>", /* ":so" file name */
9325#define SPEC_SFILE 5
9326#ifdef FEAT_AUTOCMD
9327 "<afile>", /* autocommand file name */
9328# define SPEC_AFILE 6
9329 "<abuf>", /* autocommand buffer number */
9330# define SPEC_ABUF 7
9331 "<amatch>", /* autocommand match name */
9332# define SPEC_AMATCH 8
9333#endif
9334#ifdef FEAT_CLIENTSERVER
9335 "<client>"
9336# define SPEC_CLIENT 9
9337#endif
9338 };
9339#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9340
9341#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9342 char_u strbuf[30];
9343#endif
9344
9345 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009346 if (escaped != NULL)
9347 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009348
9349 /*
9350 * Check if there is something to do.
9351 */
9352 for (spec_idx = 0; spec_idx < SPEC_COUNT; ++spec_idx)
9353 {
9354 *usedlen = (int)STRLEN(spec_str[spec_idx]);
9355 if (STRNCMP(src, spec_str[spec_idx], *usedlen) == 0)
9356 break;
9357 }
9358 if (spec_idx == SPEC_COUNT) /* no match */
9359 {
9360 *usedlen = 1;
9361 return NULL;
9362 }
9363
9364 /*
9365 * Skip when preceded with a backslash "\%" and "\#".
9366 * Note: In "\\%" the % is also not recognized!
9367 */
9368 if (src > srcstart && src[-1] == '\\')
9369 {
9370 *usedlen = 0;
9371 STRCPY(src - 1, src); /* remove backslash */
9372 return NULL;
9373 }
9374
9375 /*
9376 * word or WORD under cursor
9377 */
9378 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9379 {
9380 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9381 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9382 if (resultlen == 0)
9383 {
9384 *errormsg = (char_u *)"";
9385 return NULL;
9386 }
9387 }
9388
9389 /*
9390 * '#': Alternate file name
9391 * '%': Current file name
9392 * File name under the cursor
9393 * File name for autocommand
9394 * and following modifiers
9395 */
9396 else
9397 {
9398 switch (spec_idx)
9399 {
9400 case SPEC_PERC: /* '%': current file */
9401 if (curbuf->b_fname == NULL)
9402 {
9403 result = (char_u *)"";
9404 valid = 0; /* Must have ":p:h" to be valid */
9405 }
9406 else
9407#ifdef RISCOS
9408 /* Always use the full path for RISC OS if possible. */
9409 result = curbuf->b_ffname;
9410 if (result == NULL)
9411 result = curbuf->b_fname;
9412#else
9413 result = curbuf->b_fname;
9414#endif
9415 break;
9416
9417 case SPEC_HASH: /* '#' or "#99": alternate file */
9418 if (src[1] == '#') /* "##": the argument list */
9419 {
9420 result = arg_all();
9421 resultbuf = result;
9422 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009423 if (escaped != NULL)
9424 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009425#ifdef FEAT_MODIFY_FNAME
9426 skip_mod = TRUE;
9427#endif
9428 break;
9429 }
9430 s = src + 1;
9431 i = (int)getdigits(&s);
9432 *usedlen = (int)(s - src); /* length of what we expand */
9433
9434 buf = buflist_findnr(i);
9435 if (buf == NULL)
9436 {
9437 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9438 return NULL;
9439 }
9440 if (lnump != NULL)
9441 *lnump = ECMD_LAST;
9442 if (buf->b_fname == NULL)
9443 {
9444 result = (char_u *)"";
9445 valid = 0; /* Must have ":p:h" to be valid */
9446 }
9447 else
9448 result = buf->b_fname;
9449 break;
9450
9451#ifdef FEAT_SEARCHPATH
9452 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009453 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009454 if (result == NULL)
9455 {
9456 *errormsg = (char_u *)"";
9457 return NULL;
9458 }
9459 resultbuf = result; /* remember allocated string */
9460 break;
9461#endif
9462
9463#ifdef FEAT_AUTOCMD
9464 case SPEC_AFILE: /* file name for autocommand */
9465 result = autocmd_fname;
9466 if (result == NULL)
9467 {
9468 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9469 return NULL;
9470 }
9471 break;
9472
9473 case SPEC_ABUF: /* buffer number for autocommand */
9474 if (autocmd_bufnr <= 0)
9475 {
9476 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9477 return NULL;
9478 }
9479 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9480 result = strbuf;
9481 break;
9482
9483 case SPEC_AMATCH: /* match name for autocommand */
9484 result = autocmd_match;
9485 if (result == NULL)
9486 {
9487 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9488 return NULL;
9489 }
9490 break;
9491
9492#endif
9493 case SPEC_SFILE: /* file name for ":so" command */
9494 result = sourcing_name;
9495 if (result == NULL)
9496 {
9497 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9498 return NULL;
9499 }
9500 break;
9501#if defined(FEAT_CLIENTSERVER)
9502 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009503 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9504 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009505 result = strbuf;
9506 break;
9507#endif
9508 }
9509
9510 resultlen = (int)STRLEN(result); /* length of new string */
9511 if (src[*usedlen] == '<') /* remove the file name extension */
9512 {
9513 ++*usedlen;
9514#ifdef RISCOS
9515 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9516#else
9517 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9518#endif
9519 resultlen = (int)(s - result);
9520 }
9521#ifdef FEAT_MODIFY_FNAME
9522 else if (!skip_mod)
9523 {
9524 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9525 &resultlen);
9526 if (result == NULL)
9527 {
9528 *errormsg = (char_u *)"";
9529 return NULL;
9530 }
9531 }
9532#endif
9533 }
9534
9535 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9536 {
9537 if (valid != VALID_HEAD + VALID_PATH)
9538 /* xgettext:no-c-format */
9539 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9540 else
9541 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9542 result = NULL;
9543 }
9544 else
9545 result = vim_strnsave(result, resultlen);
9546 vim_free(resultbuf);
9547 return result;
9548}
9549
9550/*
9551 * Concatenate all files in the argument list, separated by spaces, and return
9552 * it in one allocated string.
9553 * Spaces and backslashes in the file names are escaped with a backslash.
9554 * Returns NULL when out of memory.
9555 */
9556 static char_u *
9557arg_all()
9558{
9559 int len;
9560 int idx;
9561 char_u *retval = NULL;
9562 char_u *p;
9563
9564 /*
9565 * Do this loop two times:
9566 * first time: compute the total length
9567 * second time: concatenate the names
9568 */
9569 for (;;)
9570 {
9571 len = 0;
9572 for (idx = 0; idx < ARGCOUNT; ++idx)
9573 {
9574 p = alist_name(&ARGLIST[idx]);
9575 if (p != NULL)
9576 {
9577 if (len > 0)
9578 {
9579 /* insert a space in between names */
9580 if (retval != NULL)
9581 retval[len] = ' ';
9582 ++len;
9583 }
9584 for ( ; *p != NUL; ++p)
9585 {
9586 if (*p == ' ' || *p == '\\')
9587 {
9588 /* insert a backslash */
9589 if (retval != NULL)
9590 retval[len] = '\\';
9591 ++len;
9592 }
9593 if (retval != NULL)
9594 retval[len] = *p;
9595 ++len;
9596 }
9597 }
9598 }
9599
9600 /* second time: break here */
9601 if (retval != NULL)
9602 {
9603 retval[len] = NUL;
9604 break;
9605 }
9606
9607 /* allocate memory */
9608 retval = alloc(len + 1);
9609 if (retval == NULL)
9610 break;
9611 }
9612
9613 return retval;
9614}
9615
9616#if defined(FEAT_AUTOCMD) || defined(PROTO)
9617/*
9618 * Expand the <sfile> string in "arg".
9619 *
9620 * Returns an allocated string, or NULL for any error.
9621 */
9622 char_u *
9623expand_sfile(arg)
9624 char_u *arg;
9625{
9626 char_u *errormsg;
9627 int len;
9628 char_u *result;
9629 char_u *newres;
9630 char_u *repl;
9631 int srclen;
9632 char_u *p;
9633
9634 result = vim_strsave(arg);
9635 if (result == NULL)
9636 return NULL;
9637
9638 for (p = result; *p; )
9639 {
9640 if (STRNCMP(p, "<sfile>", 7) != 0)
9641 ++p;
9642 else
9643 {
9644 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009645 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009646 if (errormsg != NULL)
9647 {
9648 if (*errormsg)
9649 emsg(errormsg);
9650 vim_free(result);
9651 return NULL;
9652 }
9653 if (repl == NULL) /* no match (cannot happen) */
9654 {
9655 p += srclen;
9656 continue;
9657 }
9658 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9659 newres = alloc(len);
9660 if (newres == NULL)
9661 {
9662 vim_free(repl);
9663 vim_free(result);
9664 return NULL;
9665 }
9666 mch_memmove(newres, result, (size_t)(p - result));
9667 STRCPY(newres + (p - result), repl);
9668 len = (int)STRLEN(newres);
9669 STRCAT(newres, p + srclen);
9670 vim_free(repl);
9671 vim_free(result);
9672 result = newres;
9673 p = newres + len; /* continue after the match */
9674 }
9675 }
9676
9677 return result;
9678}
9679#endif
9680
9681#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009682static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9683 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009684static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9685static frame_T *ses_skipframe __ARGS((frame_T *fr));
9686static int ses_do_frame __ARGS((frame_T *fr));
9687static int ses_do_win __ARGS((win_T *wp));
9688static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9689static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9690static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9691
9692/*
9693 * Write openfile commands for the current buffers to an .exrc file.
9694 * Return FAIL on error, OK otherwise.
9695 */
9696 static int
9697makeopens(fd, dirnow)
9698 FILE *fd;
9699 char_u *dirnow; /* Current directory name */
9700{
9701 buf_T *buf;
9702 int only_save_windows = TRUE;
9703 int nr;
9704 int cnr = 1;
9705 int restore_size = TRUE;
9706 win_T *wp;
9707 char_u *sname;
9708 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009709 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009710 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009711 frame_T *tab_topframe;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009712
9713 if (ssop_flags & SSOP_BUFFERS)
9714 only_save_windows = FALSE; /* Save ALL buffers */
9715
9716 /*
9717 * Begin by setting the this_session variable, and then other
9718 * sessionable variables.
9719 */
9720#ifdef FEAT_EVAL
9721 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9722 return FAIL;
9723 if (ssop_flags & SSOP_GLOBALS)
9724 if (store_session_globals(fd) == FAIL)
9725 return FAIL;
9726#endif
9727
9728 /*
9729 * Close all windows but one.
9730 */
9731 if (put_line(fd, "silent only") == FAIL)
9732 return FAIL;
9733
9734 /*
9735 * Now a :cd command to the session directory or the current directory
9736 */
9737 if (ssop_flags & SSOP_SESDIR)
9738 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009739 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9740 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009741 return FAIL;
9742 }
9743 else if (ssop_flags & SSOP_CURDIR)
9744 {
9745 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9746 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009747 || fputs("cd ", fd) < 0
9748 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9749 || put_eol(fd) == FAIL)
9750 {
9751 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009752 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009754 vim_free(sname);
9755 }
9756
9757 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009758 * If there is an empty, unnamed buffer we will wipe it out later.
9759 * Remember the buffer number.
9760 */
9761 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9762 return FAIL;
9763 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9764 return FAIL;
9765 if (put_line(fd, "endif") == FAIL)
9766 return FAIL;
9767
9768 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009769 * Now save the current files, current buffer first.
9770 */
9771 if (put_line(fd, "set shortmess=aoO") == FAIL)
9772 return FAIL;
9773
9774 /* Now put the other buffers into the buffer list */
9775 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9776 {
9777 if (!(only_save_windows && buf->b_nwindows == 0)
9778 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9779 && buf->b_fname != NULL
9780 && buf->b_p_bl)
9781 {
9782 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9783 : buf->b_wininfo->wi_fpos.lnum) < 0
9784 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9785 return FAIL;
9786 }
9787 }
9788
9789 /* the global argument list */
9790 if (ses_arglist(fd, "args", &global_alist.al_ga,
9791 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9792 return FAIL;
9793
9794 if (ssop_flags & SSOP_RESIZE)
9795 {
9796 /* Note: after the restore we still check it worked!*/
9797 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9798 || put_eol(fd) == FAIL)
9799 return FAIL;
9800 }
9801
9802#ifdef FEAT_GUI
9803 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9804 {
9805 int x, y;
9806
9807 if (gui_mch_get_winpos(&x, &y) == OK)
9808 {
9809 /* Note: after the restore we still check it worked!*/
9810 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9811 return FAIL;
9812 }
9813 }
9814#endif
9815
9816 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009817 * May repeat putting Windows for each tab, when "tabpages" is in
9818 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009819 * Don't use goto_tabpage(), it may change directory and trigger
9820 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009821 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009822 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009823 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009824 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009825 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009826 int need_tabnew = FALSE;
9827
Bram Moolenaar18144c82006-04-12 21:52:12 +00009828 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009829 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009830 tabpage_T *tp = find_tabpage(tabnr);
9831
9832 if (tp == NULL)
9833 break; /* done all tab pages */
9834 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009835 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009836 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009837 tab_topframe = topframe;
9838 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009839 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009840 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009841 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009842 tab_topframe = tp->tp_topframe;
9843 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009844 if (tabnr > 1)
9845 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009846 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009847
Bram Moolenaar18144c82006-04-12 21:52:12 +00009848 /*
9849 * Before creating the window layout, try loading one file. If this
9850 * is aborted we don't end up with a number of useless windows.
9851 * This may have side effects! (e.g., compressed or network file).
9852 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009853 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009854 {
9855 if (ses_do_win(wp)
9856 && wp->w_buffer->b_ffname != NULL
9857 && !wp->w_buffer->b_help
9858#ifdef FEAT_QUICKFIX
9859 && !bt_nofile(wp->w_buffer)
9860#endif
9861 )
9862 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009863 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009864 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9865 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009866 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009867 if (!wp->w_arg_idx_invalid)
9868 edited_win = wp;
9869 break;
9870 }
9871 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009872
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009873 /* If no file got edited create an empty tab page. */
9874 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9875 return FAIL;
9876
Bram Moolenaar18144c82006-04-12 21:52:12 +00009877 /*
9878 * Save current window layout.
9879 */
9880 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009881 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009882 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009883 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009884 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
9885 return FAIL;
9886 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
9887 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009888
Bram Moolenaar18144c82006-04-12 21:52:12 +00009889 /*
9890 * Check if window sizes can be restored (no windows omitted).
9891 * Remember the window number of the current window after restoring.
9892 */
9893 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009894 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009895 {
9896 if (ses_do_win(wp))
9897 ++nr;
9898 else
9899 restore_size = FALSE;
9900 if (curwin == wp)
9901 cnr = nr;
9902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009903
Bram Moolenaar18144c82006-04-12 21:52:12 +00009904 /* Go to the first window. */
9905 if (put_line(fd, "wincmd t") == FAIL)
9906 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009907
Bram Moolenaar18144c82006-04-12 21:52:12 +00009908 /*
9909 * If more than one window, see if sizes can be restored.
9910 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
9911 * resized when moving between windows.
9912 * Do this before restoring the view, so that the topline and the
9913 * cursor can be set. This is done again below.
9914 */
9915 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
9916 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009917 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009918 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009919
Bram Moolenaar18144c82006-04-12 21:52:12 +00009920 /*
9921 * Restore the view of the window (options, file, cursor, etc.).
9922 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009923 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009924 {
9925 if (!ses_do_win(wp))
9926 continue;
9927 if (put_view(fd, wp, wp != edited_win, &ssop_flags) == FAIL)
9928 return FAIL;
9929 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
9930 return FAIL;
9931 }
9932
9933 /*
9934 * Restore cursor to the current window if it's not the first one.
9935 */
9936 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
9937 || put_eol(fd) == FAIL))
9938 return FAIL;
9939
9940 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009941 * Restore window sizes again after jumping around in windows, because
9942 * the current window has a minimum size while others may not.
9943 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009944 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009945 return FAIL;
9946
Bram Moolenaar18144c82006-04-12 21:52:12 +00009947 /* Don't continue in another tab page when doing only the current one
9948 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009949 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009950 break;
9951 }
9952
9953 if (ssop_flags & SSOP_TABPAGES)
9954 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00009955 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
9956 || put_eol(fd) == FAIL)
9957 return FAIL;
9958 }
9959
Bram Moolenaar9c102382006-05-03 21:26:49 +00009960 /*
9961 * Wipe out an empty unnamed buffer we started in.
9962 */
9963 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
9964 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00009965 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +00009966 return FAIL;
9967 if (put_line(fd, "endif") == FAIL)
9968 return FAIL;
9969 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
9970 return FAIL;
9971
9972 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
9973 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
9974 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
9975 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009976
9977 /*
9978 * Lastly, execute the x.vim file if it exists.
9979 */
9980 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
9981 || put_line(fd, "if file_readable(s:sx)") == FAIL
9982 || put_line(fd, " exe \"source \" . s:sx") == FAIL
9983 || put_line(fd, "endif") == FAIL)
9984 return FAIL;
9985
9986 return OK;
9987}
9988
9989 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009990ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009991 FILE *fd;
9992 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009993 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009994{
9995 int n = 0;
9996 win_T *wp;
9997
9998 if (restore_size && (ssop_flags & SSOP_WINSIZE))
9999 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010000 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010001 {
10002 if (!ses_do_win(wp))
10003 continue;
10004 ++n;
10005
10006 /* restore height when not full height */
10007 if (wp->w_height + wp->w_status_height < topframe->fr_height
10008 && (fprintf(fd,
10009 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10010 n, (long)wp->w_height, Rows / 2, Rows) < 0
10011 || put_eol(fd) == FAIL))
10012 return FAIL;
10013
10014 /* restore width when not full width */
10015 if (wp->w_width < Columns && (fprintf(fd,
10016 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10017 n, (long)wp->w_width, Columns / 2, Columns) < 0
10018 || put_eol(fd) == FAIL))
10019 return FAIL;
10020 }
10021 }
10022 else
10023 {
10024 /* Just equalise window sizes */
10025 if (put_line(fd, "wincmd =") == FAIL)
10026 return FAIL;
10027 }
10028 return OK;
10029}
10030
10031/*
10032 * Write commands to "fd" to recursively create windows for frame "fr",
10033 * horizontally and vertically split.
10034 * After the commands the last window in the frame is the current window.
10035 * Returns FAIL when writing the commands to "fd" fails.
10036 */
10037 static int
10038ses_win_rec(fd, fr)
10039 FILE *fd;
10040 frame_T *fr;
10041{
10042 frame_T *frc;
10043 int count = 0;
10044
10045 if (fr->fr_layout != FR_LEAF)
10046 {
10047 /* Find first frame that's not skipped and then create a window for
10048 * each following one (first frame is already there). */
10049 frc = ses_skipframe(fr->fr_child);
10050 if (frc != NULL)
10051 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10052 {
10053 /* Make window as big as possible so that we have lots of room
10054 * to split. */
10055 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10056 || put_line(fd, fr->fr_layout == FR_COL
10057 ? "split" : "vsplit") == FAIL)
10058 return FAIL;
10059 ++count;
10060 }
10061
10062 /* Go back to the first window. */
10063 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10064 ? "%dwincmd k" : "%dwincmd h", count) < 0
10065 || put_eol(fd) == FAIL))
10066 return FAIL;
10067
10068 /* Recursively create frames/windows in each window of this column or
10069 * row. */
10070 frc = ses_skipframe(fr->fr_child);
10071 while (frc != NULL)
10072 {
10073 ses_win_rec(fd, frc);
10074 frc = ses_skipframe(frc->fr_next);
10075 /* Go to next window. */
10076 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10077 return FAIL;
10078 }
10079 }
10080 return OK;
10081}
10082
10083/*
10084 * Skip frames that don't contain windows we want to save in the Session.
10085 * Returns NULL when there none.
10086 */
10087 static frame_T *
10088ses_skipframe(fr)
10089 frame_T *fr;
10090{
10091 frame_T *frc;
10092
10093 for (frc = fr; frc != NULL; frc = frc->fr_next)
10094 if (ses_do_frame(frc))
10095 break;
10096 return frc;
10097}
10098
10099/*
10100 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10101 * the Session.
10102 */
10103 static int
10104ses_do_frame(fr)
10105 frame_T *fr;
10106{
10107 frame_T *frc;
10108
10109 if (fr->fr_layout == FR_LEAF)
10110 return ses_do_win(fr->fr_win);
10111 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10112 if (ses_do_frame(frc))
10113 return TRUE;
10114 return FALSE;
10115}
10116
10117/*
10118 * Return non-zero if window "wp" is to be stored in the Session.
10119 */
10120 static int
10121ses_do_win(wp)
10122 win_T *wp;
10123{
10124 if (wp->w_buffer->b_fname == NULL
10125#ifdef FEAT_QUICKFIX
10126 /* When 'buftype' is "nofile" can't restore the window contents. */
10127 || bt_nofile(wp->w_buffer)
10128#endif
10129 )
10130 return (ssop_flags & SSOP_BLANK);
10131 if (wp->w_buffer->b_help)
10132 return (ssop_flags & SSOP_HELP);
10133 return TRUE;
10134}
10135
10136/*
10137 * Write commands to "fd" to restore the view of a window.
10138 * Caller must make sure 'scrolloff' is zero.
10139 */
10140 static int
10141put_view(fd, wp, add_edit, flagp)
10142 FILE *fd;
10143 win_T *wp;
10144 int add_edit; /* add ":edit" command to view */
10145 unsigned *flagp; /* vop_flags or ssop_flags */
10146{
10147 win_T *save_curwin;
10148 int f;
10149 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010150 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010151
10152 /* Always restore cursor position for ":mksession". For ":mkview" only
10153 * when 'viewoptions' contains "cursor". */
10154 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10155
10156 /*
10157 * Local argument list.
10158 */
10159 if (wp->w_alist == &global_alist)
10160 {
10161 if (put_line(fd, "argglobal") == FAIL)
10162 return FAIL;
10163 }
10164 else
10165 {
10166 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10167 flagp == &vop_flags
10168 || !(*flagp & SSOP_CURDIR)
10169 || wp->w_localdir != NULL, flagp) == FAIL)
10170 return FAIL;
10171 }
10172
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010173 /* Only when part of a session: restore the argument index. Some
10174 * arguments may have been deleted, check if the index is valid. */
10175 if (wp->w_arg_idx != 0 && wp->w_arg_idx <= WARGCOUNT(wp)
10176 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010177 {
10178 if (fprintf(fd, "%ldnext", (long)wp->w_arg_idx) < 0
10179 || put_eol(fd) == FAIL)
10180 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010181 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010182 }
10183
10184 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010185 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010186 {
10187 /*
10188 * Load the file.
10189 */
10190 if (wp->w_buffer->b_ffname != NULL
10191#ifdef FEAT_QUICKFIX
10192 && !bt_nofile(wp->w_buffer)
10193#endif
10194 )
10195 {
10196 /*
10197 * Editing a file in this buffer: use ":edit file".
10198 * This may have side effects! (e.g., compressed or network file).
10199 */
10200 if (fputs("edit ", fd) < 0
10201 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10202 return FAIL;
10203 }
10204 else
10205 {
10206 /* No file in this buffer, just make it empty. */
10207 if (put_line(fd, "enew") == FAIL)
10208 return FAIL;
10209#ifdef FEAT_QUICKFIX
10210 if (wp->w_buffer->b_ffname != NULL)
10211 {
10212 /* The buffer does have a name, but it's not a file name. */
10213 if (fputs("file ", fd) < 0
10214 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10215 return FAIL;
10216 }
10217#endif
10218 do_cursor = FALSE;
10219 }
10220 }
10221
10222 /*
10223 * Local mappings and abbreviations.
10224 */
10225 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10226 && makemap(fd, wp->w_buffer) == FAIL)
10227 return FAIL;
10228
10229 /*
10230 * Local options. Need to go to the window temporarily.
10231 * Store only local values when using ":mkview" and when ":mksession" is
10232 * used and 'sessionoptions' doesn't include "options".
10233 * Some folding options are always stored when "folds" is included,
10234 * otherwise the folds would not be restored correctly.
10235 */
10236 save_curwin = curwin;
10237 curwin = wp;
10238 curbuf = curwin->w_buffer;
10239 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10240 f = makeset(fd, OPT_LOCAL,
10241 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10242#ifdef FEAT_FOLDING
10243 else if (*flagp & SSOP_FOLDS)
10244 f = makefoldset(fd);
10245#endif
10246 else
10247 f = OK;
10248 curwin = save_curwin;
10249 curbuf = curwin->w_buffer;
10250 if (f == FAIL)
10251 return FAIL;
10252
10253#ifdef FEAT_FOLDING
10254 /*
10255 * Save Folds when 'buftype' is empty and for help files.
10256 */
10257 if ((*flagp & SSOP_FOLDS)
10258 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010259# ifdef FEAT_QUICKFIX
10260 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10261# endif
10262 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010263 {
10264 if (put_folds(fd, wp) == FAIL)
10265 return FAIL;
10266 }
10267#endif
10268
10269 /*
10270 * Set the cursor after creating folds, since that moves the cursor.
10271 */
10272 if (do_cursor)
10273 {
10274
10275 /* Restore the cursor line in the file and relatively in the
10276 * window. Don't use "G", it changes the jumplist. */
10277 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10278 (long)wp->w_cursor.lnum,
10279 (long)(wp->w_cursor.lnum - wp->w_topline),
10280 (long)wp->w_height / 2, (long)wp->w_height) < 0
10281 || put_eol(fd) == FAIL
10282 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10283 || put_line(fd, "exe s:l") == FAIL
10284 || put_line(fd, "normal! zt") == FAIL
10285 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10286 || put_eol(fd) == FAIL)
10287 return FAIL;
10288 /* Restore the cursor column and left offset when not wrapping. */
10289 if (wp->w_cursor.col == 0)
10290 {
10291 if (put_line(fd, "normal! 0") == FAIL)
10292 return FAIL;
10293 }
10294 else
10295 {
10296 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10297 {
10298 if (fprintf(fd,
10299 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10300 (long)wp->w_cursor.col,
10301 (long)(wp->w_cursor.col - wp->w_leftcol),
10302 (long)wp->w_width / 2, (long)wp->w_width) < 0
10303 || put_eol(fd) == FAIL
10304 || put_line(fd, "if s:c > 0") == FAIL
10305 || fprintf(fd,
10306 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10307 (long)wp->w_cursor.col) < 0
10308 || put_eol(fd) == FAIL
10309 || put_line(fd, "else") == FAIL
10310 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10311 || put_eol(fd) == FAIL
10312 || put_line(fd, "endif") == FAIL)
10313 return FAIL;
10314 }
10315 else
10316 {
10317 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10318 || put_eol(fd) == FAIL)
10319 return FAIL;
10320 }
10321 }
10322 }
10323
10324 /*
10325 * Local directory.
10326 */
10327 if (wp->w_localdir != NULL)
10328 {
10329 if (fputs("lcd ", fd) < 0
10330 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10331 || put_eol(fd) == FAIL)
10332 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010333 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010334 }
10335
10336 return OK;
10337}
10338
10339/*
10340 * Write an argument list to the session file.
10341 * Returns FAIL if writing fails.
10342 */
10343 static int
10344ses_arglist(fd, cmd, gap, fullname, flagp)
10345 FILE *fd;
10346 char *cmd;
10347 garray_T *gap;
10348 int fullname; /* TRUE: use full path name */
10349 unsigned *flagp;
10350{
10351 int i;
10352 char_u buf[MAXPATHL];
10353 char_u *s;
10354
10355 if (gap->ga_len == 0)
10356 return put_line(fd, "silent! argdel *");
10357 if (fputs(cmd, fd) < 0)
10358 return FAIL;
10359 for (i = 0; i < gap->ga_len; ++i)
10360 {
10361 /* NULL file names are skipped (only happens when out of memory). */
10362 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10363 if (s != NULL)
10364 {
10365 if (fullname)
10366 {
10367 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10368 s = buf;
10369 }
10370 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10371 return FAIL;
10372 }
10373 }
10374 return put_eol(fd);
10375}
10376
10377/*
10378 * Write a buffer name to the session file.
10379 * Also ends the line.
10380 * Returns FAIL if writing fails.
10381 */
10382 static int
10383ses_fname(fd, buf, flagp)
10384 FILE *fd;
10385 buf_T *buf;
10386 unsigned *flagp;
10387{
10388 char_u *name;
10389
10390 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010391 * the session file will be sourced.
10392 * Don't do this for ":mkview", we don't know the current directory.
10393 * Don't do this after ":lcd", we don't keep track of what the current
10394 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010395 if (buf->b_sfname != NULL
10396 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010397 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10398 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010399 name = buf->b_sfname;
10400 else
10401 name = buf->b_ffname;
10402 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10403 return FAIL;
10404 return OK;
10405}
10406
10407/*
10408 * Write a file name to the session file.
10409 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10410 * characters.
10411 * Returns FAIL if writing fails.
10412 */
10413 static int
10414ses_put_fname(fd, name, flagp)
10415 FILE *fd;
10416 char_u *name;
10417 unsigned *flagp;
10418{
10419 char_u *sname;
10420 int retval = OK;
10421 int c;
10422
10423 sname = home_replace_save(NULL, name);
10424 if (sname != NULL)
10425 name = sname;
10426 while (*name != NUL)
10427 {
10428#ifdef FEAT_MBYTE
10429 {
10430 int l;
10431
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010432 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010433 {
10434 /* copy a multibyte char */
10435 while (--l >= 0)
10436 {
10437 if (putc(*name, fd) != *name)
10438 retval = FAIL;
10439 ++name;
10440 }
10441 continue;
10442 }
10443 }
10444#endif
10445 c = *name++;
10446 if (c == '\\' && (*flagp & SSOP_SLASH))
10447 /* change a backslash to a forward slash */
10448 c = '/';
10449 else if ((vim_strchr(escape_chars, c) != NULL
10450#ifdef BACKSLASH_IN_FILENAME
10451 && c != '\\'
10452#endif
10453 ) || c == '#' || c == '%')
10454 {
10455 /* escape a special character with a backslash */
10456 if (putc('\\', fd) != '\\')
10457 retval = FAIL;
10458 }
10459 if (putc(c, fd) != c)
10460 retval = FAIL;
10461 }
10462 vim_free(sname);
10463 return retval;
10464}
10465
10466/*
10467 * ":loadview [nr]"
10468 */
10469 static void
10470ex_loadview(eap)
10471 exarg_T *eap;
10472{
10473 char_u *fname;
10474
10475 fname = get_view_file(*eap->arg);
10476 if (fname != NULL)
10477 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010478 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010479 vim_free(fname);
10480 }
10481}
10482
10483/*
10484 * Get the name of the view file for the current buffer.
10485 */
10486 static char_u *
10487get_view_file(c)
10488 int c;
10489{
10490 int len = 0;
10491 char_u *p, *s;
10492 char_u *retval;
10493 char_u *sname;
10494
10495 if (curbuf->b_ffname == NULL)
10496 {
10497 EMSG(_(e_noname));
10498 return NULL;
10499 }
10500 sname = home_replace_save(NULL, curbuf->b_ffname);
10501 if (sname == NULL)
10502 return NULL;
10503
10504 /*
10505 * We want a file name without separators, because we're not going to make
10506 * a directory.
10507 * "normal" path separator -> "=+"
10508 * "=" -> "=="
10509 * ":" path separator -> "=-"
10510 */
10511 for (p = sname; *p; ++p)
10512 if (*p == '=' || vim_ispathsep(*p))
10513 ++len;
10514 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10515 if (retval != NULL)
10516 {
10517 STRCPY(retval, p_vdir);
10518 add_pathsep(retval);
10519 s = retval + STRLEN(retval);
10520 for (p = sname; *p; ++p)
10521 {
10522 if (*p == '=')
10523 {
10524 *s++ = '=';
10525 *s++ = '=';
10526 }
10527 else if (vim_ispathsep(*p))
10528 {
10529 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010530#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010531 || defined(VMS)
10532 if (*p == ':')
10533 *s++ = '-';
10534 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010535#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010536 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010537 }
10538 else
10539 *s++ = *p;
10540 }
10541 *s++ = '=';
10542 *s++ = c;
10543 STRCPY(s, ".vim");
10544 }
10545
10546 vim_free(sname);
10547 return retval;
10548}
10549
10550#endif /* FEAT_SESSION */
10551
10552/*
10553 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10554 * Return FAIL for a write error.
10555 */
10556 int
10557put_eol(fd)
10558 FILE *fd;
10559{
10560 if (
10561#ifdef USE_CRNL
10562 (
10563# ifdef MKSESSION_NL
10564 !mksession_nl &&
10565# endif
10566 (putc('\r', fd) < 0)) ||
10567#endif
10568 (putc('\n', fd) < 0))
10569 return FAIL;
10570 return OK;
10571}
10572
10573/*
10574 * Write a line to "fd".
10575 * Return FAIL for a write error.
10576 */
10577 int
10578put_line(fd, s)
10579 FILE *fd;
10580 char *s;
10581{
10582 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10583 return FAIL;
10584 return OK;
10585}
10586
10587#ifdef FEAT_VIMINFO
10588/*
10589 * ":rviminfo" and ":wviminfo".
10590 */
10591 static void
10592ex_viminfo(eap)
10593 exarg_T *eap;
10594{
10595 char_u *save_viminfo;
10596
10597 save_viminfo = p_viminfo;
10598 if (*p_viminfo == NUL)
10599 p_viminfo = (char_u *)"'100";
10600 if (eap->cmdidx == CMD_rviminfo)
10601 {
10602 if (read_viminfo(eap->arg, TRUE, TRUE, eap->forceit) == FAIL)
10603 EMSG(_("E195: Cannot open viminfo file for reading"));
10604 }
10605 else
10606 write_viminfo(eap->arg, eap->forceit);
10607 p_viminfo = save_viminfo;
10608}
10609#endif
10610
10611#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010612/*
10613 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010614 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010615 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010616 void
10617dialog_msg(buff, format, fname)
10618 char_u *buff;
10619 char *format;
10620 char_u *fname;
10621{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010622 if (fname == NULL)
10623 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010624 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010625}
10626#endif
10627
10628/*
10629 * ":behave {mswin,xterm}"
10630 */
10631 static void
10632ex_behave(eap)
10633 exarg_T *eap;
10634{
10635 if (STRCMP(eap->arg, "mswin") == 0)
10636 {
10637 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10638 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10639 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10640 set_option_value((char_u *)"keymodel", 0L,
10641 (char_u *)"startsel,stopsel", 0);
10642 }
10643 else if (STRCMP(eap->arg, "xterm") == 0)
10644 {
10645 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10646 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10647 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10648 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10649 }
10650 else
10651 EMSG2(_(e_invarg2), eap->arg);
10652}
10653
10654#ifdef FEAT_AUTOCMD
10655static int filetype_detect = FALSE;
10656static int filetype_plugin = FALSE;
10657static int filetype_indent = FALSE;
10658
10659/*
10660 * ":filetype [plugin] [indent] {on,off,detect}"
10661 * on: Load the filetype.vim file to install autocommands for file types.
10662 * off: Load the ftoff.vim file to remove all autocommands for file types.
10663 * plugin on: load filetype.vim and ftplugin.vim
10664 * plugin off: load ftplugof.vim
10665 * indent on: load filetype.vim and indent.vim
10666 * indent off: load indoff.vim
10667 */
10668 static void
10669ex_filetype(eap)
10670 exarg_T *eap;
10671{
10672 char_u *arg = eap->arg;
10673 int plugin = FALSE;
10674 int indent = FALSE;
10675
10676 if (*eap->arg == NUL)
10677 {
10678 /* Print current status. */
10679 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10680 filetype_detect ? "ON" : "OFF",
10681 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10682 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10683 return;
10684 }
10685
10686 /* Accept "plugin" and "indent" in any order. */
10687 for (;;)
10688 {
10689 if (STRNCMP(arg, "plugin", 6) == 0)
10690 {
10691 plugin = TRUE;
10692 arg = skipwhite(arg + 6);
10693 continue;
10694 }
10695 if (STRNCMP(arg, "indent", 6) == 0)
10696 {
10697 indent = TRUE;
10698 arg = skipwhite(arg + 6);
10699 continue;
10700 }
10701 break;
10702 }
10703 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10704 {
10705 if (*arg == 'o' || !filetype_detect)
10706 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010707 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010708 filetype_detect = TRUE;
10709 if (plugin)
10710 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010711 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010712 filetype_plugin = TRUE;
10713 }
10714 if (indent)
10715 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010716 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010717 filetype_indent = TRUE;
10718 }
10719 }
10720 if (*arg == 'd')
10721 {
10722 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010723 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010724 }
10725 }
10726 else if (STRCMP(arg, "off") == 0)
10727 {
10728 if (plugin || indent)
10729 {
10730 if (plugin)
10731 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010732 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010733 filetype_plugin = FALSE;
10734 }
10735 if (indent)
10736 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010737 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010738 filetype_indent = FALSE;
10739 }
10740 }
10741 else
10742 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010743 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010744 filetype_detect = FALSE;
10745 }
10746 }
10747 else
10748 EMSG2(_(e_invarg2), arg);
10749}
10750
10751/*
10752 * ":setfiletype {name}"
10753 */
10754 static void
10755ex_setfiletype(eap)
10756 exarg_T *eap;
10757{
10758 if (!did_filetype)
10759 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10760}
10761#endif
10762
10763/*ARGSUSED*/
10764 static void
10765ex_digraphs(eap)
10766 exarg_T *eap;
10767{
10768#ifdef FEAT_DIGRAPHS
10769 if (*eap->arg != NUL)
10770 putdigraph(eap->arg);
10771 else
10772 listdigraphs();
10773#else
10774 EMSG(_("E196: No digraphs in this version"));
10775#endif
10776}
10777
10778 static void
10779ex_set(eap)
10780 exarg_T *eap;
10781{
10782 int flags = 0;
10783
10784 if (eap->cmdidx == CMD_setlocal)
10785 flags = OPT_LOCAL;
10786 else if (eap->cmdidx == CMD_setglobal)
10787 flags = OPT_GLOBAL;
10788#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10789 if (cmdmod.browse && flags == 0)
10790 ex_options(eap);
10791 else
10792#endif
10793 (void)do_set(eap->arg, flags);
10794}
10795
10796#ifdef FEAT_SEARCH_EXTRA
10797/*
10798 * ":nohlsearch"
10799 */
10800/*ARGSUSED*/
10801 static void
10802ex_nohlsearch(eap)
10803 exarg_T *eap;
10804{
10805 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010806 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010807}
10808
10809/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010810 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010811 * Sets nextcmd to the start of the next command, if any. Also called when
10812 * skipping commands to find the next command.
10813 */
10814 static void
10815ex_match(eap)
10816 exarg_T *eap;
10817{
10818 char_u *p;
10819 char_u *end;
10820 int c;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010821 int mi;
10822
10823 if (eap->line2 <= 3)
10824 mi = eap->line2 - 1;
10825 else
10826 {
10827 EMSG(e_invcmd);
10828 return;
10829 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010830
10831 /* First clear any old pattern. */
10832 if (!eap->skip)
10833 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010834 vim_free(curwin->w_match[mi].regprog);
10835 curwin->w_match[mi].regprog = NULL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010836 vim_free(curwin->w_match_pat[mi]);
10837 curwin->w_match_pat[mi] = NULL;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010838 redraw_later(SOME_VALID); /* always need a redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010839 }
10840
10841 if (ends_excmd(*eap->arg))
10842 end = eap->arg;
10843 else if ((STRNICMP(eap->arg, "none", 4) == 0
10844 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10845 end = eap->arg + 4;
10846 else
10847 {
10848 p = skiptowhite(eap->arg);
10849 if (!eap->skip)
10850 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010851 curwin->w_match_id[mi] = syn_namen2id(eap->arg,
10852 (int)(p - eap->arg));
10853 if (curwin->w_match_id[mi] == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010854 {
10855 EMSG2(_(e_nogroup), eap->arg);
10856 return;
10857 }
10858 }
10859 p = skipwhite(p);
10860 if (*p == NUL)
10861 {
10862 /* There must be two arguments. */
10863 EMSG2(_(e_invarg2), eap->arg);
10864 return;
10865 }
10866 end = skip_regexp(p + 1, *p, TRUE, NULL);
10867 if (!eap->skip)
10868 {
10869 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10870 {
10871 eap->errmsg = e_trailing;
10872 return;
10873 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010874 if (*end != *p)
10875 {
10876 EMSG2(_(e_invarg2), p);
10877 return;
10878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010879
10880 c = *end;
10881 *end = NUL;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010882 curwin->w_match[mi].regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010883 if (curwin->w_match[mi].regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010884 {
10885 EMSG2(_(e_invarg2), p);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010886 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010887 return;
10888 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010889 curwin->w_match_pat[mi] = vim_strsave(p + 1);
10890 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010891 }
10892 }
10893 eap->nextcmd = find_nextcmd(end);
10894}
10895#endif
10896
10897#ifdef FEAT_CRYPT
10898/*
10899 * ":X": Get crypt key
10900 */
10901/*ARGSUSED*/
10902 static void
10903ex_X(eap)
10904 exarg_T *eap;
10905{
10906 (void)get_crypt_key(TRUE, TRUE);
10907}
10908#endif
10909
10910#ifdef FEAT_FOLDING
10911 static void
10912ex_fold(eap)
10913 exarg_T *eap;
10914{
10915 if (foldManualAllowed(TRUE))
10916 foldCreate(eap->line1, eap->line2);
10917}
10918
10919 static void
10920ex_foldopen(eap)
10921 exarg_T *eap;
10922{
10923 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
10924 eap->forceit, FALSE);
10925}
10926
10927 static void
10928ex_folddo(eap)
10929 exarg_T *eap;
10930{
10931 linenr_T lnum;
10932
10933 /* First set the marks for all lines closed/open. */
10934 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
10935 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
10936 ml_setmarked(lnum);
10937
10938 /* Execute the command on the marked lines. */
10939 global_exe(eap->arg);
10940 ml_clearmarked(); /* clear rest of the marks */
10941}
10942#endif