blob: 0b33e7994d1b92e69b047a72aa0d79a884d6c60c [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ex_docmd.c: functions for executing an Ex command line.
12 */
13
14#include "vim.h"
15
16#ifdef HAVE_FCNTL_H
17# include <fcntl.h> /* for chdir() */
18#endif
19
20static int quitmore = 0;
21static int ex_pressedreturn = FALSE;
22#ifndef FEAT_PRINTER
23# define ex_hardcopy ex_ni
24#endif
25
26#ifdef FEAT_USR_CMDS
27typedef struct ucmd
28{
29 char_u *uc_name; /* The command name */
30 long_u uc_argt; /* The argument type */
31 char_u *uc_rep; /* The command's replacement string */
32 long uc_def; /* The default value for a range/count */
33 scid_T uc_scriptID; /* SID where the command was defined */
34 int uc_compl; /* completion type */
35# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
36 char_u *uc_compl_arg; /* completion argument if any */
37# endif
38} ucmd_T;
39
40#define UC_BUFFER 1 /* -buffer: local to current buffer */
41
Bram Moolenaar2c29bee2005-06-01 21:46:07 +000042static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +000043
44#define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
45#define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
46
47static void do_ucmd __ARGS((exarg_T *eap));
48static void ex_command __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000049static void ex_delcommand __ARGS((exarg_T *eap));
50# ifdef FEAT_CMDL_COMPL
51static char_u *get_user_command_name __ARGS((int idx));
52# endif
53
54#else
55# define ex_command ex_ni
56# define ex_comclear ex_ni
57# define ex_delcommand ex_ni
58#endif
59
60#ifdef FEAT_EVAL
Bram Moolenaar89d40322006-08-29 15:30:07 +000061static char_u *do_one_cmd __ARGS((char_u **, int, struct condstack *, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000062#else
Bram Moolenaar89d40322006-08-29 15:30:07 +000063static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000064static int if_level = 0; /* depth in :if */
65#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000066static char_u *find_command __ARGS((exarg_T *eap, int *full));
67
68static void ex_abbreviate __ARGS((exarg_T *eap));
69static void ex_map __ARGS((exarg_T *eap));
70static void ex_unmap __ARGS((exarg_T *eap));
71static void ex_mapclear __ARGS((exarg_T *eap));
72static void ex_abclear __ARGS((exarg_T *eap));
73#ifndef FEAT_MENU
74# define ex_emenu ex_ni
75# define ex_menu ex_ni
76# define ex_menutranslate ex_ni
77#endif
78#ifdef FEAT_AUTOCMD
79static void ex_autocmd __ARGS((exarg_T *eap));
80static void ex_doautocmd __ARGS((exarg_T *eap));
81#else
82# define ex_autocmd ex_ni
83# define ex_doautocmd ex_ni
84# define ex_doautoall ex_ni
85#endif
86#ifdef FEAT_LISTCMDS
87static void ex_bunload __ARGS((exarg_T *eap));
88static void ex_buffer __ARGS((exarg_T *eap));
89static void ex_bmodified __ARGS((exarg_T *eap));
90static void ex_bnext __ARGS((exarg_T *eap));
91static void ex_bprevious __ARGS((exarg_T *eap));
92static void ex_brewind __ARGS((exarg_T *eap));
93static void ex_blast __ARGS((exarg_T *eap));
94#else
95# define ex_bunload ex_ni
96# define ex_buffer ex_ni
97# define ex_bmodified ex_ni
98# define ex_bnext ex_ni
99# define ex_bprevious ex_ni
100# define ex_brewind ex_ni
101# define ex_blast ex_ni
102# define buflist_list ex_ni
103# define ex_checktime ex_ni
104#endif
105#if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
106# define ex_buffer_all ex_ni
107#endif
108static char_u *getargcmd __ARGS((char_u **));
109static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
110static int getargopt __ARGS((exarg_T *eap));
111#ifndef FEAT_QUICKFIX
112# define ex_make ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000113# define ex_cbuffer ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114# define ex_cc ex_ni
115# define ex_cnext ex_ni
116# define ex_cfile ex_ni
117# define qf_list ex_ni
118# define qf_age ex_ni
119# define ex_helpgrep ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000120# define ex_vimgrep ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121#endif
122#if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
123# define ex_cclose ex_ni
124# define ex_copen ex_ni
125# define ex_cwindow ex_ni
126#endif
Bram Moolenaar1e015462005-09-25 22:16:38 +0000127#if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
128# define ex_cexpr ex_ni
129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130
131static int check_more __ARGS((int, int));
132static linenr_T get_address __ARGS((char_u **, int skip, int to_other_file));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000133static void get_flags __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000135 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
Bram Moolenaar7bb75552007-07-16 18:39:49 +0000136# define HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137static void ex_script_ni __ARGS((exarg_T *eap));
138#endif
139static char_u *invalid_range __ARGS((exarg_T *eap));
140static void correct_range __ARGS((exarg_T *eap));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000141#ifdef FEAT_QUICKFIX
142static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
143#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
145static void ex_highlight __ARGS((exarg_T *eap));
146static void ex_colorscheme __ARGS((exarg_T *eap));
147static void ex_quit __ARGS((exarg_T *eap));
148static void ex_cquit __ARGS((exarg_T *eap));
149static void ex_quit_all __ARGS((exarg_T *eap));
150#ifdef FEAT_WINDOWS
151static void ex_close __ARGS((exarg_T *eap));
Bram Moolenaarf740b292006-02-16 22:11:02 +0000152static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153static void ex_only __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154static void ex_resize __ARGS((exarg_T *eap));
155static void ex_stag __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000156static void ex_tabclose __ARGS((exarg_T *eap));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000157static void ex_tabonly __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000158static void ex_tabnext __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000159static void ex_tabmove __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000160static void ex_tabs __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161#else
162# define ex_close ex_ni
163# define ex_only ex_ni
164# define ex_all ex_ni
165# define ex_resize ex_ni
166# define ex_splitview ex_ni
167# define ex_stag ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000168# define ex_tabnext ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000169# define ex_tabmove ex_ni
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000170# define ex_tabs ex_ni
171# define ex_tabclose ex_ni
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000172# define ex_tabonly ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173#endif
174#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
175static void ex_pclose __ARGS((exarg_T *eap));
176static void ex_ptag __ARGS((exarg_T *eap));
177static void ex_pedit __ARGS((exarg_T *eap));
178#else
179# define ex_pclose ex_ni
180# define ex_ptag ex_ni
181# define ex_pedit ex_ni
182#endif
183static void ex_hide __ARGS((exarg_T *eap));
184static void ex_stop __ARGS((exarg_T *eap));
185static void ex_exit __ARGS((exarg_T *eap));
186static void ex_print __ARGS((exarg_T *eap));
187#ifdef FEAT_BYTEOFF
188static void ex_goto __ARGS((exarg_T *eap));
189#else
190# define ex_goto ex_ni
191#endif
192static void ex_shell __ARGS((exarg_T *eap));
193static void ex_preserve __ARGS((exarg_T *eap));
194static void ex_recover __ARGS((exarg_T *eap));
195#ifndef FEAT_LISTCMDS
196# define ex_argedit ex_ni
197# define ex_argadd ex_ni
198# define ex_argdelete ex_ni
199# define ex_listdo ex_ni
200#endif
201static void ex_mode __ARGS((exarg_T *eap));
202static void ex_wrongmodifier __ARGS((exarg_T *eap));
203static void ex_find __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000204static void ex_open __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205static void ex_edit __ARGS((exarg_T *eap));
206#if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
207# define ex_drop ex_ni
208#endif
209#ifndef FEAT_GUI
210# define ex_gui ex_nogui
211static void ex_nogui __ARGS((exarg_T *eap));
212#endif
213#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
214static void ex_tearoff __ARGS((exarg_T *eap));
215#else
216# define ex_tearoff ex_ni
217#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000218#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219static void ex_popup __ARGS((exarg_T *eap));
220#else
221# define ex_popup ex_ni
222#endif
223#ifndef FEAT_GUI_MSWIN
224# define ex_simalt ex_ni
225#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000226#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227# define gui_mch_find_dialog ex_ni
228# define gui_mch_replace_dialog ex_ni
229#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000230#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231# define ex_helpfind ex_ni
232#endif
233#ifndef FEAT_CSCOPE
234# define do_cscope ex_ni
235# define do_scscope ex_ni
236# define do_cstag ex_ni
237#endif
238#ifndef FEAT_SYN_HL
239# define ex_syntax ex_ni
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000240#endif
241#ifndef FEAT_SPELL
Bram Moolenaarb765d632005-06-07 21:00:02 +0000242# define ex_spell ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000243# define ex_mkspell ex_ni
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000244# define ex_spelldump ex_ni
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000245# define ex_spellinfo ex_ni
Bram Moolenaara1ba8112005-06-28 23:23:32 +0000246# define ex_spellrepall ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000247#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000248#ifndef FEAT_MZSCHEME
249# define ex_mzscheme ex_script_ni
250# define ex_mzfile ex_ni
251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252#ifndef FEAT_PERL
253# define ex_perl ex_script_ni
254# define ex_perldo ex_ni
255#endif
256#ifndef FEAT_PYTHON
257# define ex_python ex_script_ni
258# define ex_pyfile ex_ni
259#endif
260#ifndef FEAT_TCL
261# define ex_tcl ex_script_ni
262# define ex_tcldo ex_ni
263# define ex_tclfile ex_ni
264#endif
265#ifndef FEAT_RUBY
266# define ex_ruby ex_script_ni
267# define ex_rubydo ex_ni
268# define ex_rubyfile ex_ni
269#endif
270#ifndef FEAT_SNIFF
271# define ex_sniff ex_ni
272#endif
273#ifndef FEAT_KEYMAP
274# define ex_loadkeymap ex_ni
275#endif
276static void ex_swapname __ARGS((exarg_T *eap));
277static void ex_syncbind __ARGS((exarg_T *eap));
278static void ex_read __ARGS((exarg_T *eap));
279static void ex_cd __ARGS((exarg_T *eap));
280static void ex_pwd __ARGS((exarg_T *eap));
281static void ex_equal __ARGS((exarg_T *eap));
282static void ex_sleep __ARGS((exarg_T *eap));
283static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
284static void ex_winsize __ARGS((exarg_T *eap));
285#ifdef FEAT_WINDOWS
286static void ex_wincmd __ARGS((exarg_T *eap));
287#else
288# define ex_wincmd ex_ni
289#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000290#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291static void ex_winpos __ARGS((exarg_T *eap));
292#else
293# define ex_winpos ex_ni
294#endif
295static void ex_operators __ARGS((exarg_T *eap));
296static void ex_put __ARGS((exarg_T *eap));
297static void ex_copymove __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000298static void ex_may_print __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299static void ex_submagic __ARGS((exarg_T *eap));
300static void ex_join __ARGS((exarg_T *eap));
301static void ex_at __ARGS((exarg_T *eap));
302static void ex_bang __ARGS((exarg_T *eap));
303static void ex_undo __ARGS((exarg_T *eap));
304static void ex_redo __ARGS((exarg_T *eap));
Bram Moolenaarc7d89352006-03-14 22:53:34 +0000305static void ex_later __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306static void ex_redir __ARGS((exarg_T *eap));
307static void ex_redraw __ARGS((exarg_T *eap));
308static void ex_redrawstatus __ARGS((exarg_T *eap));
309static void close_redir __ARGS((void));
310static void ex_mkrc __ARGS((exarg_T *eap));
311static void ex_mark __ARGS((exarg_T *eap));
312#ifdef FEAT_USR_CMDS
313static char_u *uc_fun_cmd __ARGS((void));
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000314static 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 +0000315#endif
316#ifdef FEAT_EX_EXTRA
317static void ex_normal __ARGS((exarg_T *eap));
318static void ex_startinsert __ARGS((exarg_T *eap));
319static void ex_stopinsert __ARGS((exarg_T *eap));
320#else
321# define ex_normal ex_ni
322# define ex_align ex_ni
323# define ex_retab ex_ni
324# define ex_startinsert ex_ni
325# define ex_stopinsert ex_ni
326# define ex_helptags ex_ni
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000327# define ex_sort ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328#endif
329#ifdef FEAT_FIND_ID
330static void ex_checkpath __ARGS((exarg_T *eap));
331static void ex_findpat __ARGS((exarg_T *eap));
332#else
333# define ex_findpat ex_ni
334# define ex_checkpath ex_ni
335#endif
336#if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
337static void ex_psearch __ARGS((exarg_T *eap));
338#else
339# define ex_psearch ex_ni
340#endif
341static void ex_tag __ARGS((exarg_T *eap));
342static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
343#ifndef FEAT_EVAL
344# define ex_scriptnames ex_ni
345# define ex_finish ex_ni
346# define ex_echo ex_ni
347# define ex_echohl ex_ni
348# define ex_execute ex_ni
349# define ex_call ex_ni
350# define ex_if ex_ni
351# define ex_endif ex_ni
352# define ex_else ex_ni
353# define ex_while ex_ni
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000354# define ex_for ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355# define ex_continue ex_ni
356# define ex_break ex_ni
357# define ex_endwhile ex_ni
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000358# define ex_endfor ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359# define ex_throw ex_ni
360# define ex_try ex_ni
361# define ex_catch ex_ni
362# define ex_finally ex_ni
363# define ex_endtry ex_ni
364# define ex_endfunction ex_ni
365# define ex_let ex_ni
366# define ex_unlet ex_ni
Bram Moolenaar65c1b012005-01-31 19:02:28 +0000367# define ex_lockvar ex_ni
368# define ex_unlockvar ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369# define ex_function ex_ni
370# define ex_delfunction ex_ni
371# define ex_return ex_ni
372#endif
373static char_u *arg_all __ARGS((void));
374#ifdef FEAT_SESSION
375static int makeopens __ARGS((FILE *fd, char_u *dirnow));
376static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp));
377static void ex_loadview __ARGS((exarg_T *eap));
378static char_u *get_view_file __ARGS((int c));
Bram Moolenaareeefcc72007-05-01 21:21:21 +0000379static int did_lcd; /* whether ":lcd" was produced for a session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380#else
381# define ex_loadview ex_ni
382#endif
383#ifndef FEAT_EVAL
384# define ex_compiler ex_ni
385#endif
386#ifdef FEAT_VIMINFO
387static void ex_viminfo __ARGS((exarg_T *eap));
388#else
389# define ex_viminfo ex_ni
390#endif
391static void ex_behave __ARGS((exarg_T *eap));
392#ifdef FEAT_AUTOCMD
393static void ex_filetype __ARGS((exarg_T *eap));
394static void ex_setfiletype __ARGS((exarg_T *eap));
395#else
396# define ex_filetype ex_ni
397# define ex_setfiletype ex_ni
398#endif
399#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000400# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401# define ex_diffpatch ex_ni
402# define ex_diffgetput ex_ni
403# define ex_diffsplit ex_ni
404# define ex_diffthis ex_ni
405# define ex_diffupdate ex_ni
406#endif
407static void ex_digraphs __ARGS((exarg_T *eap));
408static void ex_set __ARGS((exarg_T *eap));
409#if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
410# define ex_options ex_ni
411#endif
412#ifdef FEAT_SEARCH_EXTRA
413static void ex_nohlsearch __ARGS((exarg_T *eap));
414static void ex_match __ARGS((exarg_T *eap));
415#else
416# define ex_nohlsearch ex_ni
417# define ex_match ex_ni
418#endif
419#ifdef FEAT_CRYPT
420static void ex_X __ARGS((exarg_T *eap));
421#else
422# define ex_X ex_ni
423#endif
424#ifdef FEAT_FOLDING
425static void ex_fold __ARGS((exarg_T *eap));
426static void ex_foldopen __ARGS((exarg_T *eap));
427static void ex_folddo __ARGS((exarg_T *eap));
428#else
429# define ex_fold ex_ni
430# define ex_foldopen ex_ni
431# define ex_folddo ex_ni
432#endif
433#if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
434 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
435# define ex_language ex_ni
436#endif
437#ifndef FEAT_SIGNS
438# define ex_sign ex_ni
439#endif
440#ifndef FEAT_SUN_WORKSHOP
441# define ex_wsverb ex_ni
442#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000443#ifndef FEAT_NETBEANS_INTG
444# define ex_nbkey ex_ni
445#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446
447#ifndef FEAT_EVAL
448# define ex_debug ex_ni
449# define ex_breakadd ex_ni
450# define ex_debuggreedy ex_ni
451# define ex_breakdel ex_ni
452# define ex_breaklist ex_ni
453#endif
454
455#ifndef FEAT_CMDHIST
456# define ex_history ex_ni
457#endif
458#ifndef FEAT_JUMPLIST
459# define ex_jumps ex_ni
460# define ex_changes ex_ni
461#endif
462
Bram Moolenaar05159a02005-02-26 23:04:13 +0000463#ifndef FEAT_PROFILE
464# define ex_profile ex_ni
465#endif
466
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467/*
468 * Declare cmdnames[].
469 */
470#define DO_DECLARE_EXCMD
471#include "ex_cmds.h"
472
473/*
474 * Table used to quickly search for a command, based on its first character.
475 */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +0000476static cmdidx_T cmdidxs[27] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477{
478 CMD_append,
479 CMD_buffer,
480 CMD_change,
481 CMD_delete,
482 CMD_edit,
483 CMD_file,
484 CMD_global,
485 CMD_help,
486 CMD_insert,
487 CMD_join,
488 CMD_k,
489 CMD_list,
490 CMD_move,
491 CMD_next,
492 CMD_open,
493 CMD_print,
494 CMD_quit,
495 CMD_read,
496 CMD_substitute,
497 CMD_t,
498 CMD_undo,
499 CMD_vglobal,
500 CMD_write,
501 CMD_xit,
502 CMD_yank,
503 CMD_z,
504 CMD_bang
505};
506
507static char_u dollar_command[2] = {'$', 0};
508
509
510#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000511/* Struct for storing a line inside a while/for loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512typedef struct
513{
514 char_u *line; /* command line */
515 linenr_T lnum; /* sourcing_lnum of the line */
516} wcmd_T;
517
518/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000519 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000521 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000523struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524{
525 garray_T *lines_gap; /* growarray with line info */
526 int current_line; /* last read line from growarray */
527 int repeating; /* TRUE when looping a second time */
528 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
529 char_u *(*getline) __ARGS((int, void *, int));
530 void *cookie;
531};
532
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000533static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
534static int store_loop_line __ARGS((garray_T *gap, char_u *line));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535static void free_cmdlines __ARGS((garray_T *gap));
Bram Moolenaared203462004-06-16 11:19:22 +0000536
537/* Struct to save a few things while debugging. Used in do_cmdline() only. */
538struct dbg_stuff
539{
540 int trylevel;
541 int force_abort;
542 except_T *caught_stack;
543 char_u *vv_exception;
544 char_u *vv_throwpoint;
545 int did_emsg;
546 int got_int;
547 int did_throw;
548 int need_rethrow;
549 int check_cstack;
550 except_T *current_exception;
551};
552
553static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
554static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
555
556 static void
557save_dbg_stuff(dsp)
558 struct dbg_stuff *dsp;
559{
560 dsp->trylevel = trylevel; trylevel = 0;
561 dsp->force_abort = force_abort; force_abort = FALSE;
562 dsp->caught_stack = caught_stack; caught_stack = NULL;
563 dsp->vv_exception = v_exception(NULL);
564 dsp->vv_throwpoint = v_throwpoint(NULL);
565
566 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
567 dsp->did_emsg = did_emsg; did_emsg = FALSE;
568 dsp->got_int = got_int; got_int = FALSE;
569 dsp->did_throw = did_throw; did_throw = FALSE;
570 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
571 dsp->check_cstack = check_cstack; check_cstack = FALSE;
572 dsp->current_exception = current_exception; current_exception = NULL;
573}
574
575 static void
576restore_dbg_stuff(dsp)
577 struct dbg_stuff *dsp;
578{
579 suppress_errthrow = FALSE;
580 trylevel = dsp->trylevel;
581 force_abort = dsp->force_abort;
582 caught_stack = dsp->caught_stack;
583 (void)v_exception(dsp->vv_exception);
584 (void)v_throwpoint(dsp->vv_throwpoint);
585 did_emsg = dsp->did_emsg;
586 got_int = dsp->got_int;
587 did_throw = dsp->did_throw;
588 need_rethrow = dsp->need_rethrow;
589 check_cstack = dsp->check_cstack;
590 current_exception = dsp->current_exception;
591}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592#endif
593
594
595/*
596 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
597 * command is given.
598 */
599 void
600do_exmode(improved)
601 int improved; /* TRUE for "improved Ex" mode */
602{
603 int save_msg_scroll;
604 int prev_msg_row;
605 linenr_T prev_line;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000606 int changedtick;
607
608 if (improved)
609 exmode_active = EXMODE_VIM;
610 else
611 exmode_active = EXMODE_NORMAL;
612 State = NORMAL;
613
614 /* When using ":global /pat/ visual" and then "Q" we return to continue
615 * the :global command. */
616 if (global_busy)
617 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618
619 save_msg_scroll = msg_scroll;
620 ++RedrawingDisabled; /* don't redisplay the window */
621 ++no_wait_return; /* don't wait for return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622#ifdef FEAT_GUI
623 /* Ignore scrollbar and mouse events in Ex mode */
624 ++hold_gui_events;
625#endif
626#ifdef FEAT_SNIFF
627 want_sniff_request = 0; /* No K_SNIFF wanted */
628#endif
629
630 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
631 while (exmode_active)
632 {
Bram Moolenaar7c626922005-02-07 22:01:03 +0000633#ifdef FEAT_EX_EXTRA
634 /* Check for a ":normal" command and no more characters left. */
635 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
636 {
637 exmode_active = FALSE;
638 break;
639 }
640#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 msg_scroll = TRUE;
642 need_wait_return = FALSE;
643 ex_pressedreturn = FALSE;
644 ex_no_reprint = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000645 changedtick = curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 prev_msg_row = msg_row;
647 prev_line = curwin->w_cursor.lnum;
648#ifdef FEAT_SNIFF
649 ProcessSniffRequests();
650#endif
651 if (improved)
652 {
653 cmdline_row = msg_row;
654 do_cmdline(NULL, getexline, NULL, 0);
655 }
656 else
657 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
658 lines_left = Rows - 1;
659
Bram Moolenaardf177f62005-02-22 08:39:57 +0000660 if ((prev_line != curwin->w_cursor.lnum
661 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000663 if (curbuf->b_ml.ml_flags & ML_EMPTY)
664 EMSG(_(e_emptybuf));
665 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000667 if (ex_pressedreturn)
668 {
669 /* go up one line, to overwrite the ":<CR>" line, so the
670 * output doensn't contain empty lines. */
671 msg_row = prev_msg_row;
672 if (prev_msg_row == Rows - 1)
673 msg_row--;
674 }
675 msg_col = 0;
676 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
677 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 }
Bram Moolenaardf177f62005-02-22 08:39:57 +0000680 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
681 {
682 if (curbuf->b_ml.ml_flags & ML_EMPTY)
683 EMSG(_(e_emptybuf));
684 else
685 EMSG(_("E501: At end-of-file"));
686 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 }
688
689#ifdef FEAT_GUI
690 --hold_gui_events;
691#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 --RedrawingDisabled;
693 --no_wait_return;
694 update_screen(CLEAR);
695 need_wait_return = FALSE;
696 msg_scroll = save_msg_scroll;
697}
698
699/*
700 * Execute a simple command line. Used for translated commands like "*".
701 */
702 int
703do_cmdline_cmd(cmd)
704 char_u *cmd;
705{
706 return do_cmdline(cmd, NULL, NULL,
707 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
708}
709
710/*
711 * do_cmdline(): execute one Ex command line
712 *
713 * 1. Execute "cmdline" when it is not NULL.
714 * If "cmdline" is NULL, or more lines are needed, getline() is used.
715 * 2. Split up in parts separated with '|'.
716 *
717 * This function can be called recursively!
718 *
719 * flags:
720 * DOCMD_VERBOSE - The command will be included in the error message.
721 * DOCMD_NOWAIT - Don't call wait_return() and friends.
722 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
723 * DOCMD_KEYTYPED - Don't reset KeyTyped.
724 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
725 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
726 *
727 * return FAIL if cmdline could not be executed, OK otherwise
728 */
729 int
730do_cmdline(cmdline, getline, cookie, flags)
731 char_u *cmdline;
732 char_u *(*getline) __ARGS((int, void *, int));
733 void *cookie; /* argument for getline() */
734 int flags;
735{
736 char_u *next_cmdline; /* next cmd to execute */
737 char_u *cmdline_copy = NULL; /* copy of cmd line */
738 int used_getline = FALSE; /* used "getline" to obtain command */
739 static int recursive = 0; /* recursive depth */
740 int msg_didout_before_start = 0;
741 int count = 0; /* line number count */
742 int did_inc = FALSE; /* incremented RedrawingDisabled */
743 int retval = OK;
744#ifdef FEAT_EVAL
745 struct condstack cstack; /* conditional stack */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000746 garray_T lines_ga; /* keep lines for ":while"/":for" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 int current_line = 0; /* active line in lines_ga */
748 char_u *fname = NULL; /* function or script name */
749 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
750 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
Bram Moolenaared203462004-06-16 11:19:22 +0000751 struct dbg_stuff debug_saved; /* saved things for debug mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 int initial_trylevel;
753 struct msglist **saved_msg_list = NULL;
754 struct msglist *private_msg_list;
755
756 /* "getline" and "cookie" passed to do_one_cmd() */
757 char_u *(*cmd_getline) __ARGS((int, void *, int));
758 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000759 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000761 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762#else
763# define cmd_getline getline
764# define cmd_cookie cookie
765#endif
766 static int call_depth = 0; /* recursiveness */
767
768#ifdef FEAT_EVAL
769 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
770 * location for storing error messages to be converted to an exception.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000771 * This ensures that the do_errthrow() call in do_one_cmd() does not
772 * combine the messages stored by an earlier invocation of do_one_cmd()
773 * with the command name of the later one. This would happen when
774 * BufWritePost autocommands are executed after a write error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 saved_msg_list = msg_list;
776 msg_list = &private_msg_list;
777 private_msg_list = NULL;
778#endif
779
780 /* It's possible to create an endless loop with ":execute", catch that
781 * here. The value of 200 allows nested function calls, ":source", etc. */
782 if (call_depth == 200)
783 {
784 EMSG(_("E169: Command too recursive"));
785#ifdef FEAT_EVAL
786 /* When converting to an exception, we do not include the command name
787 * since this is not an error of the specific command. */
788 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
789 msg_list = saved_msg_list;
790#endif
791 return FAIL;
792 }
793 ++call_depth;
794
795#ifdef FEAT_EVAL
796 cstack.cs_idx = -1;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000797 cstack.cs_looplevel = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 cstack.cs_trylevel = 0;
799 cstack.cs_emsg_silent_list = NULL;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000800 cstack.cs_lflags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
802
803 real_cookie = getline_cookie(getline, cookie);
804
805 /* Inside a function use a higher nesting level. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000806 getline_is_func = getline_equal(getline, cookie, get_func_line);
807 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 ++ex_nesting_level;
809
810 /* Get the function or script name and the address where the next breakpoint
811 * line and the debug tick for a function or script are stored. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000812 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 {
814 fname = func_name(real_cookie);
815 breakpoint = func_breakpoint(real_cookie);
816 dbg_tick = func_dbg_tick(real_cookie);
817 }
818 else if (getline_equal(getline, cookie, getsourceline))
819 {
820 fname = sourcing_name;
821 breakpoint = source_breakpoint(real_cookie);
822 dbg_tick = source_dbg_tick(real_cookie);
823 }
824
825 /*
826 * Initialize "force_abort" and "suppress_errthrow" at the top level.
827 */
828 if (!recursive)
829 {
830 force_abort = FALSE;
831 suppress_errthrow = FALSE;
832 }
833
834 /*
835 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000836 * exception handling (used when debugging). Otherwise clear it to avoid
837 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000839 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000840 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000841 else
842 memset(&debug_saved, 0, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843
844 initial_trylevel = trylevel;
845
846 /*
847 * "did_throw" will be set to TRUE when an exception is being thrown.
848 */
849 did_throw = FALSE;
850#endif
851 /*
852 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000853 * cancel the whole command line, and any if/endif or loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 * If force_abort is set, we cancel everything.
855 */
856 did_emsg = FALSE;
857
858 /*
859 * KeyTyped is only set when calling vgetc(). Reset it here when not
860 * calling vgetc() (sourced command lines).
861 */
862 if (!(flags & DOCMD_KEYTYPED) && !getline_equal(getline, cookie, getexline))
863 KeyTyped = FALSE;
864
865 /*
866 * Continue executing command lines:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000867 * - when inside an ":if", ":while" or ":for"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868 * - for multiple commands on one line, separated with '|'
869 * - when repeating until there are no more lines (for ":source")
870 */
871 next_cmdline = cmdline;
872 do
873 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000874#ifdef FEAT_EVAL
875 getline_is_func = getline_equal(getline, cookie, get_func_line);
876#endif
877
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000878 /* stop skipping cmds for an error msg after all endif/while/for */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 if (next_cmdline == NULL
880#ifdef FEAT_EVAL
881 && !force_abort
882 && cstack.cs_idx < 0
Bram Moolenaar05159a02005-02-26 23:04:13 +0000883 && !(getline_is_func && func_has_abort(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884#endif
885 )
886 did_emsg = FALSE;
887
888 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000889 * 1. If repeating a line in a loop, get a line from lines_ga.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 * 2. If no line given: Get an allocated line with getline().
891 * 3. If a line is given: Make a copy, so we can mess with it.
892 */
893
894#ifdef FEAT_EVAL
895 /* 1. If repeating, get a previous line from lines_ga. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000896 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 {
898 /* Each '|' separated command is stored separately in lines_ga, to
899 * be able to jump to it. Don't use next_cmdline now. */
900 vim_free(cmdline_copy);
901 cmdline_copy = NULL;
902
903 /* Check if a function has returned or, unless it has an unclosed
904 * try conditional, aborted. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000905 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000907# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000908 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000909 func_line_end(real_cookie);
910# endif
911 if (func_has_ended(real_cookie))
912 {
913 retval = FAIL;
914 break;
915 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000917#ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000918 else if (do_profiling == PROF_YES
Bram Moolenaar05159a02005-02-26 23:04:13 +0000919 && getline_equal(getline, cookie, getsourceline))
920 script_line_end();
921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922
923 /* Check if a sourced file hit a ":finish" command. */
924 if (source_finished(getline, cookie))
925 {
926 retval = FAIL;
927 break;
928 }
929
930 /* If breakpoints have been added/deleted need to check for it. */
931 if (breakpoint != NULL && dbg_tick != NULL
932 && *dbg_tick != debug_tick)
933 {
934 *breakpoint = dbg_find_breakpoint(
935 getline_equal(getline, cookie, getsourceline),
936 fname, sourcing_lnum);
937 *dbg_tick = debug_tick;
938 }
939
940 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
941 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
942
943 /* Did we encounter a breakpoint? */
944 if (breakpoint != NULL && *breakpoint != 0
945 && *breakpoint <= sourcing_lnum)
946 {
947 dbg_breakpoint(fname, sourcing_lnum);
948 /* Find next breakpoint. */
949 *breakpoint = dbg_find_breakpoint(
950 getline_equal(getline, cookie, getsourceline),
951 fname, sourcing_lnum);
952 *dbg_tick = debug_tick;
953 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000954# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000955 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000956 {
957 if (getline_is_func)
958 func_line_start(real_cookie);
959 else if (getline_equal(getline, cookie, getsourceline))
960 script_line_start();
961 }
962# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 }
964
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000965 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000967 /* Inside a while/for loop we need to store the lines and use them
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 * again. Pass a different "getline" function to do_one_cmd()
969 * below, so that it stores lines in or reads them from
970 * "lines_ga". Makes it possible to define a function inside a
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000971 * while/for loop. */
972 cmd_getline = get_loop_line;
973 cmd_cookie = (void *)&cmd_loop_cookie;
974 cmd_loop_cookie.lines_gap = &lines_ga;
975 cmd_loop_cookie.current_line = current_line;
976 cmd_loop_cookie.getline = getline;
977 cmd_loop_cookie.cookie = cookie;
978 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979 }
980 else
981 {
982 cmd_getline = getline;
983 cmd_cookie = cookie;
984 }
985#endif
986
987 /* 2. If no line given, get an allocated line with getline(). */
988 if (next_cmdline == NULL)
989 {
990 /*
991 * Need to set msg_didout for the first line after an ":if",
992 * otherwise the ":if" will be overwritten.
993 */
994 if (count == 1 && getline_equal(getline, cookie, getexline))
995 msg_didout = TRUE;
996 if (getline == NULL || (next_cmdline = getline(':', cookie,
997#ifdef FEAT_EVAL
998 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
999#else
1000 0
1001#endif
1002 )) == NULL)
1003 {
1004 /* Don't call wait_return for aborted command line. The NULL
1005 * returned for the end of a sourced file or executed function
1006 * doesn't do this. */
1007 if (KeyTyped && !(flags & DOCMD_REPEAT))
1008 need_wait_return = FALSE;
1009 retval = FAIL;
1010 break;
1011 }
1012 used_getline = TRUE;
1013
1014 /*
1015 * Keep the first typed line. Clear it when more lines are typed.
1016 */
1017 if (flags & DOCMD_KEEPLINE)
1018 {
1019 vim_free(repeat_cmdline);
1020 if (count == 0)
1021 repeat_cmdline = vim_strsave(next_cmdline);
1022 else
1023 repeat_cmdline = NULL;
1024 }
1025 }
1026
1027 /* 3. Make a copy of the command so we can mess with it. */
1028 else if (cmdline_copy == NULL)
1029 {
1030 next_cmdline = vim_strsave(next_cmdline);
1031 if (next_cmdline == NULL)
1032 {
1033 EMSG(_(e_outofmem));
1034 retval = FAIL;
1035 break;
1036 }
1037 }
1038 cmdline_copy = next_cmdline;
1039
1040#ifdef FEAT_EVAL
1041 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001042 * Save the current line when inside a ":while" or ":for", and when
1043 * the command looks like a ":while" or ":for", because we may need it
1044 * later. When there is a '|' and another command, it is stored
1045 * separately, because we need to be able to jump back to it from an
1046 * :endwhile/:endfor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001048 if (current_line == lines_ga.ga_len
1049 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001051 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 {
1053 retval = FAIL;
1054 break;
1055 }
1056 }
1057 did_endif = FALSE;
1058#endif
1059
1060 if (count++ == 0)
1061 {
1062 /*
1063 * All output from the commands is put below each other, without
1064 * waiting for a return. Don't do this when executing commands
1065 * from a script or when being called recursive (e.g. for ":e
1066 * +command file").
1067 */
1068 if (!(flags & DOCMD_NOWAIT) && !recursive)
1069 {
1070 msg_didout_before_start = msg_didout;
1071 msg_didany = FALSE; /* no output yet */
1072 msg_start();
1073 msg_scroll = TRUE; /* put messages below each other */
1074 ++no_wait_return; /* dont wait for return until finished */
1075 ++RedrawingDisabled;
1076 did_inc = TRUE;
1077 }
1078 }
1079
1080 if (p_verbose >= 15 && sourcing_name != NULL)
1081 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 ++no_wait_return;
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001083 verbose_enter_scroll();
1084
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 smsg((char_u *)_("line %ld: %s"),
1086 (long)sourcing_lnum, cmdline_copy);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001087 if (msg_silent == 0)
1088 msg_puts((char_u *)"\n"); /* don't overwrite this */
1089
1090 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 --no_wait_return;
1092 }
1093
1094 /*
1095 * 2. Execute one '|' separated command.
1096 * do_one_cmd() will return NULL if there is no trailing '|'.
1097 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1098 */
1099 ++recursive;
1100 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1101#ifdef FEAT_EVAL
1102 &cstack,
1103#endif
1104 cmd_getline, cmd_cookie);
1105 --recursive;
1106
1107#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001108 if (cmd_cookie == (void *)&cmd_loop_cookie)
1109 /* Use "current_line" from "cmd_loop_cookie", it may have been
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110 * incremented when defining a function. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001111 current_line = cmd_loop_cookie.current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112#endif
1113
1114 if (next_cmdline == NULL)
1115 {
1116 vim_free(cmdline_copy);
1117 cmdline_copy = NULL;
1118#ifdef FEAT_CMDHIST
1119 /*
1120 * If the command was typed, remember it for the ':' register.
1121 * Do this AFTER executing the command to make :@: work.
1122 */
1123 if (getline_equal(getline, cookie, getexline)
1124 && new_last_cmdline != NULL)
1125 {
1126 vim_free(last_cmdline);
1127 last_cmdline = new_last_cmdline;
1128 new_last_cmdline = NULL;
1129 }
1130#endif
1131 }
1132 else
1133 {
1134 /* need to copy the command after the '|' to cmdline_copy, for the
1135 * next do_one_cmd() */
1136 mch_memmove(cmdline_copy, next_cmdline, STRLEN(next_cmdline) + 1);
1137 next_cmdline = cmdline_copy;
1138 }
1139
1140
1141#ifdef FEAT_EVAL
1142 /* reset did_emsg for a function that is not aborted by an error */
1143 if (did_emsg && !force_abort
1144 && getline_equal(getline, cookie, get_func_line)
1145 && !func_has_abort(real_cookie))
1146 did_emsg = FALSE;
1147
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001148 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 {
1150 ++current_line;
1151
1152 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001153 * An ":endwhile", ":endfor" and ":continue" is handled here.
1154 * If we were executing commands, jump back to the ":while" or
1155 * ":for".
1156 * If we were not executing commands, decrement cs_looplevel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001158 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001160 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001162 /* Jump back to the matching ":while" or ":for". Be careful
1163 * not to use a cs_line[] from an entry that isn't a ":while"
1164 * or ":for": It would make "current_line" invalid and can
1165 * cause a crash. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 if (!did_emsg && !got_int && !did_throw
1167 && cstack.cs_idx >= 0
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001168 && (cstack.cs_flags[cstack.cs_idx]
1169 & (CSF_WHILE | CSF_FOR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 && cstack.cs_line[cstack.cs_idx] >= 0
1171 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1172 {
1173 current_line = cstack.cs_line[cstack.cs_idx];
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001174 /* remember we jumped there */
1175 cstack.cs_lflags |= CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 line_breakcheck(); /* check if CTRL-C typed */
1177
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001178 /* Check for the next breakpoint at or after the ":while"
1179 * or ":for". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180 if (breakpoint != NULL)
1181 {
1182 *breakpoint = dbg_find_breakpoint(
1183 getline_equal(getline, cookie, getsourceline),
1184 fname,
1185 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1186 *dbg_tick = debug_tick;
1187 }
1188 }
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001189 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001191 /* can only get here with ":endwhile" or ":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 if (cstack.cs_idx >= 0)
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001193 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1194 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 }
1196 }
1197
1198 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001199 * For a ":while" or ":for" we need to remember the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001201 else if (cstack.cs_lflags & CSL_HAD_LOOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001203 cstack.cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1205 }
1206 }
1207
1208 /*
1209 * When not inside any ":while" loop, clear remembered lines.
1210 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001211 if (cstack.cs_looplevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 {
1213 if (lines_ga.ga_len > 0)
1214 {
1215 sourcing_lnum =
1216 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1217 free_cmdlines(&lines_ga);
1218 }
1219 current_line = 0;
1220 }
1221
1222 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001223 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1224 * being restored at the ":endtry". Reset them here and set the
1225 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1226 * This includes the case where a missing ":endif", ":endwhile" or
1227 * ":endfor" was detected by the ":finally" itself.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001229 if (cstack.cs_lflags & CSL_HAD_FINA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001231 cstack.cs_lflags &= ~CSL_HAD_FINA;
1232 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1233 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 did_throw ? (void *)current_exception : NULL);
1235 did_emsg = got_int = did_throw = FALSE;
1236 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1237 }
1238
1239 /* Update global "trylevel" for recursive calls to do_cmdline() from
1240 * within this loop. */
1241 trylevel = initial_trylevel + cstack.cs_trylevel;
1242
1243 /*
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001244 * If the outermost try conditional (across function calls and sourced
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 * files) is aborted because of an error, an interrupt, or an uncaught
1246 * exception, cancel everything. If it is left normally, reset
1247 * force_abort to get the non-EH compatible abortion behavior for
1248 * the rest of the script.
1249 */
1250 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1251 force_abort = FALSE;
1252
1253 /* Convert an interrupt to an exception if appropriate. */
1254 (void)do_intthrow(&cstack);
1255#endif /* FEAT_EVAL */
1256
1257 }
1258 /*
1259 * Continue executing command lines when:
1260 * - no CTRL-C typed, no aborting error, no exception thrown or try
1261 * conditionals need to be checked for executing finally clauses or
1262 * catching an interrupt exception
1263 * - didn't get an error message or lines are not typed
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001264 * - there is a command after '|', inside a :if, :while, :for or :try, or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 * looping for ":source" command or function call.
1266 */
1267 while (!((got_int
1268#ifdef FEAT_EVAL
1269 || (did_emsg && force_abort) || did_throw
1270#endif
1271 )
1272#ifdef FEAT_EVAL
1273 && cstack.cs_trylevel == 0
1274#endif
1275 )
1276 && !(did_emsg && used_getline
1277 && (getline_equal(getline, cookie, getexmodeline)
1278 || getline_equal(getline, cookie, getexline)))
1279 && (next_cmdline != NULL
1280#ifdef FEAT_EVAL
1281 || cstack.cs_idx >= 0
1282#endif
1283 || (flags & DOCMD_REPEAT)));
1284
1285 vim_free(cmdline_copy);
1286#ifdef FEAT_EVAL
1287 free_cmdlines(&lines_ga);
1288 ga_clear(&lines_ga);
1289
1290 if (cstack.cs_idx >= 0)
1291 {
1292 /*
1293 * If a sourced file or executed function ran to its end, report the
1294 * unclosed conditional.
1295 */
1296 if (!got_int && !did_throw
1297 && ((getline_equal(getline, cookie, getsourceline)
1298 && !source_finished(getline, cookie))
1299 || (getline_equal(getline, cookie, get_func_line)
1300 && !func_has_ended(real_cookie))))
1301 {
1302 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1303 EMSG(_(e_endtry));
1304 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1305 EMSG(_(e_endwhile));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001306 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1307 EMSG(_(e_endfor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 else
1309 EMSG(_(e_endif));
1310 }
1311
1312 /*
1313 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1314 * ":endtry" in a sourced file or executed function. If the try
1315 * conditional is in its finally clause, ignore anything pending.
1316 * If it is in a catch clause, finish the caught exception.
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001317 * Also cleanup any "cs_forinfo" structures.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 */
1319 do
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001320 {
1321 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1322
Bram Moolenaar89e5d682005-01-17 22:06:23 +00001323 if (idx >= 0)
1324 --idx; /* remove try block not in its finally clause */
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001325 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1326 &cstack.cs_looplevel);
1327 }
1328 while (cstack.cs_idx >= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 trylevel = initial_trylevel;
1330 }
1331
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001332 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1333 * lack was reported above and the error message is to be converted to an
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 * exception, do this now after rewinding the cstack. */
1335 do_errthrow(&cstack, getline_equal(getline, cookie, get_func_line)
1336 ? (char_u *)"endfunction" : (char_u *)NULL);
1337
1338 if (trylevel == 0)
1339 {
1340 /*
1341 * When an exception is being thrown out of the outermost try
1342 * conditional, discard the uncaught exception, disable the conversion
1343 * of interrupts or errors to exceptions, and ensure that no more
1344 * commands are executed.
1345 */
1346 if (did_throw)
1347 {
1348 void *p = NULL;
1349 char_u *saved_sourcing_name;
1350 int saved_sourcing_lnum;
1351 struct msglist *messages = NULL, *next;
1352
1353 /*
1354 * If the uncaught exception is a user exception, report it as an
1355 * error. If it is an error exception, display the saved error
1356 * message now. For an interrupt exception, do nothing; the
1357 * interrupt message is given elsewhere.
1358 */
1359 switch (current_exception->type)
1360 {
1361 case ET_USER:
Bram Moolenaar9c13b352005-05-19 20:53:52 +00001362 vim_snprintf((char *)IObuff, IOSIZE,
1363 _("E605: Exception not caught: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 current_exception->value);
1365 p = vim_strsave(IObuff);
1366 break;
1367 case ET_ERROR:
1368 messages = current_exception->messages;
1369 current_exception->messages = NULL;
1370 break;
1371 case ET_INTERRUPT:
1372 break;
1373 default:
1374 p = vim_strsave((char_u *)_(e_internal));
1375 }
1376
1377 saved_sourcing_name = sourcing_name;
1378 saved_sourcing_lnum = sourcing_lnum;
1379 sourcing_name = current_exception->throw_name;
1380 sourcing_lnum = current_exception->throw_lnum;
1381 current_exception->throw_name = NULL;
1382
1383 discard_current_exception(); /* uses IObuff if 'verbose' */
1384 suppress_errthrow = TRUE;
1385 force_abort = TRUE;
1386
1387 if (messages != NULL)
1388 {
1389 do
1390 {
1391 next = messages->next;
1392 emsg(messages->msg);
1393 vim_free(messages->msg);
1394 vim_free(messages);
1395 messages = next;
1396 }
1397 while (messages != NULL);
1398 }
1399 else if (p != NULL)
1400 {
1401 emsg(p);
1402 vim_free(p);
1403 }
1404 vim_free(sourcing_name);
1405 sourcing_name = saved_sourcing_name;
1406 sourcing_lnum = saved_sourcing_lnum;
1407 }
1408
1409 /*
1410 * On an interrupt or an aborting error not converted to an exception,
1411 * disable the conversion of errors to exceptions. (Interrupts are not
1412 * converted any more, here.) This enables also the interrupt message
1413 * when force_abort is set and did_emsg unset in case of an interrupt
1414 * from a finally clause after an error.
1415 */
1416 else if (got_int || (did_emsg && force_abort))
1417 suppress_errthrow = TRUE;
1418 }
1419
1420 /*
1421 * The current cstack will be freed when do_cmdline() returns. An uncaught
1422 * exception will have to be rethrown in the previous cstack. If a function
1423 * has just returned or a script file was just finished and the previous
1424 * cstack belongs to the same function or, respectively, script file, it
1425 * will have to be checked for finally clauses to be executed due to the
1426 * ":return" or ":finish". This is done in do_one_cmd().
1427 */
1428 if (did_throw)
1429 need_rethrow = TRUE;
1430 if ((getline_equal(getline, cookie, getsourceline)
1431 && ex_nesting_level > source_level(real_cookie))
1432 || (getline_equal(getline, cookie, get_func_line)
1433 && ex_nesting_level > func_level(real_cookie) + 1))
1434 {
1435 if (!did_throw)
1436 check_cstack = TRUE;
1437 }
1438 else
1439 {
1440 /* When leaving a function, reduce nesting level. */
1441 if (getline_equal(getline, cookie, get_func_line))
1442 --ex_nesting_level;
1443 /*
1444 * Go to debug mode when returning from a function in which we are
1445 * single-stepping.
1446 */
1447 if ((getline_equal(getline, cookie, getsourceline)
1448 || getline_equal(getline, cookie, get_func_line))
1449 && ex_nesting_level + 1 <= debug_break_level)
1450 do_debug(getline_equal(getline, cookie, getsourceline)
1451 ? (char_u *)_("End of sourced file")
1452 : (char_u *)_("End of function"));
1453 }
1454
1455 /*
1456 * Restore the exception environment (done after returning from the
1457 * debugger).
1458 */
1459 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +00001460 restore_dbg_stuff(&debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461
1462 msg_list = saved_msg_list;
1463#endif /* FEAT_EVAL */
1464
1465 /*
1466 * If there was too much output to fit on the command line, ask the user to
1467 * hit return before redrawing the screen. With the ":global" command we do
1468 * this only once after the command is finished.
1469 */
1470 if (did_inc)
1471 {
1472 --RedrawingDisabled;
1473 --no_wait_return;
1474 msg_scroll = FALSE;
1475
1476 /*
1477 * When just finished an ":if"-":else" which was typed, no need to
1478 * wait for hit-return. Also for an error situation.
1479 */
1480 if (retval == FAIL
1481#ifdef FEAT_EVAL
1482 || (did_endif && KeyTyped && !did_emsg)
1483#endif
1484 )
1485 {
1486 need_wait_return = FALSE;
1487 msg_didany = FALSE; /* don't wait when restarting edit */
1488 }
1489 else if (need_wait_return)
1490 {
1491 /*
1492 * The msg_start() above clears msg_didout. The wait_return we do
1493 * here should not overwrite the command that may be shown before
1494 * doing that.
1495 */
1496 msg_didout |= msg_didout_before_start;
1497 wait_return(FALSE);
1498 }
1499 }
1500
1501#ifndef FEAT_EVAL
1502 /*
1503 * Reset if_level, in case a sourced script file contains more ":if" than
1504 * ":endif" (could be ":if x | foo | endif").
1505 */
1506 if_level = 0;
1507#endif
1508
1509 --call_depth;
1510 return retval;
1511}
1512
1513#ifdef FEAT_EVAL
1514/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001515 * Obtain a line when inside a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 */
1517 static char_u *
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001518get_loop_line(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 int c;
1520 void *cookie;
1521 int indent;
1522{
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001523 struct loop_cookie *cp = (struct loop_cookie *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524 wcmd_T *wp;
1525 char_u *line;
1526
1527 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1528 {
1529 if (cp->repeating)
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001530 return NULL; /* trying to read past ":endwhile"/":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001532 /* First time inside the ":while"/":for": get line normally. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 if (cp->getline == NULL)
1534 line = getcmdline(c, 0L, indent);
1535 else
1536 line = cp->getline(c, cp->cookie, indent);
Bram Moolenaard68071d2006-05-02 22:08:30 +00001537 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 ++cp->current_line;
1539
1540 return line;
1541 }
1542
1543 KeyTyped = FALSE;
1544 ++cp->current_line;
1545 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1546 sourcing_lnum = wp->lnum;
1547 return vim_strsave(wp->line);
1548}
1549
1550/*
1551 * Store a line in "gap" so that a ":while" loop can execute it again.
1552 */
1553 static int
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001554store_loop_line(gap, line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 garray_T *gap;
1556 char_u *line;
1557{
1558 if (ga_grow(gap, 1) == FAIL)
1559 return FAIL;
1560 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1561 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1562 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 return OK;
1564}
1565
1566/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001567 * Free the lines stored for a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 */
1569 static void
1570free_cmdlines(gap)
1571 garray_T *gap;
1572{
1573 while (gap->ga_len > 0)
1574 {
1575 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1576 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 }
1578}
1579#endif
1580
1581/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001582 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1583 * "func". * Otherwise return TRUE when "fgetline" equals "func".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 */
1585/*ARGSUSED*/
1586 int
Bram Moolenaar89d40322006-08-29 15:30:07 +00001587getline_equal(fgetline, cookie, func)
1588 char_u *(*fgetline) __ARGS((int, void *, int));
1589 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 char_u *(*func) __ARGS((int, void *, int));
1591{
1592#ifdef FEAT_EVAL
1593 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001594 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595
Bram Moolenaar89d40322006-08-29 15:30:07 +00001596 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001597 * function that's originally used to obtain the lines. This may be
1598 * nested several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001599 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001600 cp = (struct loop_cookie *)cookie;
1601 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 {
1603 gp = cp->getline;
1604 cp = cp->cookie;
1605 }
1606 return gp == func;
1607#else
Bram Moolenaar89d40322006-08-29 15:30:07 +00001608 return fgetline == func;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609#endif
1610}
1611
1612#if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1613/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001614 * If "fgetline" is get_loop_line(), return the cookie used by the original
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 * getline function. Otherwise return "cookie".
1616 */
1617/*ARGSUSED*/
1618 void *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001619getline_cookie(fgetline, cookie)
1620 char_u *(*fgetline) __ARGS((int, void *, int));
1621 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622{
1623# ifdef FEAT_EVAL
1624 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001625 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626
Bram Moolenaar89d40322006-08-29 15:30:07 +00001627 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001628 * cookie that's originally used to obtain the lines. This may be nested
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 * several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001630 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001631 cp = (struct loop_cookie *)cookie;
1632 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 {
1634 gp = cp->getline;
1635 cp = cp->cookie;
1636 }
1637 return cp;
1638# else
1639 return cookie;
1640# endif
1641}
1642#endif
1643
1644/*
1645 * Execute one Ex command.
1646 *
1647 * If 'sourcing' is TRUE, the command will be included in the error message.
1648 *
1649 * 1. skip comment lines and leading space
1650 * 2. handle command modifiers
1651 * 3. parse range
1652 * 4. parse command
1653 * 5. parse arguments
1654 * 6. switch on command name
1655 *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001656 * Note: "fgetline" can be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 *
1658 * This function may be called recursively!
1659 */
1660#if (_MSC_VER == 1200)
1661/*
Bram Moolenaared203462004-06-16 11:19:22 +00001662 * Avoid optimisation bug in VC++ version 6.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 */
Bram Moolenaar281bdce2005-01-25 21:53:18 +00001664 #pragma optimize( "g", off )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665#endif
1666 static char_u *
1667do_one_cmd(cmdlinep, sourcing,
1668#ifdef FEAT_EVAL
1669 cstack,
1670#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001671 fgetline, cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 char_u **cmdlinep;
1673 int sourcing;
1674#ifdef FEAT_EVAL
1675 struct condstack *cstack;
1676#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001677 char_u *(*fgetline) __ARGS((int, void *, int));
1678 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679{
1680 char_u *p;
1681 linenr_T lnum;
1682 long n;
1683 char_u *errormsg = NULL; /* error message */
1684 exarg_T ea; /* Ex command arguments */
1685 long verbose_save = -1;
1686 int save_msg_scroll = 0;
1687 int did_silent = 0;
1688 int did_esilent = 0;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001689#ifdef HAVE_SANDBOX
1690 int did_sandbox = FALSE;
1691#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692 cmdmod_T save_cmdmod;
1693 int ni; /* set when Not Implemented */
1694
1695 vim_memset(&ea, 0, sizeof(ea));
1696 ea.line1 = 1;
1697 ea.line2 = 1;
1698#ifdef FEAT_EVAL
1699 ++ex_nesting_level;
1700#endif
1701
1702 /* when not editing the last file :q has to be typed twice */
1703 if (quitmore
1704#ifdef FEAT_EVAL
1705 /* avoid that a function call in 'statusline' does this */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001706 && !getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707#endif
1708 )
1709 --quitmore;
1710
1711 /*
1712 * Reset browse, confirm, etc.. They are restored when returning, for
1713 * recursive calls.
1714 */
1715 save_cmdmod = cmdmod;
1716 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1717
Bram Moolenaarcbb37ad2006-08-16 15:04:21 +00001718 /* "#!anything" is handled like a comment. */
1719 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1720 goto doend;
1721
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 /*
1723 * Repeat until no more command modifiers are found.
1724 */
1725 ea.cmd = *cmdlinep;
1726 for (;;)
1727 {
1728/*
1729 * 1. skip comment lines and leading white space and colons
1730 */
1731 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1732 ++ea.cmd;
1733
1734 /* in ex mode, an empty line works like :+ */
1735 if (*ea.cmd == NUL && exmode_active
Bram Moolenaar89d40322006-08-29 15:30:07 +00001736 && (getline_equal(fgetline, cookie, getexmodeline)
1737 || getline_equal(fgetline, cookie, getexline))
Bram Moolenaardf177f62005-02-22 08:39:57 +00001738 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 {
1740 ea.cmd = (char_u *)"+";
1741 ex_pressedreturn = TRUE;
1742 }
1743
1744 /* ignore comment and empty lines */
1745 if (*ea.cmd == '"' || *ea.cmd == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001746 {
1747 ex_pressedreturn = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001749 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750
1751/*
1752 * 2. handle command modifiers.
1753 */
1754 p = ea.cmd;
1755 if (VIM_ISDIGIT(*ea.cmd))
1756 p = skipwhite(skipdigits(ea.cmd));
1757 switch (*p)
1758 {
1759 /* When adding an entry, also modify cmd_exists(). */
1760 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1761 break;
1762#ifdef FEAT_WINDOWS
1763 cmdmod.split |= WSP_ABOVE;
1764#endif
1765 continue;
1766
1767 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1768 {
1769#ifdef FEAT_WINDOWS
1770 cmdmod.split |= WSP_BELOW;
1771#endif
1772 continue;
1773 }
1774 if (checkforcmd(&ea.cmd, "browse", 3))
1775 {
1776#ifdef FEAT_BROWSE
1777 cmdmod.browse = TRUE;
1778#endif
1779 continue;
1780 }
1781 if (!checkforcmd(&ea.cmd, "botright", 2))
1782 break;
1783#ifdef FEAT_WINDOWS
1784 cmdmod.split |= WSP_BOT;
1785#endif
1786 continue;
1787
1788 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1789 break;
1790#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1791 cmdmod.confirm = TRUE;
1792#endif
1793 continue;
1794
1795 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1796 {
1797 cmdmod.keepmarks = TRUE;
1798 continue;
1799 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001800 if (checkforcmd(&ea.cmd, "keepalt", 5))
1801 {
1802 cmdmod.keepalt = TRUE;
1803 continue;
1804 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001805 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1806 break;
1807 cmdmod.keepjumps = TRUE;
1808 continue;
1809
1810 /* ":hide" and ":hide | cmd" are not modifiers */
1811 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1812 || *p == NUL || ends_excmd(*p))
1813 break;
1814 ea.cmd = p;
1815 cmdmod.hide = TRUE;
1816 continue;
1817
1818 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1819 {
1820 cmdmod.lockmarks = TRUE;
1821 continue;
1822 }
1823
1824 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1825 break;
1826#ifdef FEAT_WINDOWS
1827 cmdmod.split |= WSP_ABOVE;
1828#endif
1829 continue;
1830
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001831 case 'n': if (!checkforcmd(&ea.cmd, "noautocmd", 3))
1832 break;
1833#ifdef FEAT_AUTOCMD
1834 if (cmdmod.save_ei == NULL)
1835 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001836 /* Set 'eventignore' to "all". Restore the
1837 * existing option value later. */
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001838 cmdmod.save_ei = vim_strsave(p_ei);
1839 set_string_option_direct((char_u *)"ei", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001840 (char_u *)"all", OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001841 }
1842#endif
1843 continue;
1844
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
1846 break;
1847#ifdef FEAT_WINDOWS
1848 cmdmod.split |= WSP_BELOW;
1849#endif
1850 continue;
1851
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001852 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
1853 {
1854#ifdef HAVE_SANDBOX
1855 if (!did_sandbox)
1856 ++sandbox;
1857 did_sandbox = TRUE;
1858#endif
1859 continue;
1860 }
1861 if (!checkforcmd(&ea.cmd, "silent", 3))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 break;
1863 ++did_silent;
1864 ++msg_silent;
1865 save_msg_scroll = msg_scroll;
1866 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
1867 {
1868 /* ":silent!", but not "silent !cmd" */
1869 ea.cmd = skipwhite(ea.cmd + 1);
1870 ++emsg_silent;
1871 ++did_esilent;
1872 }
1873 continue;
1874
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001875 case 't': if (checkforcmd(&p, "tab", 3))
1876 {
1877#ifdef FEAT_WINDOWS
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001878 if (vim_isdigit(*ea.cmd))
1879 cmdmod.tab = atoi((char *)ea.cmd) + 1;
1880 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001881 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001882 ea.cmd = p;
1883#endif
1884 continue;
1885 }
1886 if (!checkforcmd(&ea.cmd, "topleft", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 break;
1888#ifdef FEAT_WINDOWS
1889 cmdmod.split |= WSP_TOP;
1890#endif
1891 continue;
1892
1893 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
1894 {
1895#ifdef FEAT_VERTSPLIT
1896 cmdmod.split |= WSP_VERT;
1897#endif
1898 continue;
1899 }
1900 if (!checkforcmd(&p, "verbose", 4))
1901 break;
1902 if (verbose_save < 0)
1903 verbose_save = p_verbose;
Bram Moolenaared203462004-06-16 11:19:22 +00001904 if (vim_isdigit(*ea.cmd))
1905 p_verbose = atoi((char *)ea.cmd);
1906 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 p_verbose = 1;
1908 ea.cmd = p;
1909 continue;
1910 }
1911 break;
1912 }
1913
1914#ifdef FEAT_EVAL
1915 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1916 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1917#else
1918 ea.skip = (if_level > 0);
1919#endif
1920
1921#ifdef FEAT_EVAL
Bram Moolenaar05159a02005-02-26 23:04:13 +00001922# ifdef FEAT_PROFILE
1923 /* Count this line for profiling if ea.skip is FALSE. */
Bram Moolenaar371d5402006-03-20 21:47:49 +00001924 if (do_profiling == PROF_YES && !ea.skip)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001925 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001926 if (getline_equal(fgetline, cookie, get_func_line))
1927 func_line_exec(getline_cookie(fgetline, cookie));
1928 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +00001929 script_line_exec();
1930 }
1931#endif
1932
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 /* May go to debug mode. If this happens and the ">quit" debug command is
1934 * used, throw an interrupt exception and skip the next command. */
1935 dbg_check_breakpoint(&ea);
1936 if (!ea.skip && got_int)
1937 {
1938 ea.skip = TRUE;
1939 (void)do_intthrow(cstack);
1940 }
1941#endif
1942
1943/*
1944 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1945 *
1946 * where 'addr' is:
1947 *
1948 * % (entire file)
1949 * $ [+-NUM]
1950 * 'x [+-NUM] (where x denotes a currently defined mark)
1951 * . [+-NUM]
1952 * [+-NUM]..
1953 * NUM
1954 *
1955 * The ea.cmd pointer is updated to point to the first character following the
1956 * range spec. If an initial address is found, but no second, the upper bound
1957 * is equal to the lower.
1958 */
1959
1960 /* repeat for all ',' or ';' separated addresses */
1961 for (;;)
1962 {
1963 ea.line1 = ea.line2;
1964 ea.line2 = curwin->w_cursor.lnum; /* default is current line number */
1965 ea.cmd = skipwhite(ea.cmd);
1966 lnum = get_address(&ea.cmd, ea.skip, ea.addr_count == 0);
1967 if (ea.cmd == NULL) /* error detected */
1968 goto doend;
1969 if (lnum == MAXLNUM)
1970 {
1971 if (*ea.cmd == '%') /* '%' - all lines */
1972 {
1973 ++ea.cmd;
1974 ea.line1 = 1;
1975 ea.line2 = curbuf->b_ml.ml_line_count;
1976 ++ea.addr_count;
1977 }
1978 /* '*' - visual area */
1979 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1980 {
1981 pos_T *fp;
1982
1983 ++ea.cmd;
1984 if (!ea.skip)
1985 {
1986 fp = getmark('<', FALSE);
1987 if (check_mark(fp) == FAIL)
1988 goto doend;
1989 ea.line1 = fp->lnum;
1990 fp = getmark('>', FALSE);
1991 if (check_mark(fp) == FAIL)
1992 goto doend;
1993 ea.line2 = fp->lnum;
1994 ++ea.addr_count;
1995 }
1996 }
1997 }
1998 else
1999 ea.line2 = lnum;
2000 ea.addr_count++;
2001
2002 if (*ea.cmd == ';')
2003 {
2004 if (!ea.skip)
2005 curwin->w_cursor.lnum = ea.line2;
2006 }
2007 else if (*ea.cmd != ',')
2008 break;
2009 ++ea.cmd;
2010 }
2011
2012 /* One address given: set start and end lines */
2013 if (ea.addr_count == 1)
2014 {
2015 ea.line1 = ea.line2;
2016 /* ... but only implicit: really no address given */
2017 if (lnum == MAXLNUM)
2018 ea.addr_count = 0;
2019 }
2020
2021 /* Don't leave the cursor on an illegal line (caused by ';') */
2022 check_cursor_lnum();
2023
2024/*
2025 * 4. parse command
2026 */
2027
2028 /*
2029 * Skip ':' and any white space
2030 */
2031 ea.cmd = skipwhite(ea.cmd);
2032 while (*ea.cmd == ':')
2033 ea.cmd = skipwhite(ea.cmd + 1);
2034
2035 /*
2036 * If we got a line, but no command, then go to the line.
2037 * If we find a '|' or '\n' we set ea.nextcmd.
2038 */
2039 if (*ea.cmd == NUL || *ea.cmd == '"' ||
2040 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2041 {
2042 /*
2043 * strange vi behaviour:
2044 * ":3" jumps to line 3
2045 * ":3|..." prints line 3
2046 * ":|" prints current line
2047 */
2048 if (ea.skip) /* skip this if inside :if */
2049 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002050 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002051 {
2052 ea.cmdidx = CMD_print;
2053 ea.argt = RANGE+COUNT+TRLBAR;
2054 if ((errormsg = invalid_range(&ea)) == NULL)
2055 {
2056 correct_range(&ea);
2057 ex_print(&ea);
2058 }
2059 }
2060 else if (ea.addr_count != 0)
2061 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002062 if (ea.line2 > curbuf->b_ml.ml_line_count)
2063 {
2064 /* With '-' in 'cpoptions' a line number past the file is an
2065 * error, otherwise put it at the end of the file. */
2066 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2067 ea.line2 = -1;
2068 else
2069 ea.line2 = curbuf->b_ml.ml_line_count;
2070 }
2071
2072 if (ea.line2 < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002073 errormsg = (char_u *)_(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 else
2075 {
2076 if (ea.line2 == 0)
2077 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 else
2079 curwin->w_cursor.lnum = ea.line2;
2080 beginline(BL_SOL | BL_FIX);
2081 }
2082 }
2083 goto doend;
2084 }
2085
2086 /* Find the command and let "p" point to after it. */
2087 p = find_command(&ea, NULL);
2088
2089#ifdef FEAT_USR_CMDS
2090 if (p == NULL)
2091 {
2092 if (!ea.skip)
2093 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2094 goto doend;
2095 }
2096 /* Check for wrong commands. */
2097 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2098 {
2099 errormsg = uc_fun_cmd();
2100 goto doend;
2101 }
2102#endif
2103 if (ea.cmdidx == CMD_SIZE)
2104 {
2105 if (!ea.skip)
2106 {
2107 STRCPY(IObuff, _("E492: Not an editor command"));
2108 if (!sourcing)
2109 {
2110 STRCAT(IObuff, ": ");
2111 STRNCAT(IObuff, *cmdlinep, 40);
2112 }
2113 errormsg = IObuff;
2114 }
2115 goto doend;
2116 }
2117
2118 ni = (
2119#ifdef FEAT_USR_CMDS
2120 !USER_CMDIDX(ea.cmdidx) &&
2121#endif
Bram Moolenaar3ebc1e52007-07-05 07:54:17 +00002122 (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00002123#ifdef HAVE_EX_SCRIPT_NI
2124 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2125#endif
2126 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127
2128#ifndef FEAT_EVAL
2129 /*
2130 * When the expression evaluation is disabled, recognize the ":if" and
2131 * ":endif" commands and ignore everything in between it.
2132 */
2133 if (ea.cmdidx == CMD_if)
2134 ++if_level;
2135 if (if_level)
2136 {
2137 if (ea.cmdidx == CMD_endif)
2138 --if_level;
2139 goto doend;
2140 }
2141
2142#endif
2143
2144 if (*p == '!' && ea.cmdidx != CMD_substitute) /* forced commands */
2145 {
2146 ++p;
2147 ea.forceit = TRUE;
2148 }
2149 else
2150 ea.forceit = FALSE;
2151
2152/*
2153 * 5. parse arguments
2154 */
2155#ifdef FEAT_USR_CMDS
2156 if (!USER_CMDIDX(ea.cmdidx))
2157#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002158 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159
2160 if (!ea.skip)
2161 {
2162#ifdef HAVE_SANDBOX
2163 if (sandbox != 0 && !(ea.argt & SBOXOK))
2164 {
2165 /* Command not allowed in sandbox. */
2166 errormsg = (char_u *)_(e_sandbox);
2167 goto doend;
2168 }
2169#endif
2170 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2171 {
2172 /* Command not allowed in non-'modifiable' buffer */
2173 errormsg = (char_u *)_(e_modifiable);
2174 goto doend;
2175 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002176
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002177 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178# ifdef FEAT_USR_CMDS
2179 && !USER_CMDIDX(ea.cmdidx)
2180# endif
2181 )
2182 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002183 /* Command not allowed when editing the command line. */
2184#ifdef FEAT_CMDWIN
2185 if (cmdwin_type != 0)
2186 errormsg = (char_u *)_(e_cmdwin);
2187 else
2188#endif
2189 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 goto doend;
2191 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002192#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002193 /* Disallow editing another buffer when "curbuf_lock" is set.
2194 * Do allow ":edit" (check for argument later).
2195 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002196 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002197 && ea.cmdidx != CMD_edit
2198 && ea.cmdidx != CMD_checktime
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002199# ifdef FEAT_USR_CMDS
2200 && !USER_CMDIDX(ea.cmdidx)
2201# endif
2202 && curbuf_locked())
2203 goto doend;
2204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205
2206 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2207 {
2208 /* no range allowed */
2209 errormsg = (char_u *)_(e_norange);
2210 goto doend;
2211 }
2212 }
2213
2214 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2215 {
2216 errormsg = (char_u *)_(e_nobang);
2217 goto doend;
2218 }
2219
2220 /*
2221 * Don't complain about the range if it is not used
2222 * (could happen if line_count is accidentally set to 0).
2223 */
2224 if (!ea.skip && !ni)
2225 {
2226 /*
2227 * If the range is backwards, ask for confirmation and, if given, swap
2228 * ea.line1 & ea.line2 so it's forwards again.
2229 * When global command is busy, don't ask, will fail below.
2230 */
2231 if (!global_busy && ea.line1 > ea.line2)
2232 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002233 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002235 if (sourcing || exmode_active)
2236 {
2237 errormsg = (char_u *)_("E493: Backwards range given");
2238 goto doend;
2239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 if (ask_yesno((char_u *)
2241 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002242 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 }
2244 lnum = ea.line1;
2245 ea.line1 = ea.line2;
2246 ea.line2 = lnum;
2247 }
2248 if ((errormsg = invalid_range(&ea)) != NULL)
2249 goto doend;
2250 }
2251
2252 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2253 ea.line2 = 1;
2254
2255 correct_range(&ea);
2256
2257#ifdef FEAT_FOLDING
2258 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2259 {
2260 /* Put the first line at the start of a closed fold, put the last line
2261 * at the end of a closed fold. */
2262 (void)hasFolding(ea.line1, &ea.line1, NULL);
2263 (void)hasFolding(ea.line2, NULL, &ea.line2);
2264 }
2265#endif
2266
2267#ifdef FEAT_QUICKFIX
2268 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002269 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 * option here, so things like % get expanded.
2271 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002272 p = replace_makeprg(&ea, p, cmdlinep);
2273 if (p == NULL)
2274 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275#endif
2276
2277 /*
2278 * Skip to start of argument.
2279 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2280 */
2281 if (ea.cmdidx == CMD_bang)
2282 ea.arg = p;
2283 else
2284 ea.arg = skipwhite(p);
2285
2286 /*
2287 * Check for "++opt=val" argument.
2288 * Must be first, allow ":w ++enc=utf8 !cmd"
2289 */
2290 if (ea.argt & ARGOPT)
2291 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2292 if (getargopt(&ea) == FAIL && !ni)
2293 {
2294 errormsg = (char_u *)_(e_invarg);
2295 goto doend;
2296 }
2297
2298 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2299 {
2300 if (*ea.arg == '>') /* append */
2301 {
2302 if (*++ea.arg != '>') /* typed wrong */
2303 {
2304 errormsg = (char_u *)_("E494: Use w or w>>");
2305 goto doend;
2306 }
2307 ea.arg = skipwhite(ea.arg + 1);
2308 ea.append = TRUE;
2309 }
2310 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2311 {
2312 ++ea.arg;
2313 ea.usefilter = TRUE;
2314 }
2315 }
2316
2317 if (ea.cmdidx == CMD_read)
2318 {
2319 if (ea.forceit)
2320 {
2321 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2322 ea.forceit = FALSE;
2323 }
2324 else if (*ea.arg == '!') /* :r !filter */
2325 {
2326 ++ea.arg;
2327 ea.usefilter = TRUE;
2328 }
2329 }
2330
2331 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2332 {
2333 ea.amount = 1;
2334 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2335 {
2336 ++ea.arg;
2337 ++ea.amount;
2338 }
2339 ea.arg = skipwhite(ea.arg);
2340 }
2341
2342 /*
2343 * Check for "+command" argument, before checking for next command.
2344 * Don't do this for ":read !cmd" and ":write !cmd".
2345 */
2346 if ((ea.argt & EDITCMD) && !ea.usefilter)
2347 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2348
2349 /*
2350 * Check for '|' to separate commands and '"' to start comments.
2351 * Don't do this for ":read !cmd" and ":write !cmd".
2352 */
2353 if ((ea.argt & TRLBAR) && !ea.usefilter)
2354 separate_nextcmd(&ea);
2355
2356 /*
2357 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002358 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2359 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002361 else if (ea.cmdidx == CMD_bang
2362 || ea.cmdidx == CMD_global
2363 || ea.cmdidx == CMD_vglobal
2364 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 {
2366 for (p = ea.arg; *p; ++p)
2367 {
2368 /* Remove one backslash before a newline, so that it's possible to
2369 * pass a newline to the shell and also a newline that is preceded
2370 * with a backslash. This makes it impossible to end a shell
2371 * command in a backslash, but that doesn't appear useful.
2372 * Halving the number of backslashes is incompatible with previous
2373 * versions. */
2374 if (*p == '\\' && p[1] == '\n')
2375 mch_memmove(p, p + 1, STRLEN(p));
2376 else if (*p == '\n')
2377 {
2378 ea.nextcmd = p + 1;
2379 *p = NUL;
2380 break;
2381 }
2382 }
2383 }
2384
2385 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2386 {
2387 ea.line1 = 1;
2388 ea.line2 = curbuf->b_ml.ml_line_count;
2389 }
2390
2391 /* accept numbered register only when no count allowed (:put) */
2392 if ( (ea.argt & REGSTR)
2393 && *ea.arg != NUL
2394#ifdef FEAT_USR_CMDS
2395 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2396 && USER_CMDIDX(ea.cmdidx)))
2397 /* Do not allow register = for user commands */
2398 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2399#else
2400 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2401#endif
2402 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2403 {
2404 ea.regname = *ea.arg++;
2405#ifdef FEAT_EVAL
2406 /* for '=' register: accept the rest of the line as an expression */
2407 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2408 {
2409 set_expr_line(vim_strsave(ea.arg));
2410 ea.arg += STRLEN(ea.arg);
2411 }
2412#endif
2413 ea.arg = skipwhite(ea.arg);
2414 }
2415
2416 /*
2417 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2418 * count, it's a buffer name.
2419 */
2420 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2421 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2422 || vim_iswhite(*p)))
2423 {
2424 n = getdigits(&ea.arg);
2425 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002426 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 {
2428 errormsg = (char_u *)_(e_zerocount);
2429 goto doend;
2430 }
2431 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2432 {
2433 ea.line2 = n;
2434 if (ea.addr_count == 0)
2435 ea.addr_count = 1;
2436 }
2437 else
2438 {
2439 ea.line1 = ea.line2;
2440 ea.line2 += n - 1;
2441 ++ea.addr_count;
2442 /*
2443 * Be vi compatible: no error message for out of range.
2444 */
2445 if (ea.line2 > curbuf->b_ml.ml_line_count)
2446 ea.line2 = curbuf->b_ml.ml_line_count;
2447 }
2448 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002449
2450 /*
2451 * Check for flags: 'l', 'p' and '#'.
2452 */
2453 if (ea.argt & EXFLAGS)
2454 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002456 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002457 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 {
2459 errormsg = (char_u *)_(e_trailing);
2460 goto doend;
2461 }
2462
2463 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2464 {
2465 errormsg = (char_u *)_(e_argreq);
2466 goto doend;
2467 }
2468
2469#ifdef FEAT_EVAL
2470 /*
2471 * Skip the command when it's not going to be executed.
2472 * The commands like :if, :endif, etc. always need to be executed.
2473 * Also make an exception for commands that handle a trailing command
2474 * themselves.
2475 */
2476 if (ea.skip)
2477 {
2478 switch (ea.cmdidx)
2479 {
2480 /* commands that need evaluation */
2481 case CMD_while:
2482 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002483 case CMD_for:
2484 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 case CMD_if:
2486 case CMD_elseif:
2487 case CMD_else:
2488 case CMD_endif:
2489 case CMD_try:
2490 case CMD_catch:
2491 case CMD_finally:
2492 case CMD_endtry:
2493 case CMD_function:
2494 break;
2495
2496 /* Commands that handle '|' themselves. Check: A command should
2497 * either have the TRLBAR flag, appear in this list or appear in
2498 * the list at ":help :bar". */
2499 case CMD_aboveleft:
2500 case CMD_and:
2501 case CMD_belowright:
2502 case CMD_botright:
2503 case CMD_browse:
2504 case CMD_call:
2505 case CMD_confirm:
2506 case CMD_delfunction:
2507 case CMD_djump:
2508 case CMD_dlist:
2509 case CMD_dsearch:
2510 case CMD_dsplit:
2511 case CMD_echo:
2512 case CMD_echoerr:
2513 case CMD_echomsg:
2514 case CMD_echon:
2515 case CMD_execute:
2516 case CMD_help:
2517 case CMD_hide:
2518 case CMD_ijump:
2519 case CMD_ilist:
2520 case CMD_isearch:
2521 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002522 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 case CMD_keepjumps:
2524 case CMD_keepmarks:
2525 case CMD_leftabove:
2526 case CMD_let:
2527 case CMD_lockmarks:
2528 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002529 case CMD_mzscheme:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 case CMD_perl:
2531 case CMD_psearch:
2532 case CMD_python:
2533 case CMD_return:
2534 case CMD_rightbelow:
2535 case CMD_ruby:
2536 case CMD_silent:
2537 case CMD_smagic:
2538 case CMD_snomagic:
2539 case CMD_substitute:
2540 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002541 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 case CMD_tcl:
2543 case CMD_throw:
2544 case CMD_tilde:
2545 case CMD_topleft:
2546 case CMD_unlet:
2547 case CMD_verbose:
2548 case CMD_vertical:
2549 break;
2550
2551 default: goto doend;
2552 }
2553 }
2554#endif
2555
2556 if (ea.argt & XFILE)
2557 {
2558 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2559 goto doend;
2560 }
2561
2562#ifdef FEAT_LISTCMDS
2563 /*
2564 * Accept buffer name. Cannot be used at the same time with a buffer
2565 * number. Don't do this for a user command.
2566 */
2567 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2568# ifdef FEAT_USR_CMDS
2569 && !USER_CMDIDX(ea.cmdidx)
2570# endif
2571 )
2572 {
2573 /*
2574 * :bdelete, :bwipeout and :bunload take several arguments, separated
2575 * by spaces: find next space (skipping over escaped characters).
2576 * The others take one argument: ignore trailing spaces.
2577 */
2578 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2579 || ea.cmdidx == CMD_bunload)
2580 p = skiptowhite_esc(ea.arg);
2581 else
2582 {
2583 p = ea.arg + STRLEN(ea.arg);
2584 while (p > ea.arg && vim_iswhite(p[-1]))
2585 --p;
2586 }
2587 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2588 if (ea.line2 < 0) /* failed */
2589 goto doend;
2590 ea.addr_count = 1;
2591 ea.arg = skipwhite(p);
2592 }
2593#endif
2594
2595/*
2596 * 6. switch on command name
2597 *
2598 * The "ea" structure holds the arguments that can be used.
2599 */
2600 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002601 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 ea.cookie = cookie;
2603#ifdef FEAT_EVAL
2604 ea.cstack = cstack;
2605#endif
2606
2607#ifdef FEAT_USR_CMDS
2608 if (USER_CMDIDX(ea.cmdidx))
2609 {
2610 /*
2611 * Execute a user-defined command.
2612 */
2613 do_ucmd(&ea);
2614 }
2615 else
2616#endif
2617 {
2618 /*
2619 * Call the function to execute the command.
2620 */
2621 ea.errmsg = NULL;
2622 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2623 if (ea.errmsg != NULL)
2624 errormsg = (char_u *)_(ea.errmsg);
2625 }
2626
2627#ifdef FEAT_EVAL
2628 /*
2629 * If the command just executed called do_cmdline(), any throw or ":return"
2630 * or ":finish" encountered there must also check the cstack of the still
2631 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2632 * exception, or reanimate a returned function or finished script file and
2633 * return or finish it again.
2634 */
2635 if (need_rethrow)
2636 do_throw(cstack);
2637 else if (check_cstack)
2638 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002639 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002641 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 && current_func_returned())
2643 do_return(&ea, TRUE, FALSE, NULL);
2644 }
2645 need_rethrow = check_cstack = FALSE;
2646#endif
2647
2648doend:
2649 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2650 curwin->w_cursor.lnum = 1;
2651
2652 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2653 {
2654 if (sourcing)
2655 {
2656 if (errormsg != IObuff)
2657 {
2658 STRCPY(IObuff, errormsg);
2659 errormsg = IObuff;
2660 }
2661 STRCAT(errormsg, ": ");
2662 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff));
2663 }
2664 emsg(errormsg);
2665 }
2666#ifdef FEAT_EVAL
2667 do_errthrow(cstack,
2668 (ea.cmdidx != CMD_SIZE
2669# ifdef FEAT_USR_CMDS
2670 && !USER_CMDIDX(ea.cmdidx)
2671# endif
2672 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2673#endif
2674
2675 if (verbose_save >= 0)
2676 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002677#ifdef FEAT_AUTOCMD
2678 if (cmdmod.save_ei != NULL)
2679 {
2680 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002681 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2682 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002683 free_string_option(cmdmod.save_ei);
2684 }
2685#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686
2687 cmdmod = save_cmdmod;
2688
2689 if (did_silent > 0)
2690 {
2691 /* messages could be enabled for a serious error, need to check if the
2692 * counters don't become negative */
2693 msg_silent -= did_silent;
2694 if (msg_silent < 0)
2695 msg_silent = 0;
2696 emsg_silent -= did_esilent;
2697 if (emsg_silent < 0)
2698 emsg_silent = 0;
2699 /* Restore msg_scroll, it's set by file I/O commands, even when no
2700 * message is actually displayed. */
2701 msg_scroll = save_msg_scroll;
2702 }
2703
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002704#ifdef HAVE_SANDBOX
2705 if (did_sandbox)
2706 --sandbox;
2707#endif
2708
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2710 ea.nextcmd = NULL;
2711
2712#ifdef FEAT_EVAL
2713 --ex_nesting_level;
2714#endif
2715
2716 return ea.nextcmd;
2717}
2718#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00002719 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720#endif
2721
2722/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002723 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 * If there is a match advance "pp" to the argument and return TRUE.
2725 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002726 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002728 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 char *cmd; /* name of command */
2730 int len; /* required length */
2731{
2732 int i;
2733
2734 for (i = 0; cmd[i] != NUL; ++i)
2735 if (cmd[i] != (*pp)[i])
2736 break;
2737 if (i >= len && !isalpha((*pp)[i]))
2738 {
2739 *pp = skipwhite(*pp + i);
2740 return TRUE;
2741 }
2742 return FALSE;
2743}
2744
2745/*
2746 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002747 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002749 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 * Returns NULL for an ambiguous user command.
2751 */
2752/*ARGSUSED*/
2753 static char_u *
2754find_command(eap, full)
2755 exarg_T *eap;
2756 int *full;
2757{
2758 int len;
2759 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002760 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761
2762 /*
2763 * Isolate the command and search for it in the command table.
2764 * Exeptions:
2765 * - the 'k' command can directly be followed by any character.
2766 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2767 * but :sre[wind] is another command, as are :scrip[tnames],
2768 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00002769 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 */
2771 p = eap->cmd;
2772 if (*p == 'k')
2773 {
2774 eap->cmdidx = CMD_k;
2775 ++p;
2776 }
2777 else if (p[0] == 's'
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002778 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2779 && p[3] != 'i' && p[4] != 'p')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 || p[1] == 'g'
2781 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2782 || p[1] == 'I'
2783 || (p[1] == 'r' && p[2] != 'e')))
2784 {
2785 eap->cmdidx = CMD_substitute;
2786 ++p;
2787 }
2788 else
2789 {
2790 while (ASCII_ISALPHA(*p))
2791 ++p;
2792 /* check for non-alpha command */
2793 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2794 ++p;
2795 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00002796 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2797 {
2798 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2799 * :delete with the 'l' flag. Same for 'p'. */
2800 for (i = 0; i < len; ++i)
2801 if (eap->cmd[i] != "delete"[i])
2802 break;
2803 if (i == len - 1)
2804 {
2805 --len;
2806 if (p[-1] == 'l')
2807 eap->flags |= EXFLAG_LIST;
2808 else
2809 eap->flags |= EXFLAG_PRINT;
2810 }
2811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812
2813 if (ASCII_ISLOWER(*eap->cmd))
2814 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2815 else
2816 eap->cmdidx = cmdidxs[26];
2817
2818 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2819 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2820 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2821 (size_t)len) == 0)
2822 {
2823#ifdef FEAT_EVAL
2824 if (full != NULL
2825 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2826 *full = TRUE;
2827#endif
2828 break;
2829 }
2830
2831#ifdef FEAT_USR_CMDS
2832 /* Look for a user defined command as a last resort */
2833 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2834 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002835 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 while (ASCII_ISALNUM(*p))
2837 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002838 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 }
2840#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002841 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 eap->cmdidx = CMD_SIZE;
2843 }
2844
2845 return p;
2846}
2847
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002848#ifdef FEAT_USR_CMDS
2849/*
2850 * Search for a user command that matches "eap->cmd".
2851 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2852 * Return a pointer to just after the command.
2853 * Return NULL if there is no matching command.
2854 */
2855 static char_u *
2856find_ucmd(eap, p, full, xp, compl)
2857 exarg_T *eap;
2858 char_u *p; /* end of the command (possibly including count) */
2859 int *full; /* set to TRUE for a full match */
2860 expand_T *xp; /* used for completion, NULL otherwise */
2861 int *compl; /* completion flags or NULL */
2862{
2863 int len = (int)(p - eap->cmd);
2864 int j, k, matchlen = 0;
2865 ucmd_T *uc;
2866 int found = FALSE;
2867 int possible = FALSE;
2868 char_u *cp, *np; /* Point into typed cmd and test name */
2869 garray_T *gap;
2870 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2871 only full match global is accepted. */
2872
2873 /*
2874 * Look for buffer-local user commands first, then global ones.
2875 */
2876 gap = &curbuf->b_ucmds;
2877 for (;;)
2878 {
2879 for (j = 0; j < gap->ga_len; ++j)
2880 {
2881 uc = USER_CMD_GA(gap, j);
2882 cp = eap->cmd;
2883 np = uc->uc_name;
2884 k = 0;
2885 while (k < len && *np != NUL && *cp++ == *np++)
2886 k++;
2887 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2888 {
2889 /* If finding a second match, the command is ambiguous. But
2890 * not if a buffer-local command wasn't a full match and a
2891 * global command is a full match. */
2892 if (k == len && found && *np != NUL)
2893 {
2894 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002895 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002896 amb_local = TRUE;
2897 }
2898
2899 if (!found || (k == len && *np == NUL))
2900 {
2901 /* If we matched up to a digit, then there could
2902 * be another command including the digit that we
2903 * should use instead.
2904 */
2905 if (k == len)
2906 found = TRUE;
2907 else
2908 possible = TRUE;
2909
2910 if (gap == &ucmds)
2911 eap->cmdidx = CMD_USER;
2912 else
2913 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002914 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002915 eap->useridx = j;
2916
2917# ifdef FEAT_CMDL_COMPL
2918 if (compl != NULL)
2919 *compl = uc->uc_compl;
2920# ifdef FEAT_EVAL
2921 if (xp != NULL)
2922 {
2923 xp->xp_arg = uc->uc_compl_arg;
2924 xp->xp_scriptID = uc->uc_scriptID;
2925 }
2926# endif
2927# endif
2928 /* Do not search for further abbreviations
2929 * if this is an exact match. */
2930 matchlen = k;
2931 if (k == len && *np == NUL)
2932 {
2933 if (full != NULL)
2934 *full = TRUE;
2935 amb_local = FALSE;
2936 break;
2937 }
2938 }
2939 }
2940 }
2941
2942 /* Stop if we found a full match or searched all. */
2943 if (j < gap->ga_len || gap == &ucmds)
2944 break;
2945 gap = &ucmds;
2946 }
2947
2948 /* Only found ambiguous matches. */
2949 if (amb_local)
2950 {
2951 if (xp != NULL)
2952 xp->xp_context = EXPAND_UNSUCCESSFUL;
2953 return NULL;
2954 }
2955
2956 /* The match we found may be followed immediately by a number. Move "p"
2957 * back to point to it. */
2958 if (found || possible)
2959 return p + (matchlen - len);
2960 return p;
2961}
2962#endif
2963
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964#if defined(FEAT_EVAL) || defined(PROTO)
2965/*
2966 * Return > 0 if an Ex command "name" exists.
2967 * Return 2 if there is an exact match.
2968 * Return 3 if there is an ambiguous match.
2969 */
2970 int
2971cmd_exists(name)
2972 char_u *name;
2973{
2974 exarg_T ea;
2975 int full = FALSE;
2976 int i;
2977 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00002978 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 static struct cmdmod
2980 {
2981 char *name;
2982 int minlen;
2983 } cmdmods[] = {
2984 {"aboveleft", 3},
2985 {"belowright", 3},
2986 {"botright", 2},
2987 {"browse", 3},
2988 {"confirm", 4},
2989 {"hide", 3},
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002990 {"keepalt", 5},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 {"keepjumps", 5},
2992 {"keepmarks", 3},
2993 {"leftabove", 5},
2994 {"lockmarks", 3},
2995 {"rightbelow", 6},
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002996 {"sandbox", 3},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997 {"silent", 3},
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002998 {"tab", 3},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 {"topleft", 2},
3000 {"verbose", 4},
3001 {"vertical", 4},
3002 };
3003
3004 /* Check command modifiers. */
3005 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3006 {
3007 for (j = 0; name[j] != NUL; ++j)
3008 if (name[j] != cmdmods[i].name[j])
3009 break;
3010 if (name[j] == NUL && j >= cmdmods[i].minlen)
3011 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3012 }
3013
Bram Moolenaara9587612006-05-04 21:47:50 +00003014 /* Check built-in commands and user defined commands.
3015 * For ":2match" and ":3match" we need to skip the number. */
3016 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003018 p = find_command(&ea, &full);
3019 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003021 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3022 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003023 if (*skipwhite(p) != NUL)
3024 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3026}
3027#endif
3028
3029/*
3030 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3031 * we don't need/want deleted. Maybe this could be done better if we didn't
3032 * repeat all this stuff. The only problem is that they may not stay
3033 * perfectly compatible with each other, but then the command line syntax
3034 * probably won't change that much -- webb.
3035 */
3036 char_u *
3037set_one_cmd_context(xp, buff)
3038 expand_T *xp;
3039 char_u *buff; /* buffer for command string */
3040{
3041 char_u *p;
3042 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003043 int len = 0;
3044 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3046 int compl = EXPAND_NOTHING;
3047#endif
3048#ifdef FEAT_CMDL_COMPL
3049 int delim;
3050#endif
3051 int forceit = FALSE;
3052 int usefilter = FALSE; /* filter instead of file name */
3053
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003054 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003055 xp->xp_pattern = buff;
3056 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003057 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058
3059/*
3060 * 2. skip comment lines and leading space, colons or bars
3061 */
3062 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3063 ;
3064 xp->xp_pattern = cmd;
3065
3066 if (*cmd == NUL)
3067 return NULL;
3068 if (*cmd == '"') /* ignore comment lines */
3069 {
3070 xp->xp_context = EXPAND_NOTHING;
3071 return NULL;
3072 }
3073
3074/*
3075 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3076 */
3077 cmd = skip_range(cmd, &xp->xp_context);
3078
3079/*
3080 * 4. parse command
3081 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 xp->xp_pattern = cmd;
3083 if (*cmd == NUL)
3084 return NULL;
3085 if (*cmd == '"')
3086 {
3087 xp->xp_context = EXPAND_NOTHING;
3088 return NULL;
3089 }
3090
3091 if (*cmd == '|' || *cmd == '\n')
3092 return cmd + 1; /* There's another command */
3093
3094 /*
3095 * Isolate the command and search for it in the command table.
3096 * Exceptions:
3097 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003098 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3100 */
3101 if (*cmd == 'k' && cmd[1] != 'e')
3102 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003103 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003104 p = cmd + 1;
3105 }
3106 else
3107 {
3108 p = cmd;
3109 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3110 ++p;
3111 /* check for non-alpha command */
3112 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3113 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003114 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003116 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 {
3118 xp->xp_context = EXPAND_UNSUCCESSFUL;
3119 return NULL;
3120 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003121 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3122 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3123 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 break;
3125
3126#ifdef FEAT_USR_CMDS
3127 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3128 {
3129 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3130 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003131 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 }
3133#endif
3134 }
3135
3136 /*
3137 * If the cursor is touching the command, and it ends in an alpha-numeric
3138 * character, complete the command name.
3139 */
3140 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3141 return NULL;
3142
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003143 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 {
3145 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3146 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003147 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 p = cmd + 1;
3149 }
3150#ifdef FEAT_USR_CMDS
3151 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3152 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003153 ea.cmd = cmd;
3154 p = find_ucmd(&ea, p, NULL, xp,
3155# if defined(FEAT_CMDL_COMPL)
3156 &compl
3157# else
3158 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003160 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003161 if (p == NULL)
3162 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003163 }
3164#endif
3165 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003166 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 {
3168 /* Not still touching the command and it was an illegal one */
3169 xp->xp_context = EXPAND_UNSUCCESSFUL;
3170 return NULL;
3171 }
3172
3173 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3174
3175 if (*p == '!') /* forced commands */
3176 {
3177 forceit = TRUE;
3178 ++p;
3179 }
3180
3181/*
3182 * 5. parse arguments
3183 */
3184#ifdef FEAT_USR_CMDS
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003185 if (!USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003187 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188
3189 arg = skipwhite(p);
3190
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003191 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 {
3193 if (*arg == '>') /* append */
3194 {
3195 if (*++arg == '>')
3196 ++arg;
3197 arg = skipwhite(arg);
3198 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003199 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 {
3201 ++arg;
3202 usefilter = TRUE;
3203 }
3204 }
3205
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003206 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207 {
3208 usefilter = forceit; /* :r! filter if forced */
3209 if (*arg == '!') /* :r !filter */
3210 {
3211 ++arg;
3212 usefilter = TRUE;
3213 }
3214 }
3215
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003216 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 {
3218 while (*arg == *cmd) /* allow any number of '>' or '<' */
3219 ++arg;
3220 arg = skipwhite(arg);
3221 }
3222
3223 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003224 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 {
3226 /* Check if we're in the +command */
3227 p = arg + 1;
3228 arg = skip_cmd_arg(arg, FALSE);
3229
3230 /* Still touching the command after '+'? */
3231 if (*arg == NUL)
3232 return p;
3233
3234 /* Skip space(s) after +command to get to the real argument */
3235 arg = skipwhite(arg);
3236 }
3237
3238 /*
3239 * Check for '|' to separate commands and '"' to start comments.
3240 * Don't do this for ":read !cmd" and ":write !cmd".
3241 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003242 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 {
3244 p = arg;
3245 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003246 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 p += 2;
3248 while (*p)
3249 {
3250 if (*p == Ctrl_V)
3251 {
3252 if (p[1] != NUL)
3253 ++p;
3254 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003255 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 || *p == '|' || *p == '\n')
3257 {
3258 if (*(p - 1) != '\\')
3259 {
3260 if (*p == '|' || *p == '\n')
3261 return p + 1;
3262 return NULL; /* It's a comment */
3263 }
3264 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003265 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 }
3267 }
3268
3269 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003270 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 vim_strchr((char_u *)"|\"", *arg) == NULL)
3272 return NULL;
3273
3274 /* Find start of last argument (argument just before cursor): */
3275 p = buff + STRLEN(buff);
3276 while (p != arg && *p != ' ' && *p != TAB)
3277 p--;
3278 if (*p == ' ' || *p == TAB)
3279 p++;
3280 xp->xp_pattern = p;
3281
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003282 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003284 int c;
3285 int in_quote = FALSE;
3286 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287
3288 /*
3289 * Allow spaces within back-quotes to count as part of the argument
3290 * being expanded.
3291 */
3292 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003293 p = xp->xp_pattern;
3294 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003296#ifdef FEAT_MBYTE
3297 if (has_mbyte)
3298 c = mb_ptr2char(p);
3299 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003301 c = *p;
3302 if (c == '\\' && p[1] != NUL)
3303 ++p;
3304 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305 {
3306 if (!in_quote)
3307 {
3308 xp->xp_pattern = p;
3309 bow = p + 1;
3310 }
3311 in_quote = !in_quote;
3312 }
Bram Moolenaar6529c102007-08-18 15:47:34 +00003313#ifdef SPACE_IN_FILENAME
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003314 else if (!vim_isfilec_or_wc(c)
3315 && (!(ea.argt & NOSPC) || usefilter))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003316#else
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003317 else if (!vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003318#endif
3319 {
3320 while (*p != NUL)
3321 {
3322#ifdef FEAT_MBYTE
3323 if (has_mbyte)
3324 c = mb_ptr2char(p);
3325 else
3326#endif
3327 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003328 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003329 break;
3330#ifdef FEAT_MBYTE
3331 if (has_mbyte)
3332 len = (*mb_ptr2len)(p);
3333 else
3334#endif
3335 len = 1;
3336 mb_ptr_adv(p);
3337 }
3338 if (in_quote)
3339 bow = p;
3340 else
3341 xp->xp_pattern = p;
3342 p -= len;
3343 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003344 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 }
3346
3347 /*
3348 * If we are still inside the quotes, and we passed a space, just
3349 * expand from there.
3350 */
3351 if (bow != NULL && in_quote)
3352 xp->xp_pattern = bow;
3353 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003354
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003355#ifndef BACKSLASH_IN_FILENAME
3356 /* For a shell command more chars need to be escaped. */
3357 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003358 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003359 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003360
3361 /* When still after the command name expand executables. */
3362 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003363 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003364 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003365#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366
3367 /* Check for environment variable */
3368 if (*xp->xp_pattern == '$'
3369#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3370 || *xp->xp_pattern == '%'
3371#endif
3372 )
3373 {
3374 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3375 if (!vim_isIDc(*p))
3376 break;
3377 if (*p == NUL)
3378 {
3379 xp->xp_context = EXPAND_ENV_VARS;
3380 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003381#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3382 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003383 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003384 compl = EXPAND_ENV_VARS;
3385#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 }
3387 }
3388 }
3389
3390/*
3391 * 6. switch on command name
3392 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003393 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 {
3395 case CMD_cd:
3396 case CMD_chdir:
3397 case CMD_lcd:
3398 case CMD_lchdir:
3399 if (xp->xp_context == EXPAND_FILES)
3400 xp->xp_context = EXPAND_DIRECTORIES;
3401 break;
3402 case CMD_help:
3403 xp->xp_context = EXPAND_HELP;
3404 xp->xp_pattern = arg;
3405 break;
3406
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003407 /* Command modifiers: return the argument.
3408 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003410 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 case CMD_belowright:
3412 case CMD_botright:
3413 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003414 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003416 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 case CMD_folddoclosed:
3418 case CMD_folddoopen:
3419 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003420 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 case CMD_keepjumps:
3422 case CMD_keepmarks:
3423 case CMD_leftabove:
3424 case CMD_lockmarks:
3425 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003426 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003428 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 case CMD_topleft:
3430 case CMD_verbose:
3431 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003432 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 return arg;
3434
Bram Moolenaar4f688582007-07-24 12:34:30 +00003435#ifdef FEAT_CMDL_COMPL
3436# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 case CMD_match:
3438 if (*arg == NUL || !ends_excmd(*arg))
3439 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003440 /* also complete "None" */
3441 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 arg = skipwhite(skiptowhite(arg));
3443 if (*arg != NUL)
3444 {
3445 xp->xp_context = EXPAND_NOTHING;
3446 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3447 }
3448 }
3449 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003450# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452/*
3453 * All completion for the +cmdline_compl feature goes here.
3454 */
3455
3456# ifdef FEAT_USR_CMDS
3457 case CMD_command:
3458 /* Check for attributes */
3459 while (*arg == '-')
3460 {
3461 arg++; /* Skip "-" */
3462 p = skiptowhite(arg);
3463 if (*p == NUL)
3464 {
3465 /* Cursor is still in the attribute */
3466 p = vim_strchr(arg, '=');
3467 if (p == NULL)
3468 {
3469 /* No "=", so complete attribute names */
3470 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3471 xp->xp_pattern = arg;
3472 return NULL;
3473 }
3474
3475 /* For the -complete and -nargs attributes, we complete
3476 * their arguments as well.
3477 */
3478 if (STRNICMP(arg, "complete", p - arg) == 0)
3479 {
3480 xp->xp_context = EXPAND_USER_COMPLETE;
3481 xp->xp_pattern = p + 1;
3482 return NULL;
3483 }
3484 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3485 {
3486 xp->xp_context = EXPAND_USER_NARGS;
3487 xp->xp_pattern = p + 1;
3488 return NULL;
3489 }
3490 return NULL;
3491 }
3492 arg = skipwhite(p);
3493 }
3494
3495 /* After the attributes comes the new command name */
3496 p = skiptowhite(arg);
3497 if (*p == NUL)
3498 {
3499 xp->xp_context = EXPAND_USER_COMMANDS;
3500 xp->xp_pattern = arg;
3501 break;
3502 }
3503
3504 /* And finally comes a normal command */
3505 return skipwhite(p);
3506
3507 case CMD_delcommand:
3508 xp->xp_context = EXPAND_USER_COMMANDS;
3509 xp->xp_pattern = arg;
3510 break;
3511# endif
3512
3513 case CMD_global:
3514 case CMD_vglobal:
3515 delim = *arg; /* get the delimiter */
3516 if (delim)
3517 ++arg; /* skip delimiter if there is one */
3518
3519 while (arg[0] != NUL && arg[0] != delim)
3520 {
3521 if (arg[0] == '\\' && arg[1] != NUL)
3522 ++arg;
3523 ++arg;
3524 }
3525 if (arg[0] != NUL)
3526 return arg + 1;
3527 break;
3528 case CMD_and:
3529 case CMD_substitute:
3530 delim = *arg;
3531 if (delim)
3532 {
3533 /* skip "from" part */
3534 ++arg;
3535 arg = skip_regexp(arg, delim, p_magic, NULL);
3536 }
3537 /* skip "to" part */
3538 while (arg[0] != NUL && arg[0] != delim)
3539 {
3540 if (arg[0] == '\\' && arg[1] != NUL)
3541 ++arg;
3542 ++arg;
3543 }
3544 if (arg[0] != NUL) /* skip delimiter */
3545 ++arg;
3546 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3547 ++arg;
3548 if (arg[0] != NUL)
3549 return arg;
3550 break;
3551 case CMD_isearch:
3552 case CMD_dsearch:
3553 case CMD_ilist:
3554 case CMD_dlist:
3555 case CMD_ijump:
3556 case CMD_psearch:
3557 case CMD_djump:
3558 case CMD_isplit:
3559 case CMD_dsplit:
3560 arg = skipwhite(skipdigits(arg)); /* skip count */
3561 if (*arg == '/') /* Match regexp, not just whole words */
3562 {
3563 for (++arg; *arg && *arg != '/'; arg++)
3564 if (*arg == '\\' && arg[1] != NUL)
3565 arg++;
3566 if (*arg)
3567 {
3568 arg = skipwhite(arg + 1);
3569
3570 /* Check for trailing illegal characters */
3571 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3572 xp->xp_context = EXPAND_NOTHING;
3573 else
3574 return arg;
3575 }
3576 }
3577 break;
3578#ifdef FEAT_AUTOCMD
3579 case CMD_autocmd:
3580 return set_context_in_autocmd(xp, arg, FALSE);
3581
3582 case CMD_doautocmd:
3583 return set_context_in_autocmd(xp, arg, TRUE);
3584#endif
3585 case CMD_set:
3586 set_context_in_set_cmd(xp, arg, 0);
3587 break;
3588 case CMD_setglobal:
3589 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3590 break;
3591 case CMD_setlocal:
3592 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3593 break;
3594 case CMD_tag:
3595 case CMD_stag:
3596 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003597 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 case CMD_tselect:
3599 case CMD_stselect:
3600 case CMD_ptselect:
3601 case CMD_tjump:
3602 case CMD_stjump:
3603 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003604 if (*p_wop != NUL)
3605 xp->xp_context = EXPAND_TAGS_LISTFILES;
3606 else
3607 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608 xp->xp_pattern = arg;
3609 break;
3610 case CMD_augroup:
3611 xp->xp_context = EXPAND_AUGROUP;
3612 xp->xp_pattern = arg;
3613 break;
3614#ifdef FEAT_SYN_HL
3615 case CMD_syntax:
3616 set_context_in_syntax_cmd(xp, arg);
3617 break;
3618#endif
3619#ifdef FEAT_EVAL
3620 case CMD_let:
3621 case CMD_if:
3622 case CMD_elseif:
3623 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003624 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 case CMD_echo:
3626 case CMD_echon:
3627 case CMD_execute:
3628 case CMD_echomsg:
3629 case CMD_echoerr:
3630 case CMD_call:
3631 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003632 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 break;
3634
3635 case CMD_unlet:
3636 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3637 arg = xp->xp_pattern + 1;
3638 xp->xp_context = EXPAND_USER_VARS;
3639 xp->xp_pattern = arg;
3640 break;
3641
3642 case CMD_function:
3643 case CMD_delfunction:
3644 xp->xp_context = EXPAND_USER_FUNC;
3645 xp->xp_pattern = arg;
3646 break;
3647
3648 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00003649 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 break;
3651#endif
3652 case CMD_highlight:
3653 set_context_in_highlight_cmd(xp, arg);
3654 break;
3655#ifdef FEAT_LISTCMDS
3656 case CMD_bdelete:
3657 case CMD_bwipeout:
3658 case CMD_bunload:
3659 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3660 arg = xp->xp_pattern + 1;
3661 /*FALLTHROUGH*/
3662 case CMD_buffer:
3663 case CMD_sbuffer:
3664 case CMD_checktime:
3665 xp->xp_context = EXPAND_BUFFERS;
3666 xp->xp_pattern = arg;
3667 break;
3668#endif
3669#ifdef FEAT_USR_CMDS
3670 case CMD_USER:
3671 case CMD_USER_BUF:
3672 if (compl != EXPAND_NOTHING)
3673 {
3674 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003675 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 {
3677# ifdef FEAT_MENU
3678 if (compl == EXPAND_MENUS)
3679 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3680# endif
3681 if (compl == EXPAND_COMMANDS)
3682 return arg;
3683 if (compl == EXPAND_MAPPINGS)
3684 return set_context_in_map_cmd(xp, (char_u *)"map",
3685 arg, forceit, FALSE, FALSE, CMD_map);
3686 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3687 arg = xp->xp_pattern + 1;
3688 xp->xp_pattern = arg;
3689 }
3690 xp->xp_context = compl;
3691 }
3692 break;
3693#endif
3694 case CMD_map: case CMD_noremap:
3695 case CMD_nmap: case CMD_nnoremap:
3696 case CMD_vmap: case CMD_vnoremap:
3697 case CMD_omap: case CMD_onoremap:
3698 case CMD_imap: case CMD_inoremap:
3699 case CMD_cmap: case CMD_cnoremap:
3700 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003701 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 case CMD_unmap:
3703 case CMD_nunmap:
3704 case CMD_vunmap:
3705 case CMD_ounmap:
3706 case CMD_iunmap:
3707 case CMD_cunmap:
3708 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003709 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 case CMD_abbreviate: case CMD_noreabbrev:
3711 case CMD_cabbrev: case CMD_cnoreabbrev:
3712 case CMD_iabbrev: case CMD_inoreabbrev:
3713 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003714 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 case CMD_unabbreviate:
3716 case CMD_cunabbrev:
3717 case CMD_iunabbrev:
3718 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003719 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720#ifdef FEAT_MENU
3721 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3722 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3723 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3724 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3725 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3726 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3727 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3728 case CMD_tmenu: case CMD_tunmenu:
3729 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3730 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3731#endif
3732
3733 case CMD_colorscheme:
3734 xp->xp_context = EXPAND_COLORS;
3735 xp->xp_pattern = arg;
3736 break;
3737
3738 case CMD_compiler:
3739 xp->xp_context = EXPAND_COMPILER;
3740 xp->xp_pattern = arg;
3741 break;
3742
3743#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3744 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3745 case CMD_language:
3746 if (*skiptowhite(arg) == NUL)
3747 {
3748 xp->xp_context = EXPAND_LANGUAGE;
3749 xp->xp_pattern = arg;
3750 }
3751 else
3752 xp->xp_context = EXPAND_NOTHING;
3753 break;
3754#endif
3755
3756#endif /* FEAT_CMDL_COMPL */
3757
3758 default:
3759 break;
3760 }
3761 return NULL;
3762}
3763
3764/*
3765 * skip a range specifier of the form: addr [,addr] [;addr] ..
3766 *
3767 * Backslashed delimiters after / or ? will be skipped, and commands will
3768 * not be expanded between /'s and ?'s or after "'".
3769 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003770 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 * Returns the "cmd" pointer advanced to beyond the range.
3772 */
3773 char_u *
3774skip_range(cmd, ctx)
3775 char_u *cmd;
3776 int *ctx; /* pointer to xp_context or NULL */
3777{
3778 int delim;
3779
Bram Moolenaardf177f62005-02-22 08:39:57 +00003780 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 {
3782 if (*cmd == '\'')
3783 {
3784 if (*++cmd == NUL && ctx != NULL)
3785 *ctx = EXPAND_NOTHING;
3786 }
3787 else if (*cmd == '/' || *cmd == '?')
3788 {
3789 delim = *cmd++;
3790 while (*cmd != NUL && *cmd != delim)
3791 if (*cmd++ == '\\' && *cmd != NUL)
3792 ++cmd;
3793 if (*cmd == NUL && ctx != NULL)
3794 *ctx = EXPAND_NOTHING;
3795 }
3796 if (*cmd != NUL)
3797 ++cmd;
3798 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003799
3800 /* Skip ":" and white space. */
3801 while (*cmd == ':')
3802 cmd = skipwhite(cmd + 1);
3803
Bram Moolenaar071d4272004-06-13 20:20:40 +00003804 return cmd;
3805}
3806
3807/*
3808 * get a single EX address
3809 *
3810 * Set ptr to the next character after the part that was interpreted.
3811 * Set ptr to NULL when an error is encountered.
3812 *
3813 * Return MAXLNUM when no Ex address was found.
3814 */
3815 static linenr_T
3816get_address(ptr, skip, to_other_file)
3817 char_u **ptr;
3818 int skip; /* only skip the address, don't use it */
3819 int to_other_file; /* flag: may jump to other file */
3820{
3821 int c;
3822 int i;
3823 long n;
3824 char_u *cmd;
3825 pos_T pos;
3826 pos_T *fp;
3827 linenr_T lnum;
3828
3829 cmd = skipwhite(*ptr);
3830 lnum = MAXLNUM;
3831 do
3832 {
3833 switch (*cmd)
3834 {
3835 case '.': /* '.' - Cursor position */
3836 ++cmd;
3837 lnum = curwin->w_cursor.lnum;
3838 break;
3839
3840 case '$': /* '$' - last line */
3841 ++cmd;
3842 lnum = curbuf->b_ml.ml_line_count;
3843 break;
3844
3845 case '\'': /* ''' - mark */
3846 if (*++cmd == NUL)
3847 {
3848 cmd = NULL;
3849 goto error;
3850 }
3851 if (skip)
3852 ++cmd;
3853 else
3854 {
3855 /* Only accept a mark in another file when it is
3856 * used by itself: ":'M". */
3857 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3858 ++cmd;
3859 if (fp == (pos_T *)-1)
3860 /* Jumped to another file. */
3861 lnum = curwin->w_cursor.lnum;
3862 else
3863 {
3864 if (check_mark(fp) == FAIL)
3865 {
3866 cmd = NULL;
3867 goto error;
3868 }
3869 lnum = fp->lnum;
3870 }
3871 }
3872 break;
3873
3874 case '/':
3875 case '?': /* '/' or '?' - search */
3876 c = *cmd++;
3877 if (skip) /* skip "/pat/" */
3878 {
3879 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3880 if (*cmd == c)
3881 ++cmd;
3882 }
3883 else
3884 {
3885 pos = curwin->w_cursor; /* save curwin->w_cursor */
3886 /*
3887 * When '/' or '?' follows another address, start
3888 * from there.
3889 */
3890 if (lnum != MAXLNUM)
3891 curwin->w_cursor.lnum = lnum;
3892 /*
3893 * Start a forward search at the end of the line.
3894 * Start a backward search at the start of the line.
3895 * This makes sure we never match in the current
3896 * line, and can match anywhere in the
3897 * next/previous line.
3898 */
3899 if (c == '/')
3900 curwin->w_cursor.col = MAXCOL;
3901 else
3902 curwin->w_cursor.col = 0;
3903 searchcmdlen = 0;
3904 if (!do_search(NULL, c, cmd, 1L,
3905 SEARCH_HIS + SEARCH_MSG + SEARCH_START))
3906 {
3907 curwin->w_cursor = pos;
3908 cmd = NULL;
3909 goto error;
3910 }
3911 lnum = curwin->w_cursor.lnum;
3912 curwin->w_cursor = pos;
3913 /* adjust command string pointer */
3914 cmd += searchcmdlen;
3915 }
3916 break;
3917
3918 case '\\': /* "\?", "\/" or "\&", repeat search */
3919 ++cmd;
3920 if (*cmd == '&')
3921 i = RE_SUBST;
3922 else if (*cmd == '?' || *cmd == '/')
3923 i = RE_SEARCH;
3924 else
3925 {
3926 EMSG(_(e_backslash));
3927 cmd = NULL;
3928 goto error;
3929 }
3930
3931 if (!skip)
3932 {
3933 /*
3934 * When search follows another address, start from
3935 * there.
3936 */
3937 if (lnum != MAXLNUM)
3938 pos.lnum = lnum;
3939 else
3940 pos.lnum = curwin->w_cursor.lnum;
3941
3942 /*
3943 * Start the search just like for the above
3944 * do_search().
3945 */
3946 if (*cmd != '?')
3947 pos.col = MAXCOL;
3948 else
3949 pos.col = 0;
3950 if (searchit(curwin, curbuf, &pos,
3951 *cmd == '?' ? BACKWARD : FORWARD,
3952 (char_u *)"", 1L,
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003953 SEARCH_MSG + SEARCH_START,
3954 i, (linenr_T)0) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 lnum = pos.lnum;
3956 else
3957 {
3958 cmd = NULL;
3959 goto error;
3960 }
3961 }
3962 ++cmd;
3963 break;
3964
3965 default:
3966 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3967 lnum = getdigits(&cmd);
3968 }
3969
3970 for (;;)
3971 {
3972 cmd = skipwhite(cmd);
3973 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
3974 break;
3975
3976 if (lnum == MAXLNUM)
3977 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
3978 if (VIM_ISDIGIT(*cmd))
3979 i = '+'; /* "number" is same as "+number" */
3980 else
3981 i = *cmd++;
3982 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
3983 n = 1;
3984 else
3985 n = getdigits(&cmd);
3986 if (i == '-')
3987 lnum -= n;
3988 else
3989 lnum += n;
3990 }
3991 } while (*cmd == '/' || *cmd == '?');
3992
3993error:
3994 *ptr = cmd;
3995 return lnum;
3996}
3997
3998/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003999 * Get flags from an Ex command argument.
4000 */
4001 static void
4002get_flags(eap)
4003 exarg_T *eap;
4004{
4005 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4006 {
4007 if (*eap->arg == 'l')
4008 eap->flags |= EXFLAG_LIST;
4009 else if (*eap->arg == 'p')
4010 eap->flags |= EXFLAG_PRINT;
4011 else
4012 eap->flags |= EXFLAG_NR;
4013 eap->arg = skipwhite(eap->arg + 1);
4014 }
4015}
4016
4017/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004018 * Function called for command which is Not Implemented. NI!
4019 */
4020 void
4021ex_ni(eap)
4022 exarg_T *eap;
4023{
4024 if (!eap->skip)
4025 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4026}
4027
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004028#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029/*
4030 * Function called for script command which is Not Implemented. NI!
4031 * Skips over ":perl <<EOF" constructs.
4032 */
4033 static void
4034ex_script_ni(eap)
4035 exarg_T *eap;
4036{
4037 if (!eap->skip)
4038 ex_ni(eap);
4039 else
4040 vim_free(script_get(eap, eap->arg));
4041}
4042#endif
4043
4044/*
4045 * Check range in Ex command for validity.
4046 * Return NULL when valid, error message when invalid.
4047 */
4048 static char_u *
4049invalid_range(eap)
4050 exarg_T *eap;
4051{
4052 if ( eap->line1 < 0
4053 || eap->line2 < 0
4054 || eap->line1 > eap->line2
4055 || ((eap->argt & RANGE)
4056 && !(eap->argt & NOTADR)
4057 && eap->line2 > curbuf->b_ml.ml_line_count
4058#ifdef FEAT_DIFF
4059 + (eap->cmdidx == CMD_diffget)
4060#endif
4061 ))
4062 return (char_u *)_(e_invrange);
4063 return NULL;
4064}
4065
4066/*
4067 * Correct the range for zero line number, if required.
4068 */
4069 static void
4070correct_range(eap)
4071 exarg_T *eap;
4072{
4073 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4074 {
4075 if (eap->line1 == 0)
4076 eap->line1 = 1;
4077 if (eap->line2 == 0)
4078 eap->line2 = 1;
4079 }
4080}
4081
Bram Moolenaar748bf032005-02-02 23:04:36 +00004082#ifdef FEAT_QUICKFIX
4083static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4084
4085/*
4086 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4087 * pattern. Otherwise return eap->arg.
4088 */
4089 static char_u *
4090skip_grep_pat(eap)
4091 exarg_T *eap;
4092{
4093 char_u *p = eap->arg;
4094
Bram Moolenaara37420f2006-02-04 22:37:47 +00004095 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4096 || eap->cmdidx == CMD_vimgrepadd
4097 || eap->cmdidx == CMD_lvimgrepadd
4098 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004099 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004100 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004101 if (p == NULL)
4102 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004103 }
4104 return p;
4105}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004106
4107/*
4108 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4109 * in the command line, so that things like % get expanded.
4110 */
4111 static char_u *
4112replace_makeprg(eap, p, cmdlinep)
4113 exarg_T *eap;
4114 char_u *p;
4115 char_u **cmdlinep;
4116{
4117 char_u *new_cmdline;
4118 char_u *program;
4119 char_u *pos;
4120 char_u *ptr;
4121 int len;
4122 int i;
4123
4124 /*
4125 * Don't do it when ":vimgrep" is used for ":grep".
4126 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004127 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4128 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4129 || eap->cmdidx == CMD_grepadd
4130 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004131 && !grep_internal(eap->cmdidx))
4132 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004133 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4134 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004135 {
4136 if (*curbuf->b_p_gp == NUL)
4137 program = p_gp;
4138 else
4139 program = curbuf->b_p_gp;
4140 }
4141 else
4142 {
4143 if (*curbuf->b_p_mp == NUL)
4144 program = p_mp;
4145 else
4146 program = curbuf->b_p_mp;
4147 }
4148
4149 p = skipwhite(p);
4150
4151 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4152 {
4153 /* replace $* by given arguments */
4154 i = 1;
4155 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4156 ++i;
4157 len = (int)STRLEN(p);
4158 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4159 if (new_cmdline == NULL)
4160 return NULL; /* out of memory */
4161 ptr = new_cmdline;
4162 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4163 {
4164 i = (int)(pos - program);
4165 STRNCPY(ptr, program, i);
4166 STRCPY(ptr += i, p);
4167 ptr += len;
4168 program = pos + 2;
4169 }
4170 STRCPY(ptr, program);
4171 }
4172 else
4173 {
4174 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4175 if (new_cmdline == NULL)
4176 return NULL; /* out of memory */
4177 STRCPY(new_cmdline, program);
4178 STRCAT(new_cmdline, " ");
4179 STRCAT(new_cmdline, p);
4180 }
4181 msg_make(p);
4182
4183 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4184 vim_free(*cmdlinep);
4185 *cmdlinep = new_cmdline;
4186 p = new_cmdline;
4187 }
4188 return p;
4189}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004190#endif
4191
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192/*
4193 * Expand file name in Ex command argument.
4194 * Return FAIL for failure, OK otherwise.
4195 */
4196 int
4197expand_filename(eap, cmdlinep, errormsgp)
4198 exarg_T *eap;
4199 char_u **cmdlinep;
4200 char_u **errormsgp;
4201{
4202 int has_wildcards; /* need to expand wildcards */
4203 char_u *repl;
4204 int srclen;
4205 char_u *p;
4206 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004207 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208
Bram Moolenaar748bf032005-02-02 23:04:36 +00004209#ifdef FEAT_QUICKFIX
4210 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4211 p = skip_grep_pat(eap);
4212#else
4213 p = eap->arg;
4214#endif
4215
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 /*
4217 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4218 * the file name contains a wildcard it should not cause expanding.
4219 * (it will be expanded anyway if there is a wildcard before replacing).
4220 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004221 has_wildcards = mch_has_wildcard(p);
4222 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004224#ifdef FEAT_EVAL
4225 /* Skip over `=expr`, wildcards in it are not expanded. */
4226 if (p[0] == '`' && p[1] == '=')
4227 {
4228 p += 2;
4229 (void)skip_expr(&p);
4230 if (*p == '`')
4231 ++p;
4232 continue;
4233 }
4234#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 /*
4236 * Quick check if this cannot be the start of a special string.
4237 * Also removes backslash before '%', '#' and '<'.
4238 */
4239 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4240 {
4241 ++p;
4242 continue;
4243 }
4244
4245 /*
4246 * Try to find a match at this position.
4247 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004248 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4249 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 if (*errormsgp != NULL) /* error detected */
4251 return FAIL;
4252 if (repl == NULL) /* no match found */
4253 {
4254 p += srclen;
4255 continue;
4256 }
4257
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004258 /* Wildcards won't be expanded below, the replacement is taken
4259 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4260 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4261 {
4262 char_u *l = repl;
4263
4264 repl = expand_env_save(repl);
4265 vim_free(l);
4266 }
4267
Bram Moolenaar63b92542007-03-27 14:57:09 +00004268 /* Need to escape white space et al. with a backslash.
4269 * Don't do this for:
4270 * - replacement that already has been escaped: "##"
4271 * - shell commands (may have to use quotes instead).
4272 * - non-unix systems when there is a single argument (spaces don't
4273 * separate arguments then).
4274 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004276 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 && eap->cmdidx != CMD_bang
4278 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004279 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004281 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004283 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284#ifndef UNIX
4285 && !(eap->argt & NOSPC)
4286#endif
4287 )
4288 {
4289 char_u *l;
4290#ifdef BACKSLASH_IN_FILENAME
4291 /* Don't escape a backslash here, because rem_backslash() doesn't
4292 * remove it later. */
4293 static char_u *nobslash = (char_u *)" \t\"|";
4294# define ESCAPE_CHARS nobslash
4295#else
4296# define ESCAPE_CHARS escape_chars
4297#endif
4298
4299 for (l = repl; *l; ++l)
4300 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4301 {
4302 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4303 if (l != NULL)
4304 {
4305 vim_free(repl);
4306 repl = l;
4307 }
4308 break;
4309 }
4310 }
4311
4312 /* For a shell command a '!' must be escaped. */
4313 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004314 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 {
4316 char_u *l;
4317
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004318 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 if (l != NULL)
4320 {
4321 vim_free(repl);
4322 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004323 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324 if (strstr((char *)p_sh, "sh") != NULL)
4325 {
4326 l = vim_strsave_escaped(repl, (char_u *)"!");
4327 if (l != NULL)
4328 {
4329 vim_free(repl);
4330 repl = l;
4331 }
4332 }
4333 }
4334 }
4335
4336 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4337 vim_free(repl);
4338 if (p == NULL)
4339 return FAIL;
4340 }
4341
4342 /*
4343 * One file argument: Expand wildcards.
4344 * Don't do this with ":r !command" or ":w !command".
4345 */
4346 if ((eap->argt & NOSPC) && !eap->usefilter)
4347 {
4348 /*
4349 * May do this twice:
4350 * 1. Replace environment variables.
4351 * 2. Replace any other wildcards, remove backslashes.
4352 */
4353 for (n = 1; n <= 2; ++n)
4354 {
4355 if (n == 2)
4356 {
4357#ifdef UNIX
4358 /*
4359 * Only for Unix we check for more than one file name.
4360 * For other systems spaces are considered to be part
4361 * of the file name.
4362 * Only check here if there is no wildcard, otherwise
4363 * ExpandOne() will check for errors. This allows
4364 * ":e `ls ve*.c`" on Unix.
4365 */
4366 if (!has_wildcards)
4367 for (p = eap->arg; *p; ++p)
4368 {
4369 /* skip escaped characters */
4370 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4371 ++p;
4372 else if (vim_iswhite(*p))
4373 {
4374 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4375 return FAIL;
4376 }
4377 }
4378#endif
4379
4380 /*
4381 * Halve the number of backslashes (this is Vi compatible).
4382 * For Unix and OS/2, when wildcards are expanded, this is
4383 * done by ExpandOne() below.
4384 */
4385#if defined(UNIX) || defined(OS2)
4386 if (!has_wildcards)
4387#endif
4388 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004389 }
4390
4391 if (has_wildcards)
4392 {
4393 if (n == 1)
4394 {
4395 /*
4396 * First loop: May expand environment variables. This
4397 * can be done much faster with expand_env() than with
4398 * something else (e.g., calling a shell).
4399 * After expanding environment variables, check again
4400 * if there are still wildcards present.
4401 */
4402 if (vim_strchr(eap->arg, '$') != NULL
4403 || vim_strchr(eap->arg, '~') != NULL)
4404 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004405 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
4406 TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 has_wildcards = mch_has_wildcard(NameBuff);
4408 p = NameBuff;
4409 }
4410 else
4411 p = NULL;
4412 }
4413 else /* n == 2 */
4414 {
4415 expand_T xpc;
4416
4417 ExpandInit(&xpc);
4418 xpc.xp_context = EXPAND_FILES;
4419 p = ExpandOne(&xpc, eap->arg, NULL,
4420 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4421 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422 if (p == NULL)
4423 return FAIL;
4424 }
4425 if (p != NULL)
4426 {
4427 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4428 p, cmdlinep);
4429 if (n == 2) /* p came from ExpandOne() */
4430 vim_free(p);
4431 }
4432 }
4433 }
4434 }
4435 return OK;
4436}
4437
4438/*
4439 * Replace part of the command line, keeping eap->cmd, eap->arg and
4440 * eap->nextcmd correct.
4441 * "src" points to the part that is to be replaced, of length "srclen".
4442 * "repl" is the replacement string.
4443 * Returns a pointer to the character after the replaced string.
4444 * Returns NULL for failure.
4445 */
4446 static char_u *
4447repl_cmdline(eap, src, srclen, repl, cmdlinep)
4448 exarg_T *eap;
4449 char_u *src;
4450 int srclen;
4451 char_u *repl;
4452 char_u **cmdlinep;
4453{
4454 int len;
4455 int i;
4456 char_u *new_cmdline;
4457
4458 /*
4459 * The new command line is build in new_cmdline[].
4460 * First allocate it.
4461 * Careful: a "+cmd" argument may have been NUL terminated.
4462 */
4463 len = (int)STRLEN(repl);
4464 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004465 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4467 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4468 return NULL; /* out of memory! */
4469
4470 /*
4471 * Copy the stuff before the expanded part.
4472 * Copy the expanded stuff.
4473 * Copy what came after the expanded part.
4474 * Copy the next commands, if there are any.
4475 */
4476 i = (int)(src - *cmdlinep); /* length of part before match */
4477 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004478
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 mch_memmove(new_cmdline + i, repl, (size_t)len);
4480 i += len; /* remember the end of the string */
4481 STRCPY(new_cmdline + i, src + srclen);
4482 src = new_cmdline + i; /* remember where to continue */
4483
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004484 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004485 {
4486 i = (int)STRLEN(new_cmdline) + 1;
4487 STRCPY(new_cmdline + i, eap->nextcmd);
4488 eap->nextcmd = new_cmdline + i;
4489 }
4490 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4491 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4492 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4493 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4494 vim_free(*cmdlinep);
4495 *cmdlinep = new_cmdline;
4496
4497 return src;
4498}
4499
4500/*
4501 * Check for '|' to separate commands and '"' to start comments.
4502 */
4503 void
4504separate_nextcmd(eap)
4505 exarg_T *eap;
4506{
4507 char_u *p;
4508
Bram Moolenaar86b68352004-12-27 21:59:20 +00004509#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004510 p = skip_grep_pat(eap);
4511#else
4512 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004513#endif
4514
4515 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 {
4517 if (*p == Ctrl_V)
4518 {
4519 if (eap->argt & (USECTRLV | XFILE))
4520 ++p; /* skip CTRL-V and next char */
4521 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00004522 /* remove CTRL-V and skip next char */
4523 mch_memmove(p, p + 1, STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 if (*p == NUL) /* stop at NUL after CTRL-V */
4525 break;
4526 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004527
4528#ifdef FEAT_EVAL
4529 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004530 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004531 {
4532 p += 2;
4533 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004534 }
4535#endif
4536
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537 /* Check for '"': start of comment or '|': next command */
4538 /* :@" and :*" do not start a comment!
4539 * :redir @" doesn't either. */
4540 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4541 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4542 || p != eap->arg)
4543 && (eap->cmdidx != CMD_redir
4544 || p != eap->arg + 1 || p[-1] != '@'))
4545 || *p == '|' || *p == '\n')
4546 {
4547 /*
4548 * We remove the '\' before the '|', unless USECTRLV is used
4549 * AND 'b' is present in 'cpoptions'.
4550 */
4551 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4552 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4553 {
4554 mch_memmove(p - 1, p, STRLEN(p) + 1); /* remove the '\' */
4555 --p;
4556 }
4557 else
4558 {
4559 eap->nextcmd = check_nextcmd(p);
4560 *p = NUL;
4561 break;
4562 }
4563 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004565
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4567 del_trailing_spaces(eap->arg);
4568}
4569
4570/*
4571 * get + command from ex argument
4572 */
4573 static char_u *
4574getargcmd(argp)
4575 char_u **argp;
4576{
4577 char_u *arg = *argp;
4578 char_u *command = NULL;
4579
4580 if (*arg == '+') /* +[command] */
4581 {
4582 ++arg;
4583 if (vim_isspace(*arg))
4584 command = dollar_command;
4585 else
4586 {
4587 command = arg;
4588 arg = skip_cmd_arg(command, TRUE);
4589 if (*arg != NUL)
4590 *arg++ = NUL; /* terminate command with NUL */
4591 }
4592
4593 arg = skipwhite(arg); /* skip over spaces */
4594 *argp = arg;
4595 }
4596 return command;
4597}
4598
4599/*
4600 * Find end of "+command" argument. Skip over "\ " and "\\".
4601 */
4602 static char_u *
4603skip_cmd_arg(p, rembs)
4604 char_u *p;
4605 int rembs; /* TRUE to halve the number of backslashes */
4606{
4607 while (*p && !vim_isspace(*p))
4608 {
4609 if (*p == '\\' && p[1] != NUL)
4610 {
4611 if (rembs)
4612 mch_memmove(p, p + 1, STRLEN(p));
4613 else
4614 ++p;
4615 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004616 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 }
4618 return p;
4619}
4620
4621/*
4622 * Get "++opt=arg" argument.
4623 * Return FAIL or OK.
4624 */
4625 static int
4626getargopt(eap)
4627 exarg_T *eap;
4628{
4629 char_u *arg = eap->arg + 2;
4630 int *pp = NULL;
4631#ifdef FEAT_MBYTE
4632 char_u *p;
4633#endif
4634
4635 /* ":edit ++[no]bin[ary] file" */
4636 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4637 {
4638 if (*arg == 'n')
4639 {
4640 arg += 2;
4641 eap->force_bin = FORCE_NOBIN;
4642 }
4643 else
4644 eap->force_bin = FORCE_BIN;
4645 if (!checkforcmd(&arg, "binary", 3))
4646 return FAIL;
4647 eap->arg = skipwhite(arg);
4648 return OK;
4649 }
4650
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004651 /* ":read ++edit file" */
4652 if (STRNCMP(arg, "edit", 4) == 0)
4653 {
4654 eap->read_edit = TRUE;
4655 eap->arg = skipwhite(arg + 4);
4656 return OK;
4657 }
4658
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 if (STRNCMP(arg, "ff", 2) == 0)
4660 {
4661 arg += 2;
4662 pp = &eap->force_ff;
4663 }
4664 else if (STRNCMP(arg, "fileformat", 10) == 0)
4665 {
4666 arg += 10;
4667 pp = &eap->force_ff;
4668 }
4669#ifdef FEAT_MBYTE
4670 else if (STRNCMP(arg, "enc", 3) == 0)
4671 {
4672 arg += 3;
4673 pp = &eap->force_enc;
4674 }
4675 else if (STRNCMP(arg, "encoding", 8) == 0)
4676 {
4677 arg += 8;
4678 pp = &eap->force_enc;
4679 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004680 else if (STRNCMP(arg, "bad", 3) == 0)
4681 {
4682 arg += 3;
4683 pp = &eap->bad_char;
4684 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685#endif
4686
4687 if (pp == NULL || *arg != '=')
4688 return FAIL;
4689
4690 ++arg;
4691 *pp = (int)(arg - eap->cmd);
4692 arg = skip_cmd_arg(arg, FALSE);
4693 eap->arg = skipwhite(arg);
4694 *arg = NUL;
4695
4696#ifdef FEAT_MBYTE
4697 if (pp == &eap->force_ff)
4698 {
4699#endif
4700 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4701 return FAIL;
4702#ifdef FEAT_MBYTE
4703 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004704 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 {
4706 /* Make 'fileencoding' lower case. */
4707 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4708 *p = TOLOWER_ASC(*p);
4709 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004710 else
4711 {
4712 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4713 * "drop". */
4714 p = eap->cmd + eap->bad_char;
4715 if (STRICMP(p, "keep") == 0)
4716 eap->bad_char = BAD_KEEP;
4717 else if (STRICMP(p, "drop") == 0)
4718 eap->bad_char = BAD_DROP;
4719 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4720 eap->bad_char = *p;
4721 else
4722 return FAIL;
4723 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724#endif
4725
4726 return OK;
4727}
4728
4729/*
4730 * ":abbreviate" and friends.
4731 */
4732 static void
4733ex_abbreviate(eap)
4734 exarg_T *eap;
4735{
4736 do_exmap(eap, TRUE); /* almost the same as mapping */
4737}
4738
4739/*
4740 * ":map" and friends.
4741 */
4742 static void
4743ex_map(eap)
4744 exarg_T *eap;
4745{
4746 /*
4747 * If we are sourcing .exrc or .vimrc in current directory we
4748 * print the mappings for security reasons.
4749 */
4750 if (secure)
4751 {
4752 secure = 2;
4753 msg_outtrans(eap->cmd);
4754 msg_putchar('\n');
4755 }
4756 do_exmap(eap, FALSE);
4757}
4758
4759/*
4760 * ":unmap" and friends.
4761 */
4762 static void
4763ex_unmap(eap)
4764 exarg_T *eap;
4765{
4766 do_exmap(eap, FALSE);
4767}
4768
4769/*
4770 * ":mapclear" and friends.
4771 */
4772 static void
4773ex_mapclear(eap)
4774 exarg_T *eap;
4775{
4776 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4777}
4778
4779/*
4780 * ":abclear" and friends.
4781 */
4782 static void
4783ex_abclear(eap)
4784 exarg_T *eap;
4785{
4786 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4787}
4788
4789#ifdef FEAT_AUTOCMD
4790 static void
4791ex_autocmd(eap)
4792 exarg_T *eap;
4793{
4794 /*
4795 * Disallow auto commands from .exrc and .vimrc in current
4796 * directory for security reasons.
4797 */
4798 if (secure)
4799 {
4800 secure = 2;
4801 eap->errmsg = e_curdir;
4802 }
4803 else if (eap->cmdidx == CMD_autocmd)
4804 do_autocmd(eap->arg, eap->forceit);
4805 else
4806 do_augroup(eap->arg, eap->forceit);
4807}
4808
4809/*
4810 * ":doautocmd": Apply the automatic commands to the current buffer.
4811 */
4812 static void
4813ex_doautocmd(eap)
4814 exarg_T *eap;
4815{
4816 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004817 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818}
4819#endif
4820
4821#ifdef FEAT_LISTCMDS
4822/*
4823 * :[N]bunload[!] [N] [bufname] unload buffer
4824 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4825 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4826 */
4827 static void
4828ex_bunload(eap)
4829 exarg_T *eap;
4830{
4831 eap->errmsg = do_bufdel(
4832 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4833 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4834 : DOBUF_UNLOAD, eap->arg,
4835 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4836}
4837
4838/*
4839 * :[N]buffer [N] to buffer N
4840 * :[N]sbuffer [N] to buffer N
4841 */
4842 static void
4843ex_buffer(eap)
4844 exarg_T *eap;
4845{
4846 if (*eap->arg)
4847 eap->errmsg = e_trailing;
4848 else
4849 {
4850 if (eap->addr_count == 0) /* default is current buffer */
4851 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4852 else
4853 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4854 }
4855}
4856
4857/*
4858 * :[N]bmodified [N] to next mod. buffer
4859 * :[N]sbmodified [N] to next mod. buffer
4860 */
4861 static void
4862ex_bmodified(eap)
4863 exarg_T *eap;
4864{
4865 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4866}
4867
4868/*
4869 * :[N]bnext [N] to next buffer
4870 * :[N]sbnext [N] split and to next buffer
4871 */
4872 static void
4873ex_bnext(eap)
4874 exarg_T *eap;
4875{
4876 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4877}
4878
4879/*
4880 * :[N]bNext [N] to previous buffer
4881 * :[N]bprevious [N] to previous buffer
4882 * :[N]sbNext [N] split and to previous buffer
4883 * :[N]sbprevious [N] split and to previous buffer
4884 */
4885 static void
4886ex_bprevious(eap)
4887 exarg_T *eap;
4888{
4889 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4890}
4891
4892/*
4893 * :brewind to first buffer
4894 * :bfirst to first buffer
4895 * :sbrewind split and to first buffer
4896 * :sbfirst split and to first buffer
4897 */
4898 static void
4899ex_brewind(eap)
4900 exarg_T *eap;
4901{
4902 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4903}
4904
4905/*
4906 * :blast to last buffer
4907 * :sblast split and to last buffer
4908 */
4909 static void
4910ex_blast(eap)
4911 exarg_T *eap;
4912{
4913 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4914}
4915#endif
4916
4917 int
4918ends_excmd(c)
4919 int c;
4920{
4921 return (c == NUL || c == '|' || c == '"' || c == '\n');
4922}
4923
4924#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4925 || defined(PROTO)
4926/*
4927 * Return the next command, after the first '|' or '\n'.
4928 * Return NULL if not found.
4929 */
4930 char_u *
4931find_nextcmd(p)
4932 char_u *p;
4933{
4934 while (*p != '|' && *p != '\n')
4935 {
4936 if (*p == NUL)
4937 return NULL;
4938 ++p;
4939 }
4940 return (p + 1);
4941}
4942#endif
4943
4944/*
4945 * Check if *p is a separator between Ex commands.
4946 * Return NULL if it isn't, (p + 1) if it is.
4947 */
4948 char_u *
4949check_nextcmd(p)
4950 char_u *p;
4951{
4952 p = skipwhite(p);
4953 if (*p == '|' || *p == '\n')
4954 return (p + 1);
4955 else
4956 return NULL;
4957}
4958
4959/*
4960 * - if there are more files to edit
4961 * - and this is the last window
4962 * - and forceit not used
4963 * - and not repeated twice on a row
4964 * return FAIL and give error message if 'message' TRUE
4965 * return OK otherwise
4966 */
4967 static int
4968check_more(message, forceit)
4969 int message; /* when FALSE check only, no messages */
4970 int forceit;
4971{
4972 int n = ARGCOUNT - curwin->w_arg_idx - 1;
4973
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004974 if (!forceit && only_one_window()
4975 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 {
4977 if (message)
4978 {
4979#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4980 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
4981 {
4982 char_u buff[IOSIZE];
4983
4984 if (n == 1)
4985 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
4986 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004987 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004988 _("%d more files to edit. Quit anyway?"), n);
4989 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
4990 return OK;
4991 return FAIL;
4992 }
4993#endif
4994 if (n == 1)
4995 EMSG(_("E173: 1 more file to edit"));
4996 else
4997 EMSGN(_("E173: %ld more files to edit"), n);
4998 quitmore = 2; /* next try to quit is allowed */
4999 }
5000 return FAIL;
5001 }
5002 return OK;
5003}
5004
5005#ifdef FEAT_CMDL_COMPL
5006/*
5007 * Function given to ExpandGeneric() to obtain the list of command names.
5008 */
5009/*ARGSUSED*/
5010 char_u *
5011get_command_name(xp, idx)
5012 expand_T *xp;
5013 int idx;
5014{
5015 if (idx >= (int)CMD_SIZE)
5016# ifdef FEAT_USR_CMDS
5017 return get_user_command_name(idx);
5018# else
5019 return NULL;
5020# endif
5021 return cmdnames[idx].cmd_name;
5022}
5023#endif
5024
5025#if defined(FEAT_USR_CMDS) || defined(PROTO)
5026static 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));
5027static void uc_list __ARGS((char_u *name, size_t name_len));
5028static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5029static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5030static 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));
5031
5032 static int
5033uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5034 char_u *name;
5035 size_t name_len;
5036 char_u *rep;
5037 long argt;
5038 long def;
5039 int flags;
5040 int compl;
5041 char_u *compl_arg;
5042 int force;
5043{
5044 ucmd_T *cmd = NULL;
5045 char_u *p;
5046 int i;
5047 int cmp = 1;
5048 char_u *rep_buf = NULL;
5049 garray_T *gap;
5050
Bram Moolenaar9c102382006-05-03 21:26:49 +00005051 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 if (rep_buf == NULL)
5053 {
5054 /* Can't replace termcodes - try using the string as is */
5055 rep_buf = vim_strsave(rep);
5056
5057 /* Give up if out of memory */
5058 if (rep_buf == NULL)
5059 return FAIL;
5060 }
5061
5062 /* get address of growarray: global or in curbuf */
5063 if (flags & UC_BUFFER)
5064 {
5065 gap = &curbuf->b_ucmds;
5066 if (gap->ga_itemsize == 0)
5067 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5068 }
5069 else
5070 gap = &ucmds;
5071
5072 /* Search for the command in the already defined commands. */
5073 for (i = 0; i < gap->ga_len; ++i)
5074 {
5075 size_t len;
5076
5077 cmd = USER_CMD_GA(gap, i);
5078 len = STRLEN(cmd->uc_name);
5079 cmp = STRNCMP(name, cmd->uc_name, name_len);
5080 if (cmp == 0)
5081 {
5082 if (name_len < len)
5083 cmp = -1;
5084 else if (name_len > len)
5085 cmp = 1;
5086 }
5087
5088 if (cmp == 0)
5089 {
5090 if (!force)
5091 {
5092 EMSG(_("E174: Command already exists: add ! to replace it"));
5093 goto fail;
5094 }
5095
5096 vim_free(cmd->uc_rep);
5097 cmd->uc_rep = 0;
5098 break;
5099 }
5100
5101 /* Stop as soon as we pass the name to add */
5102 if (cmp < 0)
5103 break;
5104 }
5105
5106 /* Extend the array unless we're replacing an existing command */
5107 if (cmp != 0)
5108 {
5109 if (ga_grow(gap, 1) != OK)
5110 goto fail;
5111 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5112 goto fail;
5113
5114 cmd = USER_CMD_GA(gap, i);
5115 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5116
5117 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118
5119 cmd->uc_name = p;
5120 }
5121
5122 cmd->uc_rep = rep_buf;
5123 cmd->uc_argt = argt;
5124 cmd->uc_def = def;
5125 cmd->uc_compl = compl;
5126#ifdef FEAT_EVAL
5127 cmd->uc_scriptID = current_SID;
5128# ifdef FEAT_CMDL_COMPL
5129 cmd->uc_compl_arg = compl_arg;
5130# endif
5131#endif
5132
5133 return OK;
5134
5135fail:
5136 vim_free(rep_buf);
5137#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5138 vim_free(compl_arg);
5139#endif
5140 return FAIL;
5141}
5142
5143/*
5144 * List of names for completion for ":command" with the EXPAND_ flag.
5145 * Must be alphabetical for completion.
5146 */
5147static struct
5148{
5149 int expand;
5150 char *name;
5151} command_complete[] =
5152{
5153 {EXPAND_AUGROUP, "augroup"},
5154 {EXPAND_BUFFERS, "buffer"},
5155 {EXPAND_COMMANDS, "command"},
5156#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5157 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005158 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159#endif
5160 {EXPAND_DIRECTORIES, "dir"},
5161 {EXPAND_ENV_VARS, "environment"},
5162 {EXPAND_EVENTS, "event"},
5163 {EXPAND_EXPRESSION, "expression"},
5164 {EXPAND_FILES, "file"},
5165 {EXPAND_FUNCTIONS, "function"},
5166 {EXPAND_HELP, "help"},
5167 {EXPAND_HIGHLIGHT, "highlight"},
5168 {EXPAND_MAPPINGS, "mapping"},
5169 {EXPAND_MENUS, "menu"},
5170 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005171 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 {EXPAND_TAGS, "tag"},
5173 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5174 {EXPAND_USER_VARS, "var"},
5175 {0, NULL}
5176};
5177
5178 static void
5179uc_list(name, name_len)
5180 char_u *name;
5181 size_t name_len;
5182{
5183 int i, j;
5184 int found = FALSE;
5185 ucmd_T *cmd;
5186 int len;
5187 long a;
5188 garray_T *gap;
5189
5190 gap = &curbuf->b_ucmds;
5191 for (;;)
5192 {
5193 for (i = 0; i < gap->ga_len; ++i)
5194 {
5195 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005196 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197
5198 /* Skip commands which don't match the requested prefix */
5199 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5200 continue;
5201
5202 /* Put out the title first time */
5203 if (!found)
5204 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5205 found = TRUE;
5206 msg_putchar('\n');
5207 if (got_int)
5208 break;
5209
5210 /* Special cases */
5211 msg_putchar(a & BANG ? '!' : ' ');
5212 msg_putchar(a & REGSTR ? '"' : ' ');
5213 msg_putchar(gap != &ucmds ? 'b' : ' ');
5214 msg_putchar(' ');
5215
5216 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5217 len = (int)STRLEN(cmd->uc_name) + 4;
5218
5219 do {
5220 msg_putchar(' ');
5221 ++len;
5222 } while (len < 16);
5223
5224 len = 0;
5225
5226 /* Arguments */
5227 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5228 {
5229 case 0: IObuff[len++] = '0'; break;
5230 case (EXTRA): IObuff[len++] = '*'; break;
5231 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5232 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5233 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5234 }
5235
5236 do {
5237 IObuff[len++] = ' ';
5238 } while (len < 5);
5239
5240 /* Range */
5241 if (a & (RANGE|COUNT))
5242 {
5243 if (a & COUNT)
5244 {
5245 /* -count=N */
5246 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5247 len += (int)STRLEN(IObuff + len);
5248 }
5249 else if (a & DFLALL)
5250 IObuff[len++] = '%';
5251 else if (cmd->uc_def >= 0)
5252 {
5253 /* -range=N */
5254 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5255 len += (int)STRLEN(IObuff + len);
5256 }
5257 else
5258 IObuff[len++] = '.';
5259 }
5260
5261 do {
5262 IObuff[len++] = ' ';
5263 } while (len < 11);
5264
5265 /* Completion */
5266 for (j = 0; command_complete[j].expand != 0; ++j)
5267 if (command_complete[j].expand == cmd->uc_compl)
5268 {
5269 STRCPY(IObuff + len, command_complete[j].name);
5270 len += (int)STRLEN(IObuff + len);
5271 break;
5272 }
5273
5274 do {
5275 IObuff[len++] = ' ';
5276 } while (len < 21);
5277
5278 IObuff[len] = '\0';
5279 msg_outtrans(IObuff);
5280
5281 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005282#ifdef FEAT_EVAL
5283 if (p_verbose > 0)
5284 last_set_msg(cmd->uc_scriptID);
5285#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 out_flush();
5287 ui_breakcheck();
5288 if (got_int)
5289 break;
5290 }
5291 if (gap == &ucmds || i < gap->ga_len)
5292 break;
5293 gap = &ucmds;
5294 }
5295
5296 if (!found)
5297 MSG(_("No user-defined commands found"));
5298}
5299
5300 static char_u *
5301uc_fun_cmd()
5302{
5303 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5304 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5305 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5306 0xb9, 0x7f, 0};
5307 int i;
5308
5309 for (i = 0; fcmd[i]; ++i)
5310 IObuff[i] = fcmd[i] - 0x40;
5311 IObuff[i] = 0;
5312 return IObuff;
5313}
5314
5315 static int
5316uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5317 char_u *attr;
5318 size_t len;
5319 long *argt;
5320 long *def;
5321 int *flags;
5322 int *compl;
5323 char_u **compl_arg;
5324{
5325 char_u *p;
5326
5327 if (len == 0)
5328 {
5329 EMSG(_("E175: No attribute specified"));
5330 return FAIL;
5331 }
5332
5333 /* First, try the simple attributes (no arguments) */
5334 if (STRNICMP(attr, "bang", len) == 0)
5335 *argt |= BANG;
5336 else if (STRNICMP(attr, "buffer", len) == 0)
5337 *flags |= UC_BUFFER;
5338 else if (STRNICMP(attr, "register", len) == 0)
5339 *argt |= REGSTR;
5340 else if (STRNICMP(attr, "bar", len) == 0)
5341 *argt |= TRLBAR;
5342 else
5343 {
5344 int i;
5345 char_u *val = NULL;
5346 size_t vallen = 0;
5347 size_t attrlen = len;
5348
5349 /* Look for the attribute name - which is the part before any '=' */
5350 for (i = 0; i < (int)len; ++i)
5351 {
5352 if (attr[i] == '=')
5353 {
5354 val = &attr[i + 1];
5355 vallen = len - i - 1;
5356 attrlen = i;
5357 break;
5358 }
5359 }
5360
5361 if (STRNICMP(attr, "nargs", attrlen) == 0)
5362 {
5363 if (vallen == 1)
5364 {
5365 if (*val == '0')
5366 /* Do nothing - this is the default */;
5367 else if (*val == '1')
5368 *argt |= (EXTRA | NOSPC | NEEDARG);
5369 else if (*val == '*')
5370 *argt |= EXTRA;
5371 else if (*val == '?')
5372 *argt |= (EXTRA | NOSPC);
5373 else if (*val == '+')
5374 *argt |= (EXTRA | NEEDARG);
5375 else
5376 goto wrong_nargs;
5377 }
5378 else
5379 {
5380wrong_nargs:
5381 EMSG(_("E176: Invalid number of arguments"));
5382 return FAIL;
5383 }
5384 }
5385 else if (STRNICMP(attr, "range", attrlen) == 0)
5386 {
5387 *argt |= RANGE;
5388 if (vallen == 1 && *val == '%')
5389 *argt |= DFLALL;
5390 else if (val != NULL)
5391 {
5392 p = val;
5393 if (*def >= 0)
5394 {
5395two_count:
5396 EMSG(_("E177: Count cannot be specified twice"));
5397 return FAIL;
5398 }
5399
5400 *def = getdigits(&p);
5401 *argt |= (ZEROR | NOTADR);
5402
5403 if (p != val + vallen || vallen == 0)
5404 {
5405invalid_count:
5406 EMSG(_("E178: Invalid default value for count"));
5407 return FAIL;
5408 }
5409 }
5410 }
5411 else if (STRNICMP(attr, "count", attrlen) == 0)
5412 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005413 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414
5415 if (val != NULL)
5416 {
5417 p = val;
5418 if (*def >= 0)
5419 goto two_count;
5420
5421 *def = getdigits(&p);
5422
5423 if (p != val + vallen)
5424 goto invalid_count;
5425 }
5426
5427 if (*def < 0)
5428 *def = 0;
5429 }
5430 else if (STRNICMP(attr, "complete", attrlen) == 0)
5431 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 if (val == NULL)
5433 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005434 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 return FAIL;
5436 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005437
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005438 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5439 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441 }
5442 else
5443 {
5444 char_u ch = attr[len];
5445 attr[len] = '\0';
5446 EMSG2(_("E181: Invalid attribute: %s"), attr);
5447 attr[len] = ch;
5448 return FAIL;
5449 }
5450 }
5451
5452 return OK;
5453}
5454
5455 static void
5456ex_command(eap)
5457 exarg_T *eap;
5458{
5459 char_u *name;
5460 char_u *end;
5461 char_u *p;
5462 long argt = 0;
5463 long def = -1;
5464 int flags = 0;
5465 int compl = EXPAND_NOTHING;
5466 char_u *compl_arg = NULL;
5467 int has_attr = (eap->arg[0] == '-');
5468
5469 p = eap->arg;
5470
5471 /* Check for attributes */
5472 while (*p == '-')
5473 {
5474 ++p;
5475 end = skiptowhite(p);
5476 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5477 == FAIL)
5478 return;
5479 p = skipwhite(end);
5480 }
5481
5482 /* Get the name (if any) and skip to the following argument */
5483 name = p;
5484 if (ASCII_ISALPHA(*p))
5485 while (ASCII_ISALNUM(*p))
5486 ++p;
5487 if (!ends_excmd(*p) && !vim_iswhite(*p))
5488 {
5489 EMSG(_("E182: Invalid command name"));
5490 return;
5491 }
5492 end = p;
5493
5494 /* If there is nothing after the name, and no attributes were specified,
5495 * we are listing commands
5496 */
5497 p = skipwhite(end);
5498 if (!has_attr && ends_excmd(*p))
5499 {
5500 uc_list(name, end - name);
5501 }
5502 else if (!ASCII_ISUPPER(*name))
5503 {
5504 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5505 return;
5506 }
5507 else
5508 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5509 eap->forceit);
5510}
5511
5512/*
5513 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514 * Clear all user commands, global and for current buffer.
5515 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005516/*ARGSUSED*/
5517 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518ex_comclear(eap)
5519 exarg_T *eap;
5520{
5521 uc_clear(&ucmds);
5522 uc_clear(&curbuf->b_ucmds);
5523}
5524
5525/*
5526 * Clear all user commands for "gap".
5527 */
5528 void
5529uc_clear(gap)
5530 garray_T *gap;
5531{
5532 int i;
5533 ucmd_T *cmd;
5534
5535 for (i = 0; i < gap->ga_len; ++i)
5536 {
5537 cmd = USER_CMD_GA(gap, i);
5538 vim_free(cmd->uc_name);
5539 vim_free(cmd->uc_rep);
5540# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5541 vim_free(cmd->uc_compl_arg);
5542# endif
5543 }
5544 ga_clear(gap);
5545}
5546
5547 static void
5548ex_delcommand(eap)
5549 exarg_T *eap;
5550{
5551 int i = 0;
5552 ucmd_T *cmd = NULL;
5553 int cmp = -1;
5554 garray_T *gap;
5555
5556 gap = &curbuf->b_ucmds;
5557 for (;;)
5558 {
5559 for (i = 0; i < gap->ga_len; ++i)
5560 {
5561 cmd = USER_CMD_GA(gap, i);
5562 cmp = STRCMP(eap->arg, cmd->uc_name);
5563 if (cmp <= 0)
5564 break;
5565 }
5566 if (gap == &ucmds || cmp == 0)
5567 break;
5568 gap = &ucmds;
5569 }
5570
5571 if (cmp != 0)
5572 {
5573 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5574 return;
5575 }
5576
5577 vim_free(cmd->uc_name);
5578 vim_free(cmd->uc_rep);
5579# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5580 vim_free(cmd->uc_compl_arg);
5581# endif
5582
5583 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584
5585 if (i < gap->ga_len)
5586 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5587}
5588
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005589/*
5590 * split and quote args for <f-args>
5591 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 static char_u *
5593uc_split_args(arg, lenp)
5594 char_u *arg;
5595 size_t *lenp;
5596{
5597 char_u *buf;
5598 char_u *p;
5599 char_u *q;
5600 int len;
5601
5602 /* Precalculate length */
5603 p = arg;
5604 len = 2; /* Initial and final quotes */
5605
5606 while (*p)
5607 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005608 if (p[0] == '\\' && p[1] == '\\')
5609 {
5610 len += 2;
5611 p += 2;
5612 }
5613 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 {
5615 len += 1;
5616 p += 2;
5617 }
5618 else if (*p == '\\' || *p == '"')
5619 {
5620 len += 2;
5621 p += 1;
5622 }
5623 else if (vim_iswhite(*p))
5624 {
5625 p = skipwhite(p);
5626 if (*p == NUL)
5627 break;
5628 len += 3; /* "," */
5629 }
5630 else
5631 {
5632 ++len;
5633 ++p;
5634 }
5635 }
5636
5637 buf = alloc(len + 1);
5638 if (buf == NULL)
5639 {
5640 *lenp = 0;
5641 return buf;
5642 }
5643
5644 p = arg;
5645 q = buf;
5646 *q++ = '"';
5647 while (*p)
5648 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005649 if (p[0] == '\\' && p[1] == '\\')
5650 {
5651 *q++ = '\\';
5652 *q++ = '\\';
5653 p += 2;
5654 }
5655 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656 {
5657 *q++ = p[1];
5658 p += 2;
5659 }
5660 else if (*p == '\\' || *p == '"')
5661 {
5662 *q++ = '\\';
5663 *q++ = *p++;
5664 }
5665 else if (vim_iswhite(*p))
5666 {
5667 p = skipwhite(p);
5668 if (*p == NUL)
5669 break;
5670 *q++ = '"';
5671 *q++ = ',';
5672 *q++ = '"';
5673 }
5674 else
5675 {
5676 *q++ = *p++;
5677 }
5678 }
5679 *q++ = '"';
5680 *q = 0;
5681
5682 *lenp = len;
5683 return buf;
5684}
5685
5686/*
5687 * Check for a <> code in a user command.
5688 * "code" points to the '<'. "len" the length of the <> (inclusive).
5689 * "buf" is where the result is to be added.
5690 * "split_buf" points to a buffer used for splitting, caller should free it.
5691 * "split_len" is the length of what "split_buf" contains.
5692 * Returns the length of the replacement, which has been added to "buf".
5693 * Returns -1 if there was no match, and only the "<" has been copied.
5694 */
5695 static size_t
5696uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5697 char_u *code;
5698 size_t len;
5699 char_u *buf;
5700 ucmd_T *cmd; /* the user command we're expanding */
5701 exarg_T *eap; /* ex arguments */
5702 char_u **split_buf;
5703 size_t *split_len;
5704{
5705 size_t result = 0;
5706 char_u *p = code + 1;
5707 size_t l = len - 2;
5708 int quote = 0;
5709 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5710 ct_LT, ct_NONE } type = ct_NONE;
5711
5712 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5713 {
5714 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5715 p += 2;
5716 l -= 2;
5717 }
5718
Bram Moolenaar371d5402006-03-20 21:47:49 +00005719 ++l;
5720 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005721 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005722 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005724 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005725 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005726 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005728 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005730 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005732 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005734 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 type = ct_REGISTER;
5736
5737 switch (type)
5738 {
5739 case ct_ARGS:
5740 /* Simple case first */
5741 if (*eap->arg == NUL)
5742 {
5743 if (quote == 1)
5744 {
5745 result = 2;
5746 if (buf != NULL)
5747 STRCPY(buf, "''");
5748 }
5749 else
5750 result = 0;
5751 break;
5752 }
5753
5754 /* When specified there is a single argument don't split it.
5755 * Works for ":Cmd %" when % is "a b c". */
5756 if ((eap->argt & NOSPC) && quote == 2)
5757 quote = 1;
5758
5759 switch (quote)
5760 {
5761 case 0: /* No quoting, no splitting */
5762 result = STRLEN(eap->arg);
5763 if (buf != NULL)
5764 STRCPY(buf, eap->arg);
5765 break;
5766 case 1: /* Quote, but don't split */
5767 result = STRLEN(eap->arg) + 2;
5768 for (p = eap->arg; *p; ++p)
5769 {
5770 if (*p == '\\' || *p == '"')
5771 ++result;
5772 }
5773
5774 if (buf != NULL)
5775 {
5776 *buf++ = '"';
5777 for (p = eap->arg; *p; ++p)
5778 {
5779 if (*p == '\\' || *p == '"')
5780 *buf++ = '\\';
5781 *buf++ = *p;
5782 }
5783 *buf = '"';
5784 }
5785
5786 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005787 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 /* This is hard, so only do it once, and cache the result */
5789 if (*split_buf == NULL)
5790 *split_buf = uc_split_args(eap->arg, split_len);
5791
5792 result = *split_len;
5793 if (buf != NULL && result != 0)
5794 STRCPY(buf, *split_buf);
5795
5796 break;
5797 }
5798 break;
5799
5800 case ct_BANG:
5801 result = eap->forceit ? 1 : 0;
5802 if (quote)
5803 result += 2;
5804 if (buf != NULL)
5805 {
5806 if (quote)
5807 *buf++ = '"';
5808 if (eap->forceit)
5809 *buf++ = '!';
5810 if (quote)
5811 *buf = '"';
5812 }
5813 break;
5814
5815 case ct_LINE1:
5816 case ct_LINE2:
5817 case ct_COUNT:
5818 {
5819 char num_buf[20];
5820 long num = (type == ct_LINE1) ? eap->line1 :
5821 (type == ct_LINE2) ? eap->line2 :
5822 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5823 size_t num_len;
5824
5825 sprintf(num_buf, "%ld", num);
5826 num_len = STRLEN(num_buf);
5827 result = num_len;
5828
5829 if (quote)
5830 result += 2;
5831
5832 if (buf != NULL)
5833 {
5834 if (quote)
5835 *buf++ = '"';
5836 STRCPY(buf, num_buf);
5837 buf += num_len;
5838 if (quote)
5839 *buf = '"';
5840 }
5841
5842 break;
5843 }
5844
5845 case ct_REGISTER:
5846 result = eap->regname ? 1 : 0;
5847 if (quote)
5848 result += 2;
5849 if (buf != NULL)
5850 {
5851 if (quote)
5852 *buf++ = '\'';
5853 if (eap->regname)
5854 *buf++ = eap->regname;
5855 if (quote)
5856 *buf = '\'';
5857 }
5858 break;
5859
5860 case ct_LT:
5861 result = 1;
5862 if (buf != NULL)
5863 *buf = '<';
5864 break;
5865
5866 default:
5867 /* Not recognized: just copy the '<' and return -1. */
5868 result = (size_t)-1;
5869 if (buf != NULL)
5870 *buf = '<';
5871 break;
5872 }
5873
5874 return result;
5875}
5876
5877 static void
5878do_ucmd(eap)
5879 exarg_T *eap;
5880{
5881 char_u *buf;
5882 char_u *p;
5883 char_u *q;
5884
5885 char_u *start;
5886 char_u *end;
5887 size_t len, totlen;
5888
5889 size_t split_len = 0;
5890 char_u *split_buf = NULL;
5891 ucmd_T *cmd;
5892#ifdef FEAT_EVAL
5893 scid_T save_current_SID = current_SID;
5894#endif
5895
5896 if (eap->cmdidx == CMD_USER)
5897 cmd = USER_CMD(eap->useridx);
5898 else
5899 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5900
5901 /*
5902 * Replace <> in the command by the arguments.
5903 */
5904 buf = NULL;
5905 for (;;)
5906 {
5907 p = cmd->uc_rep;
5908 q = buf;
5909 totlen = 0;
5910 while ((start = vim_strchr(p, '<')) != NULL
5911 && (end = vim_strchr(start + 1, '>')) != NULL)
5912 {
5913 /* Include the '>' */
5914 ++end;
5915
5916 /* Take everything up to the '<' */
5917 len = start - p;
5918 if (buf == NULL)
5919 totlen += len;
5920 else
5921 {
5922 mch_memmove(q, p, len);
5923 q += len;
5924 }
5925
5926 len = uc_check_code(start, end - start, q, cmd, eap,
5927 &split_buf, &split_len);
5928 if (len == (size_t)-1)
5929 {
5930 /* no match, continue after '<' */
5931 p = start + 1;
5932 len = 1;
5933 }
5934 else
5935 p = end;
5936 if (buf == NULL)
5937 totlen += len;
5938 else
5939 q += len;
5940 }
5941 if (buf != NULL) /* second time here, finished */
5942 {
5943 STRCPY(q, p);
5944 break;
5945 }
5946
5947 totlen += STRLEN(p); /* Add on the trailing characters */
5948 buf = alloc((unsigned)(totlen + 1));
5949 if (buf == NULL)
5950 {
5951 vim_free(split_buf);
5952 return;
5953 }
5954 }
5955
5956#ifdef FEAT_EVAL
5957 current_SID = cmd->uc_scriptID;
5958#endif
5959 (void)do_cmdline(buf, eap->getline, eap->cookie,
5960 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5961#ifdef FEAT_EVAL
5962 current_SID = save_current_SID;
5963#endif
5964 vim_free(buf);
5965 vim_free(split_buf);
5966}
5967
5968# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5969 static char_u *
5970get_user_command_name(idx)
5971 int idx;
5972{
5973 return get_user_commands(NULL, idx - (int)CMD_SIZE);
5974}
5975
5976/*
5977 * Function given to ExpandGeneric() to obtain the list of user command names.
5978 */
5979/*ARGSUSED*/
5980 char_u *
5981get_user_commands(xp, idx)
5982 expand_T *xp;
5983 int idx;
5984{
5985 if (idx < curbuf->b_ucmds.ga_len)
5986 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
5987 idx -= curbuf->b_ucmds.ga_len;
5988 if (idx < ucmds.ga_len)
5989 return USER_CMD(idx)->uc_name;
5990 return NULL;
5991}
5992
5993/*
5994 * Function given to ExpandGeneric() to obtain the list of user command
5995 * attributes.
5996 */
5997/*ARGSUSED*/
5998 char_u *
5999get_user_cmd_flags(xp, idx)
6000 expand_T *xp;
6001 int idx;
6002{
6003 static char *user_cmd_flags[] =
6004 {"bang", "bar", "buffer", "complete", "count",
6005 "nargs", "range", "register"};
6006
6007 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
6008 return NULL;
6009 return (char_u *)user_cmd_flags[idx];
6010}
6011
6012/*
6013 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6014 */
6015/*ARGSUSED*/
6016 char_u *
6017get_user_cmd_nargs(xp, idx)
6018 expand_T *xp;
6019 int idx;
6020{
6021 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6022
6023 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
6024 return NULL;
6025 return (char_u *)user_cmd_nargs[idx];
6026}
6027
6028/*
6029 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6030 */
6031/*ARGSUSED*/
6032 char_u *
6033get_user_cmd_complete(xp, idx)
6034 expand_T *xp;
6035 int idx;
6036{
6037 return (char_u *)command_complete[idx].name;
6038}
6039# endif /* FEAT_CMDL_COMPL */
6040
6041#endif /* FEAT_USR_CMDS */
6042
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006043#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6044/*
6045 * Parse a completion argument "value[vallen]".
6046 * The detected completion goes in "*complp", argument type in "*argt".
6047 * When there is an argument, for function and user defined completion, it's
6048 * copied to allocated memory and stored in "*compl_arg".
6049 * Returns FAIL if something is wrong.
6050 */
6051 int
6052parse_compl_arg(value, vallen, complp, argt, compl_arg)
6053 char_u *value;
6054 int vallen;
6055 int *complp;
6056 long *argt;
6057 char_u **compl_arg;
6058{
6059 char_u *arg = NULL;
6060 size_t arglen = 0;
6061 int i;
6062 int valend = vallen;
6063
6064 /* Look for any argument part - which is the part after any ',' */
6065 for (i = 0; i < vallen; ++i)
6066 {
6067 if (value[i] == ',')
6068 {
6069 arg = &value[i + 1];
6070 arglen = vallen - i - 1;
6071 valend = i;
6072 break;
6073 }
6074 }
6075
6076 for (i = 0; command_complete[i].expand != 0; ++i)
6077 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006078 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006079 && STRNCMP(value, command_complete[i].name, valend) == 0)
6080 {
6081 *complp = command_complete[i].expand;
6082 if (command_complete[i].expand == EXPAND_BUFFERS)
6083 *argt |= BUFNAME;
6084 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6085 || command_complete[i].expand == EXPAND_FILES)
6086 *argt |= XFILE;
6087 break;
6088 }
6089 }
6090
6091 if (command_complete[i].expand == 0)
6092 {
6093 EMSG2(_("E180: Invalid complete value: %s"), value);
6094 return FAIL;
6095 }
6096
6097# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6098 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6099 && arg != NULL)
6100# else
6101 if (arg != NULL)
6102# endif
6103 {
6104 EMSG(_("E468: Completion argument only allowed for custom completion"));
6105 return FAIL;
6106 }
6107
6108# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6109 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6110 && arg == NULL)
6111 {
6112 EMSG(_("E467: Custom completion requires a function argument"));
6113 return FAIL;
6114 }
6115
6116 if (arg != NULL)
6117 *compl_arg = vim_strnsave(arg, (int)arglen);
6118# endif
6119 return OK;
6120}
6121#endif
6122
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 static void
6124ex_colorscheme(eap)
6125 exarg_T *eap;
6126{
6127 if (load_colors(eap->arg) == FAIL)
6128 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6129}
6130
6131 static void
6132ex_highlight(eap)
6133 exarg_T *eap;
6134{
6135 if (*eap->arg == NUL && eap->cmd[2] == '!')
6136 MSG(_("Greetings, Vim user!"));
6137 do_highlight(eap->arg, eap->forceit, FALSE);
6138}
6139
6140
6141/*
6142 * Call this function if we thought we were going to exit, but we won't
6143 * (because of an error). May need to restore the terminal mode.
6144 */
6145 void
6146not_exiting()
6147{
6148 exiting = FALSE;
6149 settmode(TMODE_RAW);
6150}
6151
6152/*
6153 * ":quit": quit current window, quit Vim if closed the last window.
6154 */
6155 static void
6156ex_quit(eap)
6157 exarg_T *eap;
6158{
6159#ifdef FEAT_CMDWIN
6160 if (cmdwin_type != 0)
6161 {
6162 cmdwin_result = Ctrl_C;
6163 return;
6164 }
6165#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006166 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006167 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006168 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006169 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006170 return;
6171 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006172#ifdef FEAT_AUTOCMD
6173 if (curbuf_locked())
6174 return;
6175#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176
6177#ifdef FEAT_NETBEANS_INTG
6178 netbeansForcedQuit = eap->forceit;
6179#endif
6180
6181 /*
6182 * If there are more files or windows we won't exit.
6183 */
6184 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6185 exiting = TRUE;
6186 if ((!P_HID(curbuf)
6187 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6188 || check_more(TRUE, eap->forceit) == FAIL
6189 || (only_one_window() && check_changed_any(eap->forceit)))
6190 {
6191 not_exiting();
6192 }
6193 else
6194 {
6195#ifdef FEAT_WINDOWS
6196 if (only_one_window()) /* quit last window */
6197#endif
6198 getout(0);
6199#ifdef FEAT_WINDOWS
6200# ifdef FEAT_GUI
6201 need_mouse_correct = TRUE;
6202# endif
6203 /* close window; may free buffer */
6204 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6205#endif
6206 }
6207}
6208
6209/*
6210 * ":cquit".
6211 */
6212/*ARGSUSED*/
6213 static void
6214ex_cquit(eap)
6215 exarg_T *eap;
6216{
6217 getout(1); /* this does not always pass on the exit code to the Manx
6218 compiler. why? */
6219}
6220
6221/*
6222 * ":qall": try to quit all windows
6223 */
6224 static void
6225ex_quit_all(eap)
6226 exarg_T *eap;
6227{
6228# ifdef FEAT_CMDWIN
6229 if (cmdwin_type != 0)
6230 {
6231 if (eap->forceit)
6232 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6233 else
6234 cmdwin_result = K_XF2;
6235 return;
6236 }
6237# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006238
6239 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006240 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006241 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006242 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006243 return;
6244 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006245#ifdef FEAT_AUTOCMD
6246 if (curbuf_locked())
6247 return;
6248#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006249
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 exiting = TRUE;
6251 if (eap->forceit || !check_changed_any(FALSE))
6252 getout(0);
6253 not_exiting();
6254}
6255
Bram Moolenaard9967712006-03-11 21:18:15 +00006256#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257/*
6258 * ":close": close current window, unless it is the last one
6259 */
6260 static void
6261ex_close(eap)
6262 exarg_T *eap;
6263{
6264# ifdef FEAT_CMDWIN
6265 if (cmdwin_type != 0)
6266 cmdwin_result = K_IGNORE;
6267 else
6268# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006269 if (!text_locked()
6270#ifdef FEAT_AUTOCMD
6271 && !curbuf_locked()
6272#endif
6273 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006274 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275}
6276
Bram Moolenaard9967712006-03-11 21:18:15 +00006277# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006278/*
6279 * ":pclose": Close any preview window.
6280 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006281 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006282ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006283 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006284{
6285 win_T *win;
6286
6287 for (win = firstwin; win != NULL; win = win->w_next)
6288 if (win->w_p_pvw)
6289 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006290 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006291 break;
6292 }
6293}
Bram Moolenaard9967712006-03-11 21:18:15 +00006294# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006295
Bram Moolenaarf740b292006-02-16 22:11:02 +00006296/*
6297 * Close window "win" and take care of handling closing the last window for a
6298 * modified buffer.
6299 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006300 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006301ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006302 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006304 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305{
6306 int need_hide;
6307 buf_T *buf = win->w_buffer;
6308
6309 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006310 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006312# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 if ((p_confirm || cmdmod.confirm) && p_write)
6314 {
6315 dialog_changed(buf, FALSE);
6316 if (buf_valid(buf) && bufIsChanged(buf))
6317 return;
6318 need_hide = FALSE;
6319 }
6320 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006321# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006322 {
6323 EMSG(_(e_nowrtmsg));
6324 return;
6325 }
6326 }
6327
Bram Moolenaard9967712006-03-11 21:18:15 +00006328# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006329 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006330# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006331
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006333 if (tp == NULL)
6334 win_close(win, !need_hide && !P_HID(buf));
6335 else
6336 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337}
6338
Bram Moolenaar071d4272004-06-13 20:20:40 +00006339/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006340 * ":tabclose": close current tab page, unless it is the last one.
6341 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342 */
6343 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006344ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006345 exarg_T *eap;
6346{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006347 tabpage_T *tp;
6348
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006349# ifdef FEAT_CMDWIN
6350 if (cmdwin_type != 0)
6351 cmdwin_result = K_IGNORE;
6352 else
6353# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006354 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006355 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006356 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006358 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006359 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006360 tp = find_tabpage((int)eap->line2);
6361 if (tp == NULL)
6362 {
6363 beep_flush();
6364 return;
6365 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006366 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006367 {
6368 tabpage_close_other(tp, eap->forceit);
6369 return;
6370 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006371 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006372 if (!text_locked()
6373#ifdef FEAT_AUTOCMD
6374 && !curbuf_locked()
6375#endif
6376 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006377 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006379}
6380
6381/*
6382 * ":tabonly": close all tab pages except the current one
6383 */
6384 static void
6385ex_tabonly(eap)
6386 exarg_T *eap;
6387{
6388 tabpage_T *tp;
6389 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006390
6391# ifdef FEAT_CMDWIN
6392 if (cmdwin_type != 0)
6393 cmdwin_result = K_IGNORE;
6394 else
6395# endif
6396 if (first_tabpage->tp_next == NULL)
6397 MSG(_("Already only one tab page"));
6398 else
6399 {
6400 /* Repeat this up to a 1000 times, because autocommands may mess
6401 * up the lists. */
6402 for (done = 0; done < 1000; ++done)
6403 {
6404 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6405 if (tp->tp_topframe != topframe)
6406 {
6407 tabpage_close_other(tp, eap->forceit);
6408 /* if we failed to close it quit */
6409 if (valid_tabpage(tp))
6410 done = 1000;
6411 /* start over, "tp" is now invalid */
6412 break;
6413 }
6414 if (first_tabpage->tp_next == NULL)
6415 break;
6416 }
6417 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419
6420/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006421 * Close the current tab page.
6422 */
6423 void
6424tabpage_close(forceit)
6425 int forceit;
6426{
6427 /* First close all the windows but the current one. If that worked then
6428 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006429 if (lastwin != firstwin)
6430 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006431 if (lastwin == firstwin)
6432 ex_win_close(forceit, curwin, NULL);
6433# ifdef FEAT_GUI
6434 need_mouse_correct = TRUE;
6435# endif
6436}
6437
6438/*
6439 * Close tab page "tp", which is not the current tab page.
6440 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006441 * Also takes care of the tab pages line disappearing when closing the
6442 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006443 */
6444 void
6445tabpage_close_other(tp, forceit)
6446 tabpage_T *tp;
6447 int forceit;
6448{
6449 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006450 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006451 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006452
6453 /* Limit to 1000 windows, autocommands may add a window while we close
6454 * one. OK, so I'm paranoid... */
6455 while (++done < 1000)
6456 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006457 wp = tp->tp_firstwin;
6458 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006459
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006460 /* Autocommands may delete the tab page under our fingers and we may
6461 * fail to close a window with a modified buffer. */
6462 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006463 break;
6464 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006465
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006466 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006467 if (h != tabline_height())
6468 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006469}
6470
6471/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 * ":only".
6473 */
6474 static void
6475ex_only(eap)
6476 exarg_T *eap;
6477{
6478# ifdef FEAT_GUI
6479 need_mouse_correct = TRUE;
6480# endif
6481 close_others(TRUE, eap->forceit);
6482}
6483
6484/*
6485 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006486 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006488 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489ex_all(eap)
6490 exarg_T *eap;
6491{
6492 if (eap->addr_count == 0)
6493 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006494 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006495}
6496#endif /* FEAT_WINDOWS */
6497
6498 static void
6499ex_hide(eap)
6500 exarg_T *eap;
6501{
6502 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6503 eap->errmsg = e_invarg;
6504 else
6505 {
6506 /* ":hide" or ":hide | cmd": hide current window */
6507 eap->nextcmd = check_nextcmd(eap->arg);
6508#ifdef FEAT_WINDOWS
6509 if (!eap->skip)
6510 {
6511# ifdef FEAT_GUI
6512 need_mouse_correct = TRUE;
6513# endif
6514 win_close(curwin, FALSE); /* don't free buffer */
6515 }
6516#endif
6517 }
6518}
6519
6520/*
6521 * ":stop" and ":suspend": Suspend Vim.
6522 */
6523 static void
6524ex_stop(eap)
6525 exarg_T *eap;
6526{
6527 /*
6528 * Disallow suspending for "rvim".
6529 */
6530 if (!check_restricted()
6531#ifdef WIN3264
6532 /*
6533 * Check if external commands are allowed now.
6534 */
6535 && can_end_termcap_mode(TRUE)
6536#endif
6537 )
6538 {
6539 if (!eap->forceit)
6540 autowrite_all();
6541 windgoto((int)Rows - 1, 0);
6542 out_char('\n');
6543 out_flush();
6544 stoptermcap();
6545 out_flush(); /* needed for SUN to restore xterm buffer */
6546#ifdef FEAT_TITLE
6547 mch_restore_title(3); /* restore window titles */
6548#endif
6549 ui_suspend(); /* call machine specific function */
6550#ifdef FEAT_TITLE
6551 maketitle();
6552 resettitle(); /* force updating the title */
6553#endif
6554 starttermcap();
6555 scroll_start(); /* scroll screen before redrawing */
6556 redraw_later_clear();
6557 shell_resized(); /* may have resized window */
6558 }
6559}
6560
6561/*
6562 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6563 */
6564 static void
6565ex_exit(eap)
6566 exarg_T *eap;
6567{
6568#ifdef FEAT_CMDWIN
6569 if (cmdwin_type != 0)
6570 {
6571 cmdwin_result = Ctrl_C;
6572 return;
6573 }
6574#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006575 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006576 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006577 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006578 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006579 return;
6580 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006581#ifdef FEAT_AUTOCMD
6582 if (curbuf_locked())
6583 return;
6584#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006585
6586 /*
6587 * if more files or windows we won't exit
6588 */
6589 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6590 exiting = TRUE;
6591 if ( ((eap->cmdidx == CMD_wq
6592 || curbufIsChanged())
6593 && do_write(eap) == FAIL)
6594 || check_more(TRUE, eap->forceit) == FAIL
6595 || (only_one_window() && check_changed_any(eap->forceit)))
6596 {
6597 not_exiting();
6598 }
6599 else
6600 {
6601#ifdef FEAT_WINDOWS
6602 if (only_one_window()) /* quit last window, exit Vim */
6603#endif
6604 getout(0);
6605#ifdef FEAT_WINDOWS
6606# ifdef FEAT_GUI
6607 need_mouse_correct = TRUE;
6608# endif
6609 /* quit current window, may free buffer */
6610 win_close(curwin, !P_HID(curwin->w_buffer));
6611#endif
6612 }
6613}
6614
6615/*
6616 * ":print", ":list", ":number".
6617 */
6618 static void
6619ex_print(eap)
6620 exarg_T *eap;
6621{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006622 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6623 EMSG(_(e_emptybuf));
6624 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006626 for ( ;!got_int; ui_breakcheck())
6627 {
6628 print_line(eap->line1,
6629 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6630 || (eap->flags & EXFLAG_NR)),
6631 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6632 if (++eap->line1 > eap->line2)
6633 break;
6634 out_flush(); /* show one line at a time */
6635 }
6636 setpcmark();
6637 /* put cursor at last line */
6638 curwin->w_cursor.lnum = eap->line2;
6639 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640 }
6641
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643}
6644
6645#ifdef FEAT_BYTEOFF
6646 static void
6647ex_goto(eap)
6648 exarg_T *eap;
6649{
6650 goto_byte(eap->line2);
6651}
6652#endif
6653
6654/*
6655 * ":shell".
6656 */
6657/*ARGSUSED*/
6658 static void
6659ex_shell(eap)
6660 exarg_T *eap;
6661{
6662 do_shell(NULL, 0);
6663}
6664
6665#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6666 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006667 || defined(FEAT_GUI_MSWIN) \
6668 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669 || defined(PROTO)
6670
6671/*
6672 * Handle a file drop. The code is here because a drop is *nearly* like an
6673 * :args command, but not quite (we have a list of exact filenames, so we
6674 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6675 * code is very similar to :args and hence needs access to a lot of the static
6676 * functions in this file.
6677 *
6678 * The list should be allocated using alloc(), as should each item in the
6679 * list. This function takes over responsibility for freeing the list.
6680 *
6681 * XXX The list is made into the arggument list. This is freed using
6682 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6683 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6684 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6685 * file functionality is (currently) not in EMX this is not presently a
6686 * problem.
6687 */
6688 void
6689handle_drop(filec, filev, split)
6690 int filec; /* the number of files dropped */
6691 char_u **filev; /* the list of files dropped */
6692 int split; /* force splitting the window */
6693{
6694 exarg_T ea;
6695 int save_msg_scroll = msg_scroll;
6696
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006697 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006698 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006700#ifdef FEAT_AUTOCMD
6701 if (curbuf_locked())
6702 return;
6703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704
6705 /* Check whether the current buffer is changed. If so, we will need
6706 * to split the current window or data could be lost.
6707 * We don't need to check if the 'hidden' option is set, as in this
6708 * case the buffer won't be lost.
6709 */
6710 if (!P_HID(curbuf) && !split)
6711 {
6712 ++emsg_off;
6713 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6714 --emsg_off;
6715 }
6716 if (split)
6717 {
6718# ifdef FEAT_WINDOWS
6719 if (win_split(0, 0) == FAIL)
6720 return;
6721# ifdef FEAT_SCROLLBIND
6722 curwin->w_p_scb = FALSE;
6723# endif
6724
6725 /* When splitting the window, create a new alist. Otherwise the
6726 * existing one is overwritten. */
6727 alist_unlink(curwin->w_alist);
6728 alist_new();
6729# else
6730 return; /* can't split, always fail */
6731# endif
6732 }
6733
6734 /*
6735 * Set up the new argument list.
6736 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006737 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738
6739 /*
6740 * Move to the first file.
6741 */
6742 /* Fake up a minimal "next" command for do_argfile() */
6743 vim_memset(&ea, 0, sizeof(ea));
6744 ea.cmd = (char_u *)"next";
6745 do_argfile(&ea, 0);
6746
6747 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6748 * mode that is not needed here. */
6749 need_start_insertmode = FALSE;
6750
6751 /* Restore msg_scroll, otherwise a following command may cause scrolling
6752 * unexpectedly. The screen will be redrawn by the caller, thus
6753 * msg_scroll being set by displaying a message is irrelevant. */
6754 msg_scroll = save_msg_scroll;
6755}
6756#endif
6757
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758/*
6759 * Clear an argument list: free all file names and reset it to zero entries.
6760 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006761 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762alist_clear(al)
6763 alist_T *al;
6764{
6765 while (--al->al_ga.ga_len >= 0)
6766 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6767 ga_clear(&al->al_ga);
6768}
6769
6770/*
6771 * Init an argument list.
6772 */
6773 void
6774alist_init(al)
6775 alist_T *al;
6776{
6777 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6778}
6779
6780#if defined(FEAT_WINDOWS) || defined(PROTO)
6781
6782/*
6783 * Remove a reference from an argument list.
6784 * Ignored when the argument list is the global one.
6785 * If the argument list is no longer used by any window, free it.
6786 */
6787 void
6788alist_unlink(al)
6789 alist_T *al;
6790{
6791 if (al != &global_alist && --al->al_refcount <= 0)
6792 {
6793 alist_clear(al);
6794 vim_free(al);
6795 }
6796}
6797
6798# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6799/*
6800 * Create a new argument list and use it for the current window.
6801 */
6802 void
6803alist_new()
6804{
6805 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6806 if (curwin->w_alist == NULL)
6807 {
6808 curwin->w_alist = &global_alist;
6809 ++global_alist.al_refcount;
6810 }
6811 else
6812 {
6813 curwin->w_alist->al_refcount = 1;
6814 alist_init(curwin->w_alist);
6815 }
6816}
6817# endif
6818#endif
6819
6820#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6821/*
6822 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006823 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6824 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825 */
6826 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006827alist_expand(fnum_list, fnum_len)
6828 int *fnum_list;
6829 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006830{
6831 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006832 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006833 char_u **new_arg_files;
6834 int new_arg_file_count;
6835 char_u *save_p_su = p_su;
6836 int i;
6837
6838 /* Don't use 'suffixes' here. This should work like the shell did the
6839 * expansion. Also, the vimrc file isn't read yet, thus the user
6840 * can't set the options. */
6841 p_su = empty_option;
6842 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6843 if (old_arg_files != NULL)
6844 {
6845 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006846 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6847 old_arg_count = GARGCOUNT;
6848 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849 &new_arg_file_count, &new_arg_files,
6850 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6851 && new_arg_file_count > 0)
6852 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006853 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6854 TRUE, fnum_list, fnum_len);
6855 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006857 }
6858 p_su = save_p_su;
6859}
6860#endif
6861
6862/*
6863 * Set the argument list for the current window.
6864 * Takes over the allocated files[] and the allocated fnames in it.
6865 */
6866 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006867alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868 alist_T *al;
6869 int count;
6870 char_u **files;
6871 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006872 int *fnum_list;
6873 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006874{
6875 int i;
6876
6877 alist_clear(al);
6878 if (ga_grow(&al->al_ga, count) == OK)
6879 {
6880 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006881 {
6882 if (got_int)
6883 {
6884 /* When adding many buffers this can take a long time. Allow
6885 * interrupting here. */
6886 while (i < count)
6887 vim_free(files[i++]);
6888 break;
6889 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006890
6891 /* May set buffer name of a buffer previously used for the
6892 * argument list, so that it's re-used by alist_add. */
6893 if (fnum_list != NULL && i < fnum_len)
6894 buf_set_name(fnum_list[i], files[i]);
6895
Bram Moolenaar071d4272004-06-13 20:20:40 +00006896 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006897 ui_breakcheck();
6898 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 vim_free(files);
6900 }
6901 else
6902 FreeWild(count, files);
6903#ifdef FEAT_WINDOWS
6904 if (al == &global_alist)
6905#endif
6906 arg_had_last = FALSE;
6907}
6908
6909/*
6910 * Add file "fname" to argument list "al".
6911 * "fname" must have been allocated and "al" must have been checked for room.
6912 */
6913 void
6914alist_add(al, fname, set_fnum)
6915 alist_T *al;
6916 char_u *fname;
6917 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6918{
6919 if (fname == NULL) /* don't add NULL file names */
6920 return;
6921#ifdef BACKSLASH_IN_FILENAME
6922 slash_adjust(fname);
6923#endif
6924 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6925 if (set_fnum > 0)
6926 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6927 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6928 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006929}
6930
6931#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6932/*
6933 * Adjust slashes in file names. Called after 'shellslash' was set.
6934 */
6935 void
6936alist_slash_adjust()
6937{
6938 int i;
6939# ifdef FEAT_WINDOWS
6940 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006941 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942# endif
6943
6944 for (i = 0; i < GARGCOUNT; ++i)
6945 if (GARGLIST[i].ae_fname != NULL)
6946 slash_adjust(GARGLIST[i].ae_fname);
6947# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006948 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949 if (wp->w_alist != &global_alist)
6950 for (i = 0; i < WARGCOUNT(wp); ++i)
6951 if (WARGLIST(wp)[i].ae_fname != NULL)
6952 slash_adjust(WARGLIST(wp)[i].ae_fname);
6953# endif
6954}
6955#endif
6956
6957/*
6958 * ":preserve".
6959 */
6960/*ARGSUSED*/
6961 static void
6962ex_preserve(eap)
6963 exarg_T *eap;
6964{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006965 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966 ml_preserve(curbuf, TRUE);
6967}
6968
6969/*
6970 * ":recover".
6971 */
6972 static void
6973ex_recover(eap)
6974 exarg_T *eap;
6975{
6976 /* Set recoverymode right away to avoid the ATTENTION prompt. */
6977 recoverymode = TRUE;
6978 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
6979 && (*eap->arg == NUL
6980 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
6981 ml_recover();
6982 recoverymode = FALSE;
6983}
6984
6985/*
6986 * Command modifier used in a wrong way.
6987 */
6988 static void
6989ex_wrongmodifier(eap)
6990 exarg_T *eap;
6991{
6992 eap->errmsg = e_invcmd;
6993}
6994
6995#ifdef FEAT_WINDOWS
6996/*
6997 * :sview [+command] file split window with new file, read-only
6998 * :split [[+command] file] split window with current or new file
6999 * :vsplit [[+command] file] split window vertically with current or new file
7000 * :new [[+command] file] split window with no or new file
7001 * :vnew [[+command] file] split vertically window with no or new file
7002 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007003 *
7004 * :tabedit open new Tab page with empty window
7005 * :tabedit [+command] file open new Tab page and edit "file"
7006 * :tabnew [[+command] file] just like :tabedit
7007 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008 */
7009 void
7010ex_splitview(eap)
7011 exarg_T *eap;
7012{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007013 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007014# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007016# endif
7017# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007019# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007020
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007021# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7023 {
7024 ex_ni(eap);
7025 return;
7026 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007027# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007029# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007030 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007031# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007033# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034 /* A ":split" in the quickfix window works like ":new". Don't want two
7035 * quickfix windows. */
7036 if (bt_quickfix(curbuf))
7037 {
7038 if (eap->cmdidx == CMD_split)
7039 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007040# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041 if (eap->cmdidx == CMD_vsplit)
7042 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007043# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007045# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007046
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007047# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007048 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 {
7050 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7051 FNAME_MESS, TRUE, curbuf->b_ffname);
7052 if (fname == NULL)
7053 goto theend;
7054 eap->arg = fname;
7055 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007056# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007058# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007060# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007062# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007064# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 && eap->cmdidx != CMD_new)
7066 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007067 if (
7068# ifdef FEAT_GUI
7069 !gui.in_use &&
7070# endif
7071 au_has_group((char_u *)"FileExplorer"))
7072 {
7073 /* No browsing supported but we do have the file explorer:
7074 * Edit the directory. */
7075 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7076 eap->arg = (char_u *)".";
7077 }
7078 else
7079 {
7080 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007081 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007082 if (fname == NULL)
7083 goto theend;
7084 eap->arg = fname;
7085 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086 }
7087 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007088# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007090 /*
7091 * Either open new tab page or split the window.
7092 */
7093 if (eap->cmdidx == CMD_tabedit
7094 || eap->cmdidx == CMD_tabfind
7095 || eap->cmdidx == CMD_tabnew)
7096 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007097 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7098 : eap->addr_count == 0 ? 0
7099 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007100 {
7101 do_exedit(eap, NULL);
7102
7103 /* set the alternate buffer for the window we came from */
7104 if (curwin != old_curwin
7105 && win_valid(old_curwin)
7106 && old_curwin->w_buffer != curbuf
7107 && !cmdmod.keepalt)
7108 old_curwin->w_alt_fnum = curbuf->b_fnum;
7109 }
7110 }
7111 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7113 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007114# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115 /* Reset 'scrollbind' when editing another file, but keep it when
7116 * doing ":split" without arguments. */
7117 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007118# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007120# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007121 )
7122 curwin->w_p_scb = FALSE;
7123 else
7124 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007125# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007126 do_exedit(eap, old_curwin);
7127 }
7128
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007129# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007130 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007131# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007132
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007133# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134theend:
7135 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007136# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007138
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007139#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007140/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007141 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007142 */
7143 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007144tabpage_new()
7145{
7146 exarg_T ea;
7147
7148 vim_memset(&ea, 0, sizeof(ea));
7149 ea.cmdidx = CMD_tabnew;
7150 ea.cmd = (char_u *)"tabn";
7151 ea.arg = (char_u *)"";
7152 ex_splitview(&ea);
7153}
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007154#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007155
7156/*
7157 * :tabnext command
7158 */
7159 static void
7160ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007161 exarg_T *eap;
7162{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007163 switch (eap->cmdidx)
7164 {
7165 case CMD_tabfirst:
7166 case CMD_tabrewind:
7167 goto_tabpage(1);
7168 break;
7169 case CMD_tablast:
7170 goto_tabpage(9999);
7171 break;
7172 case CMD_tabprevious:
7173 case CMD_tabNext:
7174 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7175 break;
7176 default: /* CMD_tabnext */
7177 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7178 break;
7179 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007180}
7181
7182/*
7183 * :tabmove command
7184 */
7185 static void
7186ex_tabmove(eap)
7187 exarg_T *eap;
7188{
7189 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007190}
7191
7192/*
7193 * :tabs command: List tabs and their contents.
7194 */
7195/*ARGSUSED*/
7196 static void
7197ex_tabs(eap)
7198 exarg_T *eap;
7199{
7200 tabpage_T *tp;
7201 win_T *wp;
7202 int tabcount = 1;
7203
7204 msg_start();
7205 msg_scroll = TRUE;
7206 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7207 {
7208 msg_putchar('\n');
7209 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7210 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7211 out_flush(); /* output one line at a time */
7212 ui_breakcheck();
7213
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007214 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007215 wp = firstwin;
7216 else
7217 wp = tp->tp_firstwin;
7218 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7219 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007220 msg_putchar('\n');
7221 msg_putchar(wp == curwin ? '>' : ' ');
7222 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007223 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7224 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007225 if (buf_spname(wp->w_buffer) != NULL)
7226 STRCPY(IObuff, buf_spname(wp->w_buffer));
7227 else
7228 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7229 IObuff, IOSIZE, TRUE);
7230 msg_outtrans(IObuff);
7231 out_flush(); /* output one line at a time */
7232 ui_breakcheck();
7233 }
7234 }
7235}
7236
7237#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007238
7239/*
7240 * ":mode": Set screen mode.
7241 * If no argument given, just get the screen size and redraw.
7242 */
7243 static void
7244ex_mode(eap)
7245 exarg_T *eap;
7246{
7247 if (*eap->arg == NUL)
7248 shell_resized();
7249 else
7250 mch_screenmode(eap->arg);
7251}
7252
7253#ifdef FEAT_WINDOWS
7254/*
7255 * ":resize".
7256 * set, increment or decrement current window height
7257 */
7258 static void
7259ex_resize(eap)
7260 exarg_T *eap;
7261{
7262 int n;
7263 win_T *wp = curwin;
7264
7265 if (eap->addr_count > 0)
7266 {
7267 n = eap->line2;
7268 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7269 ;
7270 }
7271
7272#ifdef FEAT_GUI
7273 need_mouse_correct = TRUE;
7274#endif
7275 n = atol((char *)eap->arg);
7276#ifdef FEAT_VERTSPLIT
7277 if (cmdmod.split & WSP_VERT)
7278 {
7279 if (*eap->arg == '-' || *eap->arg == '+')
7280 n += W_WIDTH(curwin);
7281 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7282 n = 9999;
7283 win_setwidth_win((int)n, wp);
7284 }
7285 else
7286#endif
7287 {
7288 if (*eap->arg == '-' || *eap->arg == '+')
7289 n += curwin->w_height;
7290 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7291 n = 9999;
7292 win_setheight_win((int)n, wp);
7293 }
7294}
7295#endif
7296
7297/*
7298 * ":find [+command] <file>" command.
7299 */
7300 static void
7301ex_find(eap)
7302 exarg_T *eap;
7303{
7304#ifdef FEAT_SEARCHPATH
7305 char_u *fname;
7306 int count;
7307
7308 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7309 TRUE, curbuf->b_ffname);
7310 if (eap->addr_count > 0)
7311 {
7312 /* Repeat finding the file "count" times. This matters when it
7313 * appears several times in the path. */
7314 count = eap->line2;
7315 while (fname != NULL && --count > 0)
7316 {
7317 vim_free(fname);
7318 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7319 FALSE, curbuf->b_ffname);
7320 }
7321 }
7322
7323 if (fname != NULL)
7324 {
7325 eap->arg = fname;
7326#endif
7327 do_exedit(eap, NULL);
7328#ifdef FEAT_SEARCHPATH
7329 vim_free(fname);
7330 }
7331#endif
7332}
7333
7334/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007335 * ":open" simulation: for now just work like ":visual".
7336 */
7337 static void
7338ex_open(eap)
7339 exarg_T *eap;
7340{
7341 regmatch_T regmatch;
7342 char_u *p;
7343
7344 curwin->w_cursor.lnum = eap->line2;
7345 beginline(BL_SOL | BL_FIX);
7346 if (*eap->arg == '/')
7347 {
7348 /* ":open /pattern/": put cursor in column found with pattern */
7349 ++eap->arg;
7350 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7351 *p = NUL;
7352 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7353 if (regmatch.regprog != NULL)
7354 {
7355 regmatch.rm_ic = p_ic;
7356 p = ml_get_curline();
7357 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007358 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007359 else
7360 EMSG(_(e_nomatch));
7361 vim_free(regmatch.regprog);
7362 }
7363 /* Move to the NUL, ignore any other arguments. */
7364 eap->arg += STRLEN(eap->arg);
7365 }
7366 check_cursor();
7367
7368 eap->cmdidx = CMD_visual;
7369 do_exedit(eap, NULL);
7370}
7371
7372/*
7373 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374 */
7375 static void
7376ex_edit(eap)
7377 exarg_T *eap;
7378{
7379 do_exedit(eap, NULL);
7380}
7381
7382/*
7383 * ":edit <file>" command and alikes.
7384 */
7385/*ARGSUSED*/
7386 void
7387do_exedit(eap, old_curwin)
7388 exarg_T *eap;
7389 win_T *old_curwin; /* curwin before doing a split or NULL */
7390{
7391 int n;
7392#ifdef FEAT_WINDOWS
7393 int need_hide;
7394#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007395 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007396
7397 /*
7398 * ":vi" command ends Ex mode.
7399 */
7400 if (exmode_active && (eap->cmdidx == CMD_visual
7401 || eap->cmdidx == CMD_view))
7402 {
7403 exmode_active = FALSE;
7404 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007405 {
7406 /* Special case: ":global/pat/visual\NLvi-commands" */
7407 if (global_busy)
7408 {
7409 int rd = RedrawingDisabled;
7410 int nwr = no_wait_return;
7411 int ms = msg_scroll;
7412#ifdef FEAT_GUI
7413 int he = hold_gui_events;
7414#endif
7415
7416 if (eap->nextcmd != NULL)
7417 {
7418 stuffReadbuff(eap->nextcmd);
7419 eap->nextcmd = NULL;
7420 }
7421
7422 if (exmode_was != EXMODE_VIM)
7423 settmode(TMODE_RAW);
7424 RedrawingDisabled = 0;
7425 no_wait_return = 0;
7426 need_wait_return = FALSE;
7427 msg_scroll = 0;
7428#ifdef FEAT_GUI
7429 hold_gui_events = 0;
7430#endif
7431 must_redraw = CLEAR;
7432
7433 main_loop(FALSE, TRUE);
7434
7435 RedrawingDisabled = rd;
7436 no_wait_return = nwr;
7437 msg_scroll = ms;
7438#ifdef FEAT_GUI
7439 hold_gui_events = he;
7440#endif
7441 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007442 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007443 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007444 }
7445
7446 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007447 || eap->cmdidx == CMD_tabnew
7448 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007449#ifdef FEAT_VERTSPLIT
7450 || eap->cmdidx == CMD_vnew
7451#endif
7452 ) && *eap->arg == NUL)
7453 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007454 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007455 setpcmark();
7456 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7457 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7458 }
7459 else if ((eap->cmdidx != CMD_split
7460#ifdef FEAT_VERTSPLIT
7461 && eap->cmdidx != CMD_vsplit
7462#endif
7463 )
7464 || *eap->arg != NUL
7465#ifdef FEAT_BROWSE
7466 || cmdmod.browse
7467#endif
7468 )
7469 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007470#ifdef FEAT_AUTOCMD
7471 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7472 * can bring us here, others are stopped earlier. */
7473 if (*eap->arg != NUL && curbuf_locked())
7474 return;
7475#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007476 n = readonlymode;
7477 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7478 readonlymode = TRUE;
7479 else if (eap->cmdidx == CMD_enew)
7480 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7481 empty buffer */
7482 setpcmark();
7483 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7484 NULL, eap,
7485 /* ":edit" goes to first line if Vi compatible */
7486 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7487 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7488 ? ECMD_ONE : eap->do_ecmd_lnum,
7489 (P_HID(curbuf) ? ECMD_HIDE : 0)
7490 + (eap->forceit ? ECMD_FORCEIT : 0)
7491#ifdef FEAT_LISTCMDS
7492 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7493#endif
7494 ) == FAIL)
7495 {
7496 /* Editing the file failed. If the window was split, close it. */
7497#ifdef FEAT_WINDOWS
7498 if (old_curwin != NULL)
7499 {
7500 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7501 if (!need_hide || P_HID(curbuf))
7502 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007503# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7504 cleanup_T cs;
7505
7506 /* Reset the error/interrupt/exception state here so that
7507 * aborting() returns FALSE when closing a window. */
7508 enter_cleanup(&cs);
7509# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510# ifdef FEAT_GUI
7511 need_mouse_correct = TRUE;
7512# endif
7513 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007514
7515# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7516 /* Restore the error/interrupt/exception state if not
7517 * discarded by a new aborting error, interrupt, or
7518 * uncaught exception. */
7519 leave_cleanup(&cs);
7520# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521 }
7522 }
7523#endif
7524 }
7525 else if (readonlymode && curbuf->b_nwindows == 1)
7526 {
7527 /* When editing an already visited buffer, 'readonly' won't be set
7528 * but the previous value is kept. With ":view" and ":sview" we
7529 * want the file to be readonly, except when another window is
7530 * editing the same buffer. */
7531 curbuf->b_p_ro = TRUE;
7532 }
7533 readonlymode = n;
7534 }
7535 else
7536 {
7537 if (eap->do_ecmd_cmd != NULL)
7538 do_cmdline_cmd(eap->do_ecmd_cmd);
7539#ifdef FEAT_TITLE
7540 n = curwin->w_arg_idx_invalid;
7541#endif
7542 check_arg_idx(curwin);
7543#ifdef FEAT_TITLE
7544 if (n != curwin->w_arg_idx_invalid)
7545 maketitle();
7546#endif
7547 }
7548
7549#ifdef FEAT_WINDOWS
7550 /*
7551 * if ":split file" worked, set alternate file name in old window to new
7552 * file
7553 */
7554 if (old_curwin != NULL
7555 && *eap->arg != NUL
7556 && curwin != old_curwin
7557 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007558 && old_curwin->w_buffer != curbuf
7559 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 old_curwin->w_alt_fnum = curbuf->b_fnum;
7561#endif
7562
7563 ex_no_reprint = TRUE;
7564}
7565
7566#ifndef FEAT_GUI
7567/*
7568 * ":gui" and ":gvim" when there is no GUI.
7569 */
7570 static void
7571ex_nogui(eap)
7572 exarg_T *eap;
7573{
7574 eap->errmsg = e_nogvim;
7575}
7576#endif
7577
7578#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7579 static void
7580ex_tearoff(eap)
7581 exarg_T *eap;
7582{
7583 gui_make_tearoff(eap->arg);
7584}
7585#endif
7586
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007587#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007588 static void
7589ex_popup(eap)
7590 exarg_T *eap;
7591{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007592 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007593}
7594#endif
7595
7596/*ARGSUSED*/
7597 static void
7598ex_swapname(eap)
7599 exarg_T *eap;
7600{
7601 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7602 MSG(_("No swap file"));
7603 else
7604 msg(curbuf->b_ml.ml_mfp->mf_fname);
7605}
7606
7607/*
7608 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7609 * offset.
7610 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7611 */
7612/*ARGSUSED*/
7613 static void
7614ex_syncbind(eap)
7615 exarg_T *eap;
7616{
7617#ifdef FEAT_SCROLLBIND
7618 win_T *wp;
7619 long topline;
7620 long y;
7621 linenr_T old_linenr = curwin->w_cursor.lnum;
7622
7623 setpcmark();
7624
7625 /*
7626 * determine max topline
7627 */
7628 if (curwin->w_p_scb)
7629 {
7630 topline = curwin->w_topline;
7631 for (wp = firstwin; wp; wp = wp->w_next)
7632 {
7633 if (wp->w_p_scb && wp->w_buffer)
7634 {
7635 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7636 if (topline > y)
7637 topline = y;
7638 }
7639 }
7640 if (topline < 1)
7641 topline = 1;
7642 }
7643 else
7644 {
7645 topline = 1;
7646 }
7647
7648
7649 /*
7650 * set all scrollbind windows to the same topline
7651 */
7652 wp = curwin;
7653 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7654 {
7655 if (curwin->w_p_scb)
7656 {
7657 y = topline - curwin->w_topline;
7658 if (y > 0)
7659 scrollup(y, TRUE);
7660 else
7661 scrolldown(-y, TRUE);
7662 curwin->w_scbind_pos = topline;
7663 redraw_later(VALID);
7664 cursor_correct();
7665#ifdef FEAT_WINDOWS
7666 curwin->w_redr_status = TRUE;
7667#endif
7668 }
7669 }
7670 curwin = wp;
7671 if (curwin->w_p_scb)
7672 {
7673 did_syncbind = TRUE;
7674 checkpcmark();
7675 if (old_linenr != curwin->w_cursor.lnum)
7676 {
7677 char_u ctrl_o[2];
7678
7679 ctrl_o[0] = Ctrl_O;
7680 ctrl_o[1] = 0;
7681 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7682 }
7683 }
7684#endif
7685}
7686
7687
7688 static void
7689ex_read(eap)
7690 exarg_T *eap;
7691{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007692 int i;
7693 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7694 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007695
7696 if (eap->usefilter) /* :r!cmd */
7697 do_bang(1, eap, FALSE, FALSE, TRUE);
7698 else
7699 {
7700 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7701 return;
7702
7703#ifdef FEAT_BROWSE
7704 if (cmdmod.browse)
7705 {
7706 char_u *browseFile;
7707
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007708 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007709 NULL, NULL, NULL, curbuf);
7710 if (browseFile != NULL)
7711 {
7712 i = readfile(browseFile, NULL,
7713 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7714 vim_free(browseFile);
7715 }
7716 else
7717 i = OK;
7718 }
7719 else
7720#endif
7721 if (*eap->arg == NUL)
7722 {
7723 if (check_fname() == FAIL) /* check for no file name */
7724 return;
7725 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7726 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7727 }
7728 else
7729 {
7730 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7731 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7732 i = readfile(eap->arg, NULL,
7733 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7734
7735 }
7736 if (i == FAIL)
7737 {
7738#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7739 if (!aborting())
7740#endif
7741 EMSG2(_(e_notopen), eap->arg);
7742 }
7743 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007744 {
7745 if (empty && exmode_active)
7746 {
7747 /* Delete the empty line that remains. Historically ex does
7748 * this but vi doesn't. */
7749 if (eap->line2 == 0)
7750 lnum = curbuf->b_ml.ml_line_count;
7751 else
7752 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007753 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007754 {
7755 ml_delete(lnum, FALSE);
7756 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007757 if (curwin->w_cursor.lnum > 1
7758 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007759 --curwin->w_cursor.lnum;
7760 }
7761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007762 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007763 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007764 }
7765}
7766
Bram Moolenaarea408852005-06-25 22:49:46 +00007767static char_u *prev_dir = NULL;
7768
7769#if defined(EXITFREE) || defined(PROTO)
7770 void
7771free_cd_dir()
7772{
7773 vim_free(prev_dir);
7774}
7775#endif
7776
7777
Bram Moolenaar071d4272004-06-13 20:20:40 +00007778/*
7779 * ":cd", ":lcd", ":chdir" and ":lchdir".
7780 */
7781 static void
7782ex_cd(eap)
7783 exarg_T *eap;
7784{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007785 char_u *new_dir;
7786 char_u *tofree;
7787
7788 new_dir = eap->arg;
7789#if !defined(UNIX) && !defined(VMS)
7790 /* for non-UNIX ":cd" means: print current directory */
7791 if (*new_dir == NUL)
7792 ex_pwd(NULL);
7793 else
7794#endif
7795 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007796 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7797 && !eap->forceit)
7798 {
7799 EMSG(_("E747: Cannot change directory, buffer is modifed (add ! to override)"));
7800 return;
7801 }
7802
Bram Moolenaar071d4272004-06-13 20:20:40 +00007803 /* ":cd -": Change to previous directory */
7804 if (STRCMP(new_dir, "-") == 0)
7805 {
7806 if (prev_dir == NULL)
7807 {
7808 EMSG(_("E186: No previous directory"));
7809 return;
7810 }
7811 new_dir = prev_dir;
7812 }
7813
7814 /* Save current directory for next ":cd -" */
7815 tofree = prev_dir;
7816 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7817 prev_dir = vim_strsave(NameBuff);
7818 else
7819 prev_dir = NULL;
7820
7821#if defined(UNIX) || defined(VMS)
7822 /* for UNIX ":cd" means: go to home directory */
7823 if (*new_dir == NUL)
7824 {
7825 /* use NameBuff for home directory name */
7826# ifdef VMS
7827 char_u *p;
7828
7829 p = mch_getenv((char_u *)"SYS$LOGIN");
7830 if (p == NULL || *p == NUL) /* empty is the same as not set */
7831 NameBuff[0] = NUL;
7832 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007833 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007834# else
7835 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7836# endif
7837 new_dir = NameBuff;
7838 }
7839#endif
7840 if (new_dir == NULL || vim_chdir(new_dir))
7841 EMSG(_(e_failed));
7842 else
7843 {
7844 vim_free(curwin->w_localdir);
7845 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7846 {
7847 /* If still in global directory, need to remember current
7848 * directory as global directory. */
7849 if (globaldir == NULL && prev_dir != NULL)
7850 globaldir = vim_strsave(prev_dir);
7851 /* Remember this local directory for the window. */
7852 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7853 curwin->w_localdir = vim_strsave(NameBuff);
7854 }
7855 else
7856 {
7857 /* We are now in the global directory, no need to remember its
7858 * name. */
7859 vim_free(globaldir);
7860 globaldir = NULL;
7861 curwin->w_localdir = NULL;
7862 }
7863
7864 shorten_fnames(TRUE);
7865
7866 /* Echo the new current directory if the command was typed. */
7867 if (KeyTyped)
7868 ex_pwd(eap);
7869 }
7870 vim_free(tofree);
7871 }
7872}
7873
7874/*
7875 * ":pwd".
7876 */
7877/*ARGSUSED*/
7878 static void
7879ex_pwd(eap)
7880 exarg_T *eap;
7881{
7882 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7883 {
7884#ifdef BACKSLASH_IN_FILENAME
7885 slash_adjust(NameBuff);
7886#endif
7887 msg(NameBuff);
7888 }
7889 else
7890 EMSG(_("E187: Unknown"));
7891}
7892
7893/*
7894 * ":=".
7895 */
7896 static void
7897ex_equal(eap)
7898 exarg_T *eap;
7899{
7900 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007901 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007902}
7903
7904 static void
7905ex_sleep(eap)
7906 exarg_T *eap;
7907{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007908 int n;
7909 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910
7911 if (cursor_valid())
7912 {
7913 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7914 if (n >= 0)
7915 windgoto((int)n, curwin->w_wcol);
7916 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007917
7918 len = eap->line2;
7919 switch (*eap->arg)
7920 {
7921 case 'm': break;
7922 case NUL: len *= 1000L; break;
7923 default: EMSG2(_(e_invarg2), eap->arg); return;
7924 }
7925 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007926}
7927
7928/*
7929 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7930 */
7931 void
7932do_sleep(msec)
7933 long msec;
7934{
7935 long done;
7936
7937 cursor_on();
7938 out_flush();
7939 for (done = 0; !got_int && done < msec; done += 1000L)
7940 {
7941 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7942 ui_breakcheck();
7943 }
7944}
7945
7946 static void
7947do_exmap(eap, isabbrev)
7948 exarg_T *eap;
7949 int isabbrev;
7950{
7951 int mode;
7952 char_u *cmdp;
7953
7954 cmdp = eap->cmd;
7955 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7956
7957 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7958 eap->arg, mode, isabbrev))
7959 {
7960 case 1: EMSG(_(e_invarg));
7961 break;
7962 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7963 break;
7964 }
7965}
7966
7967/*
7968 * ":winsize" command (obsolete).
7969 */
7970 static void
7971ex_winsize(eap)
7972 exarg_T *eap;
7973{
7974 int w, h;
7975 char_u *arg = eap->arg;
7976 char_u *p;
7977
7978 w = getdigits(&arg);
7979 arg = skipwhite(arg);
7980 p = arg;
7981 h = getdigits(&arg);
7982 if (*p != NUL && *arg == NUL)
7983 set_shellsize(w, h, TRUE);
7984 else
7985 EMSG(_("E465: :winsize requires two number arguments"));
7986}
7987
7988#ifdef FEAT_WINDOWS
7989 static void
7990ex_wincmd(eap)
7991 exarg_T *eap;
7992{
7993 int xchar = NUL;
7994 char_u *p;
7995
7996 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
7997 {
7998 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
7999 if (eap->arg[1] == NUL)
8000 {
8001 EMSG(_(e_invarg));
8002 return;
8003 }
8004 xchar = eap->arg[1];
8005 p = eap->arg + 2;
8006 }
8007 else
8008 p = eap->arg + 1;
8009
8010 eap->nextcmd = check_nextcmd(p);
8011 p = skipwhite(p);
8012 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8013 EMSG(_(e_invarg));
8014 else
8015 {
8016 /* Pass flags on for ":vertical wincmd ]". */
8017 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008018 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008019 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8020 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008021 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008022 }
8023}
8024#endif
8025
Bram Moolenaar843ee412004-06-30 16:16:41 +00008026#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008027/*
8028 * ":winpos".
8029 */
8030 static void
8031ex_winpos(eap)
8032 exarg_T *eap;
8033{
8034 int x, y;
8035 char_u *arg = eap->arg;
8036 char_u *p;
8037
8038 if (*arg == NUL)
8039 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008040# if defined(FEAT_GUI) || defined(MSWIN)
8041# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008042 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008043# else
8044 if (mch_get_winpos(&x, &y) != FAIL)
8045# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008046 {
8047 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8048 msg(IObuff);
8049 }
8050 else
8051# endif
8052 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8053 }
8054 else
8055 {
8056 x = getdigits(&arg);
8057 arg = skipwhite(arg);
8058 p = arg;
8059 y = getdigits(&arg);
8060 if (*p == NUL || *arg != NUL)
8061 {
8062 EMSG(_("E466: :winpos requires two number arguments"));
8063 return;
8064 }
8065# ifdef FEAT_GUI
8066 if (gui.in_use)
8067 gui_mch_set_winpos(x, y);
8068 else if (gui.starting)
8069 {
8070 /* Remember the coordinates for when the window is opened. */
8071 gui_win_x = x;
8072 gui_win_y = y;
8073 }
8074# ifdef HAVE_TGETENT
8075 else
8076# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008077# else
8078# ifdef MSWIN
8079 mch_set_winpos(x, y);
8080# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008081# endif
8082# ifdef HAVE_TGETENT
8083 if (*T_CWP)
8084 term_set_winpos(x, y);
8085# endif
8086 }
8087}
8088#endif
8089
8090/*
8091 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8092 */
8093 static void
8094ex_operators(eap)
8095 exarg_T *eap;
8096{
8097 oparg_T oa;
8098
8099 clear_oparg(&oa);
8100 oa.regname = eap->regname;
8101 oa.start.lnum = eap->line1;
8102 oa.end.lnum = eap->line2;
8103 oa.line_count = eap->line2 - eap->line1 + 1;
8104 oa.motion_type = MLINE;
8105#ifdef FEAT_VIRTUALEDIT
8106 virtual_op = FALSE;
8107#endif
8108 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8109 {
8110 setpcmark();
8111 curwin->w_cursor.lnum = eap->line1;
8112 beginline(BL_SOL | BL_FIX);
8113 }
8114
8115 switch (eap->cmdidx)
8116 {
8117 case CMD_delete:
8118 oa.op_type = OP_DELETE;
8119 op_delete(&oa);
8120 break;
8121
8122 case CMD_yank:
8123 oa.op_type = OP_YANK;
8124 (void)op_yank(&oa, FALSE, TRUE);
8125 break;
8126
8127 default: /* CMD_rshift or CMD_lshift */
8128 if ((eap->cmdidx == CMD_rshift)
8129#ifdef FEAT_RIGHTLEFT
8130 ^ curwin->w_p_rl
8131#endif
8132 )
8133 oa.op_type = OP_RSHIFT;
8134 else
8135 oa.op_type = OP_LSHIFT;
8136 op_shift(&oa, FALSE, eap->amount);
8137 break;
8138 }
8139#ifdef FEAT_VIRTUALEDIT
8140 virtual_op = MAYBE;
8141#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008142 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008143}
8144
8145/*
8146 * ":put".
8147 */
8148 static void
8149ex_put(eap)
8150 exarg_T *eap;
8151{
8152 /* ":0put" works like ":1put!". */
8153 if (eap->line2 == 0)
8154 {
8155 eap->line2 = 1;
8156 eap->forceit = TRUE;
8157 }
8158 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008159 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8160 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008161}
8162
8163/*
8164 * Handle ":copy" and ":move".
8165 */
8166 static void
8167ex_copymove(eap)
8168 exarg_T *eap;
8169{
8170 long n;
8171
8172 n = get_address(&eap->arg, FALSE, FALSE);
8173 if (eap->arg == NULL) /* error detected */
8174 {
8175 eap->nextcmd = NULL;
8176 return;
8177 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008178 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008179
8180 /*
8181 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8182 */
8183 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8184 {
8185 EMSG(_(e_invaddr));
8186 return;
8187 }
8188
8189 if (eap->cmdidx == CMD_move)
8190 {
8191 if (do_move(eap->line1, eap->line2, n) == FAIL)
8192 return;
8193 }
8194 else
8195 ex_copy(eap->line1, eap->line2, n);
8196 u_clearline();
8197 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008198 ex_may_print(eap);
8199}
8200
8201/*
8202 * Print the current line if flags were given to the Ex command.
8203 */
8204 static void
8205ex_may_print(eap)
8206 exarg_T *eap;
8207{
8208 if (eap->flags != 0)
8209 {
8210 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8211 (eap->flags & EXFLAG_LIST));
8212 ex_no_reprint = TRUE;
8213 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008214}
8215
8216/*
8217 * ":smagic" and ":snomagic".
8218 */
8219 static void
8220ex_submagic(eap)
8221 exarg_T *eap;
8222{
8223 int magic_save = p_magic;
8224
8225 p_magic = (eap->cmdidx == CMD_smagic);
8226 do_sub(eap);
8227 p_magic = magic_save;
8228}
8229
8230/*
8231 * ":join".
8232 */
8233 static void
8234ex_join(eap)
8235 exarg_T *eap;
8236{
8237 curwin->w_cursor.lnum = eap->line1;
8238 if (eap->line1 == eap->line2)
8239 {
8240 if (eap->addr_count >= 2) /* :2,2join does nothing */
8241 return;
8242 if (eap->line2 == curbuf->b_ml.ml_line_count)
8243 {
8244 beep_flush();
8245 return;
8246 }
8247 ++eap->line2;
8248 }
8249 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8250 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008251 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008252}
8253
8254/*
8255 * ":[addr]@r" or ":[addr]*r": execute register
8256 */
8257 static void
8258ex_at(eap)
8259 exarg_T *eap;
8260{
8261 int c;
8262
8263 curwin->w_cursor.lnum = eap->line2;
8264
8265#ifdef USE_ON_FLY_SCROLL
8266 dont_scroll = TRUE; /* disallow scrolling here */
8267#endif
8268
8269 /* get the register name. No name means to use the previous one */
8270 c = *eap->arg;
8271 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8272 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008273 /* Put the register in the typeahead buffer with the "silent" flag. */
8274 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8275 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008276 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008277 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008278 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008279 else
8280 {
8281 int save_efr = exec_from_reg;
8282
8283 exec_from_reg = TRUE;
8284
8285 /*
8286 * Execute from the typeahead buffer.
8287 * Originally this didn't check for the typeahead buffer to be empty,
8288 * thus could read more Ex commands from stdin. It's not clear why,
8289 * it is certainly unexpected.
8290 */
8291 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8292 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8293
8294 exec_from_reg = save_efr;
8295 }
8296}
8297
8298/*
8299 * ":!".
8300 */
8301 static void
8302ex_bang(eap)
8303 exarg_T *eap;
8304{
8305 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8306}
8307
8308/*
8309 * ":undo".
8310 */
8311/*ARGSUSED*/
8312 static void
8313ex_undo(eap)
8314 exarg_T *eap;
8315{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008316 if (eap->addr_count == 1) /* :undo 123 */
8317 undo_time(eap->line2, FALSE, TRUE);
8318 else
8319 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008320}
8321
8322/*
8323 * ":redo".
8324 */
8325/*ARGSUSED*/
8326 static void
8327ex_redo(eap)
8328 exarg_T *eap;
8329{
8330 u_redo(1);
8331}
8332
8333/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008334 * ":earlier" and ":later".
8335 */
8336/*ARGSUSED*/
8337 static void
8338ex_later(eap)
8339 exarg_T *eap;
8340{
8341 long count = 0;
8342 int sec = FALSE;
8343 char_u *p = eap->arg;
8344
8345 if (*p == NUL)
8346 count = 1;
8347 else if (isdigit(*p))
8348 {
8349 count = getdigits(&p);
8350 switch (*p)
8351 {
8352 case 's': ++p; sec = TRUE; break;
8353 case 'm': ++p; sec = TRUE; count *= 60; break;
8354 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8355 }
8356 }
8357
8358 if (*p != NUL)
8359 EMSG2(_(e_invarg2), eap->arg);
8360 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008361 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008362}
8363
8364/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008365 * ":redir": start/stop redirection.
8366 */
8367 static void
8368ex_redir(eap)
8369 exarg_T *eap;
8370{
8371 char *mode;
8372 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008373 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008374
8375 if (STRICMP(eap->arg, "END") == 0)
8376 close_redir();
8377 else
8378 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008379 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008380 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008381 ++arg;
8382 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008383 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008384 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008385 mode = "a";
8386 }
8387 else
8388 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008389 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008390
8391 close_redir();
8392
8393 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008394 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008395 if (fname == NULL)
8396 return;
8397#ifdef FEAT_BROWSE
8398 if (cmdmod.browse)
8399 {
8400 char_u *browseFile;
8401
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008402 browseFile = do_browse(BROWSE_SAVE,
8403 (char_u *)_("Save Redirection"),
8404 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008405 if (browseFile == NULL)
8406 return; /* operation cancelled */
8407 vim_free(fname);
8408 fname = browseFile;
8409 eap->forceit = TRUE; /* since dialog already asked */
8410 }
8411#endif
8412
8413 redir_fd = open_exfile(fname, eap->forceit, mode);
8414 vim_free(fname);
8415 }
8416#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008417 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008418 {
8419 /* redirect to a register a-z (resp. A-Z for appending) */
8420 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008421 ++arg;
8422 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008423# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008424 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008425 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008426# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008427 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008428 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008429 redir_reg = *arg++;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008430 if (*arg == '>' && arg[1] == '>')
8431 arg += 2;
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008432 else if ((*arg == NUL || (*arg == '>' && arg[1] == NUL)) &&
8433 (islower(redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008434# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008435 || redir_reg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008436 || redir_reg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008437# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008438 || redir_reg == '"'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008439 {
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008440 if (*arg == '>')
8441 arg++;
8442
Bram Moolenaar071d4272004-06-13 20:20:40 +00008443 /* make register empty */
8444 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
8445 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008446 }
8447 if (*arg != NUL)
8448 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008449 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008450 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008451 }
8452 }
8453 else if (*arg == '=' && arg[1] == '>')
8454 {
8455 int append;
8456
8457 /* redirect to a variable */
8458 close_redir();
8459 arg += 2;
8460
8461 if (*arg == '>')
8462 {
8463 ++arg;
8464 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008465 }
8466 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008467 append = FALSE;
8468
8469 if (var_redir_start(skipwhite(arg), append) == OK)
8470 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008471 }
8472#endif
8473
8474 /* TODO: redirect to a buffer */
8475
Bram Moolenaar071d4272004-06-13 20:20:40 +00008476 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008477 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008478 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008479
8480 /* Make sure redirection is not off. Can happen for cmdline completion
8481 * that indirectly invokes a command to catch its output. */
8482 if (redir_fd != NULL
8483#ifdef FEAT_EVAL
8484 || redir_reg || redir_vname
8485#endif
8486 )
8487 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008488}
8489
8490/*
8491 * ":redraw": force redraw
8492 */
8493 static void
8494ex_redraw(eap)
8495 exarg_T *eap;
8496{
8497 int r = RedrawingDisabled;
8498 int p = p_lz;
8499
8500 RedrawingDisabled = 0;
8501 p_lz = FALSE;
8502 update_topline();
8503 update_screen(eap->forceit ? CLEAR :
8504#ifdef FEAT_VISUAL
8505 VIsual_active ? INVERTED :
8506#endif
8507 0);
8508#ifdef FEAT_TITLE
8509 if (need_maketitle)
8510 maketitle();
8511#endif
8512 RedrawingDisabled = r;
8513 p_lz = p;
8514
8515 /* Reset msg_didout, so that a message that's there is overwritten. */
8516 msg_didout = FALSE;
8517 msg_col = 0;
8518
8519 out_flush();
8520}
8521
8522/*
8523 * ":redrawstatus": force redraw of status line(s)
8524 */
8525/*ARGSUSED*/
8526 static void
8527ex_redrawstatus(eap)
8528 exarg_T *eap;
8529{
8530#if defined(FEAT_WINDOWS)
8531 int r = RedrawingDisabled;
8532 int p = p_lz;
8533
8534 RedrawingDisabled = 0;
8535 p_lz = FALSE;
8536 if (eap->forceit)
8537 status_redraw_all();
8538 else
8539 status_redraw_curbuf();
8540 update_screen(
8541# ifdef FEAT_VISUAL
8542 VIsual_active ? INVERTED :
8543# endif
8544 0);
8545 RedrawingDisabled = r;
8546 p_lz = p;
8547 out_flush();
8548#endif
8549}
8550
8551 static void
8552close_redir()
8553{
8554 if (redir_fd != NULL)
8555 {
8556 fclose(redir_fd);
8557 redir_fd = NULL;
8558 }
8559#ifdef FEAT_EVAL
8560 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008561 if (redir_vname)
8562 {
8563 var_redir_stop();
8564 redir_vname = 0;
8565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008566#endif
8567}
8568
8569#if defined(FEAT_SESSION) && defined(USE_CRNL)
8570# define MKSESSION_NL
8571static int mksession_nl = FALSE; /* use NL only in put_eol() */
8572#endif
8573
8574/*
8575 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8576 */
8577 static void
8578ex_mkrc(eap)
8579 exarg_T *eap;
8580{
8581 FILE *fd;
8582 int failed = FALSE;
8583 char_u *fname;
8584#ifdef FEAT_BROWSE
8585 char_u *browseFile = NULL;
8586#endif
8587#ifdef FEAT_SESSION
8588 int view_session = FALSE;
8589 int using_vdir = FALSE; /* using 'viewdir'? */
8590 char_u *viewFile = NULL;
8591 unsigned *flagp;
8592#endif
8593
8594 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8595 {
8596#ifdef FEAT_SESSION
8597 view_session = TRUE;
8598#else
8599 ex_ni(eap);
8600 return;
8601#endif
8602 }
8603
8604#ifdef FEAT_SESSION
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008605 did_lcd = FALSE;
8606
Bram Moolenaar071d4272004-06-13 20:20:40 +00008607 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8608 if (eap->cmdidx == CMD_mkview
8609 && (*eap->arg == NUL
8610 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8611 {
8612 eap->forceit = TRUE;
8613 fname = get_view_file(*eap->arg);
8614 if (fname == NULL)
8615 return;
8616 viewFile = fname;
8617 using_vdir = TRUE;
8618 }
8619 else
8620#endif
8621 if (*eap->arg != NUL)
8622 fname = eap->arg;
8623 else if (eap->cmdidx == CMD_mkvimrc)
8624 fname = (char_u *)VIMRC_FILE;
8625#ifdef FEAT_SESSION
8626 else if (eap->cmdidx == CMD_mksession)
8627 fname = (char_u *)SESSION_FILE;
8628#endif
8629 else
8630 fname = (char_u *)EXRC_FILE;
8631
8632#ifdef FEAT_BROWSE
8633 if (cmdmod.browse)
8634 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008635 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008636# ifdef FEAT_SESSION
8637 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8638 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8639# endif
8640 (char_u *)_("Save Setup"),
8641 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8642 if (browseFile == NULL)
8643 goto theend;
8644 fname = browseFile;
8645 eap->forceit = TRUE; /* since dialog already asked */
8646 }
8647#endif
8648
8649#if defined(FEAT_SESSION) && defined(vim_mkdir)
8650 /* When using 'viewdir' may have to create the directory. */
8651 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008652 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008653#endif
8654
8655 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8656 if (fd != NULL)
8657 {
8658#ifdef FEAT_SESSION
8659 if (eap->cmdidx == CMD_mkview)
8660 flagp = &vop_flags;
8661 else
8662 flagp = &ssop_flags;
8663#endif
8664
8665#ifdef MKSESSION_NL
8666 /* "unix" in 'sessionoptions': use NL line separator */
8667 if (view_session && (*flagp & SSOP_UNIX))
8668 mksession_nl = TRUE;
8669#endif
8670
8671 /* Write the version command for :mkvimrc */
8672 if (eap->cmdidx == CMD_mkvimrc)
8673 (void)put_line(fd, "version 6.0");
8674
8675#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008676 if (eap->cmdidx == CMD_mksession)
8677 {
8678 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8679 failed = TRUE;
8680 }
8681
Bram Moolenaar071d4272004-06-13 20:20:40 +00008682 if (eap->cmdidx != CMD_mkview)
8683#endif
8684 {
8685 /* Write setting 'compatible' first, because it has side effects.
8686 * For that same reason only do it when needed. */
8687 if (p_cp)
8688 (void)put_line(fd, "if !&cp | set cp | endif");
8689 else
8690 (void)put_line(fd, "if &cp | set nocp | endif");
8691 }
8692
8693#ifdef FEAT_SESSION
8694 if (!view_session
8695 || (eap->cmdidx == CMD_mksession
8696 && (*flagp & SSOP_OPTIONS)))
8697#endif
8698 failed |= (makemap(fd, NULL) == FAIL
8699 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8700
8701#ifdef FEAT_SESSION
8702 if (!failed && view_session)
8703 {
8704 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8705 failed = TRUE;
8706 if (eap->cmdidx == CMD_mksession)
8707 {
8708 char_u dirnow[MAXPATHL]; /* current directory */
8709
8710 /*
8711 * Change to session file's dir.
8712 */
8713 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8714 || mch_chdir((char *)dirnow) != 0)
8715 *dirnow = NUL;
8716 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8717 {
8718 if (vim_chdirfile(fname) == OK)
8719 shorten_fnames(TRUE);
8720 }
8721 else if (*dirnow != NUL
8722 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8723 {
8724 (void)mch_chdir((char *)globaldir);
8725 shorten_fnames(TRUE);
8726 }
8727
8728 failed |= (makeopens(fd, dirnow) == FAIL);
8729
8730 /* restore original dir */
8731 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8732 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8733 {
8734 if (mch_chdir((char *)dirnow) != 0)
8735 EMSG(_(e_prev_dir));
8736 shorten_fnames(TRUE);
8737 }
8738 }
8739 else
8740 {
8741 failed |= (put_view(fd, curwin, !using_vdir, flagp) == FAIL);
8742 }
8743 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8744 == FAIL)
8745 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008746 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8747 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008748 if (eap->cmdidx == CMD_mksession)
8749 {
8750 if (put_line(fd, "unlet SessionLoad") == FAIL)
8751 failed = TRUE;
8752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008753 }
8754#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008755 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8756 failed = TRUE;
8757
Bram Moolenaar071d4272004-06-13 20:20:40 +00008758 failed |= fclose(fd);
8759
8760 if (failed)
8761 EMSG(_(e_write));
8762#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8763 else if (eap->cmdidx == CMD_mksession)
8764 {
8765 /* successful session write - set this_session var */
8766 char_u tbuf[MAXPATHL];
8767
8768 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8769 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8770 }
8771#endif
8772#ifdef MKSESSION_NL
8773 mksession_nl = FALSE;
8774#endif
8775 }
8776
8777#ifdef FEAT_BROWSE
8778theend:
8779 vim_free(browseFile);
8780#endif
8781#ifdef FEAT_SESSION
8782 vim_free(viewFile);
8783#endif
8784}
8785
Bram Moolenaardf177f62005-02-22 08:39:57 +00008786#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8787 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008788/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008789 int
8790vim_mkdir_emsg(name, prot)
8791 char_u *name;
8792 int prot;
8793{
8794 if (vim_mkdir(name, prot) != 0)
8795 {
8796 EMSG2(_("E739: Cannot create directory: %s"), name);
8797 return FAIL;
8798 }
8799 return OK;
8800}
8801#endif
8802
Bram Moolenaar071d4272004-06-13 20:20:40 +00008803/*
8804 * Open a file for writing for an Ex command, with some checks.
8805 * Return file descriptor, or NULL on failure.
8806 */
8807 FILE *
8808open_exfile(fname, forceit, mode)
8809 char_u *fname;
8810 int forceit;
8811 char *mode; /* "w" for create new file or "a" for append */
8812{
8813 FILE *fd;
8814
8815#ifdef UNIX
8816 /* with Unix it is possible to open a directory */
8817 if (mch_isdir(fname))
8818 {
8819 EMSG2(_(e_isadir2), fname);
8820 return NULL;
8821 }
8822#endif
8823 if (!forceit && *mode != 'a' && vim_fexists(fname))
8824 {
8825 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8826 return NULL;
8827 }
8828
8829 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8830 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8831
8832 return fd;
8833}
8834
8835/*
8836 * ":mark" and ":k".
8837 */
8838 static void
8839ex_mark(eap)
8840 exarg_T *eap;
8841{
8842 pos_T pos;
8843
8844 if (*eap->arg == NUL) /* No argument? */
8845 EMSG(_(e_argreq));
8846 else if (eap->arg[1] != NUL) /* more than one character? */
8847 EMSG(_(e_trailing));
8848 else
8849 {
8850 pos = curwin->w_cursor; /* save curwin->w_cursor */
8851 curwin->w_cursor.lnum = eap->line2;
8852 beginline(BL_WHITE | BL_FIX);
8853 if (setmark(*eap->arg) == FAIL) /* set mark */
8854 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8855 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8856 }
8857}
8858
8859/*
8860 * Update w_topline, w_leftcol and the cursor position.
8861 */
8862 void
8863update_topline_cursor()
8864{
8865 check_cursor(); /* put cursor on valid line */
8866 update_topline();
8867 if (!curwin->w_p_wrap)
8868 validate_cursor();
8869 update_curswant();
8870}
8871
8872#ifdef FEAT_EX_EXTRA
8873/*
8874 * ":normal[!] {commands}": Execute normal mode commands.
8875 */
8876 static void
8877ex_normal(eap)
8878 exarg_T *eap;
8879{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008880 int save_msg_scroll = msg_scroll;
8881 int save_restart_edit = restart_edit;
8882 int save_msg_didout = msg_didout;
8883 int save_State = State;
8884 tasave_T tabuf;
8885 int save_insertmode = p_im;
8886 int save_finish_op = finish_op;
8887#ifdef FEAT_MBYTE
8888 char_u *arg = NULL;
8889 int l;
8890 char_u *p;
8891#endif
8892
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008893 if (ex_normal_lock > 0)
8894 {
8895 EMSG(_(e_secure));
8896 return;
8897 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008898 if (ex_normal_busy >= p_mmd)
8899 {
8900 EMSG(_("E192: Recursive use of :normal too deep"));
8901 return;
8902 }
8903 ++ex_normal_busy;
8904
8905 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8906 restart_edit = 0; /* don't go to Insert mode */
8907 p_im = FALSE; /* don't use 'insertmode' */
8908
8909#ifdef FEAT_MBYTE
8910 /*
8911 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8912 * this for the K_SPECIAL leading byte, otherwise special keys will not
8913 * work.
8914 */
8915 if (has_mbyte)
8916 {
8917 int len = 0;
8918
8919 /* Count the number of characters to be escaped. */
8920 for (p = eap->arg; *p != NUL; ++p)
8921 {
8922# ifdef FEAT_GUI
8923 if (*p == CSI) /* leadbyte CSI */
8924 len += 2;
8925# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008926 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008927 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8928# ifdef FEAT_GUI
8929 || *p == CSI
8930# endif
8931 )
8932 len += 2;
8933 }
8934 if (len > 0)
8935 {
8936 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8937 if (arg != NULL)
8938 {
8939 len = 0;
8940 for (p = eap->arg; *p != NUL; ++p)
8941 {
8942 arg[len++] = *p;
8943# ifdef FEAT_GUI
8944 if (*p == CSI)
8945 {
8946 arg[len++] = KS_EXTRA;
8947 arg[len++] = (int)KE_CSI;
8948 }
8949# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008950 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008951 {
8952 arg[len++] = *++p;
8953 if (*p == K_SPECIAL)
8954 {
8955 arg[len++] = KS_SPECIAL;
8956 arg[len++] = KE_FILLER;
8957 }
8958# ifdef FEAT_GUI
8959 else if (*p == CSI)
8960 {
8961 arg[len++] = KS_EXTRA;
8962 arg[len++] = (int)KE_CSI;
8963 }
8964# endif
8965 }
8966 arg[len] = NUL;
8967 }
8968 }
8969 }
8970 }
8971#endif
8972
8973 /*
8974 * Save the current typeahead. This is required to allow using ":normal"
8975 * from an event handler and makes sure we don't hang when the argument
8976 * ends with half a command.
8977 */
8978 save_typeahead(&tabuf);
8979 if (tabuf.typebuf_valid)
8980 {
8981 /*
8982 * Repeat the :normal command for each line in the range. When no
8983 * range given, execute it just once, without positioning the cursor
8984 * first.
8985 */
8986 do
8987 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008988 if (eap->addr_count != 0)
8989 {
8990 curwin->w_cursor.lnum = eap->line1++;
8991 curwin->w_cursor.col = 0;
8992 }
8993
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008994 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00008995#ifdef FEAT_MBYTE
8996 arg != NULL ? arg :
8997#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008998 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008999 }
9000 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9001 }
9002
9003 /* Might not return to the main loop when in an event handler. */
9004 update_topline_cursor();
9005
9006 /* Restore the previous typeahead. */
9007 restore_typeahead(&tabuf);
9008
9009 --ex_normal_busy;
9010 msg_scroll = save_msg_scroll;
9011 restart_edit = save_restart_edit;
9012 p_im = save_insertmode;
9013 finish_op = save_finish_op;
9014 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9015
9016 /* Restore the state (needed when called from a function executed for
9017 * 'indentexpr'). */
9018 State = save_State;
9019#ifdef FEAT_MBYTE
9020 vim_free(arg);
9021#endif
9022}
9023
9024/*
Bram Moolenaar64969662005-12-14 21:59:55 +00009025 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00009026 */
9027 static void
9028ex_startinsert(eap)
9029 exarg_T *eap;
9030{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009031 if (eap->forceit)
9032 {
9033 coladvance((colnr_T)MAXCOL);
9034 curwin->w_curswant = MAXCOL;
9035 curwin->w_set_curswant = FALSE;
9036 }
9037
Bram Moolenaara40c5002005-01-09 21:16:21 +00009038 /* Ignore the command when already in Insert mode. Inserting an
9039 * expression register that invokes a function can do this. */
9040 if (State & INSERT)
9041 return;
9042
Bram Moolenaar64969662005-12-14 21:59:55 +00009043 if (eap->cmdidx == CMD_startinsert)
9044 restart_edit = 'a';
9045 else if (eap->cmdidx == CMD_startreplace)
9046 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009047 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009048 restart_edit = 'V';
9049
9050 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009051 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009052 if (eap->cmdidx == CMD_startinsert)
9053 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009054 curwin->w_curswant = 0; /* avoid MAXCOL */
9055 }
9056}
9057
9058/*
9059 * ":stopinsert"
9060 */
9061/*ARGSUSED*/
9062 static void
9063ex_stopinsert(eap)
9064 exarg_T *eap;
9065{
9066 restart_edit = 0;
9067 stop_insert_mode = TRUE;
9068}
9069#endif
9070
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009071#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9072/*
9073 * Execute normal mode command "cmd".
9074 * "remap" can be REMAP_NONE or REMAP_YES.
9075 */
9076 void
9077exec_normal_cmd(cmd, remap, silent)
9078 char_u *cmd;
9079 int remap;
9080 int silent;
9081{
9082 oparg_T oa;
9083
9084 /*
9085 * Stuff the argument into the typeahead buffer.
9086 * Execute normal_cmd() until there is no typeahead left.
9087 */
9088 clear_oparg(&oa);
9089 finish_op = FALSE;
9090 ins_typebuf(cmd, remap, 0, TRUE, silent);
9091 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9092 && !got_int)
9093 {
9094 update_topline_cursor();
9095 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9096 }
9097}
9098#endif
9099
Bram Moolenaar071d4272004-06-13 20:20:40 +00009100#ifdef FEAT_FIND_ID
9101 static void
9102ex_checkpath(eap)
9103 exarg_T *eap;
9104{
9105 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9106 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9107 (linenr_T)1, (linenr_T)MAXLNUM);
9108}
9109
9110#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9111/*
9112 * ":psearch"
9113 */
9114 static void
9115ex_psearch(eap)
9116 exarg_T *eap;
9117{
9118 g_do_tagpreview = p_pvh;
9119 ex_findpat(eap);
9120 g_do_tagpreview = 0;
9121}
9122#endif
9123
9124 static void
9125ex_findpat(eap)
9126 exarg_T *eap;
9127{
9128 int whole = TRUE;
9129 long n;
9130 char_u *p;
9131 int action;
9132
9133 switch (cmdnames[eap->cmdidx].cmd_name[2])
9134 {
9135 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9136 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9137 action = ACTION_GOTO;
9138 else
9139 action = ACTION_SHOW;
9140 break;
9141 case 'i': /* ":ilist" and ":dlist" */
9142 action = ACTION_SHOW_ALL;
9143 break;
9144 case 'u': /* ":ijump" and ":djump" */
9145 action = ACTION_GOTO;
9146 break;
9147 default: /* ":isplit" and ":dsplit" */
9148 action = ACTION_SPLIT;
9149 break;
9150 }
9151
9152 n = 1;
9153 if (vim_isdigit(*eap->arg)) /* get count */
9154 {
9155 n = getdigits(&eap->arg);
9156 eap->arg = skipwhite(eap->arg);
9157 }
9158 if (*eap->arg == '/') /* Match regexp, not just whole words */
9159 {
9160 whole = FALSE;
9161 ++eap->arg;
9162 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9163 if (*p)
9164 {
9165 *p++ = NUL;
9166 p = skipwhite(p);
9167
9168 /* Check for trailing illegal characters */
9169 if (!ends_excmd(*p))
9170 eap->errmsg = e_trailing;
9171 else
9172 eap->nextcmd = check_nextcmd(p);
9173 }
9174 }
9175 if (!eap->skip)
9176 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9177 whole, !eap->forceit,
9178 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9179 n, action, eap->line1, eap->line2);
9180}
9181#endif
9182
9183#ifdef FEAT_WINDOWS
9184
9185# ifdef FEAT_QUICKFIX
9186/*
9187 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9188 */
9189 static void
9190ex_ptag(eap)
9191 exarg_T *eap;
9192{
9193 g_do_tagpreview = p_pvh;
9194 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9195}
9196
9197/*
9198 * ":pedit"
9199 */
9200 static void
9201ex_pedit(eap)
9202 exarg_T *eap;
9203{
9204 win_T *curwin_save = curwin;
9205
9206 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009207 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009208 keep_help_flag = curwin_save->w_buffer->b_help;
9209 do_exedit(eap, NULL);
9210 keep_help_flag = FALSE;
9211 if (curwin != curwin_save && win_valid(curwin_save))
9212 {
9213 /* Return cursor to where we were */
9214 validate_cursor();
9215 redraw_later(VALID);
9216 win_enter(curwin_save, TRUE);
9217 }
9218 g_do_tagpreview = 0;
9219}
9220# endif
9221
9222/*
9223 * ":stag", ":stselect" and ":stjump".
9224 */
9225 static void
9226ex_stag(eap)
9227 exarg_T *eap;
9228{
9229 postponed_split = -1;
9230 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009231 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009232 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9233 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009234 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009235}
9236#endif
9237
9238/*
9239 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9240 */
9241 static void
9242ex_tag(eap)
9243 exarg_T *eap;
9244{
9245 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9246}
9247
9248 static void
9249ex_tag_cmd(eap, name)
9250 exarg_T *eap;
9251 char_u *name;
9252{
9253 int cmd;
9254
9255 switch (name[1])
9256 {
9257 case 'j': cmd = DT_JUMP; /* ":tjump" */
9258 break;
9259 case 's': cmd = DT_SELECT; /* ":tselect" */
9260 break;
9261 case 'p': cmd = DT_PREV; /* ":tprevious" */
9262 break;
9263 case 'N': cmd = DT_PREV; /* ":tNext" */
9264 break;
9265 case 'n': cmd = DT_NEXT; /* ":tnext" */
9266 break;
9267 case 'o': cmd = DT_POP; /* ":pop" */
9268 break;
9269 case 'f': /* ":tfirst" */
9270 case 'r': cmd = DT_FIRST; /* ":trewind" */
9271 break;
9272 case 'l': cmd = DT_LAST; /* ":tlast" */
9273 break;
9274 default: /* ":tag" */
9275#ifdef FEAT_CSCOPE
9276 if (p_cst)
9277 {
9278 do_cstag(eap);
9279 return;
9280 }
9281#endif
9282 cmd = DT_TAG;
9283 break;
9284 }
9285
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009286 if (name[0] == 'l')
9287 {
9288#ifndef FEAT_QUICKFIX
9289 ex_ni(eap);
9290 return;
9291#else
9292 cmd = DT_LTAG;
9293#endif
9294 }
9295
Bram Moolenaar071d4272004-06-13 20:20:40 +00009296 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9297 eap->forceit, TRUE);
9298}
9299
9300/*
9301 * Evaluate cmdline variables.
9302 *
9303 * change '%' to curbuf->b_ffname
9304 * '#' to curwin->w_altfile
9305 * '<cword>' to word under the cursor
9306 * '<cWORD>' to WORD under the cursor
9307 * '<cfile>' to path name under the cursor
9308 * '<sfile>' to sourced file name
9309 * '<afile>' to file name for autocommand
9310 * '<abuf>' to buffer number for autocommand
9311 * '<amatch>' to matching name for autocommand
9312 *
9313 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9314 * "" for error without a message) and NULL is returned.
9315 * Returns an allocated string if a valid match was found.
9316 * Returns NULL if no match was found. "usedlen" then still contains the
9317 * number of characters to skip.
9318 */
9319 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009320eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009321 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009322 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009323 int *usedlen; /* characters after src that are used */
9324 linenr_T *lnump; /* line number for :e command, or NULL */
9325 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009326 int *escaped; /* return value has escaped white space (can
9327 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009328{
9329 int i;
9330 char_u *s;
9331 char_u *result;
9332 char_u *resultbuf = NULL;
9333 int resultlen;
9334 buf_T *buf;
9335 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9336 int spec_idx;
9337#ifdef FEAT_MODIFY_FNAME
9338 int skip_mod = FALSE;
9339#endif
9340 static char *(spec_str[]) =
9341 {
9342 "%",
9343#define SPEC_PERC 0
9344 "#",
9345#define SPEC_HASH 1
9346 "<cword>", /* cursor word */
9347#define SPEC_CWORD 2
9348 "<cWORD>", /* cursor WORD */
9349#define SPEC_CCWORD 3
9350 "<cfile>", /* cursor path name */
9351#define SPEC_CFILE 4
9352 "<sfile>", /* ":so" file name */
9353#define SPEC_SFILE 5
9354#ifdef FEAT_AUTOCMD
9355 "<afile>", /* autocommand file name */
9356# define SPEC_AFILE 6
9357 "<abuf>", /* autocommand buffer number */
9358# define SPEC_ABUF 7
9359 "<amatch>", /* autocommand match name */
9360# define SPEC_AMATCH 8
9361#endif
9362#ifdef FEAT_CLIENTSERVER
9363 "<client>"
9364# define SPEC_CLIENT 9
9365#endif
9366 };
9367#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9368
9369#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9370 char_u strbuf[30];
9371#endif
9372
9373 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009374 if (escaped != NULL)
9375 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009376
9377 /*
9378 * Check if there is something to do.
9379 */
9380 for (spec_idx = 0; spec_idx < SPEC_COUNT; ++spec_idx)
9381 {
9382 *usedlen = (int)STRLEN(spec_str[spec_idx]);
9383 if (STRNCMP(src, spec_str[spec_idx], *usedlen) == 0)
9384 break;
9385 }
9386 if (spec_idx == SPEC_COUNT) /* no match */
9387 {
9388 *usedlen = 1;
9389 return NULL;
9390 }
9391
9392 /*
9393 * Skip when preceded with a backslash "\%" and "\#".
9394 * Note: In "\\%" the % is also not recognized!
9395 */
9396 if (src > srcstart && src[-1] == '\\')
9397 {
9398 *usedlen = 0;
9399 STRCPY(src - 1, src); /* remove backslash */
9400 return NULL;
9401 }
9402
9403 /*
9404 * word or WORD under cursor
9405 */
9406 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9407 {
9408 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9409 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9410 if (resultlen == 0)
9411 {
9412 *errormsg = (char_u *)"";
9413 return NULL;
9414 }
9415 }
9416
9417 /*
9418 * '#': Alternate file name
9419 * '%': Current file name
9420 * File name under the cursor
9421 * File name for autocommand
9422 * and following modifiers
9423 */
9424 else
9425 {
9426 switch (spec_idx)
9427 {
9428 case SPEC_PERC: /* '%': current file */
9429 if (curbuf->b_fname == NULL)
9430 {
9431 result = (char_u *)"";
9432 valid = 0; /* Must have ":p:h" to be valid */
9433 }
9434 else
9435#ifdef RISCOS
9436 /* Always use the full path for RISC OS if possible. */
9437 result = curbuf->b_ffname;
9438 if (result == NULL)
9439 result = curbuf->b_fname;
9440#else
9441 result = curbuf->b_fname;
9442#endif
9443 break;
9444
9445 case SPEC_HASH: /* '#' or "#99": alternate file */
9446 if (src[1] == '#') /* "##": the argument list */
9447 {
9448 result = arg_all();
9449 resultbuf = result;
9450 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009451 if (escaped != NULL)
9452 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009453#ifdef FEAT_MODIFY_FNAME
9454 skip_mod = TRUE;
9455#endif
9456 break;
9457 }
9458 s = src + 1;
9459 i = (int)getdigits(&s);
9460 *usedlen = (int)(s - src); /* length of what we expand */
9461
9462 buf = buflist_findnr(i);
9463 if (buf == NULL)
9464 {
9465 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9466 return NULL;
9467 }
9468 if (lnump != NULL)
9469 *lnump = ECMD_LAST;
9470 if (buf->b_fname == NULL)
9471 {
9472 result = (char_u *)"";
9473 valid = 0; /* Must have ":p:h" to be valid */
9474 }
9475 else
9476 result = buf->b_fname;
9477 break;
9478
9479#ifdef FEAT_SEARCHPATH
9480 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009481 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009482 if (result == NULL)
9483 {
9484 *errormsg = (char_u *)"";
9485 return NULL;
9486 }
9487 resultbuf = result; /* remember allocated string */
9488 break;
9489#endif
9490
9491#ifdef FEAT_AUTOCMD
9492 case SPEC_AFILE: /* file name for autocommand */
9493 result = autocmd_fname;
9494 if (result == NULL)
9495 {
9496 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9497 return NULL;
9498 }
9499 break;
9500
9501 case SPEC_ABUF: /* buffer number for autocommand */
9502 if (autocmd_bufnr <= 0)
9503 {
9504 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9505 return NULL;
9506 }
9507 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9508 result = strbuf;
9509 break;
9510
9511 case SPEC_AMATCH: /* match name for autocommand */
9512 result = autocmd_match;
9513 if (result == NULL)
9514 {
9515 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9516 return NULL;
9517 }
9518 break;
9519
9520#endif
9521 case SPEC_SFILE: /* file name for ":so" command */
9522 result = sourcing_name;
9523 if (result == NULL)
9524 {
9525 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9526 return NULL;
9527 }
9528 break;
9529#if defined(FEAT_CLIENTSERVER)
9530 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009531 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9532 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009533 result = strbuf;
9534 break;
9535#endif
9536 }
9537
9538 resultlen = (int)STRLEN(result); /* length of new string */
9539 if (src[*usedlen] == '<') /* remove the file name extension */
9540 {
9541 ++*usedlen;
9542#ifdef RISCOS
9543 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9544#else
9545 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9546#endif
9547 resultlen = (int)(s - result);
9548 }
9549#ifdef FEAT_MODIFY_FNAME
9550 else if (!skip_mod)
9551 {
9552 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9553 &resultlen);
9554 if (result == NULL)
9555 {
9556 *errormsg = (char_u *)"";
9557 return NULL;
9558 }
9559 }
9560#endif
9561 }
9562
9563 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9564 {
9565 if (valid != VALID_HEAD + VALID_PATH)
9566 /* xgettext:no-c-format */
9567 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9568 else
9569 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9570 result = NULL;
9571 }
9572 else
9573 result = vim_strnsave(result, resultlen);
9574 vim_free(resultbuf);
9575 return result;
9576}
9577
9578/*
9579 * Concatenate all files in the argument list, separated by spaces, and return
9580 * it in one allocated string.
9581 * Spaces and backslashes in the file names are escaped with a backslash.
9582 * Returns NULL when out of memory.
9583 */
9584 static char_u *
9585arg_all()
9586{
9587 int len;
9588 int idx;
9589 char_u *retval = NULL;
9590 char_u *p;
9591
9592 /*
9593 * Do this loop two times:
9594 * first time: compute the total length
9595 * second time: concatenate the names
9596 */
9597 for (;;)
9598 {
9599 len = 0;
9600 for (idx = 0; idx < ARGCOUNT; ++idx)
9601 {
9602 p = alist_name(&ARGLIST[idx]);
9603 if (p != NULL)
9604 {
9605 if (len > 0)
9606 {
9607 /* insert a space in between names */
9608 if (retval != NULL)
9609 retval[len] = ' ';
9610 ++len;
9611 }
9612 for ( ; *p != NUL; ++p)
9613 {
9614 if (*p == ' ' || *p == '\\')
9615 {
9616 /* insert a backslash */
9617 if (retval != NULL)
9618 retval[len] = '\\';
9619 ++len;
9620 }
9621 if (retval != NULL)
9622 retval[len] = *p;
9623 ++len;
9624 }
9625 }
9626 }
9627
9628 /* second time: break here */
9629 if (retval != NULL)
9630 {
9631 retval[len] = NUL;
9632 break;
9633 }
9634
9635 /* allocate memory */
9636 retval = alloc(len + 1);
9637 if (retval == NULL)
9638 break;
9639 }
9640
9641 return retval;
9642}
9643
9644#if defined(FEAT_AUTOCMD) || defined(PROTO)
9645/*
9646 * Expand the <sfile> string in "arg".
9647 *
9648 * Returns an allocated string, or NULL for any error.
9649 */
9650 char_u *
9651expand_sfile(arg)
9652 char_u *arg;
9653{
9654 char_u *errormsg;
9655 int len;
9656 char_u *result;
9657 char_u *newres;
9658 char_u *repl;
9659 int srclen;
9660 char_u *p;
9661
9662 result = vim_strsave(arg);
9663 if (result == NULL)
9664 return NULL;
9665
9666 for (p = result; *p; )
9667 {
9668 if (STRNCMP(p, "<sfile>", 7) != 0)
9669 ++p;
9670 else
9671 {
9672 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009673 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009674 if (errormsg != NULL)
9675 {
9676 if (*errormsg)
9677 emsg(errormsg);
9678 vim_free(result);
9679 return NULL;
9680 }
9681 if (repl == NULL) /* no match (cannot happen) */
9682 {
9683 p += srclen;
9684 continue;
9685 }
9686 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9687 newres = alloc(len);
9688 if (newres == NULL)
9689 {
9690 vim_free(repl);
9691 vim_free(result);
9692 return NULL;
9693 }
9694 mch_memmove(newres, result, (size_t)(p - result));
9695 STRCPY(newres + (p - result), repl);
9696 len = (int)STRLEN(newres);
9697 STRCAT(newres, p + srclen);
9698 vim_free(repl);
9699 vim_free(result);
9700 result = newres;
9701 p = newres + len; /* continue after the match */
9702 }
9703 }
9704
9705 return result;
9706}
9707#endif
9708
9709#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009710static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9711 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009712static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9713static frame_T *ses_skipframe __ARGS((frame_T *fr));
9714static int ses_do_frame __ARGS((frame_T *fr));
9715static int ses_do_win __ARGS((win_T *wp));
9716static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9717static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9718static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9719
9720/*
9721 * Write openfile commands for the current buffers to an .exrc file.
9722 * Return FAIL on error, OK otherwise.
9723 */
9724 static int
9725makeopens(fd, dirnow)
9726 FILE *fd;
9727 char_u *dirnow; /* Current directory name */
9728{
9729 buf_T *buf;
9730 int only_save_windows = TRUE;
9731 int nr;
9732 int cnr = 1;
9733 int restore_size = TRUE;
9734 win_T *wp;
9735 char_u *sname;
9736 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009737 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009738 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009739 frame_T *tab_topframe;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009740
9741 if (ssop_flags & SSOP_BUFFERS)
9742 only_save_windows = FALSE; /* Save ALL buffers */
9743
9744 /*
9745 * Begin by setting the this_session variable, and then other
9746 * sessionable variables.
9747 */
9748#ifdef FEAT_EVAL
9749 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9750 return FAIL;
9751 if (ssop_flags & SSOP_GLOBALS)
9752 if (store_session_globals(fd) == FAIL)
9753 return FAIL;
9754#endif
9755
9756 /*
9757 * Close all windows but one.
9758 */
9759 if (put_line(fd, "silent only") == FAIL)
9760 return FAIL;
9761
9762 /*
9763 * Now a :cd command to the session directory or the current directory
9764 */
9765 if (ssop_flags & SSOP_SESDIR)
9766 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009767 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9768 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009769 return FAIL;
9770 }
9771 else if (ssop_flags & SSOP_CURDIR)
9772 {
9773 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9774 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009775 || fputs("cd ", fd) < 0
9776 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9777 || put_eol(fd) == FAIL)
9778 {
9779 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009780 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009782 vim_free(sname);
9783 }
9784
9785 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009786 * If there is an empty, unnamed buffer we will wipe it out later.
9787 * Remember the buffer number.
9788 */
9789 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9790 return FAIL;
9791 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9792 return FAIL;
9793 if (put_line(fd, "endif") == FAIL)
9794 return FAIL;
9795
9796 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009797 * Now save the current files, current buffer first.
9798 */
9799 if (put_line(fd, "set shortmess=aoO") == FAIL)
9800 return FAIL;
9801
9802 /* Now put the other buffers into the buffer list */
9803 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9804 {
9805 if (!(only_save_windows && buf->b_nwindows == 0)
9806 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9807 && buf->b_fname != NULL
9808 && buf->b_p_bl)
9809 {
9810 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9811 : buf->b_wininfo->wi_fpos.lnum) < 0
9812 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9813 return FAIL;
9814 }
9815 }
9816
9817 /* the global argument list */
9818 if (ses_arglist(fd, "args", &global_alist.al_ga,
9819 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9820 return FAIL;
9821
9822 if (ssop_flags & SSOP_RESIZE)
9823 {
9824 /* Note: after the restore we still check it worked!*/
9825 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9826 || put_eol(fd) == FAIL)
9827 return FAIL;
9828 }
9829
9830#ifdef FEAT_GUI
9831 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9832 {
9833 int x, y;
9834
9835 if (gui_mch_get_winpos(&x, &y) == OK)
9836 {
9837 /* Note: after the restore we still check it worked!*/
9838 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9839 return FAIL;
9840 }
9841 }
9842#endif
9843
9844 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009845 * May repeat putting Windows for each tab, when "tabpages" is in
9846 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009847 * Don't use goto_tabpage(), it may change directory and trigger
9848 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009849 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009850 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009851 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009852 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009853 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009854 int need_tabnew = FALSE;
9855
Bram Moolenaar18144c82006-04-12 21:52:12 +00009856 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009857 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009858 tabpage_T *tp = find_tabpage(tabnr);
9859
9860 if (tp == NULL)
9861 break; /* done all tab pages */
9862 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009863 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009864 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009865 tab_topframe = topframe;
9866 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009867 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009868 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009869 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009870 tab_topframe = tp->tp_topframe;
9871 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009872 if (tabnr > 1)
9873 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009875
Bram Moolenaar18144c82006-04-12 21:52:12 +00009876 /*
9877 * Before creating the window layout, try loading one file. If this
9878 * is aborted we don't end up with a number of useless windows.
9879 * This may have side effects! (e.g., compressed or network file).
9880 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009881 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009882 {
9883 if (ses_do_win(wp)
9884 && wp->w_buffer->b_ffname != NULL
9885 && !wp->w_buffer->b_help
9886#ifdef FEAT_QUICKFIX
9887 && !bt_nofile(wp->w_buffer)
9888#endif
9889 )
9890 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009891 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009892 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9893 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009894 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009895 if (!wp->w_arg_idx_invalid)
9896 edited_win = wp;
9897 break;
9898 }
9899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009900
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009901 /* If no file got edited create an empty tab page. */
9902 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9903 return FAIL;
9904
Bram Moolenaar18144c82006-04-12 21:52:12 +00009905 /*
9906 * Save current window layout.
9907 */
9908 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009909 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009910 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009911 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009912 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
9913 return FAIL;
9914 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
9915 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009916
Bram Moolenaar18144c82006-04-12 21:52:12 +00009917 /*
9918 * Check if window sizes can be restored (no windows omitted).
9919 * Remember the window number of the current window after restoring.
9920 */
9921 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009922 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009923 {
9924 if (ses_do_win(wp))
9925 ++nr;
9926 else
9927 restore_size = FALSE;
9928 if (curwin == wp)
9929 cnr = nr;
9930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009931
Bram Moolenaar18144c82006-04-12 21:52:12 +00009932 /* Go to the first window. */
9933 if (put_line(fd, "wincmd t") == FAIL)
9934 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009935
Bram Moolenaar18144c82006-04-12 21:52:12 +00009936 /*
9937 * If more than one window, see if sizes can be restored.
9938 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
9939 * resized when moving between windows.
9940 * Do this before restoring the view, so that the topline and the
9941 * cursor can be set. This is done again below.
9942 */
9943 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
9944 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009945 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009946 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009947
Bram Moolenaar18144c82006-04-12 21:52:12 +00009948 /*
9949 * Restore the view of the window (options, file, cursor, etc.).
9950 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009951 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009952 {
9953 if (!ses_do_win(wp))
9954 continue;
9955 if (put_view(fd, wp, wp != edited_win, &ssop_flags) == FAIL)
9956 return FAIL;
9957 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
9958 return FAIL;
9959 }
9960
9961 /*
9962 * Restore cursor to the current window if it's not the first one.
9963 */
9964 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
9965 || put_eol(fd) == FAIL))
9966 return FAIL;
9967
9968 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009969 * Restore window sizes again after jumping around in windows, because
9970 * the current window has a minimum size while others may not.
9971 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009972 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009973 return FAIL;
9974
Bram Moolenaar18144c82006-04-12 21:52:12 +00009975 /* Don't continue in another tab page when doing only the current one
9976 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009977 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009978 break;
9979 }
9980
9981 if (ssop_flags & SSOP_TABPAGES)
9982 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00009983 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
9984 || put_eol(fd) == FAIL)
9985 return FAIL;
9986 }
9987
Bram Moolenaar9c102382006-05-03 21:26:49 +00009988 /*
9989 * Wipe out an empty unnamed buffer we started in.
9990 */
9991 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
9992 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00009993 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +00009994 return FAIL;
9995 if (put_line(fd, "endif") == FAIL)
9996 return FAIL;
9997 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
9998 return FAIL;
9999
10000 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10001 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10002 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10003 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010004
10005 /*
10006 * Lastly, execute the x.vim file if it exists.
10007 */
10008 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10009 || put_line(fd, "if file_readable(s:sx)") == FAIL
10010 || put_line(fd, " exe \"source \" . s:sx") == FAIL
10011 || put_line(fd, "endif") == FAIL)
10012 return FAIL;
10013
10014 return OK;
10015}
10016
10017 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010018ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010019 FILE *fd;
10020 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010021 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010022{
10023 int n = 0;
10024 win_T *wp;
10025
10026 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10027 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010028 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010029 {
10030 if (!ses_do_win(wp))
10031 continue;
10032 ++n;
10033
10034 /* restore height when not full height */
10035 if (wp->w_height + wp->w_status_height < topframe->fr_height
10036 && (fprintf(fd,
10037 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10038 n, (long)wp->w_height, Rows / 2, Rows) < 0
10039 || put_eol(fd) == FAIL))
10040 return FAIL;
10041
10042 /* restore width when not full width */
10043 if (wp->w_width < Columns && (fprintf(fd,
10044 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10045 n, (long)wp->w_width, Columns / 2, Columns) < 0
10046 || put_eol(fd) == FAIL))
10047 return FAIL;
10048 }
10049 }
10050 else
10051 {
10052 /* Just equalise window sizes */
10053 if (put_line(fd, "wincmd =") == FAIL)
10054 return FAIL;
10055 }
10056 return OK;
10057}
10058
10059/*
10060 * Write commands to "fd" to recursively create windows for frame "fr",
10061 * horizontally and vertically split.
10062 * After the commands the last window in the frame is the current window.
10063 * Returns FAIL when writing the commands to "fd" fails.
10064 */
10065 static int
10066ses_win_rec(fd, fr)
10067 FILE *fd;
10068 frame_T *fr;
10069{
10070 frame_T *frc;
10071 int count = 0;
10072
10073 if (fr->fr_layout != FR_LEAF)
10074 {
10075 /* Find first frame that's not skipped and then create a window for
10076 * each following one (first frame is already there). */
10077 frc = ses_skipframe(fr->fr_child);
10078 if (frc != NULL)
10079 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10080 {
10081 /* Make window as big as possible so that we have lots of room
10082 * to split. */
10083 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10084 || put_line(fd, fr->fr_layout == FR_COL
10085 ? "split" : "vsplit") == FAIL)
10086 return FAIL;
10087 ++count;
10088 }
10089
10090 /* Go back to the first window. */
10091 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10092 ? "%dwincmd k" : "%dwincmd h", count) < 0
10093 || put_eol(fd) == FAIL))
10094 return FAIL;
10095
10096 /* Recursively create frames/windows in each window of this column or
10097 * row. */
10098 frc = ses_skipframe(fr->fr_child);
10099 while (frc != NULL)
10100 {
10101 ses_win_rec(fd, frc);
10102 frc = ses_skipframe(frc->fr_next);
10103 /* Go to next window. */
10104 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10105 return FAIL;
10106 }
10107 }
10108 return OK;
10109}
10110
10111/*
10112 * Skip frames that don't contain windows we want to save in the Session.
10113 * Returns NULL when there none.
10114 */
10115 static frame_T *
10116ses_skipframe(fr)
10117 frame_T *fr;
10118{
10119 frame_T *frc;
10120
10121 for (frc = fr; frc != NULL; frc = frc->fr_next)
10122 if (ses_do_frame(frc))
10123 break;
10124 return frc;
10125}
10126
10127/*
10128 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10129 * the Session.
10130 */
10131 static int
10132ses_do_frame(fr)
10133 frame_T *fr;
10134{
10135 frame_T *frc;
10136
10137 if (fr->fr_layout == FR_LEAF)
10138 return ses_do_win(fr->fr_win);
10139 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10140 if (ses_do_frame(frc))
10141 return TRUE;
10142 return FALSE;
10143}
10144
10145/*
10146 * Return non-zero if window "wp" is to be stored in the Session.
10147 */
10148 static int
10149ses_do_win(wp)
10150 win_T *wp;
10151{
10152 if (wp->w_buffer->b_fname == NULL
10153#ifdef FEAT_QUICKFIX
10154 /* When 'buftype' is "nofile" can't restore the window contents. */
10155 || bt_nofile(wp->w_buffer)
10156#endif
10157 )
10158 return (ssop_flags & SSOP_BLANK);
10159 if (wp->w_buffer->b_help)
10160 return (ssop_flags & SSOP_HELP);
10161 return TRUE;
10162}
10163
10164/*
10165 * Write commands to "fd" to restore the view of a window.
10166 * Caller must make sure 'scrolloff' is zero.
10167 */
10168 static int
10169put_view(fd, wp, add_edit, flagp)
10170 FILE *fd;
10171 win_T *wp;
10172 int add_edit; /* add ":edit" command to view */
10173 unsigned *flagp; /* vop_flags or ssop_flags */
10174{
10175 win_T *save_curwin;
10176 int f;
10177 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010178 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010179
10180 /* Always restore cursor position for ":mksession". For ":mkview" only
10181 * when 'viewoptions' contains "cursor". */
10182 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10183
10184 /*
10185 * Local argument list.
10186 */
10187 if (wp->w_alist == &global_alist)
10188 {
10189 if (put_line(fd, "argglobal") == FAIL)
10190 return FAIL;
10191 }
10192 else
10193 {
10194 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10195 flagp == &vop_flags
10196 || !(*flagp & SSOP_CURDIR)
10197 || wp->w_localdir != NULL, flagp) == FAIL)
10198 return FAIL;
10199 }
10200
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010201 /* Only when part of a session: restore the argument index. Some
10202 * arguments may have been deleted, check if the index is valid. */
10203 if (wp->w_arg_idx != 0 && wp->w_arg_idx <= WARGCOUNT(wp)
10204 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010205 {
10206 if (fprintf(fd, "%ldnext", (long)wp->w_arg_idx) < 0
10207 || put_eol(fd) == FAIL)
10208 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010209 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010210 }
10211
10212 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010213 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010214 {
10215 /*
10216 * Load the file.
10217 */
10218 if (wp->w_buffer->b_ffname != NULL
10219#ifdef FEAT_QUICKFIX
10220 && !bt_nofile(wp->w_buffer)
10221#endif
10222 )
10223 {
10224 /*
10225 * Editing a file in this buffer: use ":edit file".
10226 * This may have side effects! (e.g., compressed or network file).
10227 */
10228 if (fputs("edit ", fd) < 0
10229 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10230 return FAIL;
10231 }
10232 else
10233 {
10234 /* No file in this buffer, just make it empty. */
10235 if (put_line(fd, "enew") == FAIL)
10236 return FAIL;
10237#ifdef FEAT_QUICKFIX
10238 if (wp->w_buffer->b_ffname != NULL)
10239 {
10240 /* The buffer does have a name, but it's not a file name. */
10241 if (fputs("file ", fd) < 0
10242 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10243 return FAIL;
10244 }
10245#endif
10246 do_cursor = FALSE;
10247 }
10248 }
10249
10250 /*
10251 * Local mappings and abbreviations.
10252 */
10253 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10254 && makemap(fd, wp->w_buffer) == FAIL)
10255 return FAIL;
10256
10257 /*
10258 * Local options. Need to go to the window temporarily.
10259 * Store only local values when using ":mkview" and when ":mksession" is
10260 * used and 'sessionoptions' doesn't include "options".
10261 * Some folding options are always stored when "folds" is included,
10262 * otherwise the folds would not be restored correctly.
10263 */
10264 save_curwin = curwin;
10265 curwin = wp;
10266 curbuf = curwin->w_buffer;
10267 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10268 f = makeset(fd, OPT_LOCAL,
10269 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10270#ifdef FEAT_FOLDING
10271 else if (*flagp & SSOP_FOLDS)
10272 f = makefoldset(fd);
10273#endif
10274 else
10275 f = OK;
10276 curwin = save_curwin;
10277 curbuf = curwin->w_buffer;
10278 if (f == FAIL)
10279 return FAIL;
10280
10281#ifdef FEAT_FOLDING
10282 /*
10283 * Save Folds when 'buftype' is empty and for help files.
10284 */
10285 if ((*flagp & SSOP_FOLDS)
10286 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010287# ifdef FEAT_QUICKFIX
10288 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10289# endif
10290 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010291 {
10292 if (put_folds(fd, wp) == FAIL)
10293 return FAIL;
10294 }
10295#endif
10296
10297 /*
10298 * Set the cursor after creating folds, since that moves the cursor.
10299 */
10300 if (do_cursor)
10301 {
10302
10303 /* Restore the cursor line in the file and relatively in the
10304 * window. Don't use "G", it changes the jumplist. */
10305 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10306 (long)wp->w_cursor.lnum,
10307 (long)(wp->w_cursor.lnum - wp->w_topline),
10308 (long)wp->w_height / 2, (long)wp->w_height) < 0
10309 || put_eol(fd) == FAIL
10310 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10311 || put_line(fd, "exe s:l") == FAIL
10312 || put_line(fd, "normal! zt") == FAIL
10313 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10314 || put_eol(fd) == FAIL)
10315 return FAIL;
10316 /* Restore the cursor column and left offset when not wrapping. */
10317 if (wp->w_cursor.col == 0)
10318 {
10319 if (put_line(fd, "normal! 0") == FAIL)
10320 return FAIL;
10321 }
10322 else
10323 {
10324 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10325 {
10326 if (fprintf(fd,
10327 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10328 (long)wp->w_cursor.col,
10329 (long)(wp->w_cursor.col - wp->w_leftcol),
10330 (long)wp->w_width / 2, (long)wp->w_width) < 0
10331 || put_eol(fd) == FAIL
10332 || put_line(fd, "if s:c > 0") == FAIL
10333 || fprintf(fd,
10334 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10335 (long)wp->w_cursor.col) < 0
10336 || put_eol(fd) == FAIL
10337 || put_line(fd, "else") == FAIL
10338 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10339 || put_eol(fd) == FAIL
10340 || put_line(fd, "endif") == FAIL)
10341 return FAIL;
10342 }
10343 else
10344 {
10345 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10346 || put_eol(fd) == FAIL)
10347 return FAIL;
10348 }
10349 }
10350 }
10351
10352 /*
10353 * Local directory.
10354 */
10355 if (wp->w_localdir != NULL)
10356 {
10357 if (fputs("lcd ", fd) < 0
10358 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10359 || put_eol(fd) == FAIL)
10360 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010361 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010362 }
10363
10364 return OK;
10365}
10366
10367/*
10368 * Write an argument list to the session file.
10369 * Returns FAIL if writing fails.
10370 */
10371 static int
10372ses_arglist(fd, cmd, gap, fullname, flagp)
10373 FILE *fd;
10374 char *cmd;
10375 garray_T *gap;
10376 int fullname; /* TRUE: use full path name */
10377 unsigned *flagp;
10378{
10379 int i;
10380 char_u buf[MAXPATHL];
10381 char_u *s;
10382
10383 if (gap->ga_len == 0)
10384 return put_line(fd, "silent! argdel *");
10385 if (fputs(cmd, fd) < 0)
10386 return FAIL;
10387 for (i = 0; i < gap->ga_len; ++i)
10388 {
10389 /* NULL file names are skipped (only happens when out of memory). */
10390 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10391 if (s != NULL)
10392 {
10393 if (fullname)
10394 {
10395 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10396 s = buf;
10397 }
10398 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10399 return FAIL;
10400 }
10401 }
10402 return put_eol(fd);
10403}
10404
10405/*
10406 * Write a buffer name to the session file.
10407 * Also ends the line.
10408 * Returns FAIL if writing fails.
10409 */
10410 static int
10411ses_fname(fd, buf, flagp)
10412 FILE *fd;
10413 buf_T *buf;
10414 unsigned *flagp;
10415{
10416 char_u *name;
10417
10418 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010419 * the session file will be sourced.
10420 * Don't do this for ":mkview", we don't know the current directory.
10421 * Don't do this after ":lcd", we don't keep track of what the current
10422 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010423 if (buf->b_sfname != NULL
10424 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010425 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10426 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010427 name = buf->b_sfname;
10428 else
10429 name = buf->b_ffname;
10430 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10431 return FAIL;
10432 return OK;
10433}
10434
10435/*
10436 * Write a file name to the session file.
10437 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10438 * characters.
10439 * Returns FAIL if writing fails.
10440 */
10441 static int
10442ses_put_fname(fd, name, flagp)
10443 FILE *fd;
10444 char_u *name;
10445 unsigned *flagp;
10446{
10447 char_u *sname;
10448 int retval = OK;
10449 int c;
10450
10451 sname = home_replace_save(NULL, name);
10452 if (sname != NULL)
10453 name = sname;
10454 while (*name != NUL)
10455 {
10456#ifdef FEAT_MBYTE
10457 {
10458 int l;
10459
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010460 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010461 {
10462 /* copy a multibyte char */
10463 while (--l >= 0)
10464 {
10465 if (putc(*name, fd) != *name)
10466 retval = FAIL;
10467 ++name;
10468 }
10469 continue;
10470 }
10471 }
10472#endif
10473 c = *name++;
10474 if (c == '\\' && (*flagp & SSOP_SLASH))
10475 /* change a backslash to a forward slash */
10476 c = '/';
10477 else if ((vim_strchr(escape_chars, c) != NULL
10478#ifdef BACKSLASH_IN_FILENAME
10479 && c != '\\'
10480#endif
10481 ) || c == '#' || c == '%')
10482 {
10483 /* escape a special character with a backslash */
10484 if (putc('\\', fd) != '\\')
10485 retval = FAIL;
10486 }
10487 if (putc(c, fd) != c)
10488 retval = FAIL;
10489 }
10490 vim_free(sname);
10491 return retval;
10492}
10493
10494/*
10495 * ":loadview [nr]"
10496 */
10497 static void
10498ex_loadview(eap)
10499 exarg_T *eap;
10500{
10501 char_u *fname;
10502
10503 fname = get_view_file(*eap->arg);
10504 if (fname != NULL)
10505 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010506 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010507 vim_free(fname);
10508 }
10509}
10510
10511/*
10512 * Get the name of the view file for the current buffer.
10513 */
10514 static char_u *
10515get_view_file(c)
10516 int c;
10517{
10518 int len = 0;
10519 char_u *p, *s;
10520 char_u *retval;
10521 char_u *sname;
10522
10523 if (curbuf->b_ffname == NULL)
10524 {
10525 EMSG(_(e_noname));
10526 return NULL;
10527 }
10528 sname = home_replace_save(NULL, curbuf->b_ffname);
10529 if (sname == NULL)
10530 return NULL;
10531
10532 /*
10533 * We want a file name without separators, because we're not going to make
10534 * a directory.
10535 * "normal" path separator -> "=+"
10536 * "=" -> "=="
10537 * ":" path separator -> "=-"
10538 */
10539 for (p = sname; *p; ++p)
10540 if (*p == '=' || vim_ispathsep(*p))
10541 ++len;
10542 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10543 if (retval != NULL)
10544 {
10545 STRCPY(retval, p_vdir);
10546 add_pathsep(retval);
10547 s = retval + STRLEN(retval);
10548 for (p = sname; *p; ++p)
10549 {
10550 if (*p == '=')
10551 {
10552 *s++ = '=';
10553 *s++ = '=';
10554 }
10555 else if (vim_ispathsep(*p))
10556 {
10557 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010558#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010559 || defined(VMS)
10560 if (*p == ':')
10561 *s++ = '-';
10562 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010563#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010564 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010565 }
10566 else
10567 *s++ = *p;
10568 }
10569 *s++ = '=';
10570 *s++ = c;
10571 STRCPY(s, ".vim");
10572 }
10573
10574 vim_free(sname);
10575 return retval;
10576}
10577
10578#endif /* FEAT_SESSION */
10579
10580/*
10581 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10582 * Return FAIL for a write error.
10583 */
10584 int
10585put_eol(fd)
10586 FILE *fd;
10587{
10588 if (
10589#ifdef USE_CRNL
10590 (
10591# ifdef MKSESSION_NL
10592 !mksession_nl &&
10593# endif
10594 (putc('\r', fd) < 0)) ||
10595#endif
10596 (putc('\n', fd) < 0))
10597 return FAIL;
10598 return OK;
10599}
10600
10601/*
10602 * Write a line to "fd".
10603 * Return FAIL for a write error.
10604 */
10605 int
10606put_line(fd, s)
10607 FILE *fd;
10608 char *s;
10609{
10610 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10611 return FAIL;
10612 return OK;
10613}
10614
10615#ifdef FEAT_VIMINFO
10616/*
10617 * ":rviminfo" and ":wviminfo".
10618 */
10619 static void
10620ex_viminfo(eap)
10621 exarg_T *eap;
10622{
10623 char_u *save_viminfo;
10624
10625 save_viminfo = p_viminfo;
10626 if (*p_viminfo == NUL)
10627 p_viminfo = (char_u *)"'100";
10628 if (eap->cmdidx == CMD_rviminfo)
10629 {
10630 if (read_viminfo(eap->arg, TRUE, TRUE, eap->forceit) == FAIL)
10631 EMSG(_("E195: Cannot open viminfo file for reading"));
10632 }
10633 else
10634 write_viminfo(eap->arg, eap->forceit);
10635 p_viminfo = save_viminfo;
10636}
10637#endif
10638
10639#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010640/*
10641 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010642 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010643 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010644 void
10645dialog_msg(buff, format, fname)
10646 char_u *buff;
10647 char *format;
10648 char_u *fname;
10649{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010650 if (fname == NULL)
10651 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010652 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010653}
10654#endif
10655
10656/*
10657 * ":behave {mswin,xterm}"
10658 */
10659 static void
10660ex_behave(eap)
10661 exarg_T *eap;
10662{
10663 if (STRCMP(eap->arg, "mswin") == 0)
10664 {
10665 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10666 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10667 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10668 set_option_value((char_u *)"keymodel", 0L,
10669 (char_u *)"startsel,stopsel", 0);
10670 }
10671 else if (STRCMP(eap->arg, "xterm") == 0)
10672 {
10673 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10674 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10675 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10676 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10677 }
10678 else
10679 EMSG2(_(e_invarg2), eap->arg);
10680}
10681
10682#ifdef FEAT_AUTOCMD
10683static int filetype_detect = FALSE;
10684static int filetype_plugin = FALSE;
10685static int filetype_indent = FALSE;
10686
10687/*
10688 * ":filetype [plugin] [indent] {on,off,detect}"
10689 * on: Load the filetype.vim file to install autocommands for file types.
10690 * off: Load the ftoff.vim file to remove all autocommands for file types.
10691 * plugin on: load filetype.vim and ftplugin.vim
10692 * plugin off: load ftplugof.vim
10693 * indent on: load filetype.vim and indent.vim
10694 * indent off: load indoff.vim
10695 */
10696 static void
10697ex_filetype(eap)
10698 exarg_T *eap;
10699{
10700 char_u *arg = eap->arg;
10701 int plugin = FALSE;
10702 int indent = FALSE;
10703
10704 if (*eap->arg == NUL)
10705 {
10706 /* Print current status. */
10707 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10708 filetype_detect ? "ON" : "OFF",
10709 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10710 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10711 return;
10712 }
10713
10714 /* Accept "plugin" and "indent" in any order. */
10715 for (;;)
10716 {
10717 if (STRNCMP(arg, "plugin", 6) == 0)
10718 {
10719 plugin = TRUE;
10720 arg = skipwhite(arg + 6);
10721 continue;
10722 }
10723 if (STRNCMP(arg, "indent", 6) == 0)
10724 {
10725 indent = TRUE;
10726 arg = skipwhite(arg + 6);
10727 continue;
10728 }
10729 break;
10730 }
10731 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10732 {
10733 if (*arg == 'o' || !filetype_detect)
10734 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010735 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010736 filetype_detect = TRUE;
10737 if (plugin)
10738 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010739 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010740 filetype_plugin = TRUE;
10741 }
10742 if (indent)
10743 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010744 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010745 filetype_indent = TRUE;
10746 }
10747 }
10748 if (*arg == 'd')
10749 {
10750 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010751 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010752 }
10753 }
10754 else if (STRCMP(arg, "off") == 0)
10755 {
10756 if (plugin || indent)
10757 {
10758 if (plugin)
10759 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010760 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010761 filetype_plugin = FALSE;
10762 }
10763 if (indent)
10764 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010765 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010766 filetype_indent = FALSE;
10767 }
10768 }
10769 else
10770 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010771 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010772 filetype_detect = FALSE;
10773 }
10774 }
10775 else
10776 EMSG2(_(e_invarg2), arg);
10777}
10778
10779/*
10780 * ":setfiletype {name}"
10781 */
10782 static void
10783ex_setfiletype(eap)
10784 exarg_T *eap;
10785{
10786 if (!did_filetype)
10787 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10788}
10789#endif
10790
10791/*ARGSUSED*/
10792 static void
10793ex_digraphs(eap)
10794 exarg_T *eap;
10795{
10796#ifdef FEAT_DIGRAPHS
10797 if (*eap->arg != NUL)
10798 putdigraph(eap->arg);
10799 else
10800 listdigraphs();
10801#else
10802 EMSG(_("E196: No digraphs in this version"));
10803#endif
10804}
10805
10806 static void
10807ex_set(eap)
10808 exarg_T *eap;
10809{
10810 int flags = 0;
10811
10812 if (eap->cmdidx == CMD_setlocal)
10813 flags = OPT_LOCAL;
10814 else if (eap->cmdidx == CMD_setglobal)
10815 flags = OPT_GLOBAL;
10816#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10817 if (cmdmod.browse && flags == 0)
10818 ex_options(eap);
10819 else
10820#endif
10821 (void)do_set(eap->arg, flags);
10822}
10823
10824#ifdef FEAT_SEARCH_EXTRA
10825/*
10826 * ":nohlsearch"
10827 */
10828/*ARGSUSED*/
10829 static void
10830ex_nohlsearch(eap)
10831 exarg_T *eap;
10832{
10833 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010834 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010835}
10836
10837/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010838 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010839 * Sets nextcmd to the start of the next command, if any. Also called when
10840 * skipping commands to find the next command.
10841 */
10842 static void
10843ex_match(eap)
10844 exarg_T *eap;
10845{
10846 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000010847 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010848 char_u *end;
10849 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010850 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010851
10852 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010853 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010854 else
10855 {
10856 EMSG(e_invcmd);
10857 return;
10858 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010859
10860 /* First clear any old pattern. */
10861 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010862 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010863
10864 if (ends_excmd(*eap->arg))
10865 end = eap->arg;
10866 else if ((STRNICMP(eap->arg, "none", 4) == 0
10867 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10868 end = eap->arg + 4;
10869 else
10870 {
10871 p = skiptowhite(eap->arg);
10872 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010873 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010874 p = skipwhite(p);
10875 if (*p == NUL)
10876 {
10877 /* There must be two arguments. */
10878 EMSG2(_(e_invarg2), eap->arg);
10879 return;
10880 }
10881 end = skip_regexp(p + 1, *p, TRUE, NULL);
10882 if (!eap->skip)
10883 {
10884 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10885 {
10886 eap->errmsg = e_trailing;
10887 return;
10888 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010889 if (*end != *p)
10890 {
10891 EMSG2(_(e_invarg2), p);
10892 return;
10893 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010894
10895 c = *end;
10896 *end = NUL;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010897 match_add(curwin, g, p + 1, 10, id);
10898 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010899 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010900 }
10901 }
10902 eap->nextcmd = find_nextcmd(end);
10903}
10904#endif
10905
10906#ifdef FEAT_CRYPT
10907/*
10908 * ":X": Get crypt key
10909 */
10910/*ARGSUSED*/
10911 static void
10912ex_X(eap)
10913 exarg_T *eap;
10914{
10915 (void)get_crypt_key(TRUE, TRUE);
10916}
10917#endif
10918
10919#ifdef FEAT_FOLDING
10920 static void
10921ex_fold(eap)
10922 exarg_T *eap;
10923{
10924 if (foldManualAllowed(TRUE))
10925 foldCreate(eap->line1, eap->line2);
10926}
10927
10928 static void
10929ex_foldopen(eap)
10930 exarg_T *eap;
10931{
10932 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
10933 eap->forceit, FALSE);
10934}
10935
10936 static void
10937ex_folddo(eap)
10938 exarg_T *eap;
10939{
10940 linenr_T lnum;
10941
10942 /* First set the marks for all lines closed/open. */
10943 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
10944 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
10945 ml_setmarked(lnum);
10946
10947 /* Execute the command on the marked lines. */
10948 global_exe(eap->arg);
10949 ml_clearmarked(); /* clear rest of the marks */
10950}
10951#endif