blob: 5e6379197edc301a47675e32191d55bf0e05c873 [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 {
3284 int in_quote = FALSE;
3285 char_u *bow = NULL; /* Beginning of word */
3286
3287 /*
3288 * Allow spaces within back-quotes to count as part of the argument
3289 * being expanded.
3290 */
3291 xp->xp_pattern = skipwhite(arg);
3292 for (p = xp->xp_pattern; *p; )
3293 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003294 if (*p == '\\' && p[1] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295 ++p;
3296#ifdef SPACE_IN_FILENAME
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003297 else if (vim_iswhite(*p) && (!(ea.argt & NOSPC) || usefilter))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298#else
3299 else if (vim_iswhite(*p))
3300#endif
3301 {
3302 p = skipwhite(p);
3303 if (in_quote)
3304 bow = p;
3305 else
3306 xp->xp_pattern = p;
3307 --p;
3308 }
3309 else if (*p == '`')
3310 {
3311 if (!in_quote)
3312 {
3313 xp->xp_pattern = p;
3314 bow = p + 1;
3315 }
3316 in_quote = !in_quote;
3317 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003318 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003319 }
3320
3321 /*
3322 * If we are still inside the quotes, and we passed a space, just
3323 * expand from there.
3324 */
3325 if (bow != NULL && in_quote)
3326 xp->xp_pattern = bow;
3327 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003328
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003329#ifndef BACKSLASH_IN_FILENAME
3330 /* For a shell command more chars need to be escaped. */
3331 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003332 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003333 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003334
3335 /* When still after the command name expand executables. */
3336 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003337 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003338 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003339#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003340
3341 /* Check for environment variable */
3342 if (*xp->xp_pattern == '$'
3343#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3344 || *xp->xp_pattern == '%'
3345#endif
3346 )
3347 {
3348 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3349 if (!vim_isIDc(*p))
3350 break;
3351 if (*p == NUL)
3352 {
3353 xp->xp_context = EXPAND_ENV_VARS;
3354 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003355#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3356 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003357 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003358 compl = EXPAND_ENV_VARS;
3359#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 }
3361 }
3362 }
3363
3364/*
3365 * 6. switch on command name
3366 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003367 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 {
3369 case CMD_cd:
3370 case CMD_chdir:
3371 case CMD_lcd:
3372 case CMD_lchdir:
3373 if (xp->xp_context == EXPAND_FILES)
3374 xp->xp_context = EXPAND_DIRECTORIES;
3375 break;
3376 case CMD_help:
3377 xp->xp_context = EXPAND_HELP;
3378 xp->xp_pattern = arg;
3379 break;
3380
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003381 /* Command modifiers: return the argument.
3382 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003384 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 case CMD_belowright:
3386 case CMD_botright:
3387 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003388 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003390 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 case CMD_folddoclosed:
3392 case CMD_folddoopen:
3393 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003394 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 case CMD_keepjumps:
3396 case CMD_keepmarks:
3397 case CMD_leftabove:
3398 case CMD_lockmarks:
3399 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003400 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003402 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 case CMD_topleft:
3404 case CMD_verbose:
3405 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003406 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407 return arg;
3408
Bram Moolenaar4f688582007-07-24 12:34:30 +00003409#ifdef FEAT_CMDL_COMPL
3410# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411 case CMD_match:
3412 if (*arg == NUL || !ends_excmd(*arg))
3413 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003414 /* also complete "None" */
3415 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 arg = skipwhite(skiptowhite(arg));
3417 if (*arg != NUL)
3418 {
3419 xp->xp_context = EXPAND_NOTHING;
3420 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3421 }
3422 }
3423 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003424# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426/*
3427 * All completion for the +cmdline_compl feature goes here.
3428 */
3429
3430# ifdef FEAT_USR_CMDS
3431 case CMD_command:
3432 /* Check for attributes */
3433 while (*arg == '-')
3434 {
3435 arg++; /* Skip "-" */
3436 p = skiptowhite(arg);
3437 if (*p == NUL)
3438 {
3439 /* Cursor is still in the attribute */
3440 p = vim_strchr(arg, '=');
3441 if (p == NULL)
3442 {
3443 /* No "=", so complete attribute names */
3444 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3445 xp->xp_pattern = arg;
3446 return NULL;
3447 }
3448
3449 /* For the -complete and -nargs attributes, we complete
3450 * their arguments as well.
3451 */
3452 if (STRNICMP(arg, "complete", p - arg) == 0)
3453 {
3454 xp->xp_context = EXPAND_USER_COMPLETE;
3455 xp->xp_pattern = p + 1;
3456 return NULL;
3457 }
3458 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3459 {
3460 xp->xp_context = EXPAND_USER_NARGS;
3461 xp->xp_pattern = p + 1;
3462 return NULL;
3463 }
3464 return NULL;
3465 }
3466 arg = skipwhite(p);
3467 }
3468
3469 /* After the attributes comes the new command name */
3470 p = skiptowhite(arg);
3471 if (*p == NUL)
3472 {
3473 xp->xp_context = EXPAND_USER_COMMANDS;
3474 xp->xp_pattern = arg;
3475 break;
3476 }
3477
3478 /* And finally comes a normal command */
3479 return skipwhite(p);
3480
3481 case CMD_delcommand:
3482 xp->xp_context = EXPAND_USER_COMMANDS;
3483 xp->xp_pattern = arg;
3484 break;
3485# endif
3486
3487 case CMD_global:
3488 case CMD_vglobal:
3489 delim = *arg; /* get the delimiter */
3490 if (delim)
3491 ++arg; /* skip delimiter if there is one */
3492
3493 while (arg[0] != NUL && arg[0] != delim)
3494 {
3495 if (arg[0] == '\\' && arg[1] != NUL)
3496 ++arg;
3497 ++arg;
3498 }
3499 if (arg[0] != NUL)
3500 return arg + 1;
3501 break;
3502 case CMD_and:
3503 case CMD_substitute:
3504 delim = *arg;
3505 if (delim)
3506 {
3507 /* skip "from" part */
3508 ++arg;
3509 arg = skip_regexp(arg, delim, p_magic, NULL);
3510 }
3511 /* skip "to" part */
3512 while (arg[0] != NUL && arg[0] != delim)
3513 {
3514 if (arg[0] == '\\' && arg[1] != NUL)
3515 ++arg;
3516 ++arg;
3517 }
3518 if (arg[0] != NUL) /* skip delimiter */
3519 ++arg;
3520 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3521 ++arg;
3522 if (arg[0] != NUL)
3523 return arg;
3524 break;
3525 case CMD_isearch:
3526 case CMD_dsearch:
3527 case CMD_ilist:
3528 case CMD_dlist:
3529 case CMD_ijump:
3530 case CMD_psearch:
3531 case CMD_djump:
3532 case CMD_isplit:
3533 case CMD_dsplit:
3534 arg = skipwhite(skipdigits(arg)); /* skip count */
3535 if (*arg == '/') /* Match regexp, not just whole words */
3536 {
3537 for (++arg; *arg && *arg != '/'; arg++)
3538 if (*arg == '\\' && arg[1] != NUL)
3539 arg++;
3540 if (*arg)
3541 {
3542 arg = skipwhite(arg + 1);
3543
3544 /* Check for trailing illegal characters */
3545 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3546 xp->xp_context = EXPAND_NOTHING;
3547 else
3548 return arg;
3549 }
3550 }
3551 break;
3552#ifdef FEAT_AUTOCMD
3553 case CMD_autocmd:
3554 return set_context_in_autocmd(xp, arg, FALSE);
3555
3556 case CMD_doautocmd:
3557 return set_context_in_autocmd(xp, arg, TRUE);
3558#endif
3559 case CMD_set:
3560 set_context_in_set_cmd(xp, arg, 0);
3561 break;
3562 case CMD_setglobal:
3563 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3564 break;
3565 case CMD_setlocal:
3566 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3567 break;
3568 case CMD_tag:
3569 case CMD_stag:
3570 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003571 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 case CMD_tselect:
3573 case CMD_stselect:
3574 case CMD_ptselect:
3575 case CMD_tjump:
3576 case CMD_stjump:
3577 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003578 if (*p_wop != NUL)
3579 xp->xp_context = EXPAND_TAGS_LISTFILES;
3580 else
3581 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582 xp->xp_pattern = arg;
3583 break;
3584 case CMD_augroup:
3585 xp->xp_context = EXPAND_AUGROUP;
3586 xp->xp_pattern = arg;
3587 break;
3588#ifdef FEAT_SYN_HL
3589 case CMD_syntax:
3590 set_context_in_syntax_cmd(xp, arg);
3591 break;
3592#endif
3593#ifdef FEAT_EVAL
3594 case CMD_let:
3595 case CMD_if:
3596 case CMD_elseif:
3597 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003598 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 case CMD_echo:
3600 case CMD_echon:
3601 case CMD_execute:
3602 case CMD_echomsg:
3603 case CMD_echoerr:
3604 case CMD_call:
3605 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003606 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 break;
3608
3609 case CMD_unlet:
3610 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3611 arg = xp->xp_pattern + 1;
3612 xp->xp_context = EXPAND_USER_VARS;
3613 xp->xp_pattern = arg;
3614 break;
3615
3616 case CMD_function:
3617 case CMD_delfunction:
3618 xp->xp_context = EXPAND_USER_FUNC;
3619 xp->xp_pattern = arg;
3620 break;
3621
3622 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00003623 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 break;
3625#endif
3626 case CMD_highlight:
3627 set_context_in_highlight_cmd(xp, arg);
3628 break;
3629#ifdef FEAT_LISTCMDS
3630 case CMD_bdelete:
3631 case CMD_bwipeout:
3632 case CMD_bunload:
3633 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3634 arg = xp->xp_pattern + 1;
3635 /*FALLTHROUGH*/
3636 case CMD_buffer:
3637 case CMD_sbuffer:
3638 case CMD_checktime:
3639 xp->xp_context = EXPAND_BUFFERS;
3640 xp->xp_pattern = arg;
3641 break;
3642#endif
3643#ifdef FEAT_USR_CMDS
3644 case CMD_USER:
3645 case CMD_USER_BUF:
3646 if (compl != EXPAND_NOTHING)
3647 {
3648 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003649 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 {
3651# ifdef FEAT_MENU
3652 if (compl == EXPAND_MENUS)
3653 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3654# endif
3655 if (compl == EXPAND_COMMANDS)
3656 return arg;
3657 if (compl == EXPAND_MAPPINGS)
3658 return set_context_in_map_cmd(xp, (char_u *)"map",
3659 arg, forceit, FALSE, FALSE, CMD_map);
3660 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3661 arg = xp->xp_pattern + 1;
3662 xp->xp_pattern = arg;
3663 }
3664 xp->xp_context = compl;
3665 }
3666 break;
3667#endif
3668 case CMD_map: case CMD_noremap:
3669 case CMD_nmap: case CMD_nnoremap:
3670 case CMD_vmap: case CMD_vnoremap:
3671 case CMD_omap: case CMD_onoremap:
3672 case CMD_imap: case CMD_inoremap:
3673 case CMD_cmap: case CMD_cnoremap:
3674 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003675 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 case CMD_unmap:
3677 case CMD_nunmap:
3678 case CMD_vunmap:
3679 case CMD_ounmap:
3680 case CMD_iunmap:
3681 case CMD_cunmap:
3682 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003683 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 case CMD_abbreviate: case CMD_noreabbrev:
3685 case CMD_cabbrev: case CMD_cnoreabbrev:
3686 case CMD_iabbrev: case CMD_inoreabbrev:
3687 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003688 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 case CMD_unabbreviate:
3690 case CMD_cunabbrev:
3691 case CMD_iunabbrev:
3692 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003693 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694#ifdef FEAT_MENU
3695 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3696 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3697 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3698 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3699 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3700 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3701 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3702 case CMD_tmenu: case CMD_tunmenu:
3703 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3704 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3705#endif
3706
3707 case CMD_colorscheme:
3708 xp->xp_context = EXPAND_COLORS;
3709 xp->xp_pattern = arg;
3710 break;
3711
3712 case CMD_compiler:
3713 xp->xp_context = EXPAND_COMPILER;
3714 xp->xp_pattern = arg;
3715 break;
3716
3717#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3718 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3719 case CMD_language:
3720 if (*skiptowhite(arg) == NUL)
3721 {
3722 xp->xp_context = EXPAND_LANGUAGE;
3723 xp->xp_pattern = arg;
3724 }
3725 else
3726 xp->xp_context = EXPAND_NOTHING;
3727 break;
3728#endif
3729
3730#endif /* FEAT_CMDL_COMPL */
3731
3732 default:
3733 break;
3734 }
3735 return NULL;
3736}
3737
3738/*
3739 * skip a range specifier of the form: addr [,addr] [;addr] ..
3740 *
3741 * Backslashed delimiters after / or ? will be skipped, and commands will
3742 * not be expanded between /'s and ?'s or after "'".
3743 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003744 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 * Returns the "cmd" pointer advanced to beyond the range.
3746 */
3747 char_u *
3748skip_range(cmd, ctx)
3749 char_u *cmd;
3750 int *ctx; /* pointer to xp_context or NULL */
3751{
3752 int delim;
3753
Bram Moolenaardf177f62005-02-22 08:39:57 +00003754 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 {
3756 if (*cmd == '\'')
3757 {
3758 if (*++cmd == NUL && ctx != NULL)
3759 *ctx = EXPAND_NOTHING;
3760 }
3761 else if (*cmd == '/' || *cmd == '?')
3762 {
3763 delim = *cmd++;
3764 while (*cmd != NUL && *cmd != delim)
3765 if (*cmd++ == '\\' && *cmd != NUL)
3766 ++cmd;
3767 if (*cmd == NUL && ctx != NULL)
3768 *ctx = EXPAND_NOTHING;
3769 }
3770 if (*cmd != NUL)
3771 ++cmd;
3772 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003773
3774 /* Skip ":" and white space. */
3775 while (*cmd == ':')
3776 cmd = skipwhite(cmd + 1);
3777
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778 return cmd;
3779}
3780
3781/*
3782 * get a single EX address
3783 *
3784 * Set ptr to the next character after the part that was interpreted.
3785 * Set ptr to NULL when an error is encountered.
3786 *
3787 * Return MAXLNUM when no Ex address was found.
3788 */
3789 static linenr_T
3790get_address(ptr, skip, to_other_file)
3791 char_u **ptr;
3792 int skip; /* only skip the address, don't use it */
3793 int to_other_file; /* flag: may jump to other file */
3794{
3795 int c;
3796 int i;
3797 long n;
3798 char_u *cmd;
3799 pos_T pos;
3800 pos_T *fp;
3801 linenr_T lnum;
3802
3803 cmd = skipwhite(*ptr);
3804 lnum = MAXLNUM;
3805 do
3806 {
3807 switch (*cmd)
3808 {
3809 case '.': /* '.' - Cursor position */
3810 ++cmd;
3811 lnum = curwin->w_cursor.lnum;
3812 break;
3813
3814 case '$': /* '$' - last line */
3815 ++cmd;
3816 lnum = curbuf->b_ml.ml_line_count;
3817 break;
3818
3819 case '\'': /* ''' - mark */
3820 if (*++cmd == NUL)
3821 {
3822 cmd = NULL;
3823 goto error;
3824 }
3825 if (skip)
3826 ++cmd;
3827 else
3828 {
3829 /* Only accept a mark in another file when it is
3830 * used by itself: ":'M". */
3831 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3832 ++cmd;
3833 if (fp == (pos_T *)-1)
3834 /* Jumped to another file. */
3835 lnum = curwin->w_cursor.lnum;
3836 else
3837 {
3838 if (check_mark(fp) == FAIL)
3839 {
3840 cmd = NULL;
3841 goto error;
3842 }
3843 lnum = fp->lnum;
3844 }
3845 }
3846 break;
3847
3848 case '/':
3849 case '?': /* '/' or '?' - search */
3850 c = *cmd++;
3851 if (skip) /* skip "/pat/" */
3852 {
3853 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3854 if (*cmd == c)
3855 ++cmd;
3856 }
3857 else
3858 {
3859 pos = curwin->w_cursor; /* save curwin->w_cursor */
3860 /*
3861 * When '/' or '?' follows another address, start
3862 * from there.
3863 */
3864 if (lnum != MAXLNUM)
3865 curwin->w_cursor.lnum = lnum;
3866 /*
3867 * Start a forward search at the end of the line.
3868 * Start a backward search at the start of the line.
3869 * This makes sure we never match in the current
3870 * line, and can match anywhere in the
3871 * next/previous line.
3872 */
3873 if (c == '/')
3874 curwin->w_cursor.col = MAXCOL;
3875 else
3876 curwin->w_cursor.col = 0;
3877 searchcmdlen = 0;
3878 if (!do_search(NULL, c, cmd, 1L,
3879 SEARCH_HIS + SEARCH_MSG + SEARCH_START))
3880 {
3881 curwin->w_cursor = pos;
3882 cmd = NULL;
3883 goto error;
3884 }
3885 lnum = curwin->w_cursor.lnum;
3886 curwin->w_cursor = pos;
3887 /* adjust command string pointer */
3888 cmd += searchcmdlen;
3889 }
3890 break;
3891
3892 case '\\': /* "\?", "\/" or "\&", repeat search */
3893 ++cmd;
3894 if (*cmd == '&')
3895 i = RE_SUBST;
3896 else if (*cmd == '?' || *cmd == '/')
3897 i = RE_SEARCH;
3898 else
3899 {
3900 EMSG(_(e_backslash));
3901 cmd = NULL;
3902 goto error;
3903 }
3904
3905 if (!skip)
3906 {
3907 /*
3908 * When search follows another address, start from
3909 * there.
3910 */
3911 if (lnum != MAXLNUM)
3912 pos.lnum = lnum;
3913 else
3914 pos.lnum = curwin->w_cursor.lnum;
3915
3916 /*
3917 * Start the search just like for the above
3918 * do_search().
3919 */
3920 if (*cmd != '?')
3921 pos.col = MAXCOL;
3922 else
3923 pos.col = 0;
3924 if (searchit(curwin, curbuf, &pos,
3925 *cmd == '?' ? BACKWARD : FORWARD,
3926 (char_u *)"", 1L,
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003927 SEARCH_MSG + SEARCH_START,
3928 i, (linenr_T)0) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003929 lnum = pos.lnum;
3930 else
3931 {
3932 cmd = NULL;
3933 goto error;
3934 }
3935 }
3936 ++cmd;
3937 break;
3938
3939 default:
3940 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3941 lnum = getdigits(&cmd);
3942 }
3943
3944 for (;;)
3945 {
3946 cmd = skipwhite(cmd);
3947 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
3948 break;
3949
3950 if (lnum == MAXLNUM)
3951 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
3952 if (VIM_ISDIGIT(*cmd))
3953 i = '+'; /* "number" is same as "+number" */
3954 else
3955 i = *cmd++;
3956 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
3957 n = 1;
3958 else
3959 n = getdigits(&cmd);
3960 if (i == '-')
3961 lnum -= n;
3962 else
3963 lnum += n;
3964 }
3965 } while (*cmd == '/' || *cmd == '?');
3966
3967error:
3968 *ptr = cmd;
3969 return lnum;
3970}
3971
3972/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003973 * Get flags from an Ex command argument.
3974 */
3975 static void
3976get_flags(eap)
3977 exarg_T *eap;
3978{
3979 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
3980 {
3981 if (*eap->arg == 'l')
3982 eap->flags |= EXFLAG_LIST;
3983 else if (*eap->arg == 'p')
3984 eap->flags |= EXFLAG_PRINT;
3985 else
3986 eap->flags |= EXFLAG_NR;
3987 eap->arg = skipwhite(eap->arg + 1);
3988 }
3989}
3990
3991/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 * Function called for command which is Not Implemented. NI!
3993 */
3994 void
3995ex_ni(eap)
3996 exarg_T *eap;
3997{
3998 if (!eap->skip)
3999 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4000}
4001
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004002#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003/*
4004 * Function called for script command which is Not Implemented. NI!
4005 * Skips over ":perl <<EOF" constructs.
4006 */
4007 static void
4008ex_script_ni(eap)
4009 exarg_T *eap;
4010{
4011 if (!eap->skip)
4012 ex_ni(eap);
4013 else
4014 vim_free(script_get(eap, eap->arg));
4015}
4016#endif
4017
4018/*
4019 * Check range in Ex command for validity.
4020 * Return NULL when valid, error message when invalid.
4021 */
4022 static char_u *
4023invalid_range(eap)
4024 exarg_T *eap;
4025{
4026 if ( eap->line1 < 0
4027 || eap->line2 < 0
4028 || eap->line1 > eap->line2
4029 || ((eap->argt & RANGE)
4030 && !(eap->argt & NOTADR)
4031 && eap->line2 > curbuf->b_ml.ml_line_count
4032#ifdef FEAT_DIFF
4033 + (eap->cmdidx == CMD_diffget)
4034#endif
4035 ))
4036 return (char_u *)_(e_invrange);
4037 return NULL;
4038}
4039
4040/*
4041 * Correct the range for zero line number, if required.
4042 */
4043 static void
4044correct_range(eap)
4045 exarg_T *eap;
4046{
4047 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4048 {
4049 if (eap->line1 == 0)
4050 eap->line1 = 1;
4051 if (eap->line2 == 0)
4052 eap->line2 = 1;
4053 }
4054}
4055
Bram Moolenaar748bf032005-02-02 23:04:36 +00004056#ifdef FEAT_QUICKFIX
4057static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4058
4059/*
4060 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4061 * pattern. Otherwise return eap->arg.
4062 */
4063 static char_u *
4064skip_grep_pat(eap)
4065 exarg_T *eap;
4066{
4067 char_u *p = eap->arg;
4068
Bram Moolenaara37420f2006-02-04 22:37:47 +00004069 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4070 || eap->cmdidx == CMD_vimgrepadd
4071 || eap->cmdidx == CMD_lvimgrepadd
4072 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004073 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004074 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004075 if (p == NULL)
4076 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004077 }
4078 return p;
4079}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004080
4081/*
4082 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4083 * in the command line, so that things like % get expanded.
4084 */
4085 static char_u *
4086replace_makeprg(eap, p, cmdlinep)
4087 exarg_T *eap;
4088 char_u *p;
4089 char_u **cmdlinep;
4090{
4091 char_u *new_cmdline;
4092 char_u *program;
4093 char_u *pos;
4094 char_u *ptr;
4095 int len;
4096 int i;
4097
4098 /*
4099 * Don't do it when ":vimgrep" is used for ":grep".
4100 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004101 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4102 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4103 || eap->cmdidx == CMD_grepadd
4104 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004105 && !grep_internal(eap->cmdidx))
4106 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004107 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4108 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004109 {
4110 if (*curbuf->b_p_gp == NUL)
4111 program = p_gp;
4112 else
4113 program = curbuf->b_p_gp;
4114 }
4115 else
4116 {
4117 if (*curbuf->b_p_mp == NUL)
4118 program = p_mp;
4119 else
4120 program = curbuf->b_p_mp;
4121 }
4122
4123 p = skipwhite(p);
4124
4125 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4126 {
4127 /* replace $* by given arguments */
4128 i = 1;
4129 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4130 ++i;
4131 len = (int)STRLEN(p);
4132 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4133 if (new_cmdline == NULL)
4134 return NULL; /* out of memory */
4135 ptr = new_cmdline;
4136 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4137 {
4138 i = (int)(pos - program);
4139 STRNCPY(ptr, program, i);
4140 STRCPY(ptr += i, p);
4141 ptr += len;
4142 program = pos + 2;
4143 }
4144 STRCPY(ptr, program);
4145 }
4146 else
4147 {
4148 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4149 if (new_cmdline == NULL)
4150 return NULL; /* out of memory */
4151 STRCPY(new_cmdline, program);
4152 STRCAT(new_cmdline, " ");
4153 STRCAT(new_cmdline, p);
4154 }
4155 msg_make(p);
4156
4157 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4158 vim_free(*cmdlinep);
4159 *cmdlinep = new_cmdline;
4160 p = new_cmdline;
4161 }
4162 return p;
4163}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004164#endif
4165
Bram Moolenaar071d4272004-06-13 20:20:40 +00004166/*
4167 * Expand file name in Ex command argument.
4168 * Return FAIL for failure, OK otherwise.
4169 */
4170 int
4171expand_filename(eap, cmdlinep, errormsgp)
4172 exarg_T *eap;
4173 char_u **cmdlinep;
4174 char_u **errormsgp;
4175{
4176 int has_wildcards; /* need to expand wildcards */
4177 char_u *repl;
4178 int srclen;
4179 char_u *p;
4180 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004181 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182
Bram Moolenaar748bf032005-02-02 23:04:36 +00004183#ifdef FEAT_QUICKFIX
4184 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4185 p = skip_grep_pat(eap);
4186#else
4187 p = eap->arg;
4188#endif
4189
Bram Moolenaar071d4272004-06-13 20:20:40 +00004190 /*
4191 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4192 * the file name contains a wildcard it should not cause expanding.
4193 * (it will be expanded anyway if there is a wildcard before replacing).
4194 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004195 has_wildcards = mch_has_wildcard(p);
4196 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004198#ifdef FEAT_EVAL
4199 /* Skip over `=expr`, wildcards in it are not expanded. */
4200 if (p[0] == '`' && p[1] == '=')
4201 {
4202 p += 2;
4203 (void)skip_expr(&p);
4204 if (*p == '`')
4205 ++p;
4206 continue;
4207 }
4208#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004209 /*
4210 * Quick check if this cannot be the start of a special string.
4211 * Also removes backslash before '%', '#' and '<'.
4212 */
4213 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4214 {
4215 ++p;
4216 continue;
4217 }
4218
4219 /*
4220 * Try to find a match at this position.
4221 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004222 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4223 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 if (*errormsgp != NULL) /* error detected */
4225 return FAIL;
4226 if (repl == NULL) /* no match found */
4227 {
4228 p += srclen;
4229 continue;
4230 }
4231
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004232 /* Wildcards won't be expanded below, the replacement is taken
4233 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4234 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4235 {
4236 char_u *l = repl;
4237
4238 repl = expand_env_save(repl);
4239 vim_free(l);
4240 }
4241
Bram Moolenaar63b92542007-03-27 14:57:09 +00004242 /* Need to escape white space et al. with a backslash.
4243 * Don't do this for:
4244 * - replacement that already has been escaped: "##"
4245 * - shell commands (may have to use quotes instead).
4246 * - non-unix systems when there is a single argument (spaces don't
4247 * separate arguments then).
4248 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004250 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251 && eap->cmdidx != CMD_bang
4252 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004253 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004255 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004257 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258#ifndef UNIX
4259 && !(eap->argt & NOSPC)
4260#endif
4261 )
4262 {
4263 char_u *l;
4264#ifdef BACKSLASH_IN_FILENAME
4265 /* Don't escape a backslash here, because rem_backslash() doesn't
4266 * remove it later. */
4267 static char_u *nobslash = (char_u *)" \t\"|";
4268# define ESCAPE_CHARS nobslash
4269#else
4270# define ESCAPE_CHARS escape_chars
4271#endif
4272
4273 for (l = repl; *l; ++l)
4274 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4275 {
4276 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4277 if (l != NULL)
4278 {
4279 vim_free(repl);
4280 repl = l;
4281 }
4282 break;
4283 }
4284 }
4285
4286 /* For a shell command a '!' must be escaped. */
4287 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004288 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 {
4290 char_u *l;
4291
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004292 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 if (l != NULL)
4294 {
4295 vim_free(repl);
4296 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004297 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 if (strstr((char *)p_sh, "sh") != NULL)
4299 {
4300 l = vim_strsave_escaped(repl, (char_u *)"!");
4301 if (l != NULL)
4302 {
4303 vim_free(repl);
4304 repl = l;
4305 }
4306 }
4307 }
4308 }
4309
4310 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4311 vim_free(repl);
4312 if (p == NULL)
4313 return FAIL;
4314 }
4315
4316 /*
4317 * One file argument: Expand wildcards.
4318 * Don't do this with ":r !command" or ":w !command".
4319 */
4320 if ((eap->argt & NOSPC) && !eap->usefilter)
4321 {
4322 /*
4323 * May do this twice:
4324 * 1. Replace environment variables.
4325 * 2. Replace any other wildcards, remove backslashes.
4326 */
4327 for (n = 1; n <= 2; ++n)
4328 {
4329 if (n == 2)
4330 {
4331#ifdef UNIX
4332 /*
4333 * Only for Unix we check for more than one file name.
4334 * For other systems spaces are considered to be part
4335 * of the file name.
4336 * Only check here if there is no wildcard, otherwise
4337 * ExpandOne() will check for errors. This allows
4338 * ":e `ls ve*.c`" on Unix.
4339 */
4340 if (!has_wildcards)
4341 for (p = eap->arg; *p; ++p)
4342 {
4343 /* skip escaped characters */
4344 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4345 ++p;
4346 else if (vim_iswhite(*p))
4347 {
4348 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4349 return FAIL;
4350 }
4351 }
4352#endif
4353
4354 /*
4355 * Halve the number of backslashes (this is Vi compatible).
4356 * For Unix and OS/2, when wildcards are expanded, this is
4357 * done by ExpandOne() below.
4358 */
4359#if defined(UNIX) || defined(OS2)
4360 if (!has_wildcards)
4361#endif
4362 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 }
4364
4365 if (has_wildcards)
4366 {
4367 if (n == 1)
4368 {
4369 /*
4370 * First loop: May expand environment variables. This
4371 * can be done much faster with expand_env() than with
4372 * something else (e.g., calling a shell).
4373 * After expanding environment variables, check again
4374 * if there are still wildcards present.
4375 */
4376 if (vim_strchr(eap->arg, '$') != NULL
4377 || vim_strchr(eap->arg, '~') != NULL)
4378 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004379 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
4380 TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 has_wildcards = mch_has_wildcard(NameBuff);
4382 p = NameBuff;
4383 }
4384 else
4385 p = NULL;
4386 }
4387 else /* n == 2 */
4388 {
4389 expand_T xpc;
4390
4391 ExpandInit(&xpc);
4392 xpc.xp_context = EXPAND_FILES;
4393 p = ExpandOne(&xpc, eap->arg, NULL,
4394 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4395 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 if (p == NULL)
4397 return FAIL;
4398 }
4399 if (p != NULL)
4400 {
4401 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4402 p, cmdlinep);
4403 if (n == 2) /* p came from ExpandOne() */
4404 vim_free(p);
4405 }
4406 }
4407 }
4408 }
4409 return OK;
4410}
4411
4412/*
4413 * Replace part of the command line, keeping eap->cmd, eap->arg and
4414 * eap->nextcmd correct.
4415 * "src" points to the part that is to be replaced, of length "srclen".
4416 * "repl" is the replacement string.
4417 * Returns a pointer to the character after the replaced string.
4418 * Returns NULL for failure.
4419 */
4420 static char_u *
4421repl_cmdline(eap, src, srclen, repl, cmdlinep)
4422 exarg_T *eap;
4423 char_u *src;
4424 int srclen;
4425 char_u *repl;
4426 char_u **cmdlinep;
4427{
4428 int len;
4429 int i;
4430 char_u *new_cmdline;
4431
4432 /*
4433 * The new command line is build in new_cmdline[].
4434 * First allocate it.
4435 * Careful: a "+cmd" argument may have been NUL terminated.
4436 */
4437 len = (int)STRLEN(repl);
4438 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004439 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4441 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4442 return NULL; /* out of memory! */
4443
4444 /*
4445 * Copy the stuff before the expanded part.
4446 * Copy the expanded stuff.
4447 * Copy what came after the expanded part.
4448 * Copy the next commands, if there are any.
4449 */
4450 i = (int)(src - *cmdlinep); /* length of part before match */
4451 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004452
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 mch_memmove(new_cmdline + i, repl, (size_t)len);
4454 i += len; /* remember the end of the string */
4455 STRCPY(new_cmdline + i, src + srclen);
4456 src = new_cmdline + i; /* remember where to continue */
4457
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004458 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 {
4460 i = (int)STRLEN(new_cmdline) + 1;
4461 STRCPY(new_cmdline + i, eap->nextcmd);
4462 eap->nextcmd = new_cmdline + i;
4463 }
4464 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4465 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4466 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4467 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4468 vim_free(*cmdlinep);
4469 *cmdlinep = new_cmdline;
4470
4471 return src;
4472}
4473
4474/*
4475 * Check for '|' to separate commands and '"' to start comments.
4476 */
4477 void
4478separate_nextcmd(eap)
4479 exarg_T *eap;
4480{
4481 char_u *p;
4482
Bram Moolenaar86b68352004-12-27 21:59:20 +00004483#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004484 p = skip_grep_pat(eap);
4485#else
4486 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004487#endif
4488
4489 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 {
4491 if (*p == Ctrl_V)
4492 {
4493 if (eap->argt & (USECTRLV | XFILE))
4494 ++p; /* skip CTRL-V and next char */
4495 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00004496 /* remove CTRL-V and skip next char */
4497 mch_memmove(p, p + 1, STRLEN(p));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 if (*p == NUL) /* stop at NUL after CTRL-V */
4499 break;
4500 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004501
4502#ifdef FEAT_EVAL
4503 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004504 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004505 {
4506 p += 2;
4507 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004508 }
4509#endif
4510
Bram Moolenaar071d4272004-06-13 20:20:40 +00004511 /* Check for '"': start of comment or '|': next command */
4512 /* :@" and :*" do not start a comment!
4513 * :redir @" doesn't either. */
4514 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4515 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4516 || p != eap->arg)
4517 && (eap->cmdidx != CMD_redir
4518 || p != eap->arg + 1 || p[-1] != '@'))
4519 || *p == '|' || *p == '\n')
4520 {
4521 /*
4522 * We remove the '\' before the '|', unless USECTRLV is used
4523 * AND 'b' is present in 'cpoptions'.
4524 */
4525 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4526 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4527 {
4528 mch_memmove(p - 1, p, STRLEN(p) + 1); /* remove the '\' */
4529 --p;
4530 }
4531 else
4532 {
4533 eap->nextcmd = check_nextcmd(p);
4534 *p = NUL;
4535 break;
4536 }
4537 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004539
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4541 del_trailing_spaces(eap->arg);
4542}
4543
4544/*
4545 * get + command from ex argument
4546 */
4547 static char_u *
4548getargcmd(argp)
4549 char_u **argp;
4550{
4551 char_u *arg = *argp;
4552 char_u *command = NULL;
4553
4554 if (*arg == '+') /* +[command] */
4555 {
4556 ++arg;
4557 if (vim_isspace(*arg))
4558 command = dollar_command;
4559 else
4560 {
4561 command = arg;
4562 arg = skip_cmd_arg(command, TRUE);
4563 if (*arg != NUL)
4564 *arg++ = NUL; /* terminate command with NUL */
4565 }
4566
4567 arg = skipwhite(arg); /* skip over spaces */
4568 *argp = arg;
4569 }
4570 return command;
4571}
4572
4573/*
4574 * Find end of "+command" argument. Skip over "\ " and "\\".
4575 */
4576 static char_u *
4577skip_cmd_arg(p, rembs)
4578 char_u *p;
4579 int rembs; /* TRUE to halve the number of backslashes */
4580{
4581 while (*p && !vim_isspace(*p))
4582 {
4583 if (*p == '\\' && p[1] != NUL)
4584 {
4585 if (rembs)
4586 mch_memmove(p, p + 1, STRLEN(p));
4587 else
4588 ++p;
4589 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004590 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 }
4592 return p;
4593}
4594
4595/*
4596 * Get "++opt=arg" argument.
4597 * Return FAIL or OK.
4598 */
4599 static int
4600getargopt(eap)
4601 exarg_T *eap;
4602{
4603 char_u *arg = eap->arg + 2;
4604 int *pp = NULL;
4605#ifdef FEAT_MBYTE
4606 char_u *p;
4607#endif
4608
4609 /* ":edit ++[no]bin[ary] file" */
4610 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4611 {
4612 if (*arg == 'n')
4613 {
4614 arg += 2;
4615 eap->force_bin = FORCE_NOBIN;
4616 }
4617 else
4618 eap->force_bin = FORCE_BIN;
4619 if (!checkforcmd(&arg, "binary", 3))
4620 return FAIL;
4621 eap->arg = skipwhite(arg);
4622 return OK;
4623 }
4624
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004625 /* ":read ++edit file" */
4626 if (STRNCMP(arg, "edit", 4) == 0)
4627 {
4628 eap->read_edit = TRUE;
4629 eap->arg = skipwhite(arg + 4);
4630 return OK;
4631 }
4632
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 if (STRNCMP(arg, "ff", 2) == 0)
4634 {
4635 arg += 2;
4636 pp = &eap->force_ff;
4637 }
4638 else if (STRNCMP(arg, "fileformat", 10) == 0)
4639 {
4640 arg += 10;
4641 pp = &eap->force_ff;
4642 }
4643#ifdef FEAT_MBYTE
4644 else if (STRNCMP(arg, "enc", 3) == 0)
4645 {
4646 arg += 3;
4647 pp = &eap->force_enc;
4648 }
4649 else if (STRNCMP(arg, "encoding", 8) == 0)
4650 {
4651 arg += 8;
4652 pp = &eap->force_enc;
4653 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004654 else if (STRNCMP(arg, "bad", 3) == 0)
4655 {
4656 arg += 3;
4657 pp = &eap->bad_char;
4658 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659#endif
4660
4661 if (pp == NULL || *arg != '=')
4662 return FAIL;
4663
4664 ++arg;
4665 *pp = (int)(arg - eap->cmd);
4666 arg = skip_cmd_arg(arg, FALSE);
4667 eap->arg = skipwhite(arg);
4668 *arg = NUL;
4669
4670#ifdef FEAT_MBYTE
4671 if (pp == &eap->force_ff)
4672 {
4673#endif
4674 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4675 return FAIL;
4676#ifdef FEAT_MBYTE
4677 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004678 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 {
4680 /* Make 'fileencoding' lower case. */
4681 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4682 *p = TOLOWER_ASC(*p);
4683 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004684 else
4685 {
4686 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4687 * "drop". */
4688 p = eap->cmd + eap->bad_char;
4689 if (STRICMP(p, "keep") == 0)
4690 eap->bad_char = BAD_KEEP;
4691 else if (STRICMP(p, "drop") == 0)
4692 eap->bad_char = BAD_DROP;
4693 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4694 eap->bad_char = *p;
4695 else
4696 return FAIL;
4697 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698#endif
4699
4700 return OK;
4701}
4702
4703/*
4704 * ":abbreviate" and friends.
4705 */
4706 static void
4707ex_abbreviate(eap)
4708 exarg_T *eap;
4709{
4710 do_exmap(eap, TRUE); /* almost the same as mapping */
4711}
4712
4713/*
4714 * ":map" and friends.
4715 */
4716 static void
4717ex_map(eap)
4718 exarg_T *eap;
4719{
4720 /*
4721 * If we are sourcing .exrc or .vimrc in current directory we
4722 * print the mappings for security reasons.
4723 */
4724 if (secure)
4725 {
4726 secure = 2;
4727 msg_outtrans(eap->cmd);
4728 msg_putchar('\n');
4729 }
4730 do_exmap(eap, FALSE);
4731}
4732
4733/*
4734 * ":unmap" and friends.
4735 */
4736 static void
4737ex_unmap(eap)
4738 exarg_T *eap;
4739{
4740 do_exmap(eap, FALSE);
4741}
4742
4743/*
4744 * ":mapclear" and friends.
4745 */
4746 static void
4747ex_mapclear(eap)
4748 exarg_T *eap;
4749{
4750 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4751}
4752
4753/*
4754 * ":abclear" and friends.
4755 */
4756 static void
4757ex_abclear(eap)
4758 exarg_T *eap;
4759{
4760 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4761}
4762
4763#ifdef FEAT_AUTOCMD
4764 static void
4765ex_autocmd(eap)
4766 exarg_T *eap;
4767{
4768 /*
4769 * Disallow auto commands from .exrc and .vimrc in current
4770 * directory for security reasons.
4771 */
4772 if (secure)
4773 {
4774 secure = 2;
4775 eap->errmsg = e_curdir;
4776 }
4777 else if (eap->cmdidx == CMD_autocmd)
4778 do_autocmd(eap->arg, eap->forceit);
4779 else
4780 do_augroup(eap->arg, eap->forceit);
4781}
4782
4783/*
4784 * ":doautocmd": Apply the automatic commands to the current buffer.
4785 */
4786 static void
4787ex_doautocmd(eap)
4788 exarg_T *eap;
4789{
4790 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004791 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792}
4793#endif
4794
4795#ifdef FEAT_LISTCMDS
4796/*
4797 * :[N]bunload[!] [N] [bufname] unload buffer
4798 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4799 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4800 */
4801 static void
4802ex_bunload(eap)
4803 exarg_T *eap;
4804{
4805 eap->errmsg = do_bufdel(
4806 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4807 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4808 : DOBUF_UNLOAD, eap->arg,
4809 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4810}
4811
4812/*
4813 * :[N]buffer [N] to buffer N
4814 * :[N]sbuffer [N] to buffer N
4815 */
4816 static void
4817ex_buffer(eap)
4818 exarg_T *eap;
4819{
4820 if (*eap->arg)
4821 eap->errmsg = e_trailing;
4822 else
4823 {
4824 if (eap->addr_count == 0) /* default is current buffer */
4825 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4826 else
4827 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4828 }
4829}
4830
4831/*
4832 * :[N]bmodified [N] to next mod. buffer
4833 * :[N]sbmodified [N] to next mod. buffer
4834 */
4835 static void
4836ex_bmodified(eap)
4837 exarg_T *eap;
4838{
4839 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4840}
4841
4842/*
4843 * :[N]bnext [N] to next buffer
4844 * :[N]sbnext [N] split and to next buffer
4845 */
4846 static void
4847ex_bnext(eap)
4848 exarg_T *eap;
4849{
4850 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4851}
4852
4853/*
4854 * :[N]bNext [N] to previous buffer
4855 * :[N]bprevious [N] to previous buffer
4856 * :[N]sbNext [N] split and to previous buffer
4857 * :[N]sbprevious [N] split and to previous buffer
4858 */
4859 static void
4860ex_bprevious(eap)
4861 exarg_T *eap;
4862{
4863 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4864}
4865
4866/*
4867 * :brewind to first buffer
4868 * :bfirst to first buffer
4869 * :sbrewind split and to first buffer
4870 * :sbfirst split and to first buffer
4871 */
4872 static void
4873ex_brewind(eap)
4874 exarg_T *eap;
4875{
4876 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4877}
4878
4879/*
4880 * :blast to last buffer
4881 * :sblast split and to last buffer
4882 */
4883 static void
4884ex_blast(eap)
4885 exarg_T *eap;
4886{
4887 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4888}
4889#endif
4890
4891 int
4892ends_excmd(c)
4893 int c;
4894{
4895 return (c == NUL || c == '|' || c == '"' || c == '\n');
4896}
4897
4898#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4899 || defined(PROTO)
4900/*
4901 * Return the next command, after the first '|' or '\n'.
4902 * Return NULL if not found.
4903 */
4904 char_u *
4905find_nextcmd(p)
4906 char_u *p;
4907{
4908 while (*p != '|' && *p != '\n')
4909 {
4910 if (*p == NUL)
4911 return NULL;
4912 ++p;
4913 }
4914 return (p + 1);
4915}
4916#endif
4917
4918/*
4919 * Check if *p is a separator between Ex commands.
4920 * Return NULL if it isn't, (p + 1) if it is.
4921 */
4922 char_u *
4923check_nextcmd(p)
4924 char_u *p;
4925{
4926 p = skipwhite(p);
4927 if (*p == '|' || *p == '\n')
4928 return (p + 1);
4929 else
4930 return NULL;
4931}
4932
4933/*
4934 * - if there are more files to edit
4935 * - and this is the last window
4936 * - and forceit not used
4937 * - and not repeated twice on a row
4938 * return FAIL and give error message if 'message' TRUE
4939 * return OK otherwise
4940 */
4941 static int
4942check_more(message, forceit)
4943 int message; /* when FALSE check only, no messages */
4944 int forceit;
4945{
4946 int n = ARGCOUNT - curwin->w_arg_idx - 1;
4947
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004948 if (!forceit && only_one_window()
4949 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 {
4951 if (message)
4952 {
4953#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4954 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
4955 {
4956 char_u buff[IOSIZE];
4957
4958 if (n == 1)
4959 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
4960 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004961 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 _("%d more files to edit. Quit anyway?"), n);
4963 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
4964 return OK;
4965 return FAIL;
4966 }
4967#endif
4968 if (n == 1)
4969 EMSG(_("E173: 1 more file to edit"));
4970 else
4971 EMSGN(_("E173: %ld more files to edit"), n);
4972 quitmore = 2; /* next try to quit is allowed */
4973 }
4974 return FAIL;
4975 }
4976 return OK;
4977}
4978
4979#ifdef FEAT_CMDL_COMPL
4980/*
4981 * Function given to ExpandGeneric() to obtain the list of command names.
4982 */
4983/*ARGSUSED*/
4984 char_u *
4985get_command_name(xp, idx)
4986 expand_T *xp;
4987 int idx;
4988{
4989 if (idx >= (int)CMD_SIZE)
4990# ifdef FEAT_USR_CMDS
4991 return get_user_command_name(idx);
4992# else
4993 return NULL;
4994# endif
4995 return cmdnames[idx].cmd_name;
4996}
4997#endif
4998
4999#if defined(FEAT_USR_CMDS) || defined(PROTO)
5000static 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));
5001static void uc_list __ARGS((char_u *name, size_t name_len));
5002static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5003static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5004static 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));
5005
5006 static int
5007uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5008 char_u *name;
5009 size_t name_len;
5010 char_u *rep;
5011 long argt;
5012 long def;
5013 int flags;
5014 int compl;
5015 char_u *compl_arg;
5016 int force;
5017{
5018 ucmd_T *cmd = NULL;
5019 char_u *p;
5020 int i;
5021 int cmp = 1;
5022 char_u *rep_buf = NULL;
5023 garray_T *gap;
5024
Bram Moolenaar9c102382006-05-03 21:26:49 +00005025 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 if (rep_buf == NULL)
5027 {
5028 /* Can't replace termcodes - try using the string as is */
5029 rep_buf = vim_strsave(rep);
5030
5031 /* Give up if out of memory */
5032 if (rep_buf == NULL)
5033 return FAIL;
5034 }
5035
5036 /* get address of growarray: global or in curbuf */
5037 if (flags & UC_BUFFER)
5038 {
5039 gap = &curbuf->b_ucmds;
5040 if (gap->ga_itemsize == 0)
5041 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5042 }
5043 else
5044 gap = &ucmds;
5045
5046 /* Search for the command in the already defined commands. */
5047 for (i = 0; i < gap->ga_len; ++i)
5048 {
5049 size_t len;
5050
5051 cmd = USER_CMD_GA(gap, i);
5052 len = STRLEN(cmd->uc_name);
5053 cmp = STRNCMP(name, cmd->uc_name, name_len);
5054 if (cmp == 0)
5055 {
5056 if (name_len < len)
5057 cmp = -1;
5058 else if (name_len > len)
5059 cmp = 1;
5060 }
5061
5062 if (cmp == 0)
5063 {
5064 if (!force)
5065 {
5066 EMSG(_("E174: Command already exists: add ! to replace it"));
5067 goto fail;
5068 }
5069
5070 vim_free(cmd->uc_rep);
5071 cmd->uc_rep = 0;
5072 break;
5073 }
5074
5075 /* Stop as soon as we pass the name to add */
5076 if (cmp < 0)
5077 break;
5078 }
5079
5080 /* Extend the array unless we're replacing an existing command */
5081 if (cmp != 0)
5082 {
5083 if (ga_grow(gap, 1) != OK)
5084 goto fail;
5085 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5086 goto fail;
5087
5088 cmd = USER_CMD_GA(gap, i);
5089 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5090
5091 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092
5093 cmd->uc_name = p;
5094 }
5095
5096 cmd->uc_rep = rep_buf;
5097 cmd->uc_argt = argt;
5098 cmd->uc_def = def;
5099 cmd->uc_compl = compl;
5100#ifdef FEAT_EVAL
5101 cmd->uc_scriptID = current_SID;
5102# ifdef FEAT_CMDL_COMPL
5103 cmd->uc_compl_arg = compl_arg;
5104# endif
5105#endif
5106
5107 return OK;
5108
5109fail:
5110 vim_free(rep_buf);
5111#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5112 vim_free(compl_arg);
5113#endif
5114 return FAIL;
5115}
5116
5117/*
5118 * List of names for completion for ":command" with the EXPAND_ flag.
5119 * Must be alphabetical for completion.
5120 */
5121static struct
5122{
5123 int expand;
5124 char *name;
5125} command_complete[] =
5126{
5127 {EXPAND_AUGROUP, "augroup"},
5128 {EXPAND_BUFFERS, "buffer"},
5129 {EXPAND_COMMANDS, "command"},
5130#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5131 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005132 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133#endif
5134 {EXPAND_DIRECTORIES, "dir"},
5135 {EXPAND_ENV_VARS, "environment"},
5136 {EXPAND_EVENTS, "event"},
5137 {EXPAND_EXPRESSION, "expression"},
5138 {EXPAND_FILES, "file"},
5139 {EXPAND_FUNCTIONS, "function"},
5140 {EXPAND_HELP, "help"},
5141 {EXPAND_HIGHLIGHT, "highlight"},
5142 {EXPAND_MAPPINGS, "mapping"},
5143 {EXPAND_MENUS, "menu"},
5144 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005145 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 {EXPAND_TAGS, "tag"},
5147 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5148 {EXPAND_USER_VARS, "var"},
5149 {0, NULL}
5150};
5151
5152 static void
5153uc_list(name, name_len)
5154 char_u *name;
5155 size_t name_len;
5156{
5157 int i, j;
5158 int found = FALSE;
5159 ucmd_T *cmd;
5160 int len;
5161 long a;
5162 garray_T *gap;
5163
5164 gap = &curbuf->b_ucmds;
5165 for (;;)
5166 {
5167 for (i = 0; i < gap->ga_len; ++i)
5168 {
5169 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005170 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171
5172 /* Skip commands which don't match the requested prefix */
5173 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5174 continue;
5175
5176 /* Put out the title first time */
5177 if (!found)
5178 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5179 found = TRUE;
5180 msg_putchar('\n');
5181 if (got_int)
5182 break;
5183
5184 /* Special cases */
5185 msg_putchar(a & BANG ? '!' : ' ');
5186 msg_putchar(a & REGSTR ? '"' : ' ');
5187 msg_putchar(gap != &ucmds ? 'b' : ' ');
5188 msg_putchar(' ');
5189
5190 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5191 len = (int)STRLEN(cmd->uc_name) + 4;
5192
5193 do {
5194 msg_putchar(' ');
5195 ++len;
5196 } while (len < 16);
5197
5198 len = 0;
5199
5200 /* Arguments */
5201 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5202 {
5203 case 0: IObuff[len++] = '0'; break;
5204 case (EXTRA): IObuff[len++] = '*'; break;
5205 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5206 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5207 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5208 }
5209
5210 do {
5211 IObuff[len++] = ' ';
5212 } while (len < 5);
5213
5214 /* Range */
5215 if (a & (RANGE|COUNT))
5216 {
5217 if (a & COUNT)
5218 {
5219 /* -count=N */
5220 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5221 len += (int)STRLEN(IObuff + len);
5222 }
5223 else if (a & DFLALL)
5224 IObuff[len++] = '%';
5225 else if (cmd->uc_def >= 0)
5226 {
5227 /* -range=N */
5228 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5229 len += (int)STRLEN(IObuff + len);
5230 }
5231 else
5232 IObuff[len++] = '.';
5233 }
5234
5235 do {
5236 IObuff[len++] = ' ';
5237 } while (len < 11);
5238
5239 /* Completion */
5240 for (j = 0; command_complete[j].expand != 0; ++j)
5241 if (command_complete[j].expand == cmd->uc_compl)
5242 {
5243 STRCPY(IObuff + len, command_complete[j].name);
5244 len += (int)STRLEN(IObuff + len);
5245 break;
5246 }
5247
5248 do {
5249 IObuff[len++] = ' ';
5250 } while (len < 21);
5251
5252 IObuff[len] = '\0';
5253 msg_outtrans(IObuff);
5254
5255 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005256#ifdef FEAT_EVAL
5257 if (p_verbose > 0)
5258 last_set_msg(cmd->uc_scriptID);
5259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 out_flush();
5261 ui_breakcheck();
5262 if (got_int)
5263 break;
5264 }
5265 if (gap == &ucmds || i < gap->ga_len)
5266 break;
5267 gap = &ucmds;
5268 }
5269
5270 if (!found)
5271 MSG(_("No user-defined commands found"));
5272}
5273
5274 static char_u *
5275uc_fun_cmd()
5276{
5277 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5278 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5279 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5280 0xb9, 0x7f, 0};
5281 int i;
5282
5283 for (i = 0; fcmd[i]; ++i)
5284 IObuff[i] = fcmd[i] - 0x40;
5285 IObuff[i] = 0;
5286 return IObuff;
5287}
5288
5289 static int
5290uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5291 char_u *attr;
5292 size_t len;
5293 long *argt;
5294 long *def;
5295 int *flags;
5296 int *compl;
5297 char_u **compl_arg;
5298{
5299 char_u *p;
5300
5301 if (len == 0)
5302 {
5303 EMSG(_("E175: No attribute specified"));
5304 return FAIL;
5305 }
5306
5307 /* First, try the simple attributes (no arguments) */
5308 if (STRNICMP(attr, "bang", len) == 0)
5309 *argt |= BANG;
5310 else if (STRNICMP(attr, "buffer", len) == 0)
5311 *flags |= UC_BUFFER;
5312 else if (STRNICMP(attr, "register", len) == 0)
5313 *argt |= REGSTR;
5314 else if (STRNICMP(attr, "bar", len) == 0)
5315 *argt |= TRLBAR;
5316 else
5317 {
5318 int i;
5319 char_u *val = NULL;
5320 size_t vallen = 0;
5321 size_t attrlen = len;
5322
5323 /* Look for the attribute name - which is the part before any '=' */
5324 for (i = 0; i < (int)len; ++i)
5325 {
5326 if (attr[i] == '=')
5327 {
5328 val = &attr[i + 1];
5329 vallen = len - i - 1;
5330 attrlen = i;
5331 break;
5332 }
5333 }
5334
5335 if (STRNICMP(attr, "nargs", attrlen) == 0)
5336 {
5337 if (vallen == 1)
5338 {
5339 if (*val == '0')
5340 /* Do nothing - this is the default */;
5341 else if (*val == '1')
5342 *argt |= (EXTRA | NOSPC | NEEDARG);
5343 else if (*val == '*')
5344 *argt |= EXTRA;
5345 else if (*val == '?')
5346 *argt |= (EXTRA | NOSPC);
5347 else if (*val == '+')
5348 *argt |= (EXTRA | NEEDARG);
5349 else
5350 goto wrong_nargs;
5351 }
5352 else
5353 {
5354wrong_nargs:
5355 EMSG(_("E176: Invalid number of arguments"));
5356 return FAIL;
5357 }
5358 }
5359 else if (STRNICMP(attr, "range", attrlen) == 0)
5360 {
5361 *argt |= RANGE;
5362 if (vallen == 1 && *val == '%')
5363 *argt |= DFLALL;
5364 else if (val != NULL)
5365 {
5366 p = val;
5367 if (*def >= 0)
5368 {
5369two_count:
5370 EMSG(_("E177: Count cannot be specified twice"));
5371 return FAIL;
5372 }
5373
5374 *def = getdigits(&p);
5375 *argt |= (ZEROR | NOTADR);
5376
5377 if (p != val + vallen || vallen == 0)
5378 {
5379invalid_count:
5380 EMSG(_("E178: Invalid default value for count"));
5381 return FAIL;
5382 }
5383 }
5384 }
5385 else if (STRNICMP(attr, "count", attrlen) == 0)
5386 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005387 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388
5389 if (val != NULL)
5390 {
5391 p = val;
5392 if (*def >= 0)
5393 goto two_count;
5394
5395 *def = getdigits(&p);
5396
5397 if (p != val + vallen)
5398 goto invalid_count;
5399 }
5400
5401 if (*def < 0)
5402 *def = 0;
5403 }
5404 else if (STRNICMP(attr, "complete", attrlen) == 0)
5405 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 if (val == NULL)
5407 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005408 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005409 return FAIL;
5410 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005412 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5413 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415 }
5416 else
5417 {
5418 char_u ch = attr[len];
5419 attr[len] = '\0';
5420 EMSG2(_("E181: Invalid attribute: %s"), attr);
5421 attr[len] = ch;
5422 return FAIL;
5423 }
5424 }
5425
5426 return OK;
5427}
5428
5429 static void
5430ex_command(eap)
5431 exarg_T *eap;
5432{
5433 char_u *name;
5434 char_u *end;
5435 char_u *p;
5436 long argt = 0;
5437 long def = -1;
5438 int flags = 0;
5439 int compl = EXPAND_NOTHING;
5440 char_u *compl_arg = NULL;
5441 int has_attr = (eap->arg[0] == '-');
5442
5443 p = eap->arg;
5444
5445 /* Check for attributes */
5446 while (*p == '-')
5447 {
5448 ++p;
5449 end = skiptowhite(p);
5450 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5451 == FAIL)
5452 return;
5453 p = skipwhite(end);
5454 }
5455
5456 /* Get the name (if any) and skip to the following argument */
5457 name = p;
5458 if (ASCII_ISALPHA(*p))
5459 while (ASCII_ISALNUM(*p))
5460 ++p;
5461 if (!ends_excmd(*p) && !vim_iswhite(*p))
5462 {
5463 EMSG(_("E182: Invalid command name"));
5464 return;
5465 }
5466 end = p;
5467
5468 /* If there is nothing after the name, and no attributes were specified,
5469 * we are listing commands
5470 */
5471 p = skipwhite(end);
5472 if (!has_attr && ends_excmd(*p))
5473 {
5474 uc_list(name, end - name);
5475 }
5476 else if (!ASCII_ISUPPER(*name))
5477 {
5478 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5479 return;
5480 }
5481 else
5482 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5483 eap->forceit);
5484}
5485
5486/*
5487 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 * Clear all user commands, global and for current buffer.
5489 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005490/*ARGSUSED*/
5491 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005492ex_comclear(eap)
5493 exarg_T *eap;
5494{
5495 uc_clear(&ucmds);
5496 uc_clear(&curbuf->b_ucmds);
5497}
5498
5499/*
5500 * Clear all user commands for "gap".
5501 */
5502 void
5503uc_clear(gap)
5504 garray_T *gap;
5505{
5506 int i;
5507 ucmd_T *cmd;
5508
5509 for (i = 0; i < gap->ga_len; ++i)
5510 {
5511 cmd = USER_CMD_GA(gap, i);
5512 vim_free(cmd->uc_name);
5513 vim_free(cmd->uc_rep);
5514# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5515 vim_free(cmd->uc_compl_arg);
5516# endif
5517 }
5518 ga_clear(gap);
5519}
5520
5521 static void
5522ex_delcommand(eap)
5523 exarg_T *eap;
5524{
5525 int i = 0;
5526 ucmd_T *cmd = NULL;
5527 int cmp = -1;
5528 garray_T *gap;
5529
5530 gap = &curbuf->b_ucmds;
5531 for (;;)
5532 {
5533 for (i = 0; i < gap->ga_len; ++i)
5534 {
5535 cmd = USER_CMD_GA(gap, i);
5536 cmp = STRCMP(eap->arg, cmd->uc_name);
5537 if (cmp <= 0)
5538 break;
5539 }
5540 if (gap == &ucmds || cmp == 0)
5541 break;
5542 gap = &ucmds;
5543 }
5544
5545 if (cmp != 0)
5546 {
5547 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5548 return;
5549 }
5550
5551 vim_free(cmd->uc_name);
5552 vim_free(cmd->uc_rep);
5553# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5554 vim_free(cmd->uc_compl_arg);
5555# endif
5556
5557 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558
5559 if (i < gap->ga_len)
5560 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5561}
5562
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005563/*
5564 * split and quote args for <f-args>
5565 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 static char_u *
5567uc_split_args(arg, lenp)
5568 char_u *arg;
5569 size_t *lenp;
5570{
5571 char_u *buf;
5572 char_u *p;
5573 char_u *q;
5574 int len;
5575
5576 /* Precalculate length */
5577 p = arg;
5578 len = 2; /* Initial and final quotes */
5579
5580 while (*p)
5581 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005582 if (p[0] == '\\' && p[1] == '\\')
5583 {
5584 len += 2;
5585 p += 2;
5586 }
5587 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005588 {
5589 len += 1;
5590 p += 2;
5591 }
5592 else if (*p == '\\' || *p == '"')
5593 {
5594 len += 2;
5595 p += 1;
5596 }
5597 else if (vim_iswhite(*p))
5598 {
5599 p = skipwhite(p);
5600 if (*p == NUL)
5601 break;
5602 len += 3; /* "," */
5603 }
5604 else
5605 {
5606 ++len;
5607 ++p;
5608 }
5609 }
5610
5611 buf = alloc(len + 1);
5612 if (buf == NULL)
5613 {
5614 *lenp = 0;
5615 return buf;
5616 }
5617
5618 p = arg;
5619 q = buf;
5620 *q++ = '"';
5621 while (*p)
5622 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005623 if (p[0] == '\\' && p[1] == '\\')
5624 {
5625 *q++ = '\\';
5626 *q++ = '\\';
5627 p += 2;
5628 }
5629 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 {
5631 *q++ = p[1];
5632 p += 2;
5633 }
5634 else if (*p == '\\' || *p == '"')
5635 {
5636 *q++ = '\\';
5637 *q++ = *p++;
5638 }
5639 else if (vim_iswhite(*p))
5640 {
5641 p = skipwhite(p);
5642 if (*p == NUL)
5643 break;
5644 *q++ = '"';
5645 *q++ = ',';
5646 *q++ = '"';
5647 }
5648 else
5649 {
5650 *q++ = *p++;
5651 }
5652 }
5653 *q++ = '"';
5654 *q = 0;
5655
5656 *lenp = len;
5657 return buf;
5658}
5659
5660/*
5661 * Check for a <> code in a user command.
5662 * "code" points to the '<'. "len" the length of the <> (inclusive).
5663 * "buf" is where the result is to be added.
5664 * "split_buf" points to a buffer used for splitting, caller should free it.
5665 * "split_len" is the length of what "split_buf" contains.
5666 * Returns the length of the replacement, which has been added to "buf".
5667 * Returns -1 if there was no match, and only the "<" has been copied.
5668 */
5669 static size_t
5670uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5671 char_u *code;
5672 size_t len;
5673 char_u *buf;
5674 ucmd_T *cmd; /* the user command we're expanding */
5675 exarg_T *eap; /* ex arguments */
5676 char_u **split_buf;
5677 size_t *split_len;
5678{
5679 size_t result = 0;
5680 char_u *p = code + 1;
5681 size_t l = len - 2;
5682 int quote = 0;
5683 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5684 ct_LT, ct_NONE } type = ct_NONE;
5685
5686 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5687 {
5688 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5689 p += 2;
5690 l -= 2;
5691 }
5692
Bram Moolenaar371d5402006-03-20 21:47:49 +00005693 ++l;
5694 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005696 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005698 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005700 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005702 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005704 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005706 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005708 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 type = ct_REGISTER;
5710
5711 switch (type)
5712 {
5713 case ct_ARGS:
5714 /* Simple case first */
5715 if (*eap->arg == NUL)
5716 {
5717 if (quote == 1)
5718 {
5719 result = 2;
5720 if (buf != NULL)
5721 STRCPY(buf, "''");
5722 }
5723 else
5724 result = 0;
5725 break;
5726 }
5727
5728 /* When specified there is a single argument don't split it.
5729 * Works for ":Cmd %" when % is "a b c". */
5730 if ((eap->argt & NOSPC) && quote == 2)
5731 quote = 1;
5732
5733 switch (quote)
5734 {
5735 case 0: /* No quoting, no splitting */
5736 result = STRLEN(eap->arg);
5737 if (buf != NULL)
5738 STRCPY(buf, eap->arg);
5739 break;
5740 case 1: /* Quote, but don't split */
5741 result = STRLEN(eap->arg) + 2;
5742 for (p = eap->arg; *p; ++p)
5743 {
5744 if (*p == '\\' || *p == '"')
5745 ++result;
5746 }
5747
5748 if (buf != NULL)
5749 {
5750 *buf++ = '"';
5751 for (p = eap->arg; *p; ++p)
5752 {
5753 if (*p == '\\' || *p == '"')
5754 *buf++ = '\\';
5755 *buf++ = *p;
5756 }
5757 *buf = '"';
5758 }
5759
5760 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005761 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 /* This is hard, so only do it once, and cache the result */
5763 if (*split_buf == NULL)
5764 *split_buf = uc_split_args(eap->arg, split_len);
5765
5766 result = *split_len;
5767 if (buf != NULL && result != 0)
5768 STRCPY(buf, *split_buf);
5769
5770 break;
5771 }
5772 break;
5773
5774 case ct_BANG:
5775 result = eap->forceit ? 1 : 0;
5776 if (quote)
5777 result += 2;
5778 if (buf != NULL)
5779 {
5780 if (quote)
5781 *buf++ = '"';
5782 if (eap->forceit)
5783 *buf++ = '!';
5784 if (quote)
5785 *buf = '"';
5786 }
5787 break;
5788
5789 case ct_LINE1:
5790 case ct_LINE2:
5791 case ct_COUNT:
5792 {
5793 char num_buf[20];
5794 long num = (type == ct_LINE1) ? eap->line1 :
5795 (type == ct_LINE2) ? eap->line2 :
5796 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5797 size_t num_len;
5798
5799 sprintf(num_buf, "%ld", num);
5800 num_len = STRLEN(num_buf);
5801 result = num_len;
5802
5803 if (quote)
5804 result += 2;
5805
5806 if (buf != NULL)
5807 {
5808 if (quote)
5809 *buf++ = '"';
5810 STRCPY(buf, num_buf);
5811 buf += num_len;
5812 if (quote)
5813 *buf = '"';
5814 }
5815
5816 break;
5817 }
5818
5819 case ct_REGISTER:
5820 result = eap->regname ? 1 : 0;
5821 if (quote)
5822 result += 2;
5823 if (buf != NULL)
5824 {
5825 if (quote)
5826 *buf++ = '\'';
5827 if (eap->regname)
5828 *buf++ = eap->regname;
5829 if (quote)
5830 *buf = '\'';
5831 }
5832 break;
5833
5834 case ct_LT:
5835 result = 1;
5836 if (buf != NULL)
5837 *buf = '<';
5838 break;
5839
5840 default:
5841 /* Not recognized: just copy the '<' and return -1. */
5842 result = (size_t)-1;
5843 if (buf != NULL)
5844 *buf = '<';
5845 break;
5846 }
5847
5848 return result;
5849}
5850
5851 static void
5852do_ucmd(eap)
5853 exarg_T *eap;
5854{
5855 char_u *buf;
5856 char_u *p;
5857 char_u *q;
5858
5859 char_u *start;
5860 char_u *end;
5861 size_t len, totlen;
5862
5863 size_t split_len = 0;
5864 char_u *split_buf = NULL;
5865 ucmd_T *cmd;
5866#ifdef FEAT_EVAL
5867 scid_T save_current_SID = current_SID;
5868#endif
5869
5870 if (eap->cmdidx == CMD_USER)
5871 cmd = USER_CMD(eap->useridx);
5872 else
5873 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5874
5875 /*
5876 * Replace <> in the command by the arguments.
5877 */
5878 buf = NULL;
5879 for (;;)
5880 {
5881 p = cmd->uc_rep;
5882 q = buf;
5883 totlen = 0;
5884 while ((start = vim_strchr(p, '<')) != NULL
5885 && (end = vim_strchr(start + 1, '>')) != NULL)
5886 {
5887 /* Include the '>' */
5888 ++end;
5889
5890 /* Take everything up to the '<' */
5891 len = start - p;
5892 if (buf == NULL)
5893 totlen += len;
5894 else
5895 {
5896 mch_memmove(q, p, len);
5897 q += len;
5898 }
5899
5900 len = uc_check_code(start, end - start, q, cmd, eap,
5901 &split_buf, &split_len);
5902 if (len == (size_t)-1)
5903 {
5904 /* no match, continue after '<' */
5905 p = start + 1;
5906 len = 1;
5907 }
5908 else
5909 p = end;
5910 if (buf == NULL)
5911 totlen += len;
5912 else
5913 q += len;
5914 }
5915 if (buf != NULL) /* second time here, finished */
5916 {
5917 STRCPY(q, p);
5918 break;
5919 }
5920
5921 totlen += STRLEN(p); /* Add on the trailing characters */
5922 buf = alloc((unsigned)(totlen + 1));
5923 if (buf == NULL)
5924 {
5925 vim_free(split_buf);
5926 return;
5927 }
5928 }
5929
5930#ifdef FEAT_EVAL
5931 current_SID = cmd->uc_scriptID;
5932#endif
5933 (void)do_cmdline(buf, eap->getline, eap->cookie,
5934 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5935#ifdef FEAT_EVAL
5936 current_SID = save_current_SID;
5937#endif
5938 vim_free(buf);
5939 vim_free(split_buf);
5940}
5941
5942# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5943 static char_u *
5944get_user_command_name(idx)
5945 int idx;
5946{
5947 return get_user_commands(NULL, idx - (int)CMD_SIZE);
5948}
5949
5950/*
5951 * Function given to ExpandGeneric() to obtain the list of user command names.
5952 */
5953/*ARGSUSED*/
5954 char_u *
5955get_user_commands(xp, idx)
5956 expand_T *xp;
5957 int idx;
5958{
5959 if (idx < curbuf->b_ucmds.ga_len)
5960 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
5961 idx -= curbuf->b_ucmds.ga_len;
5962 if (idx < ucmds.ga_len)
5963 return USER_CMD(idx)->uc_name;
5964 return NULL;
5965}
5966
5967/*
5968 * Function given to ExpandGeneric() to obtain the list of user command
5969 * attributes.
5970 */
5971/*ARGSUSED*/
5972 char_u *
5973get_user_cmd_flags(xp, idx)
5974 expand_T *xp;
5975 int idx;
5976{
5977 static char *user_cmd_flags[] =
5978 {"bang", "bar", "buffer", "complete", "count",
5979 "nargs", "range", "register"};
5980
5981 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
5982 return NULL;
5983 return (char_u *)user_cmd_flags[idx];
5984}
5985
5986/*
5987 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
5988 */
5989/*ARGSUSED*/
5990 char_u *
5991get_user_cmd_nargs(xp, idx)
5992 expand_T *xp;
5993 int idx;
5994{
5995 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
5996
5997 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
5998 return NULL;
5999 return (char_u *)user_cmd_nargs[idx];
6000}
6001
6002/*
6003 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6004 */
6005/*ARGSUSED*/
6006 char_u *
6007get_user_cmd_complete(xp, idx)
6008 expand_T *xp;
6009 int idx;
6010{
6011 return (char_u *)command_complete[idx].name;
6012}
6013# endif /* FEAT_CMDL_COMPL */
6014
6015#endif /* FEAT_USR_CMDS */
6016
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006017#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6018/*
6019 * Parse a completion argument "value[vallen]".
6020 * The detected completion goes in "*complp", argument type in "*argt".
6021 * When there is an argument, for function and user defined completion, it's
6022 * copied to allocated memory and stored in "*compl_arg".
6023 * Returns FAIL if something is wrong.
6024 */
6025 int
6026parse_compl_arg(value, vallen, complp, argt, compl_arg)
6027 char_u *value;
6028 int vallen;
6029 int *complp;
6030 long *argt;
6031 char_u **compl_arg;
6032{
6033 char_u *arg = NULL;
6034 size_t arglen = 0;
6035 int i;
6036 int valend = vallen;
6037
6038 /* Look for any argument part - which is the part after any ',' */
6039 for (i = 0; i < vallen; ++i)
6040 {
6041 if (value[i] == ',')
6042 {
6043 arg = &value[i + 1];
6044 arglen = vallen - i - 1;
6045 valend = i;
6046 break;
6047 }
6048 }
6049
6050 for (i = 0; command_complete[i].expand != 0; ++i)
6051 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006052 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006053 && STRNCMP(value, command_complete[i].name, valend) == 0)
6054 {
6055 *complp = command_complete[i].expand;
6056 if (command_complete[i].expand == EXPAND_BUFFERS)
6057 *argt |= BUFNAME;
6058 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6059 || command_complete[i].expand == EXPAND_FILES)
6060 *argt |= XFILE;
6061 break;
6062 }
6063 }
6064
6065 if (command_complete[i].expand == 0)
6066 {
6067 EMSG2(_("E180: Invalid complete value: %s"), value);
6068 return FAIL;
6069 }
6070
6071# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6072 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6073 && arg != NULL)
6074# else
6075 if (arg != NULL)
6076# endif
6077 {
6078 EMSG(_("E468: Completion argument only allowed for custom completion"));
6079 return FAIL;
6080 }
6081
6082# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6083 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6084 && arg == NULL)
6085 {
6086 EMSG(_("E467: Custom completion requires a function argument"));
6087 return FAIL;
6088 }
6089
6090 if (arg != NULL)
6091 *compl_arg = vim_strnsave(arg, (int)arglen);
6092# endif
6093 return OK;
6094}
6095#endif
6096
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097 static void
6098ex_colorscheme(eap)
6099 exarg_T *eap;
6100{
6101 if (load_colors(eap->arg) == FAIL)
6102 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6103}
6104
6105 static void
6106ex_highlight(eap)
6107 exarg_T *eap;
6108{
6109 if (*eap->arg == NUL && eap->cmd[2] == '!')
6110 MSG(_("Greetings, Vim user!"));
6111 do_highlight(eap->arg, eap->forceit, FALSE);
6112}
6113
6114
6115/*
6116 * Call this function if we thought we were going to exit, but we won't
6117 * (because of an error). May need to restore the terminal mode.
6118 */
6119 void
6120not_exiting()
6121{
6122 exiting = FALSE;
6123 settmode(TMODE_RAW);
6124}
6125
6126/*
6127 * ":quit": quit current window, quit Vim if closed the last window.
6128 */
6129 static void
6130ex_quit(eap)
6131 exarg_T *eap;
6132{
6133#ifdef FEAT_CMDWIN
6134 if (cmdwin_type != 0)
6135 {
6136 cmdwin_result = Ctrl_C;
6137 return;
6138 }
6139#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006140 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006141 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006142 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006143 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006144 return;
6145 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006146#ifdef FEAT_AUTOCMD
6147 if (curbuf_locked())
6148 return;
6149#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150
6151#ifdef FEAT_NETBEANS_INTG
6152 netbeansForcedQuit = eap->forceit;
6153#endif
6154
6155 /*
6156 * If there are more files or windows we won't exit.
6157 */
6158 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6159 exiting = TRUE;
6160 if ((!P_HID(curbuf)
6161 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6162 || check_more(TRUE, eap->forceit) == FAIL
6163 || (only_one_window() && check_changed_any(eap->forceit)))
6164 {
6165 not_exiting();
6166 }
6167 else
6168 {
6169#ifdef FEAT_WINDOWS
6170 if (only_one_window()) /* quit last window */
6171#endif
6172 getout(0);
6173#ifdef FEAT_WINDOWS
6174# ifdef FEAT_GUI
6175 need_mouse_correct = TRUE;
6176# endif
6177 /* close window; may free buffer */
6178 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6179#endif
6180 }
6181}
6182
6183/*
6184 * ":cquit".
6185 */
6186/*ARGSUSED*/
6187 static void
6188ex_cquit(eap)
6189 exarg_T *eap;
6190{
6191 getout(1); /* this does not always pass on the exit code to the Manx
6192 compiler. why? */
6193}
6194
6195/*
6196 * ":qall": try to quit all windows
6197 */
6198 static void
6199ex_quit_all(eap)
6200 exarg_T *eap;
6201{
6202# ifdef FEAT_CMDWIN
6203 if (cmdwin_type != 0)
6204 {
6205 if (eap->forceit)
6206 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6207 else
6208 cmdwin_result = K_XF2;
6209 return;
6210 }
6211# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006212
6213 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006214 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006215 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006216 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006217 return;
6218 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006219#ifdef FEAT_AUTOCMD
6220 if (curbuf_locked())
6221 return;
6222#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006223
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 exiting = TRUE;
6225 if (eap->forceit || !check_changed_any(FALSE))
6226 getout(0);
6227 not_exiting();
6228}
6229
Bram Moolenaard9967712006-03-11 21:18:15 +00006230#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231/*
6232 * ":close": close current window, unless it is the last one
6233 */
6234 static void
6235ex_close(eap)
6236 exarg_T *eap;
6237{
6238# ifdef FEAT_CMDWIN
6239 if (cmdwin_type != 0)
6240 cmdwin_result = K_IGNORE;
6241 else
6242# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006243 if (!text_locked()
6244#ifdef FEAT_AUTOCMD
6245 && !curbuf_locked()
6246#endif
6247 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006248 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249}
6250
Bram Moolenaard9967712006-03-11 21:18:15 +00006251# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006252/*
6253 * ":pclose": Close any preview window.
6254 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006256ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006258{
6259 win_T *win;
6260
6261 for (win = firstwin; win != NULL; win = win->w_next)
6262 if (win->w_p_pvw)
6263 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006264 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006265 break;
6266 }
6267}
Bram Moolenaard9967712006-03-11 21:18:15 +00006268# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006269
Bram Moolenaarf740b292006-02-16 22:11:02 +00006270/*
6271 * Close window "win" and take care of handling closing the last window for a
6272 * modified buffer.
6273 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006274 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006275ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006276 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006278 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279{
6280 int need_hide;
6281 buf_T *buf = win->w_buffer;
6282
6283 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006284 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006286# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 if ((p_confirm || cmdmod.confirm) && p_write)
6288 {
6289 dialog_changed(buf, FALSE);
6290 if (buf_valid(buf) && bufIsChanged(buf))
6291 return;
6292 need_hide = FALSE;
6293 }
6294 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006295# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 {
6297 EMSG(_(e_nowrtmsg));
6298 return;
6299 }
6300 }
6301
Bram Moolenaard9967712006-03-11 21:18:15 +00006302# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006304# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006305
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006307 if (tp == NULL)
6308 win_close(win, !need_hide && !P_HID(buf));
6309 else
6310 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311}
6312
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006314 * ":tabclose": close current tab page, unless it is the last one.
6315 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316 */
6317 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006318ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006319 exarg_T *eap;
6320{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006321 tabpage_T *tp;
6322
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006323# ifdef FEAT_CMDWIN
6324 if (cmdwin_type != 0)
6325 cmdwin_result = K_IGNORE;
6326 else
6327# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006328 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006329 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006330 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006332 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006333 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006334 tp = find_tabpage((int)eap->line2);
6335 if (tp == NULL)
6336 {
6337 beep_flush();
6338 return;
6339 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006340 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006341 {
6342 tabpage_close_other(tp, eap->forceit);
6343 return;
6344 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006345 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006346 if (!text_locked()
6347#ifdef FEAT_AUTOCMD
6348 && !curbuf_locked()
6349#endif
6350 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006351 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006353}
6354
6355/*
6356 * ":tabonly": close all tab pages except the current one
6357 */
6358 static void
6359ex_tabonly(eap)
6360 exarg_T *eap;
6361{
6362 tabpage_T *tp;
6363 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006364
6365# ifdef FEAT_CMDWIN
6366 if (cmdwin_type != 0)
6367 cmdwin_result = K_IGNORE;
6368 else
6369# endif
6370 if (first_tabpage->tp_next == NULL)
6371 MSG(_("Already only one tab page"));
6372 else
6373 {
6374 /* Repeat this up to a 1000 times, because autocommands may mess
6375 * up the lists. */
6376 for (done = 0; done < 1000; ++done)
6377 {
6378 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6379 if (tp->tp_topframe != topframe)
6380 {
6381 tabpage_close_other(tp, eap->forceit);
6382 /* if we failed to close it quit */
6383 if (valid_tabpage(tp))
6384 done = 1000;
6385 /* start over, "tp" is now invalid */
6386 break;
6387 }
6388 if (first_tabpage->tp_next == NULL)
6389 break;
6390 }
6391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006393
6394/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006395 * Close the current tab page.
6396 */
6397 void
6398tabpage_close(forceit)
6399 int forceit;
6400{
6401 /* First close all the windows but the current one. If that worked then
6402 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006403 if (lastwin != firstwin)
6404 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006405 if (lastwin == firstwin)
6406 ex_win_close(forceit, curwin, NULL);
6407# ifdef FEAT_GUI
6408 need_mouse_correct = TRUE;
6409# endif
6410}
6411
6412/*
6413 * Close tab page "tp", which is not the current tab page.
6414 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006415 * Also takes care of the tab pages line disappearing when closing the
6416 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006417 */
6418 void
6419tabpage_close_other(tp, forceit)
6420 tabpage_T *tp;
6421 int forceit;
6422{
6423 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006424 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006425 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006426
6427 /* Limit to 1000 windows, autocommands may add a window while we close
6428 * one. OK, so I'm paranoid... */
6429 while (++done < 1000)
6430 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006431 wp = tp->tp_firstwin;
6432 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006433
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006434 /* Autocommands may delete the tab page under our fingers and we may
6435 * fail to close a window with a modified buffer. */
6436 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006437 break;
6438 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006439
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006440 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006441 if (h != tabline_height())
6442 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006443}
6444
6445/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006446 * ":only".
6447 */
6448 static void
6449ex_only(eap)
6450 exarg_T *eap;
6451{
6452# ifdef FEAT_GUI
6453 need_mouse_correct = TRUE;
6454# endif
6455 close_others(TRUE, eap->forceit);
6456}
6457
6458/*
6459 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006460 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006462 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463ex_all(eap)
6464 exarg_T *eap;
6465{
6466 if (eap->addr_count == 0)
6467 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006468 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469}
6470#endif /* FEAT_WINDOWS */
6471
6472 static void
6473ex_hide(eap)
6474 exarg_T *eap;
6475{
6476 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6477 eap->errmsg = e_invarg;
6478 else
6479 {
6480 /* ":hide" or ":hide | cmd": hide current window */
6481 eap->nextcmd = check_nextcmd(eap->arg);
6482#ifdef FEAT_WINDOWS
6483 if (!eap->skip)
6484 {
6485# ifdef FEAT_GUI
6486 need_mouse_correct = TRUE;
6487# endif
6488 win_close(curwin, FALSE); /* don't free buffer */
6489 }
6490#endif
6491 }
6492}
6493
6494/*
6495 * ":stop" and ":suspend": Suspend Vim.
6496 */
6497 static void
6498ex_stop(eap)
6499 exarg_T *eap;
6500{
6501 /*
6502 * Disallow suspending for "rvim".
6503 */
6504 if (!check_restricted()
6505#ifdef WIN3264
6506 /*
6507 * Check if external commands are allowed now.
6508 */
6509 && can_end_termcap_mode(TRUE)
6510#endif
6511 )
6512 {
6513 if (!eap->forceit)
6514 autowrite_all();
6515 windgoto((int)Rows - 1, 0);
6516 out_char('\n');
6517 out_flush();
6518 stoptermcap();
6519 out_flush(); /* needed for SUN to restore xterm buffer */
6520#ifdef FEAT_TITLE
6521 mch_restore_title(3); /* restore window titles */
6522#endif
6523 ui_suspend(); /* call machine specific function */
6524#ifdef FEAT_TITLE
6525 maketitle();
6526 resettitle(); /* force updating the title */
6527#endif
6528 starttermcap();
6529 scroll_start(); /* scroll screen before redrawing */
6530 redraw_later_clear();
6531 shell_resized(); /* may have resized window */
6532 }
6533}
6534
6535/*
6536 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6537 */
6538 static void
6539ex_exit(eap)
6540 exarg_T *eap;
6541{
6542#ifdef FEAT_CMDWIN
6543 if (cmdwin_type != 0)
6544 {
6545 cmdwin_result = Ctrl_C;
6546 return;
6547 }
6548#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006549 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006550 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006551 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006552 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006553 return;
6554 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006555#ifdef FEAT_AUTOCMD
6556 if (curbuf_locked())
6557 return;
6558#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559
6560 /*
6561 * if more files or windows we won't exit
6562 */
6563 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6564 exiting = TRUE;
6565 if ( ((eap->cmdidx == CMD_wq
6566 || curbufIsChanged())
6567 && do_write(eap) == FAIL)
6568 || check_more(TRUE, eap->forceit) == FAIL
6569 || (only_one_window() && check_changed_any(eap->forceit)))
6570 {
6571 not_exiting();
6572 }
6573 else
6574 {
6575#ifdef FEAT_WINDOWS
6576 if (only_one_window()) /* quit last window, exit Vim */
6577#endif
6578 getout(0);
6579#ifdef FEAT_WINDOWS
6580# ifdef FEAT_GUI
6581 need_mouse_correct = TRUE;
6582# endif
6583 /* quit current window, may free buffer */
6584 win_close(curwin, !P_HID(curwin->w_buffer));
6585#endif
6586 }
6587}
6588
6589/*
6590 * ":print", ":list", ":number".
6591 */
6592 static void
6593ex_print(eap)
6594 exarg_T *eap;
6595{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006596 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6597 EMSG(_(e_emptybuf));
6598 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006600 for ( ;!got_int; ui_breakcheck())
6601 {
6602 print_line(eap->line1,
6603 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6604 || (eap->flags & EXFLAG_NR)),
6605 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6606 if (++eap->line1 > eap->line2)
6607 break;
6608 out_flush(); /* show one line at a time */
6609 }
6610 setpcmark();
6611 /* put cursor at last line */
6612 curwin->w_cursor.lnum = eap->line2;
6613 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614 }
6615
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617}
6618
6619#ifdef FEAT_BYTEOFF
6620 static void
6621ex_goto(eap)
6622 exarg_T *eap;
6623{
6624 goto_byte(eap->line2);
6625}
6626#endif
6627
6628/*
6629 * ":shell".
6630 */
6631/*ARGSUSED*/
6632 static void
6633ex_shell(eap)
6634 exarg_T *eap;
6635{
6636 do_shell(NULL, 0);
6637}
6638
6639#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6640 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006641 || defined(FEAT_GUI_MSWIN) \
6642 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643 || defined(PROTO)
6644
6645/*
6646 * Handle a file drop. The code is here because a drop is *nearly* like an
6647 * :args command, but not quite (we have a list of exact filenames, so we
6648 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6649 * code is very similar to :args and hence needs access to a lot of the static
6650 * functions in this file.
6651 *
6652 * The list should be allocated using alloc(), as should each item in the
6653 * list. This function takes over responsibility for freeing the list.
6654 *
6655 * XXX The list is made into the arggument list. This is freed using
6656 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6657 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6658 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6659 * file functionality is (currently) not in EMX this is not presently a
6660 * problem.
6661 */
6662 void
6663handle_drop(filec, filev, split)
6664 int filec; /* the number of files dropped */
6665 char_u **filev; /* the list of files dropped */
6666 int split; /* force splitting the window */
6667{
6668 exarg_T ea;
6669 int save_msg_scroll = msg_scroll;
6670
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006671 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006672 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006673 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006674#ifdef FEAT_AUTOCMD
6675 if (curbuf_locked())
6676 return;
6677#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678
6679 /* Check whether the current buffer is changed. If so, we will need
6680 * to split the current window or data could be lost.
6681 * We don't need to check if the 'hidden' option is set, as in this
6682 * case the buffer won't be lost.
6683 */
6684 if (!P_HID(curbuf) && !split)
6685 {
6686 ++emsg_off;
6687 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6688 --emsg_off;
6689 }
6690 if (split)
6691 {
6692# ifdef FEAT_WINDOWS
6693 if (win_split(0, 0) == FAIL)
6694 return;
6695# ifdef FEAT_SCROLLBIND
6696 curwin->w_p_scb = FALSE;
6697# endif
6698
6699 /* When splitting the window, create a new alist. Otherwise the
6700 * existing one is overwritten. */
6701 alist_unlink(curwin->w_alist);
6702 alist_new();
6703# else
6704 return; /* can't split, always fail */
6705# endif
6706 }
6707
6708 /*
6709 * Set up the new argument list.
6710 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006711 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712
6713 /*
6714 * Move to the first file.
6715 */
6716 /* Fake up a minimal "next" command for do_argfile() */
6717 vim_memset(&ea, 0, sizeof(ea));
6718 ea.cmd = (char_u *)"next";
6719 do_argfile(&ea, 0);
6720
6721 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6722 * mode that is not needed here. */
6723 need_start_insertmode = FALSE;
6724
6725 /* Restore msg_scroll, otherwise a following command may cause scrolling
6726 * unexpectedly. The screen will be redrawn by the caller, thus
6727 * msg_scroll being set by displaying a message is irrelevant. */
6728 msg_scroll = save_msg_scroll;
6729}
6730#endif
6731
Bram Moolenaar071d4272004-06-13 20:20:40 +00006732/*
6733 * Clear an argument list: free all file names and reset it to zero entries.
6734 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006735 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736alist_clear(al)
6737 alist_T *al;
6738{
6739 while (--al->al_ga.ga_len >= 0)
6740 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6741 ga_clear(&al->al_ga);
6742}
6743
6744/*
6745 * Init an argument list.
6746 */
6747 void
6748alist_init(al)
6749 alist_T *al;
6750{
6751 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6752}
6753
6754#if defined(FEAT_WINDOWS) || defined(PROTO)
6755
6756/*
6757 * Remove a reference from an argument list.
6758 * Ignored when the argument list is the global one.
6759 * If the argument list is no longer used by any window, free it.
6760 */
6761 void
6762alist_unlink(al)
6763 alist_T *al;
6764{
6765 if (al != &global_alist && --al->al_refcount <= 0)
6766 {
6767 alist_clear(al);
6768 vim_free(al);
6769 }
6770}
6771
6772# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6773/*
6774 * Create a new argument list and use it for the current window.
6775 */
6776 void
6777alist_new()
6778{
6779 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6780 if (curwin->w_alist == NULL)
6781 {
6782 curwin->w_alist = &global_alist;
6783 ++global_alist.al_refcount;
6784 }
6785 else
6786 {
6787 curwin->w_alist->al_refcount = 1;
6788 alist_init(curwin->w_alist);
6789 }
6790}
6791# endif
6792#endif
6793
6794#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6795/*
6796 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006797 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6798 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006799 */
6800 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006801alist_expand(fnum_list, fnum_len)
6802 int *fnum_list;
6803 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006804{
6805 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006806 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807 char_u **new_arg_files;
6808 int new_arg_file_count;
6809 char_u *save_p_su = p_su;
6810 int i;
6811
6812 /* Don't use 'suffixes' here. This should work like the shell did the
6813 * expansion. Also, the vimrc file isn't read yet, thus the user
6814 * can't set the options. */
6815 p_su = empty_option;
6816 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6817 if (old_arg_files != NULL)
6818 {
6819 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006820 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6821 old_arg_count = GARGCOUNT;
6822 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006823 &new_arg_file_count, &new_arg_files,
6824 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6825 && new_arg_file_count > 0)
6826 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006827 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6828 TRUE, fnum_list, fnum_len);
6829 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006831 }
6832 p_su = save_p_su;
6833}
6834#endif
6835
6836/*
6837 * Set the argument list for the current window.
6838 * Takes over the allocated files[] and the allocated fnames in it.
6839 */
6840 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006841alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 alist_T *al;
6843 int count;
6844 char_u **files;
6845 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006846 int *fnum_list;
6847 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848{
6849 int i;
6850
6851 alist_clear(al);
6852 if (ga_grow(&al->al_ga, count) == OK)
6853 {
6854 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006855 {
6856 if (got_int)
6857 {
6858 /* When adding many buffers this can take a long time. Allow
6859 * interrupting here. */
6860 while (i < count)
6861 vim_free(files[i++]);
6862 break;
6863 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006864
6865 /* May set buffer name of a buffer previously used for the
6866 * argument list, so that it's re-used by alist_add. */
6867 if (fnum_list != NULL && i < fnum_len)
6868 buf_set_name(fnum_list[i], files[i]);
6869
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006871 ui_breakcheck();
6872 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 vim_free(files);
6874 }
6875 else
6876 FreeWild(count, files);
6877#ifdef FEAT_WINDOWS
6878 if (al == &global_alist)
6879#endif
6880 arg_had_last = FALSE;
6881}
6882
6883/*
6884 * Add file "fname" to argument list "al".
6885 * "fname" must have been allocated and "al" must have been checked for room.
6886 */
6887 void
6888alist_add(al, fname, set_fnum)
6889 alist_T *al;
6890 char_u *fname;
6891 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6892{
6893 if (fname == NULL) /* don't add NULL file names */
6894 return;
6895#ifdef BACKSLASH_IN_FILENAME
6896 slash_adjust(fname);
6897#endif
6898 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6899 if (set_fnum > 0)
6900 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6901 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6902 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903}
6904
6905#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6906/*
6907 * Adjust slashes in file names. Called after 'shellslash' was set.
6908 */
6909 void
6910alist_slash_adjust()
6911{
6912 int i;
6913# ifdef FEAT_WINDOWS
6914 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006915 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006916# endif
6917
6918 for (i = 0; i < GARGCOUNT; ++i)
6919 if (GARGLIST[i].ae_fname != NULL)
6920 slash_adjust(GARGLIST[i].ae_fname);
6921# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006922 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923 if (wp->w_alist != &global_alist)
6924 for (i = 0; i < WARGCOUNT(wp); ++i)
6925 if (WARGLIST(wp)[i].ae_fname != NULL)
6926 slash_adjust(WARGLIST(wp)[i].ae_fname);
6927# endif
6928}
6929#endif
6930
6931/*
6932 * ":preserve".
6933 */
6934/*ARGSUSED*/
6935 static void
6936ex_preserve(eap)
6937 exarg_T *eap;
6938{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006939 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940 ml_preserve(curbuf, TRUE);
6941}
6942
6943/*
6944 * ":recover".
6945 */
6946 static void
6947ex_recover(eap)
6948 exarg_T *eap;
6949{
6950 /* Set recoverymode right away to avoid the ATTENTION prompt. */
6951 recoverymode = TRUE;
6952 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
6953 && (*eap->arg == NUL
6954 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
6955 ml_recover();
6956 recoverymode = FALSE;
6957}
6958
6959/*
6960 * Command modifier used in a wrong way.
6961 */
6962 static void
6963ex_wrongmodifier(eap)
6964 exarg_T *eap;
6965{
6966 eap->errmsg = e_invcmd;
6967}
6968
6969#ifdef FEAT_WINDOWS
6970/*
6971 * :sview [+command] file split window with new file, read-only
6972 * :split [[+command] file] split window with current or new file
6973 * :vsplit [[+command] file] split window vertically with current or new file
6974 * :new [[+command] file] split window with no or new file
6975 * :vnew [[+command] file] split vertically window with no or new file
6976 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006977 *
6978 * :tabedit open new Tab page with empty window
6979 * :tabedit [+command] file open new Tab page and edit "file"
6980 * :tabnew [[+command] file] just like :tabedit
6981 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006982 */
6983 void
6984ex_splitview(eap)
6985 exarg_T *eap;
6986{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006987 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006988# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006990# endif
6991# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006993# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006995# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
6997 {
6998 ex_ni(eap);
6999 return;
7000 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007001# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007003# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007005# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007007# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007008 /* A ":split" in the quickfix window works like ":new". Don't want two
7009 * quickfix windows. */
7010 if (bt_quickfix(curbuf))
7011 {
7012 if (eap->cmdidx == CMD_split)
7013 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007014# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 if (eap->cmdidx == CMD_vsplit)
7016 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007017# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007019# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007020
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007021# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007022 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023 {
7024 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7025 FNAME_MESS, TRUE, curbuf->b_ffname);
7026 if (fname == NULL)
7027 goto theend;
7028 eap->arg = fname;
7029 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007030# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007032# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007034# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007036# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007038# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 && eap->cmdidx != CMD_new)
7040 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007041 if (
7042# ifdef FEAT_GUI
7043 !gui.in_use &&
7044# endif
7045 au_has_group((char_u *)"FileExplorer"))
7046 {
7047 /* No browsing supported but we do have the file explorer:
7048 * Edit the directory. */
7049 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7050 eap->arg = (char_u *)".";
7051 }
7052 else
7053 {
7054 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007055 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007056 if (fname == NULL)
7057 goto theend;
7058 eap->arg = fname;
7059 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 }
7061 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007062# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007064 /*
7065 * Either open new tab page or split the window.
7066 */
7067 if (eap->cmdidx == CMD_tabedit
7068 || eap->cmdidx == CMD_tabfind
7069 || eap->cmdidx == CMD_tabnew)
7070 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007071 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7072 : eap->addr_count == 0 ? 0
7073 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007074 {
7075 do_exedit(eap, NULL);
7076
7077 /* set the alternate buffer for the window we came from */
7078 if (curwin != old_curwin
7079 && win_valid(old_curwin)
7080 && old_curwin->w_buffer != curbuf
7081 && !cmdmod.keepalt)
7082 old_curwin->w_alt_fnum = curbuf->b_fnum;
7083 }
7084 }
7085 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7087 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007088# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007089 /* Reset 'scrollbind' when editing another file, but keep it when
7090 * doing ":split" without arguments. */
7091 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007092# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007094# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095 )
7096 curwin->w_p_scb = FALSE;
7097 else
7098 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007099# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007100 do_exedit(eap, old_curwin);
7101 }
7102
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007103# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007105# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007106
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007107# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108theend:
7109 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007110# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007111}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007112
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007113#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007114/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007115 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007116 */
7117 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007118tabpage_new()
7119{
7120 exarg_T ea;
7121
7122 vim_memset(&ea, 0, sizeof(ea));
7123 ea.cmdidx = CMD_tabnew;
7124 ea.cmd = (char_u *)"tabn";
7125 ea.arg = (char_u *)"";
7126 ex_splitview(&ea);
7127}
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007128#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007129
7130/*
7131 * :tabnext command
7132 */
7133 static void
7134ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007135 exarg_T *eap;
7136{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007137 switch (eap->cmdidx)
7138 {
7139 case CMD_tabfirst:
7140 case CMD_tabrewind:
7141 goto_tabpage(1);
7142 break;
7143 case CMD_tablast:
7144 goto_tabpage(9999);
7145 break;
7146 case CMD_tabprevious:
7147 case CMD_tabNext:
7148 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7149 break;
7150 default: /* CMD_tabnext */
7151 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7152 break;
7153 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007154}
7155
7156/*
7157 * :tabmove command
7158 */
7159 static void
7160ex_tabmove(eap)
7161 exarg_T *eap;
7162{
7163 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007164}
7165
7166/*
7167 * :tabs command: List tabs and their contents.
7168 */
7169/*ARGSUSED*/
7170 static void
7171ex_tabs(eap)
7172 exarg_T *eap;
7173{
7174 tabpage_T *tp;
7175 win_T *wp;
7176 int tabcount = 1;
7177
7178 msg_start();
7179 msg_scroll = TRUE;
7180 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7181 {
7182 msg_putchar('\n');
7183 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7184 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7185 out_flush(); /* output one line at a time */
7186 ui_breakcheck();
7187
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007188 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007189 wp = firstwin;
7190 else
7191 wp = tp->tp_firstwin;
7192 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7193 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007194 msg_putchar('\n');
7195 msg_putchar(wp == curwin ? '>' : ' ');
7196 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007197 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7198 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007199 if (buf_spname(wp->w_buffer) != NULL)
7200 STRCPY(IObuff, buf_spname(wp->w_buffer));
7201 else
7202 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7203 IObuff, IOSIZE, TRUE);
7204 msg_outtrans(IObuff);
7205 out_flush(); /* output one line at a time */
7206 ui_breakcheck();
7207 }
7208 }
7209}
7210
7211#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007212
7213/*
7214 * ":mode": Set screen mode.
7215 * If no argument given, just get the screen size and redraw.
7216 */
7217 static void
7218ex_mode(eap)
7219 exarg_T *eap;
7220{
7221 if (*eap->arg == NUL)
7222 shell_resized();
7223 else
7224 mch_screenmode(eap->arg);
7225}
7226
7227#ifdef FEAT_WINDOWS
7228/*
7229 * ":resize".
7230 * set, increment or decrement current window height
7231 */
7232 static void
7233ex_resize(eap)
7234 exarg_T *eap;
7235{
7236 int n;
7237 win_T *wp = curwin;
7238
7239 if (eap->addr_count > 0)
7240 {
7241 n = eap->line2;
7242 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7243 ;
7244 }
7245
7246#ifdef FEAT_GUI
7247 need_mouse_correct = TRUE;
7248#endif
7249 n = atol((char *)eap->arg);
7250#ifdef FEAT_VERTSPLIT
7251 if (cmdmod.split & WSP_VERT)
7252 {
7253 if (*eap->arg == '-' || *eap->arg == '+')
7254 n += W_WIDTH(curwin);
7255 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7256 n = 9999;
7257 win_setwidth_win((int)n, wp);
7258 }
7259 else
7260#endif
7261 {
7262 if (*eap->arg == '-' || *eap->arg == '+')
7263 n += curwin->w_height;
7264 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7265 n = 9999;
7266 win_setheight_win((int)n, wp);
7267 }
7268}
7269#endif
7270
7271/*
7272 * ":find [+command] <file>" command.
7273 */
7274 static void
7275ex_find(eap)
7276 exarg_T *eap;
7277{
7278#ifdef FEAT_SEARCHPATH
7279 char_u *fname;
7280 int count;
7281
7282 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7283 TRUE, curbuf->b_ffname);
7284 if (eap->addr_count > 0)
7285 {
7286 /* Repeat finding the file "count" times. This matters when it
7287 * appears several times in the path. */
7288 count = eap->line2;
7289 while (fname != NULL && --count > 0)
7290 {
7291 vim_free(fname);
7292 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7293 FALSE, curbuf->b_ffname);
7294 }
7295 }
7296
7297 if (fname != NULL)
7298 {
7299 eap->arg = fname;
7300#endif
7301 do_exedit(eap, NULL);
7302#ifdef FEAT_SEARCHPATH
7303 vim_free(fname);
7304 }
7305#endif
7306}
7307
7308/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007309 * ":open" simulation: for now just work like ":visual".
7310 */
7311 static void
7312ex_open(eap)
7313 exarg_T *eap;
7314{
7315 regmatch_T regmatch;
7316 char_u *p;
7317
7318 curwin->w_cursor.lnum = eap->line2;
7319 beginline(BL_SOL | BL_FIX);
7320 if (*eap->arg == '/')
7321 {
7322 /* ":open /pattern/": put cursor in column found with pattern */
7323 ++eap->arg;
7324 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7325 *p = NUL;
7326 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7327 if (regmatch.regprog != NULL)
7328 {
7329 regmatch.rm_ic = p_ic;
7330 p = ml_get_curline();
7331 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007332 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007333 else
7334 EMSG(_(e_nomatch));
7335 vim_free(regmatch.regprog);
7336 }
7337 /* Move to the NUL, ignore any other arguments. */
7338 eap->arg += STRLEN(eap->arg);
7339 }
7340 check_cursor();
7341
7342 eap->cmdidx = CMD_visual;
7343 do_exedit(eap, NULL);
7344}
7345
7346/*
7347 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348 */
7349 static void
7350ex_edit(eap)
7351 exarg_T *eap;
7352{
7353 do_exedit(eap, NULL);
7354}
7355
7356/*
7357 * ":edit <file>" command and alikes.
7358 */
7359/*ARGSUSED*/
7360 void
7361do_exedit(eap, old_curwin)
7362 exarg_T *eap;
7363 win_T *old_curwin; /* curwin before doing a split or NULL */
7364{
7365 int n;
7366#ifdef FEAT_WINDOWS
7367 int need_hide;
7368#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007369 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007370
7371 /*
7372 * ":vi" command ends Ex mode.
7373 */
7374 if (exmode_active && (eap->cmdidx == CMD_visual
7375 || eap->cmdidx == CMD_view))
7376 {
7377 exmode_active = FALSE;
7378 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007379 {
7380 /* Special case: ":global/pat/visual\NLvi-commands" */
7381 if (global_busy)
7382 {
7383 int rd = RedrawingDisabled;
7384 int nwr = no_wait_return;
7385 int ms = msg_scroll;
7386#ifdef FEAT_GUI
7387 int he = hold_gui_events;
7388#endif
7389
7390 if (eap->nextcmd != NULL)
7391 {
7392 stuffReadbuff(eap->nextcmd);
7393 eap->nextcmd = NULL;
7394 }
7395
7396 if (exmode_was != EXMODE_VIM)
7397 settmode(TMODE_RAW);
7398 RedrawingDisabled = 0;
7399 no_wait_return = 0;
7400 need_wait_return = FALSE;
7401 msg_scroll = 0;
7402#ifdef FEAT_GUI
7403 hold_gui_events = 0;
7404#endif
7405 must_redraw = CLEAR;
7406
7407 main_loop(FALSE, TRUE);
7408
7409 RedrawingDisabled = rd;
7410 no_wait_return = nwr;
7411 msg_scroll = ms;
7412#ifdef FEAT_GUI
7413 hold_gui_events = he;
7414#endif
7415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007416 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007417 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007418 }
7419
7420 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007421 || eap->cmdidx == CMD_tabnew
7422 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007423#ifdef FEAT_VERTSPLIT
7424 || eap->cmdidx == CMD_vnew
7425#endif
7426 ) && *eap->arg == NUL)
7427 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007428 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007429 setpcmark();
7430 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7431 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7432 }
7433 else if ((eap->cmdidx != CMD_split
7434#ifdef FEAT_VERTSPLIT
7435 && eap->cmdidx != CMD_vsplit
7436#endif
7437 )
7438 || *eap->arg != NUL
7439#ifdef FEAT_BROWSE
7440 || cmdmod.browse
7441#endif
7442 )
7443 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007444#ifdef FEAT_AUTOCMD
7445 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7446 * can bring us here, others are stopped earlier. */
7447 if (*eap->arg != NUL && curbuf_locked())
7448 return;
7449#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450 n = readonlymode;
7451 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7452 readonlymode = TRUE;
7453 else if (eap->cmdidx == CMD_enew)
7454 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7455 empty buffer */
7456 setpcmark();
7457 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7458 NULL, eap,
7459 /* ":edit" goes to first line if Vi compatible */
7460 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7461 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7462 ? ECMD_ONE : eap->do_ecmd_lnum,
7463 (P_HID(curbuf) ? ECMD_HIDE : 0)
7464 + (eap->forceit ? ECMD_FORCEIT : 0)
7465#ifdef FEAT_LISTCMDS
7466 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7467#endif
7468 ) == FAIL)
7469 {
7470 /* Editing the file failed. If the window was split, close it. */
7471#ifdef FEAT_WINDOWS
7472 if (old_curwin != NULL)
7473 {
7474 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7475 if (!need_hide || P_HID(curbuf))
7476 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007477# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7478 cleanup_T cs;
7479
7480 /* Reset the error/interrupt/exception state here so that
7481 * aborting() returns FALSE when closing a window. */
7482 enter_cleanup(&cs);
7483# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007484# ifdef FEAT_GUI
7485 need_mouse_correct = TRUE;
7486# endif
7487 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007488
7489# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7490 /* Restore the error/interrupt/exception state if not
7491 * discarded by a new aborting error, interrupt, or
7492 * uncaught exception. */
7493 leave_cleanup(&cs);
7494# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007495 }
7496 }
7497#endif
7498 }
7499 else if (readonlymode && curbuf->b_nwindows == 1)
7500 {
7501 /* When editing an already visited buffer, 'readonly' won't be set
7502 * but the previous value is kept. With ":view" and ":sview" we
7503 * want the file to be readonly, except when another window is
7504 * editing the same buffer. */
7505 curbuf->b_p_ro = TRUE;
7506 }
7507 readonlymode = n;
7508 }
7509 else
7510 {
7511 if (eap->do_ecmd_cmd != NULL)
7512 do_cmdline_cmd(eap->do_ecmd_cmd);
7513#ifdef FEAT_TITLE
7514 n = curwin->w_arg_idx_invalid;
7515#endif
7516 check_arg_idx(curwin);
7517#ifdef FEAT_TITLE
7518 if (n != curwin->w_arg_idx_invalid)
7519 maketitle();
7520#endif
7521 }
7522
7523#ifdef FEAT_WINDOWS
7524 /*
7525 * if ":split file" worked, set alternate file name in old window to new
7526 * file
7527 */
7528 if (old_curwin != NULL
7529 && *eap->arg != NUL
7530 && curwin != old_curwin
7531 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007532 && old_curwin->w_buffer != curbuf
7533 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007534 old_curwin->w_alt_fnum = curbuf->b_fnum;
7535#endif
7536
7537 ex_no_reprint = TRUE;
7538}
7539
7540#ifndef FEAT_GUI
7541/*
7542 * ":gui" and ":gvim" when there is no GUI.
7543 */
7544 static void
7545ex_nogui(eap)
7546 exarg_T *eap;
7547{
7548 eap->errmsg = e_nogvim;
7549}
7550#endif
7551
7552#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7553 static void
7554ex_tearoff(eap)
7555 exarg_T *eap;
7556{
7557 gui_make_tearoff(eap->arg);
7558}
7559#endif
7560
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007561#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562 static void
7563ex_popup(eap)
7564 exarg_T *eap;
7565{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007566 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007567}
7568#endif
7569
7570/*ARGSUSED*/
7571 static void
7572ex_swapname(eap)
7573 exarg_T *eap;
7574{
7575 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7576 MSG(_("No swap file"));
7577 else
7578 msg(curbuf->b_ml.ml_mfp->mf_fname);
7579}
7580
7581/*
7582 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7583 * offset.
7584 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7585 */
7586/*ARGSUSED*/
7587 static void
7588ex_syncbind(eap)
7589 exarg_T *eap;
7590{
7591#ifdef FEAT_SCROLLBIND
7592 win_T *wp;
7593 long topline;
7594 long y;
7595 linenr_T old_linenr = curwin->w_cursor.lnum;
7596
7597 setpcmark();
7598
7599 /*
7600 * determine max topline
7601 */
7602 if (curwin->w_p_scb)
7603 {
7604 topline = curwin->w_topline;
7605 for (wp = firstwin; wp; wp = wp->w_next)
7606 {
7607 if (wp->w_p_scb && wp->w_buffer)
7608 {
7609 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7610 if (topline > y)
7611 topline = y;
7612 }
7613 }
7614 if (topline < 1)
7615 topline = 1;
7616 }
7617 else
7618 {
7619 topline = 1;
7620 }
7621
7622
7623 /*
7624 * set all scrollbind windows to the same topline
7625 */
7626 wp = curwin;
7627 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7628 {
7629 if (curwin->w_p_scb)
7630 {
7631 y = topline - curwin->w_topline;
7632 if (y > 0)
7633 scrollup(y, TRUE);
7634 else
7635 scrolldown(-y, TRUE);
7636 curwin->w_scbind_pos = topline;
7637 redraw_later(VALID);
7638 cursor_correct();
7639#ifdef FEAT_WINDOWS
7640 curwin->w_redr_status = TRUE;
7641#endif
7642 }
7643 }
7644 curwin = wp;
7645 if (curwin->w_p_scb)
7646 {
7647 did_syncbind = TRUE;
7648 checkpcmark();
7649 if (old_linenr != curwin->w_cursor.lnum)
7650 {
7651 char_u ctrl_o[2];
7652
7653 ctrl_o[0] = Ctrl_O;
7654 ctrl_o[1] = 0;
7655 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7656 }
7657 }
7658#endif
7659}
7660
7661
7662 static void
7663ex_read(eap)
7664 exarg_T *eap;
7665{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007666 int i;
7667 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7668 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007669
7670 if (eap->usefilter) /* :r!cmd */
7671 do_bang(1, eap, FALSE, FALSE, TRUE);
7672 else
7673 {
7674 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7675 return;
7676
7677#ifdef FEAT_BROWSE
7678 if (cmdmod.browse)
7679 {
7680 char_u *browseFile;
7681
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007682 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007683 NULL, NULL, NULL, curbuf);
7684 if (browseFile != NULL)
7685 {
7686 i = readfile(browseFile, NULL,
7687 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7688 vim_free(browseFile);
7689 }
7690 else
7691 i = OK;
7692 }
7693 else
7694#endif
7695 if (*eap->arg == NUL)
7696 {
7697 if (check_fname() == FAIL) /* check for no file name */
7698 return;
7699 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7700 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7701 }
7702 else
7703 {
7704 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7705 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7706 i = readfile(eap->arg, NULL,
7707 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7708
7709 }
7710 if (i == FAIL)
7711 {
7712#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7713 if (!aborting())
7714#endif
7715 EMSG2(_(e_notopen), eap->arg);
7716 }
7717 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007718 {
7719 if (empty && exmode_active)
7720 {
7721 /* Delete the empty line that remains. Historically ex does
7722 * this but vi doesn't. */
7723 if (eap->line2 == 0)
7724 lnum = curbuf->b_ml.ml_line_count;
7725 else
7726 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007727 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007728 {
7729 ml_delete(lnum, FALSE);
7730 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007731 if (curwin->w_cursor.lnum > 1
7732 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007733 --curwin->w_cursor.lnum;
7734 }
7735 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007736 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007737 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007738 }
7739}
7740
Bram Moolenaarea408852005-06-25 22:49:46 +00007741static char_u *prev_dir = NULL;
7742
7743#if defined(EXITFREE) || defined(PROTO)
7744 void
7745free_cd_dir()
7746{
7747 vim_free(prev_dir);
7748}
7749#endif
7750
7751
Bram Moolenaar071d4272004-06-13 20:20:40 +00007752/*
7753 * ":cd", ":lcd", ":chdir" and ":lchdir".
7754 */
7755 static void
7756ex_cd(eap)
7757 exarg_T *eap;
7758{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007759 char_u *new_dir;
7760 char_u *tofree;
7761
7762 new_dir = eap->arg;
7763#if !defined(UNIX) && !defined(VMS)
7764 /* for non-UNIX ":cd" means: print current directory */
7765 if (*new_dir == NUL)
7766 ex_pwd(NULL);
7767 else
7768#endif
7769 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007770 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7771 && !eap->forceit)
7772 {
7773 EMSG(_("E747: Cannot change directory, buffer is modifed (add ! to override)"));
7774 return;
7775 }
7776
Bram Moolenaar071d4272004-06-13 20:20:40 +00007777 /* ":cd -": Change to previous directory */
7778 if (STRCMP(new_dir, "-") == 0)
7779 {
7780 if (prev_dir == NULL)
7781 {
7782 EMSG(_("E186: No previous directory"));
7783 return;
7784 }
7785 new_dir = prev_dir;
7786 }
7787
7788 /* Save current directory for next ":cd -" */
7789 tofree = prev_dir;
7790 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7791 prev_dir = vim_strsave(NameBuff);
7792 else
7793 prev_dir = NULL;
7794
7795#if defined(UNIX) || defined(VMS)
7796 /* for UNIX ":cd" means: go to home directory */
7797 if (*new_dir == NUL)
7798 {
7799 /* use NameBuff for home directory name */
7800# ifdef VMS
7801 char_u *p;
7802
7803 p = mch_getenv((char_u *)"SYS$LOGIN");
7804 if (p == NULL || *p == NUL) /* empty is the same as not set */
7805 NameBuff[0] = NUL;
7806 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007807 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007808# else
7809 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7810# endif
7811 new_dir = NameBuff;
7812 }
7813#endif
7814 if (new_dir == NULL || vim_chdir(new_dir))
7815 EMSG(_(e_failed));
7816 else
7817 {
7818 vim_free(curwin->w_localdir);
7819 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7820 {
7821 /* If still in global directory, need to remember current
7822 * directory as global directory. */
7823 if (globaldir == NULL && prev_dir != NULL)
7824 globaldir = vim_strsave(prev_dir);
7825 /* Remember this local directory for the window. */
7826 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7827 curwin->w_localdir = vim_strsave(NameBuff);
7828 }
7829 else
7830 {
7831 /* We are now in the global directory, no need to remember its
7832 * name. */
7833 vim_free(globaldir);
7834 globaldir = NULL;
7835 curwin->w_localdir = NULL;
7836 }
7837
7838 shorten_fnames(TRUE);
7839
7840 /* Echo the new current directory if the command was typed. */
7841 if (KeyTyped)
7842 ex_pwd(eap);
7843 }
7844 vim_free(tofree);
7845 }
7846}
7847
7848/*
7849 * ":pwd".
7850 */
7851/*ARGSUSED*/
7852 static void
7853ex_pwd(eap)
7854 exarg_T *eap;
7855{
7856 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7857 {
7858#ifdef BACKSLASH_IN_FILENAME
7859 slash_adjust(NameBuff);
7860#endif
7861 msg(NameBuff);
7862 }
7863 else
7864 EMSG(_("E187: Unknown"));
7865}
7866
7867/*
7868 * ":=".
7869 */
7870 static void
7871ex_equal(eap)
7872 exarg_T *eap;
7873{
7874 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007875 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007876}
7877
7878 static void
7879ex_sleep(eap)
7880 exarg_T *eap;
7881{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007882 int n;
7883 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007884
7885 if (cursor_valid())
7886 {
7887 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7888 if (n >= 0)
7889 windgoto((int)n, curwin->w_wcol);
7890 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007891
7892 len = eap->line2;
7893 switch (*eap->arg)
7894 {
7895 case 'm': break;
7896 case NUL: len *= 1000L; break;
7897 default: EMSG2(_(e_invarg2), eap->arg); return;
7898 }
7899 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007900}
7901
7902/*
7903 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7904 */
7905 void
7906do_sleep(msec)
7907 long msec;
7908{
7909 long done;
7910
7911 cursor_on();
7912 out_flush();
7913 for (done = 0; !got_int && done < msec; done += 1000L)
7914 {
7915 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7916 ui_breakcheck();
7917 }
7918}
7919
7920 static void
7921do_exmap(eap, isabbrev)
7922 exarg_T *eap;
7923 int isabbrev;
7924{
7925 int mode;
7926 char_u *cmdp;
7927
7928 cmdp = eap->cmd;
7929 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7930
7931 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7932 eap->arg, mode, isabbrev))
7933 {
7934 case 1: EMSG(_(e_invarg));
7935 break;
7936 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7937 break;
7938 }
7939}
7940
7941/*
7942 * ":winsize" command (obsolete).
7943 */
7944 static void
7945ex_winsize(eap)
7946 exarg_T *eap;
7947{
7948 int w, h;
7949 char_u *arg = eap->arg;
7950 char_u *p;
7951
7952 w = getdigits(&arg);
7953 arg = skipwhite(arg);
7954 p = arg;
7955 h = getdigits(&arg);
7956 if (*p != NUL && *arg == NUL)
7957 set_shellsize(w, h, TRUE);
7958 else
7959 EMSG(_("E465: :winsize requires two number arguments"));
7960}
7961
7962#ifdef FEAT_WINDOWS
7963 static void
7964ex_wincmd(eap)
7965 exarg_T *eap;
7966{
7967 int xchar = NUL;
7968 char_u *p;
7969
7970 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
7971 {
7972 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
7973 if (eap->arg[1] == NUL)
7974 {
7975 EMSG(_(e_invarg));
7976 return;
7977 }
7978 xchar = eap->arg[1];
7979 p = eap->arg + 2;
7980 }
7981 else
7982 p = eap->arg + 1;
7983
7984 eap->nextcmd = check_nextcmd(p);
7985 p = skipwhite(p);
7986 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
7987 EMSG(_(e_invarg));
7988 else
7989 {
7990 /* Pass flags on for ":vertical wincmd ]". */
7991 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00007992 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007993 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
7994 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00007995 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007996 }
7997}
7998#endif
7999
Bram Moolenaar843ee412004-06-30 16:16:41 +00008000#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008001/*
8002 * ":winpos".
8003 */
8004 static void
8005ex_winpos(eap)
8006 exarg_T *eap;
8007{
8008 int x, y;
8009 char_u *arg = eap->arg;
8010 char_u *p;
8011
8012 if (*arg == NUL)
8013 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008014# if defined(FEAT_GUI) || defined(MSWIN)
8015# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008016 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008017# else
8018 if (mch_get_winpos(&x, &y) != FAIL)
8019# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008020 {
8021 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8022 msg(IObuff);
8023 }
8024 else
8025# endif
8026 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8027 }
8028 else
8029 {
8030 x = getdigits(&arg);
8031 arg = skipwhite(arg);
8032 p = arg;
8033 y = getdigits(&arg);
8034 if (*p == NUL || *arg != NUL)
8035 {
8036 EMSG(_("E466: :winpos requires two number arguments"));
8037 return;
8038 }
8039# ifdef FEAT_GUI
8040 if (gui.in_use)
8041 gui_mch_set_winpos(x, y);
8042 else if (gui.starting)
8043 {
8044 /* Remember the coordinates for when the window is opened. */
8045 gui_win_x = x;
8046 gui_win_y = y;
8047 }
8048# ifdef HAVE_TGETENT
8049 else
8050# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008051# else
8052# ifdef MSWIN
8053 mch_set_winpos(x, y);
8054# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008055# endif
8056# ifdef HAVE_TGETENT
8057 if (*T_CWP)
8058 term_set_winpos(x, y);
8059# endif
8060 }
8061}
8062#endif
8063
8064/*
8065 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8066 */
8067 static void
8068ex_operators(eap)
8069 exarg_T *eap;
8070{
8071 oparg_T oa;
8072
8073 clear_oparg(&oa);
8074 oa.regname = eap->regname;
8075 oa.start.lnum = eap->line1;
8076 oa.end.lnum = eap->line2;
8077 oa.line_count = eap->line2 - eap->line1 + 1;
8078 oa.motion_type = MLINE;
8079#ifdef FEAT_VIRTUALEDIT
8080 virtual_op = FALSE;
8081#endif
8082 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8083 {
8084 setpcmark();
8085 curwin->w_cursor.lnum = eap->line1;
8086 beginline(BL_SOL | BL_FIX);
8087 }
8088
8089 switch (eap->cmdidx)
8090 {
8091 case CMD_delete:
8092 oa.op_type = OP_DELETE;
8093 op_delete(&oa);
8094 break;
8095
8096 case CMD_yank:
8097 oa.op_type = OP_YANK;
8098 (void)op_yank(&oa, FALSE, TRUE);
8099 break;
8100
8101 default: /* CMD_rshift or CMD_lshift */
8102 if ((eap->cmdidx == CMD_rshift)
8103#ifdef FEAT_RIGHTLEFT
8104 ^ curwin->w_p_rl
8105#endif
8106 )
8107 oa.op_type = OP_RSHIFT;
8108 else
8109 oa.op_type = OP_LSHIFT;
8110 op_shift(&oa, FALSE, eap->amount);
8111 break;
8112 }
8113#ifdef FEAT_VIRTUALEDIT
8114 virtual_op = MAYBE;
8115#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008116 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008117}
8118
8119/*
8120 * ":put".
8121 */
8122 static void
8123ex_put(eap)
8124 exarg_T *eap;
8125{
8126 /* ":0put" works like ":1put!". */
8127 if (eap->line2 == 0)
8128 {
8129 eap->line2 = 1;
8130 eap->forceit = TRUE;
8131 }
8132 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008133 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8134 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008135}
8136
8137/*
8138 * Handle ":copy" and ":move".
8139 */
8140 static void
8141ex_copymove(eap)
8142 exarg_T *eap;
8143{
8144 long n;
8145
8146 n = get_address(&eap->arg, FALSE, FALSE);
8147 if (eap->arg == NULL) /* error detected */
8148 {
8149 eap->nextcmd = NULL;
8150 return;
8151 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008152 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008153
8154 /*
8155 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8156 */
8157 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8158 {
8159 EMSG(_(e_invaddr));
8160 return;
8161 }
8162
8163 if (eap->cmdidx == CMD_move)
8164 {
8165 if (do_move(eap->line1, eap->line2, n) == FAIL)
8166 return;
8167 }
8168 else
8169 ex_copy(eap->line1, eap->line2, n);
8170 u_clearline();
8171 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008172 ex_may_print(eap);
8173}
8174
8175/*
8176 * Print the current line if flags were given to the Ex command.
8177 */
8178 static void
8179ex_may_print(eap)
8180 exarg_T *eap;
8181{
8182 if (eap->flags != 0)
8183 {
8184 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8185 (eap->flags & EXFLAG_LIST));
8186 ex_no_reprint = TRUE;
8187 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008188}
8189
8190/*
8191 * ":smagic" and ":snomagic".
8192 */
8193 static void
8194ex_submagic(eap)
8195 exarg_T *eap;
8196{
8197 int magic_save = p_magic;
8198
8199 p_magic = (eap->cmdidx == CMD_smagic);
8200 do_sub(eap);
8201 p_magic = magic_save;
8202}
8203
8204/*
8205 * ":join".
8206 */
8207 static void
8208ex_join(eap)
8209 exarg_T *eap;
8210{
8211 curwin->w_cursor.lnum = eap->line1;
8212 if (eap->line1 == eap->line2)
8213 {
8214 if (eap->addr_count >= 2) /* :2,2join does nothing */
8215 return;
8216 if (eap->line2 == curbuf->b_ml.ml_line_count)
8217 {
8218 beep_flush();
8219 return;
8220 }
8221 ++eap->line2;
8222 }
8223 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8224 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008225 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008226}
8227
8228/*
8229 * ":[addr]@r" or ":[addr]*r": execute register
8230 */
8231 static void
8232ex_at(eap)
8233 exarg_T *eap;
8234{
8235 int c;
8236
8237 curwin->w_cursor.lnum = eap->line2;
8238
8239#ifdef USE_ON_FLY_SCROLL
8240 dont_scroll = TRUE; /* disallow scrolling here */
8241#endif
8242
8243 /* get the register name. No name means to use the previous one */
8244 c = *eap->arg;
8245 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8246 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008247 /* Put the register in the typeahead buffer with the "silent" flag. */
8248 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8249 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008250 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008251 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008252 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008253 else
8254 {
8255 int save_efr = exec_from_reg;
8256
8257 exec_from_reg = TRUE;
8258
8259 /*
8260 * Execute from the typeahead buffer.
8261 * Originally this didn't check for the typeahead buffer to be empty,
8262 * thus could read more Ex commands from stdin. It's not clear why,
8263 * it is certainly unexpected.
8264 */
8265 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8266 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8267
8268 exec_from_reg = save_efr;
8269 }
8270}
8271
8272/*
8273 * ":!".
8274 */
8275 static void
8276ex_bang(eap)
8277 exarg_T *eap;
8278{
8279 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8280}
8281
8282/*
8283 * ":undo".
8284 */
8285/*ARGSUSED*/
8286 static void
8287ex_undo(eap)
8288 exarg_T *eap;
8289{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008290 if (eap->addr_count == 1) /* :undo 123 */
8291 undo_time(eap->line2, FALSE, TRUE);
8292 else
8293 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008294}
8295
8296/*
8297 * ":redo".
8298 */
8299/*ARGSUSED*/
8300 static void
8301ex_redo(eap)
8302 exarg_T *eap;
8303{
8304 u_redo(1);
8305}
8306
8307/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008308 * ":earlier" and ":later".
8309 */
8310/*ARGSUSED*/
8311 static void
8312ex_later(eap)
8313 exarg_T *eap;
8314{
8315 long count = 0;
8316 int sec = FALSE;
8317 char_u *p = eap->arg;
8318
8319 if (*p == NUL)
8320 count = 1;
8321 else if (isdigit(*p))
8322 {
8323 count = getdigits(&p);
8324 switch (*p)
8325 {
8326 case 's': ++p; sec = TRUE; break;
8327 case 'm': ++p; sec = TRUE; count *= 60; break;
8328 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8329 }
8330 }
8331
8332 if (*p != NUL)
8333 EMSG2(_(e_invarg2), eap->arg);
8334 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008335 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008336}
8337
8338/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008339 * ":redir": start/stop redirection.
8340 */
8341 static void
8342ex_redir(eap)
8343 exarg_T *eap;
8344{
8345 char *mode;
8346 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008347 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008348
8349 if (STRICMP(eap->arg, "END") == 0)
8350 close_redir();
8351 else
8352 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008353 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008354 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008355 ++arg;
8356 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008357 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008358 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008359 mode = "a";
8360 }
8361 else
8362 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008363 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008364
8365 close_redir();
8366
8367 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008368 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008369 if (fname == NULL)
8370 return;
8371#ifdef FEAT_BROWSE
8372 if (cmdmod.browse)
8373 {
8374 char_u *browseFile;
8375
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008376 browseFile = do_browse(BROWSE_SAVE,
8377 (char_u *)_("Save Redirection"),
8378 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008379 if (browseFile == NULL)
8380 return; /* operation cancelled */
8381 vim_free(fname);
8382 fname = browseFile;
8383 eap->forceit = TRUE; /* since dialog already asked */
8384 }
8385#endif
8386
8387 redir_fd = open_exfile(fname, eap->forceit, mode);
8388 vim_free(fname);
8389 }
8390#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008391 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008392 {
8393 /* redirect to a register a-z (resp. A-Z for appending) */
8394 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008395 ++arg;
8396 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008397# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008398 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008399 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008400# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008401 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008402 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008403 redir_reg = *arg++;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008404 if (*arg == '>' && arg[1] == '>')
8405 arg += 2;
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008406 else if ((*arg == NUL || (*arg == '>' && arg[1] == NUL)) &&
8407 (islower(redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008408# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008409 || redir_reg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008410 || redir_reg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008411# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008412 || redir_reg == '"'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008413 {
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008414 if (*arg == '>')
8415 arg++;
8416
Bram Moolenaar071d4272004-06-13 20:20:40 +00008417 /* make register empty */
8418 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
8419 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008420 }
8421 if (*arg != NUL)
8422 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008423 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008424 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008425 }
8426 }
8427 else if (*arg == '=' && arg[1] == '>')
8428 {
8429 int append;
8430
8431 /* redirect to a variable */
8432 close_redir();
8433 arg += 2;
8434
8435 if (*arg == '>')
8436 {
8437 ++arg;
8438 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008439 }
8440 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008441 append = FALSE;
8442
8443 if (var_redir_start(skipwhite(arg), append) == OK)
8444 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008445 }
8446#endif
8447
8448 /* TODO: redirect to a buffer */
8449
Bram Moolenaar071d4272004-06-13 20:20:40 +00008450 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008451 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008452 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008453
8454 /* Make sure redirection is not off. Can happen for cmdline completion
8455 * that indirectly invokes a command to catch its output. */
8456 if (redir_fd != NULL
8457#ifdef FEAT_EVAL
8458 || redir_reg || redir_vname
8459#endif
8460 )
8461 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008462}
8463
8464/*
8465 * ":redraw": force redraw
8466 */
8467 static void
8468ex_redraw(eap)
8469 exarg_T *eap;
8470{
8471 int r = RedrawingDisabled;
8472 int p = p_lz;
8473
8474 RedrawingDisabled = 0;
8475 p_lz = FALSE;
8476 update_topline();
8477 update_screen(eap->forceit ? CLEAR :
8478#ifdef FEAT_VISUAL
8479 VIsual_active ? INVERTED :
8480#endif
8481 0);
8482#ifdef FEAT_TITLE
8483 if (need_maketitle)
8484 maketitle();
8485#endif
8486 RedrawingDisabled = r;
8487 p_lz = p;
8488
8489 /* Reset msg_didout, so that a message that's there is overwritten. */
8490 msg_didout = FALSE;
8491 msg_col = 0;
8492
8493 out_flush();
8494}
8495
8496/*
8497 * ":redrawstatus": force redraw of status line(s)
8498 */
8499/*ARGSUSED*/
8500 static void
8501ex_redrawstatus(eap)
8502 exarg_T *eap;
8503{
8504#if defined(FEAT_WINDOWS)
8505 int r = RedrawingDisabled;
8506 int p = p_lz;
8507
8508 RedrawingDisabled = 0;
8509 p_lz = FALSE;
8510 if (eap->forceit)
8511 status_redraw_all();
8512 else
8513 status_redraw_curbuf();
8514 update_screen(
8515# ifdef FEAT_VISUAL
8516 VIsual_active ? INVERTED :
8517# endif
8518 0);
8519 RedrawingDisabled = r;
8520 p_lz = p;
8521 out_flush();
8522#endif
8523}
8524
8525 static void
8526close_redir()
8527{
8528 if (redir_fd != NULL)
8529 {
8530 fclose(redir_fd);
8531 redir_fd = NULL;
8532 }
8533#ifdef FEAT_EVAL
8534 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008535 if (redir_vname)
8536 {
8537 var_redir_stop();
8538 redir_vname = 0;
8539 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008540#endif
8541}
8542
8543#if defined(FEAT_SESSION) && defined(USE_CRNL)
8544# define MKSESSION_NL
8545static int mksession_nl = FALSE; /* use NL only in put_eol() */
8546#endif
8547
8548/*
8549 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8550 */
8551 static void
8552ex_mkrc(eap)
8553 exarg_T *eap;
8554{
8555 FILE *fd;
8556 int failed = FALSE;
8557 char_u *fname;
8558#ifdef FEAT_BROWSE
8559 char_u *browseFile = NULL;
8560#endif
8561#ifdef FEAT_SESSION
8562 int view_session = FALSE;
8563 int using_vdir = FALSE; /* using 'viewdir'? */
8564 char_u *viewFile = NULL;
8565 unsigned *flagp;
8566#endif
8567
8568 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8569 {
8570#ifdef FEAT_SESSION
8571 view_session = TRUE;
8572#else
8573 ex_ni(eap);
8574 return;
8575#endif
8576 }
8577
8578#ifdef FEAT_SESSION
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008579 did_lcd = FALSE;
8580
Bram Moolenaar071d4272004-06-13 20:20:40 +00008581 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8582 if (eap->cmdidx == CMD_mkview
8583 && (*eap->arg == NUL
8584 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8585 {
8586 eap->forceit = TRUE;
8587 fname = get_view_file(*eap->arg);
8588 if (fname == NULL)
8589 return;
8590 viewFile = fname;
8591 using_vdir = TRUE;
8592 }
8593 else
8594#endif
8595 if (*eap->arg != NUL)
8596 fname = eap->arg;
8597 else if (eap->cmdidx == CMD_mkvimrc)
8598 fname = (char_u *)VIMRC_FILE;
8599#ifdef FEAT_SESSION
8600 else if (eap->cmdidx == CMD_mksession)
8601 fname = (char_u *)SESSION_FILE;
8602#endif
8603 else
8604 fname = (char_u *)EXRC_FILE;
8605
8606#ifdef FEAT_BROWSE
8607 if (cmdmod.browse)
8608 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008609 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008610# ifdef FEAT_SESSION
8611 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8612 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8613# endif
8614 (char_u *)_("Save Setup"),
8615 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8616 if (browseFile == NULL)
8617 goto theend;
8618 fname = browseFile;
8619 eap->forceit = TRUE; /* since dialog already asked */
8620 }
8621#endif
8622
8623#if defined(FEAT_SESSION) && defined(vim_mkdir)
8624 /* When using 'viewdir' may have to create the directory. */
8625 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008626 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008627#endif
8628
8629 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8630 if (fd != NULL)
8631 {
8632#ifdef FEAT_SESSION
8633 if (eap->cmdidx == CMD_mkview)
8634 flagp = &vop_flags;
8635 else
8636 flagp = &ssop_flags;
8637#endif
8638
8639#ifdef MKSESSION_NL
8640 /* "unix" in 'sessionoptions': use NL line separator */
8641 if (view_session && (*flagp & SSOP_UNIX))
8642 mksession_nl = TRUE;
8643#endif
8644
8645 /* Write the version command for :mkvimrc */
8646 if (eap->cmdidx == CMD_mkvimrc)
8647 (void)put_line(fd, "version 6.0");
8648
8649#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008650 if (eap->cmdidx == CMD_mksession)
8651 {
8652 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8653 failed = TRUE;
8654 }
8655
Bram Moolenaar071d4272004-06-13 20:20:40 +00008656 if (eap->cmdidx != CMD_mkview)
8657#endif
8658 {
8659 /* Write setting 'compatible' first, because it has side effects.
8660 * For that same reason only do it when needed. */
8661 if (p_cp)
8662 (void)put_line(fd, "if !&cp | set cp | endif");
8663 else
8664 (void)put_line(fd, "if &cp | set nocp | endif");
8665 }
8666
8667#ifdef FEAT_SESSION
8668 if (!view_session
8669 || (eap->cmdidx == CMD_mksession
8670 && (*flagp & SSOP_OPTIONS)))
8671#endif
8672 failed |= (makemap(fd, NULL) == FAIL
8673 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8674
8675#ifdef FEAT_SESSION
8676 if (!failed && view_session)
8677 {
8678 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8679 failed = TRUE;
8680 if (eap->cmdidx == CMD_mksession)
8681 {
8682 char_u dirnow[MAXPATHL]; /* current directory */
8683
8684 /*
8685 * Change to session file's dir.
8686 */
8687 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8688 || mch_chdir((char *)dirnow) != 0)
8689 *dirnow = NUL;
8690 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8691 {
8692 if (vim_chdirfile(fname) == OK)
8693 shorten_fnames(TRUE);
8694 }
8695 else if (*dirnow != NUL
8696 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8697 {
8698 (void)mch_chdir((char *)globaldir);
8699 shorten_fnames(TRUE);
8700 }
8701
8702 failed |= (makeopens(fd, dirnow) == FAIL);
8703
8704 /* restore original dir */
8705 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8706 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8707 {
8708 if (mch_chdir((char *)dirnow) != 0)
8709 EMSG(_(e_prev_dir));
8710 shorten_fnames(TRUE);
8711 }
8712 }
8713 else
8714 {
8715 failed |= (put_view(fd, curwin, !using_vdir, flagp) == FAIL);
8716 }
8717 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8718 == FAIL)
8719 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008720 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8721 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008722 if (eap->cmdidx == CMD_mksession)
8723 {
8724 if (put_line(fd, "unlet SessionLoad") == FAIL)
8725 failed = TRUE;
8726 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008727 }
8728#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008729 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8730 failed = TRUE;
8731
Bram Moolenaar071d4272004-06-13 20:20:40 +00008732 failed |= fclose(fd);
8733
8734 if (failed)
8735 EMSG(_(e_write));
8736#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8737 else if (eap->cmdidx == CMD_mksession)
8738 {
8739 /* successful session write - set this_session var */
8740 char_u tbuf[MAXPATHL];
8741
8742 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8743 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8744 }
8745#endif
8746#ifdef MKSESSION_NL
8747 mksession_nl = FALSE;
8748#endif
8749 }
8750
8751#ifdef FEAT_BROWSE
8752theend:
8753 vim_free(browseFile);
8754#endif
8755#ifdef FEAT_SESSION
8756 vim_free(viewFile);
8757#endif
8758}
8759
Bram Moolenaardf177f62005-02-22 08:39:57 +00008760#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8761 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008762/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008763 int
8764vim_mkdir_emsg(name, prot)
8765 char_u *name;
8766 int prot;
8767{
8768 if (vim_mkdir(name, prot) != 0)
8769 {
8770 EMSG2(_("E739: Cannot create directory: %s"), name);
8771 return FAIL;
8772 }
8773 return OK;
8774}
8775#endif
8776
Bram Moolenaar071d4272004-06-13 20:20:40 +00008777/*
8778 * Open a file for writing for an Ex command, with some checks.
8779 * Return file descriptor, or NULL on failure.
8780 */
8781 FILE *
8782open_exfile(fname, forceit, mode)
8783 char_u *fname;
8784 int forceit;
8785 char *mode; /* "w" for create new file or "a" for append */
8786{
8787 FILE *fd;
8788
8789#ifdef UNIX
8790 /* with Unix it is possible to open a directory */
8791 if (mch_isdir(fname))
8792 {
8793 EMSG2(_(e_isadir2), fname);
8794 return NULL;
8795 }
8796#endif
8797 if (!forceit && *mode != 'a' && vim_fexists(fname))
8798 {
8799 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8800 return NULL;
8801 }
8802
8803 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8804 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8805
8806 return fd;
8807}
8808
8809/*
8810 * ":mark" and ":k".
8811 */
8812 static void
8813ex_mark(eap)
8814 exarg_T *eap;
8815{
8816 pos_T pos;
8817
8818 if (*eap->arg == NUL) /* No argument? */
8819 EMSG(_(e_argreq));
8820 else if (eap->arg[1] != NUL) /* more than one character? */
8821 EMSG(_(e_trailing));
8822 else
8823 {
8824 pos = curwin->w_cursor; /* save curwin->w_cursor */
8825 curwin->w_cursor.lnum = eap->line2;
8826 beginline(BL_WHITE | BL_FIX);
8827 if (setmark(*eap->arg) == FAIL) /* set mark */
8828 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8829 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8830 }
8831}
8832
8833/*
8834 * Update w_topline, w_leftcol and the cursor position.
8835 */
8836 void
8837update_topline_cursor()
8838{
8839 check_cursor(); /* put cursor on valid line */
8840 update_topline();
8841 if (!curwin->w_p_wrap)
8842 validate_cursor();
8843 update_curswant();
8844}
8845
8846#ifdef FEAT_EX_EXTRA
8847/*
8848 * ":normal[!] {commands}": Execute normal mode commands.
8849 */
8850 static void
8851ex_normal(eap)
8852 exarg_T *eap;
8853{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008854 int save_msg_scroll = msg_scroll;
8855 int save_restart_edit = restart_edit;
8856 int save_msg_didout = msg_didout;
8857 int save_State = State;
8858 tasave_T tabuf;
8859 int save_insertmode = p_im;
8860 int save_finish_op = finish_op;
8861#ifdef FEAT_MBYTE
8862 char_u *arg = NULL;
8863 int l;
8864 char_u *p;
8865#endif
8866
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008867 if (ex_normal_lock > 0)
8868 {
8869 EMSG(_(e_secure));
8870 return;
8871 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008872 if (ex_normal_busy >= p_mmd)
8873 {
8874 EMSG(_("E192: Recursive use of :normal too deep"));
8875 return;
8876 }
8877 ++ex_normal_busy;
8878
8879 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8880 restart_edit = 0; /* don't go to Insert mode */
8881 p_im = FALSE; /* don't use 'insertmode' */
8882
8883#ifdef FEAT_MBYTE
8884 /*
8885 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8886 * this for the K_SPECIAL leading byte, otherwise special keys will not
8887 * work.
8888 */
8889 if (has_mbyte)
8890 {
8891 int len = 0;
8892
8893 /* Count the number of characters to be escaped. */
8894 for (p = eap->arg; *p != NUL; ++p)
8895 {
8896# ifdef FEAT_GUI
8897 if (*p == CSI) /* leadbyte CSI */
8898 len += 2;
8899# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008900 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008901 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8902# ifdef FEAT_GUI
8903 || *p == CSI
8904# endif
8905 )
8906 len += 2;
8907 }
8908 if (len > 0)
8909 {
8910 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8911 if (arg != NULL)
8912 {
8913 len = 0;
8914 for (p = eap->arg; *p != NUL; ++p)
8915 {
8916 arg[len++] = *p;
8917# ifdef FEAT_GUI
8918 if (*p == CSI)
8919 {
8920 arg[len++] = KS_EXTRA;
8921 arg[len++] = (int)KE_CSI;
8922 }
8923# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008924 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925 {
8926 arg[len++] = *++p;
8927 if (*p == K_SPECIAL)
8928 {
8929 arg[len++] = KS_SPECIAL;
8930 arg[len++] = KE_FILLER;
8931 }
8932# ifdef FEAT_GUI
8933 else if (*p == CSI)
8934 {
8935 arg[len++] = KS_EXTRA;
8936 arg[len++] = (int)KE_CSI;
8937 }
8938# endif
8939 }
8940 arg[len] = NUL;
8941 }
8942 }
8943 }
8944 }
8945#endif
8946
8947 /*
8948 * Save the current typeahead. This is required to allow using ":normal"
8949 * from an event handler and makes sure we don't hang when the argument
8950 * ends with half a command.
8951 */
8952 save_typeahead(&tabuf);
8953 if (tabuf.typebuf_valid)
8954 {
8955 /*
8956 * Repeat the :normal command for each line in the range. When no
8957 * range given, execute it just once, without positioning the cursor
8958 * first.
8959 */
8960 do
8961 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008962 if (eap->addr_count != 0)
8963 {
8964 curwin->w_cursor.lnum = eap->line1++;
8965 curwin->w_cursor.col = 0;
8966 }
8967
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008968 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00008969#ifdef FEAT_MBYTE
8970 arg != NULL ? arg :
8971#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008972 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008973 }
8974 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
8975 }
8976
8977 /* Might not return to the main loop when in an event handler. */
8978 update_topline_cursor();
8979
8980 /* Restore the previous typeahead. */
8981 restore_typeahead(&tabuf);
8982
8983 --ex_normal_busy;
8984 msg_scroll = save_msg_scroll;
8985 restart_edit = save_restart_edit;
8986 p_im = save_insertmode;
8987 finish_op = save_finish_op;
8988 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
8989
8990 /* Restore the state (needed when called from a function executed for
8991 * 'indentexpr'). */
8992 State = save_State;
8993#ifdef FEAT_MBYTE
8994 vim_free(arg);
8995#endif
8996}
8997
8998/*
Bram Moolenaar64969662005-12-14 21:59:55 +00008999 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00009000 */
9001 static void
9002ex_startinsert(eap)
9003 exarg_T *eap;
9004{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009005 if (eap->forceit)
9006 {
9007 coladvance((colnr_T)MAXCOL);
9008 curwin->w_curswant = MAXCOL;
9009 curwin->w_set_curswant = FALSE;
9010 }
9011
Bram Moolenaara40c5002005-01-09 21:16:21 +00009012 /* Ignore the command when already in Insert mode. Inserting an
9013 * expression register that invokes a function can do this. */
9014 if (State & INSERT)
9015 return;
9016
Bram Moolenaar64969662005-12-14 21:59:55 +00009017 if (eap->cmdidx == CMD_startinsert)
9018 restart_edit = 'a';
9019 else if (eap->cmdidx == CMD_startreplace)
9020 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009021 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009022 restart_edit = 'V';
9023
9024 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009025 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009026 if (eap->cmdidx == CMD_startinsert)
9027 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009028 curwin->w_curswant = 0; /* avoid MAXCOL */
9029 }
9030}
9031
9032/*
9033 * ":stopinsert"
9034 */
9035/*ARGSUSED*/
9036 static void
9037ex_stopinsert(eap)
9038 exarg_T *eap;
9039{
9040 restart_edit = 0;
9041 stop_insert_mode = TRUE;
9042}
9043#endif
9044
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009045#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9046/*
9047 * Execute normal mode command "cmd".
9048 * "remap" can be REMAP_NONE or REMAP_YES.
9049 */
9050 void
9051exec_normal_cmd(cmd, remap, silent)
9052 char_u *cmd;
9053 int remap;
9054 int silent;
9055{
9056 oparg_T oa;
9057
9058 /*
9059 * Stuff the argument into the typeahead buffer.
9060 * Execute normal_cmd() until there is no typeahead left.
9061 */
9062 clear_oparg(&oa);
9063 finish_op = FALSE;
9064 ins_typebuf(cmd, remap, 0, TRUE, silent);
9065 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9066 && !got_int)
9067 {
9068 update_topline_cursor();
9069 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9070 }
9071}
9072#endif
9073
Bram Moolenaar071d4272004-06-13 20:20:40 +00009074#ifdef FEAT_FIND_ID
9075 static void
9076ex_checkpath(eap)
9077 exarg_T *eap;
9078{
9079 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9080 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9081 (linenr_T)1, (linenr_T)MAXLNUM);
9082}
9083
9084#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9085/*
9086 * ":psearch"
9087 */
9088 static void
9089ex_psearch(eap)
9090 exarg_T *eap;
9091{
9092 g_do_tagpreview = p_pvh;
9093 ex_findpat(eap);
9094 g_do_tagpreview = 0;
9095}
9096#endif
9097
9098 static void
9099ex_findpat(eap)
9100 exarg_T *eap;
9101{
9102 int whole = TRUE;
9103 long n;
9104 char_u *p;
9105 int action;
9106
9107 switch (cmdnames[eap->cmdidx].cmd_name[2])
9108 {
9109 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9110 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9111 action = ACTION_GOTO;
9112 else
9113 action = ACTION_SHOW;
9114 break;
9115 case 'i': /* ":ilist" and ":dlist" */
9116 action = ACTION_SHOW_ALL;
9117 break;
9118 case 'u': /* ":ijump" and ":djump" */
9119 action = ACTION_GOTO;
9120 break;
9121 default: /* ":isplit" and ":dsplit" */
9122 action = ACTION_SPLIT;
9123 break;
9124 }
9125
9126 n = 1;
9127 if (vim_isdigit(*eap->arg)) /* get count */
9128 {
9129 n = getdigits(&eap->arg);
9130 eap->arg = skipwhite(eap->arg);
9131 }
9132 if (*eap->arg == '/') /* Match regexp, not just whole words */
9133 {
9134 whole = FALSE;
9135 ++eap->arg;
9136 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9137 if (*p)
9138 {
9139 *p++ = NUL;
9140 p = skipwhite(p);
9141
9142 /* Check for trailing illegal characters */
9143 if (!ends_excmd(*p))
9144 eap->errmsg = e_trailing;
9145 else
9146 eap->nextcmd = check_nextcmd(p);
9147 }
9148 }
9149 if (!eap->skip)
9150 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9151 whole, !eap->forceit,
9152 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9153 n, action, eap->line1, eap->line2);
9154}
9155#endif
9156
9157#ifdef FEAT_WINDOWS
9158
9159# ifdef FEAT_QUICKFIX
9160/*
9161 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9162 */
9163 static void
9164ex_ptag(eap)
9165 exarg_T *eap;
9166{
9167 g_do_tagpreview = p_pvh;
9168 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9169}
9170
9171/*
9172 * ":pedit"
9173 */
9174 static void
9175ex_pedit(eap)
9176 exarg_T *eap;
9177{
9178 win_T *curwin_save = curwin;
9179
9180 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009181 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009182 keep_help_flag = curwin_save->w_buffer->b_help;
9183 do_exedit(eap, NULL);
9184 keep_help_flag = FALSE;
9185 if (curwin != curwin_save && win_valid(curwin_save))
9186 {
9187 /* Return cursor to where we were */
9188 validate_cursor();
9189 redraw_later(VALID);
9190 win_enter(curwin_save, TRUE);
9191 }
9192 g_do_tagpreview = 0;
9193}
9194# endif
9195
9196/*
9197 * ":stag", ":stselect" and ":stjump".
9198 */
9199 static void
9200ex_stag(eap)
9201 exarg_T *eap;
9202{
9203 postponed_split = -1;
9204 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009205 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009206 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9207 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009208 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009209}
9210#endif
9211
9212/*
9213 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9214 */
9215 static void
9216ex_tag(eap)
9217 exarg_T *eap;
9218{
9219 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9220}
9221
9222 static void
9223ex_tag_cmd(eap, name)
9224 exarg_T *eap;
9225 char_u *name;
9226{
9227 int cmd;
9228
9229 switch (name[1])
9230 {
9231 case 'j': cmd = DT_JUMP; /* ":tjump" */
9232 break;
9233 case 's': cmd = DT_SELECT; /* ":tselect" */
9234 break;
9235 case 'p': cmd = DT_PREV; /* ":tprevious" */
9236 break;
9237 case 'N': cmd = DT_PREV; /* ":tNext" */
9238 break;
9239 case 'n': cmd = DT_NEXT; /* ":tnext" */
9240 break;
9241 case 'o': cmd = DT_POP; /* ":pop" */
9242 break;
9243 case 'f': /* ":tfirst" */
9244 case 'r': cmd = DT_FIRST; /* ":trewind" */
9245 break;
9246 case 'l': cmd = DT_LAST; /* ":tlast" */
9247 break;
9248 default: /* ":tag" */
9249#ifdef FEAT_CSCOPE
9250 if (p_cst)
9251 {
9252 do_cstag(eap);
9253 return;
9254 }
9255#endif
9256 cmd = DT_TAG;
9257 break;
9258 }
9259
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009260 if (name[0] == 'l')
9261 {
9262#ifndef FEAT_QUICKFIX
9263 ex_ni(eap);
9264 return;
9265#else
9266 cmd = DT_LTAG;
9267#endif
9268 }
9269
Bram Moolenaar071d4272004-06-13 20:20:40 +00009270 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9271 eap->forceit, TRUE);
9272}
9273
9274/*
9275 * Evaluate cmdline variables.
9276 *
9277 * change '%' to curbuf->b_ffname
9278 * '#' to curwin->w_altfile
9279 * '<cword>' to word under the cursor
9280 * '<cWORD>' to WORD under the cursor
9281 * '<cfile>' to path name under the cursor
9282 * '<sfile>' to sourced file name
9283 * '<afile>' to file name for autocommand
9284 * '<abuf>' to buffer number for autocommand
9285 * '<amatch>' to matching name for autocommand
9286 *
9287 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9288 * "" for error without a message) and NULL is returned.
9289 * Returns an allocated string if a valid match was found.
9290 * Returns NULL if no match was found. "usedlen" then still contains the
9291 * number of characters to skip.
9292 */
9293 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009294eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009295 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009296 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009297 int *usedlen; /* characters after src that are used */
9298 linenr_T *lnump; /* line number for :e command, or NULL */
9299 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009300 int *escaped; /* return value has escaped white space (can
9301 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009302{
9303 int i;
9304 char_u *s;
9305 char_u *result;
9306 char_u *resultbuf = NULL;
9307 int resultlen;
9308 buf_T *buf;
9309 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9310 int spec_idx;
9311#ifdef FEAT_MODIFY_FNAME
9312 int skip_mod = FALSE;
9313#endif
9314 static char *(spec_str[]) =
9315 {
9316 "%",
9317#define SPEC_PERC 0
9318 "#",
9319#define SPEC_HASH 1
9320 "<cword>", /* cursor word */
9321#define SPEC_CWORD 2
9322 "<cWORD>", /* cursor WORD */
9323#define SPEC_CCWORD 3
9324 "<cfile>", /* cursor path name */
9325#define SPEC_CFILE 4
9326 "<sfile>", /* ":so" file name */
9327#define SPEC_SFILE 5
9328#ifdef FEAT_AUTOCMD
9329 "<afile>", /* autocommand file name */
9330# define SPEC_AFILE 6
9331 "<abuf>", /* autocommand buffer number */
9332# define SPEC_ABUF 7
9333 "<amatch>", /* autocommand match name */
9334# define SPEC_AMATCH 8
9335#endif
9336#ifdef FEAT_CLIENTSERVER
9337 "<client>"
9338# define SPEC_CLIENT 9
9339#endif
9340 };
9341#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9342
9343#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9344 char_u strbuf[30];
9345#endif
9346
9347 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009348 if (escaped != NULL)
9349 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009350
9351 /*
9352 * Check if there is something to do.
9353 */
9354 for (spec_idx = 0; spec_idx < SPEC_COUNT; ++spec_idx)
9355 {
9356 *usedlen = (int)STRLEN(spec_str[spec_idx]);
9357 if (STRNCMP(src, spec_str[spec_idx], *usedlen) == 0)
9358 break;
9359 }
9360 if (spec_idx == SPEC_COUNT) /* no match */
9361 {
9362 *usedlen = 1;
9363 return NULL;
9364 }
9365
9366 /*
9367 * Skip when preceded with a backslash "\%" and "\#".
9368 * Note: In "\\%" the % is also not recognized!
9369 */
9370 if (src > srcstart && src[-1] == '\\')
9371 {
9372 *usedlen = 0;
9373 STRCPY(src - 1, src); /* remove backslash */
9374 return NULL;
9375 }
9376
9377 /*
9378 * word or WORD under cursor
9379 */
9380 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9381 {
9382 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9383 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9384 if (resultlen == 0)
9385 {
9386 *errormsg = (char_u *)"";
9387 return NULL;
9388 }
9389 }
9390
9391 /*
9392 * '#': Alternate file name
9393 * '%': Current file name
9394 * File name under the cursor
9395 * File name for autocommand
9396 * and following modifiers
9397 */
9398 else
9399 {
9400 switch (spec_idx)
9401 {
9402 case SPEC_PERC: /* '%': current file */
9403 if (curbuf->b_fname == NULL)
9404 {
9405 result = (char_u *)"";
9406 valid = 0; /* Must have ":p:h" to be valid */
9407 }
9408 else
9409#ifdef RISCOS
9410 /* Always use the full path for RISC OS if possible. */
9411 result = curbuf->b_ffname;
9412 if (result == NULL)
9413 result = curbuf->b_fname;
9414#else
9415 result = curbuf->b_fname;
9416#endif
9417 break;
9418
9419 case SPEC_HASH: /* '#' or "#99": alternate file */
9420 if (src[1] == '#') /* "##": the argument list */
9421 {
9422 result = arg_all();
9423 resultbuf = result;
9424 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009425 if (escaped != NULL)
9426 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009427#ifdef FEAT_MODIFY_FNAME
9428 skip_mod = TRUE;
9429#endif
9430 break;
9431 }
9432 s = src + 1;
9433 i = (int)getdigits(&s);
9434 *usedlen = (int)(s - src); /* length of what we expand */
9435
9436 buf = buflist_findnr(i);
9437 if (buf == NULL)
9438 {
9439 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9440 return NULL;
9441 }
9442 if (lnump != NULL)
9443 *lnump = ECMD_LAST;
9444 if (buf->b_fname == NULL)
9445 {
9446 result = (char_u *)"";
9447 valid = 0; /* Must have ":p:h" to be valid */
9448 }
9449 else
9450 result = buf->b_fname;
9451 break;
9452
9453#ifdef FEAT_SEARCHPATH
9454 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009455 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009456 if (result == NULL)
9457 {
9458 *errormsg = (char_u *)"";
9459 return NULL;
9460 }
9461 resultbuf = result; /* remember allocated string */
9462 break;
9463#endif
9464
9465#ifdef FEAT_AUTOCMD
9466 case SPEC_AFILE: /* file name for autocommand */
9467 result = autocmd_fname;
9468 if (result == NULL)
9469 {
9470 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9471 return NULL;
9472 }
9473 break;
9474
9475 case SPEC_ABUF: /* buffer number for autocommand */
9476 if (autocmd_bufnr <= 0)
9477 {
9478 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9479 return NULL;
9480 }
9481 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9482 result = strbuf;
9483 break;
9484
9485 case SPEC_AMATCH: /* match name for autocommand */
9486 result = autocmd_match;
9487 if (result == NULL)
9488 {
9489 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9490 return NULL;
9491 }
9492 break;
9493
9494#endif
9495 case SPEC_SFILE: /* file name for ":so" command */
9496 result = sourcing_name;
9497 if (result == NULL)
9498 {
9499 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9500 return NULL;
9501 }
9502 break;
9503#if defined(FEAT_CLIENTSERVER)
9504 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009505 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9506 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009507 result = strbuf;
9508 break;
9509#endif
9510 }
9511
9512 resultlen = (int)STRLEN(result); /* length of new string */
9513 if (src[*usedlen] == '<') /* remove the file name extension */
9514 {
9515 ++*usedlen;
9516#ifdef RISCOS
9517 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9518#else
9519 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9520#endif
9521 resultlen = (int)(s - result);
9522 }
9523#ifdef FEAT_MODIFY_FNAME
9524 else if (!skip_mod)
9525 {
9526 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9527 &resultlen);
9528 if (result == NULL)
9529 {
9530 *errormsg = (char_u *)"";
9531 return NULL;
9532 }
9533 }
9534#endif
9535 }
9536
9537 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9538 {
9539 if (valid != VALID_HEAD + VALID_PATH)
9540 /* xgettext:no-c-format */
9541 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9542 else
9543 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9544 result = NULL;
9545 }
9546 else
9547 result = vim_strnsave(result, resultlen);
9548 vim_free(resultbuf);
9549 return result;
9550}
9551
9552/*
9553 * Concatenate all files in the argument list, separated by spaces, and return
9554 * it in one allocated string.
9555 * Spaces and backslashes in the file names are escaped with a backslash.
9556 * Returns NULL when out of memory.
9557 */
9558 static char_u *
9559arg_all()
9560{
9561 int len;
9562 int idx;
9563 char_u *retval = NULL;
9564 char_u *p;
9565
9566 /*
9567 * Do this loop two times:
9568 * first time: compute the total length
9569 * second time: concatenate the names
9570 */
9571 for (;;)
9572 {
9573 len = 0;
9574 for (idx = 0; idx < ARGCOUNT; ++idx)
9575 {
9576 p = alist_name(&ARGLIST[idx]);
9577 if (p != NULL)
9578 {
9579 if (len > 0)
9580 {
9581 /* insert a space in between names */
9582 if (retval != NULL)
9583 retval[len] = ' ';
9584 ++len;
9585 }
9586 for ( ; *p != NUL; ++p)
9587 {
9588 if (*p == ' ' || *p == '\\')
9589 {
9590 /* insert a backslash */
9591 if (retval != NULL)
9592 retval[len] = '\\';
9593 ++len;
9594 }
9595 if (retval != NULL)
9596 retval[len] = *p;
9597 ++len;
9598 }
9599 }
9600 }
9601
9602 /* second time: break here */
9603 if (retval != NULL)
9604 {
9605 retval[len] = NUL;
9606 break;
9607 }
9608
9609 /* allocate memory */
9610 retval = alloc(len + 1);
9611 if (retval == NULL)
9612 break;
9613 }
9614
9615 return retval;
9616}
9617
9618#if defined(FEAT_AUTOCMD) || defined(PROTO)
9619/*
9620 * Expand the <sfile> string in "arg".
9621 *
9622 * Returns an allocated string, or NULL for any error.
9623 */
9624 char_u *
9625expand_sfile(arg)
9626 char_u *arg;
9627{
9628 char_u *errormsg;
9629 int len;
9630 char_u *result;
9631 char_u *newres;
9632 char_u *repl;
9633 int srclen;
9634 char_u *p;
9635
9636 result = vim_strsave(arg);
9637 if (result == NULL)
9638 return NULL;
9639
9640 for (p = result; *p; )
9641 {
9642 if (STRNCMP(p, "<sfile>", 7) != 0)
9643 ++p;
9644 else
9645 {
9646 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009647 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009648 if (errormsg != NULL)
9649 {
9650 if (*errormsg)
9651 emsg(errormsg);
9652 vim_free(result);
9653 return NULL;
9654 }
9655 if (repl == NULL) /* no match (cannot happen) */
9656 {
9657 p += srclen;
9658 continue;
9659 }
9660 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9661 newres = alloc(len);
9662 if (newres == NULL)
9663 {
9664 vim_free(repl);
9665 vim_free(result);
9666 return NULL;
9667 }
9668 mch_memmove(newres, result, (size_t)(p - result));
9669 STRCPY(newres + (p - result), repl);
9670 len = (int)STRLEN(newres);
9671 STRCAT(newres, p + srclen);
9672 vim_free(repl);
9673 vim_free(result);
9674 result = newres;
9675 p = newres + len; /* continue after the match */
9676 }
9677 }
9678
9679 return result;
9680}
9681#endif
9682
9683#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009684static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9685 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009686static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9687static frame_T *ses_skipframe __ARGS((frame_T *fr));
9688static int ses_do_frame __ARGS((frame_T *fr));
9689static int ses_do_win __ARGS((win_T *wp));
9690static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9691static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9692static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9693
9694/*
9695 * Write openfile commands for the current buffers to an .exrc file.
9696 * Return FAIL on error, OK otherwise.
9697 */
9698 static int
9699makeopens(fd, dirnow)
9700 FILE *fd;
9701 char_u *dirnow; /* Current directory name */
9702{
9703 buf_T *buf;
9704 int only_save_windows = TRUE;
9705 int nr;
9706 int cnr = 1;
9707 int restore_size = TRUE;
9708 win_T *wp;
9709 char_u *sname;
9710 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009711 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009712 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009713 frame_T *tab_topframe;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009714
9715 if (ssop_flags & SSOP_BUFFERS)
9716 only_save_windows = FALSE; /* Save ALL buffers */
9717
9718 /*
9719 * Begin by setting the this_session variable, and then other
9720 * sessionable variables.
9721 */
9722#ifdef FEAT_EVAL
9723 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9724 return FAIL;
9725 if (ssop_flags & SSOP_GLOBALS)
9726 if (store_session_globals(fd) == FAIL)
9727 return FAIL;
9728#endif
9729
9730 /*
9731 * Close all windows but one.
9732 */
9733 if (put_line(fd, "silent only") == FAIL)
9734 return FAIL;
9735
9736 /*
9737 * Now a :cd command to the session directory or the current directory
9738 */
9739 if (ssop_flags & SSOP_SESDIR)
9740 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009741 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9742 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009743 return FAIL;
9744 }
9745 else if (ssop_flags & SSOP_CURDIR)
9746 {
9747 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9748 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009749 || fputs("cd ", fd) < 0
9750 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9751 || put_eol(fd) == FAIL)
9752 {
9753 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009754 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009755 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009756 vim_free(sname);
9757 }
9758
9759 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009760 * If there is an empty, unnamed buffer we will wipe it out later.
9761 * Remember the buffer number.
9762 */
9763 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9764 return FAIL;
9765 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9766 return FAIL;
9767 if (put_line(fd, "endif") == FAIL)
9768 return FAIL;
9769
9770 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009771 * Now save the current files, current buffer first.
9772 */
9773 if (put_line(fd, "set shortmess=aoO") == FAIL)
9774 return FAIL;
9775
9776 /* Now put the other buffers into the buffer list */
9777 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9778 {
9779 if (!(only_save_windows && buf->b_nwindows == 0)
9780 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9781 && buf->b_fname != NULL
9782 && buf->b_p_bl)
9783 {
9784 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9785 : buf->b_wininfo->wi_fpos.lnum) < 0
9786 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9787 return FAIL;
9788 }
9789 }
9790
9791 /* the global argument list */
9792 if (ses_arglist(fd, "args", &global_alist.al_ga,
9793 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9794 return FAIL;
9795
9796 if (ssop_flags & SSOP_RESIZE)
9797 {
9798 /* Note: after the restore we still check it worked!*/
9799 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9800 || put_eol(fd) == FAIL)
9801 return FAIL;
9802 }
9803
9804#ifdef FEAT_GUI
9805 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9806 {
9807 int x, y;
9808
9809 if (gui_mch_get_winpos(&x, &y) == OK)
9810 {
9811 /* Note: after the restore we still check it worked!*/
9812 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9813 return FAIL;
9814 }
9815 }
9816#endif
9817
9818 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009819 * May repeat putting Windows for each tab, when "tabpages" is in
9820 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009821 * Don't use goto_tabpage(), it may change directory and trigger
9822 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009823 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009824 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009825 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009826 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009827 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009828 int need_tabnew = FALSE;
9829
Bram Moolenaar18144c82006-04-12 21:52:12 +00009830 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009831 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009832 tabpage_T *tp = find_tabpage(tabnr);
9833
9834 if (tp == NULL)
9835 break; /* done all tab pages */
9836 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009837 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009838 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009839 tab_topframe = topframe;
9840 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009841 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009842 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009843 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009844 tab_topframe = tp->tp_topframe;
9845 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009846 if (tabnr > 1)
9847 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009849
Bram Moolenaar18144c82006-04-12 21:52:12 +00009850 /*
9851 * Before creating the window layout, try loading one file. If this
9852 * is aborted we don't end up with a number of useless windows.
9853 * This may have side effects! (e.g., compressed or network file).
9854 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009855 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009856 {
9857 if (ses_do_win(wp)
9858 && wp->w_buffer->b_ffname != NULL
9859 && !wp->w_buffer->b_help
9860#ifdef FEAT_QUICKFIX
9861 && !bt_nofile(wp->w_buffer)
9862#endif
9863 )
9864 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009865 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009866 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9867 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009868 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009869 if (!wp->w_arg_idx_invalid)
9870 edited_win = wp;
9871 break;
9872 }
9873 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009874
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009875 /* If no file got edited create an empty tab page. */
9876 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9877 return FAIL;
9878
Bram Moolenaar18144c82006-04-12 21:52:12 +00009879 /*
9880 * Save current window layout.
9881 */
9882 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009883 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009884 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009885 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009886 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
9887 return FAIL;
9888 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
9889 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009890
Bram Moolenaar18144c82006-04-12 21:52:12 +00009891 /*
9892 * Check if window sizes can be restored (no windows omitted).
9893 * Remember the window number of the current window after restoring.
9894 */
9895 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009896 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009897 {
9898 if (ses_do_win(wp))
9899 ++nr;
9900 else
9901 restore_size = FALSE;
9902 if (curwin == wp)
9903 cnr = nr;
9904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009905
Bram Moolenaar18144c82006-04-12 21:52:12 +00009906 /* Go to the first window. */
9907 if (put_line(fd, "wincmd t") == FAIL)
9908 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009909
Bram Moolenaar18144c82006-04-12 21:52:12 +00009910 /*
9911 * If more than one window, see if sizes can be restored.
9912 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
9913 * resized when moving between windows.
9914 * Do this before restoring the view, so that the topline and the
9915 * cursor can be set. This is done again below.
9916 */
9917 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
9918 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009919 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009920 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009921
Bram Moolenaar18144c82006-04-12 21:52:12 +00009922 /*
9923 * Restore the view of the window (options, file, cursor, etc.).
9924 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009925 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009926 {
9927 if (!ses_do_win(wp))
9928 continue;
9929 if (put_view(fd, wp, wp != edited_win, &ssop_flags) == FAIL)
9930 return FAIL;
9931 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
9932 return FAIL;
9933 }
9934
9935 /*
9936 * Restore cursor to the current window if it's not the first one.
9937 */
9938 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
9939 || put_eol(fd) == FAIL))
9940 return FAIL;
9941
9942 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009943 * Restore window sizes again after jumping around in windows, because
9944 * the current window has a minimum size while others may not.
9945 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009946 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009947 return FAIL;
9948
Bram Moolenaar18144c82006-04-12 21:52:12 +00009949 /* Don't continue in another tab page when doing only the current one
9950 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009951 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009952 break;
9953 }
9954
9955 if (ssop_flags & SSOP_TABPAGES)
9956 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00009957 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
9958 || put_eol(fd) == FAIL)
9959 return FAIL;
9960 }
9961
Bram Moolenaar9c102382006-05-03 21:26:49 +00009962 /*
9963 * Wipe out an empty unnamed buffer we started in.
9964 */
9965 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
9966 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00009967 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +00009968 return FAIL;
9969 if (put_line(fd, "endif") == FAIL)
9970 return FAIL;
9971 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
9972 return FAIL;
9973
9974 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
9975 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
9976 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
9977 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009978
9979 /*
9980 * Lastly, execute the x.vim file if it exists.
9981 */
9982 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
9983 || put_line(fd, "if file_readable(s:sx)") == FAIL
9984 || put_line(fd, " exe \"source \" . s:sx") == FAIL
9985 || put_line(fd, "endif") == FAIL)
9986 return FAIL;
9987
9988 return OK;
9989}
9990
9991 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009992ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009993 FILE *fd;
9994 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009995 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009996{
9997 int n = 0;
9998 win_T *wp;
9999
10000 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10001 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010002 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010003 {
10004 if (!ses_do_win(wp))
10005 continue;
10006 ++n;
10007
10008 /* restore height when not full height */
10009 if (wp->w_height + wp->w_status_height < topframe->fr_height
10010 && (fprintf(fd,
10011 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10012 n, (long)wp->w_height, Rows / 2, Rows) < 0
10013 || put_eol(fd) == FAIL))
10014 return FAIL;
10015
10016 /* restore width when not full width */
10017 if (wp->w_width < Columns && (fprintf(fd,
10018 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10019 n, (long)wp->w_width, Columns / 2, Columns) < 0
10020 || put_eol(fd) == FAIL))
10021 return FAIL;
10022 }
10023 }
10024 else
10025 {
10026 /* Just equalise window sizes */
10027 if (put_line(fd, "wincmd =") == FAIL)
10028 return FAIL;
10029 }
10030 return OK;
10031}
10032
10033/*
10034 * Write commands to "fd" to recursively create windows for frame "fr",
10035 * horizontally and vertically split.
10036 * After the commands the last window in the frame is the current window.
10037 * Returns FAIL when writing the commands to "fd" fails.
10038 */
10039 static int
10040ses_win_rec(fd, fr)
10041 FILE *fd;
10042 frame_T *fr;
10043{
10044 frame_T *frc;
10045 int count = 0;
10046
10047 if (fr->fr_layout != FR_LEAF)
10048 {
10049 /* Find first frame that's not skipped and then create a window for
10050 * each following one (first frame is already there). */
10051 frc = ses_skipframe(fr->fr_child);
10052 if (frc != NULL)
10053 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10054 {
10055 /* Make window as big as possible so that we have lots of room
10056 * to split. */
10057 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10058 || put_line(fd, fr->fr_layout == FR_COL
10059 ? "split" : "vsplit") == FAIL)
10060 return FAIL;
10061 ++count;
10062 }
10063
10064 /* Go back to the first window. */
10065 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10066 ? "%dwincmd k" : "%dwincmd h", count) < 0
10067 || put_eol(fd) == FAIL))
10068 return FAIL;
10069
10070 /* Recursively create frames/windows in each window of this column or
10071 * row. */
10072 frc = ses_skipframe(fr->fr_child);
10073 while (frc != NULL)
10074 {
10075 ses_win_rec(fd, frc);
10076 frc = ses_skipframe(frc->fr_next);
10077 /* Go to next window. */
10078 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10079 return FAIL;
10080 }
10081 }
10082 return OK;
10083}
10084
10085/*
10086 * Skip frames that don't contain windows we want to save in the Session.
10087 * Returns NULL when there none.
10088 */
10089 static frame_T *
10090ses_skipframe(fr)
10091 frame_T *fr;
10092{
10093 frame_T *frc;
10094
10095 for (frc = fr; frc != NULL; frc = frc->fr_next)
10096 if (ses_do_frame(frc))
10097 break;
10098 return frc;
10099}
10100
10101/*
10102 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10103 * the Session.
10104 */
10105 static int
10106ses_do_frame(fr)
10107 frame_T *fr;
10108{
10109 frame_T *frc;
10110
10111 if (fr->fr_layout == FR_LEAF)
10112 return ses_do_win(fr->fr_win);
10113 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10114 if (ses_do_frame(frc))
10115 return TRUE;
10116 return FALSE;
10117}
10118
10119/*
10120 * Return non-zero if window "wp" is to be stored in the Session.
10121 */
10122 static int
10123ses_do_win(wp)
10124 win_T *wp;
10125{
10126 if (wp->w_buffer->b_fname == NULL
10127#ifdef FEAT_QUICKFIX
10128 /* When 'buftype' is "nofile" can't restore the window contents. */
10129 || bt_nofile(wp->w_buffer)
10130#endif
10131 )
10132 return (ssop_flags & SSOP_BLANK);
10133 if (wp->w_buffer->b_help)
10134 return (ssop_flags & SSOP_HELP);
10135 return TRUE;
10136}
10137
10138/*
10139 * Write commands to "fd" to restore the view of a window.
10140 * Caller must make sure 'scrolloff' is zero.
10141 */
10142 static int
10143put_view(fd, wp, add_edit, flagp)
10144 FILE *fd;
10145 win_T *wp;
10146 int add_edit; /* add ":edit" command to view */
10147 unsigned *flagp; /* vop_flags or ssop_flags */
10148{
10149 win_T *save_curwin;
10150 int f;
10151 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010152 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010153
10154 /* Always restore cursor position for ":mksession". For ":mkview" only
10155 * when 'viewoptions' contains "cursor". */
10156 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10157
10158 /*
10159 * Local argument list.
10160 */
10161 if (wp->w_alist == &global_alist)
10162 {
10163 if (put_line(fd, "argglobal") == FAIL)
10164 return FAIL;
10165 }
10166 else
10167 {
10168 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10169 flagp == &vop_flags
10170 || !(*flagp & SSOP_CURDIR)
10171 || wp->w_localdir != NULL, flagp) == FAIL)
10172 return FAIL;
10173 }
10174
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010175 /* Only when part of a session: restore the argument index. Some
10176 * arguments may have been deleted, check if the index is valid. */
10177 if (wp->w_arg_idx != 0 && wp->w_arg_idx <= WARGCOUNT(wp)
10178 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010179 {
10180 if (fprintf(fd, "%ldnext", (long)wp->w_arg_idx) < 0
10181 || put_eol(fd) == FAIL)
10182 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010183 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010184 }
10185
10186 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010187 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010188 {
10189 /*
10190 * Load the file.
10191 */
10192 if (wp->w_buffer->b_ffname != NULL
10193#ifdef FEAT_QUICKFIX
10194 && !bt_nofile(wp->w_buffer)
10195#endif
10196 )
10197 {
10198 /*
10199 * Editing a file in this buffer: use ":edit file".
10200 * This may have side effects! (e.g., compressed or network file).
10201 */
10202 if (fputs("edit ", fd) < 0
10203 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10204 return FAIL;
10205 }
10206 else
10207 {
10208 /* No file in this buffer, just make it empty. */
10209 if (put_line(fd, "enew") == FAIL)
10210 return FAIL;
10211#ifdef FEAT_QUICKFIX
10212 if (wp->w_buffer->b_ffname != NULL)
10213 {
10214 /* The buffer does have a name, but it's not a file name. */
10215 if (fputs("file ", fd) < 0
10216 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10217 return FAIL;
10218 }
10219#endif
10220 do_cursor = FALSE;
10221 }
10222 }
10223
10224 /*
10225 * Local mappings and abbreviations.
10226 */
10227 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10228 && makemap(fd, wp->w_buffer) == FAIL)
10229 return FAIL;
10230
10231 /*
10232 * Local options. Need to go to the window temporarily.
10233 * Store only local values when using ":mkview" and when ":mksession" is
10234 * used and 'sessionoptions' doesn't include "options".
10235 * Some folding options are always stored when "folds" is included,
10236 * otherwise the folds would not be restored correctly.
10237 */
10238 save_curwin = curwin;
10239 curwin = wp;
10240 curbuf = curwin->w_buffer;
10241 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10242 f = makeset(fd, OPT_LOCAL,
10243 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10244#ifdef FEAT_FOLDING
10245 else if (*flagp & SSOP_FOLDS)
10246 f = makefoldset(fd);
10247#endif
10248 else
10249 f = OK;
10250 curwin = save_curwin;
10251 curbuf = curwin->w_buffer;
10252 if (f == FAIL)
10253 return FAIL;
10254
10255#ifdef FEAT_FOLDING
10256 /*
10257 * Save Folds when 'buftype' is empty and for help files.
10258 */
10259 if ((*flagp & SSOP_FOLDS)
10260 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010261# ifdef FEAT_QUICKFIX
10262 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10263# endif
10264 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010265 {
10266 if (put_folds(fd, wp) == FAIL)
10267 return FAIL;
10268 }
10269#endif
10270
10271 /*
10272 * Set the cursor after creating folds, since that moves the cursor.
10273 */
10274 if (do_cursor)
10275 {
10276
10277 /* Restore the cursor line in the file and relatively in the
10278 * window. Don't use "G", it changes the jumplist. */
10279 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10280 (long)wp->w_cursor.lnum,
10281 (long)(wp->w_cursor.lnum - wp->w_topline),
10282 (long)wp->w_height / 2, (long)wp->w_height) < 0
10283 || put_eol(fd) == FAIL
10284 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10285 || put_line(fd, "exe s:l") == FAIL
10286 || put_line(fd, "normal! zt") == FAIL
10287 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10288 || put_eol(fd) == FAIL)
10289 return FAIL;
10290 /* Restore the cursor column and left offset when not wrapping. */
10291 if (wp->w_cursor.col == 0)
10292 {
10293 if (put_line(fd, "normal! 0") == FAIL)
10294 return FAIL;
10295 }
10296 else
10297 {
10298 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10299 {
10300 if (fprintf(fd,
10301 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10302 (long)wp->w_cursor.col,
10303 (long)(wp->w_cursor.col - wp->w_leftcol),
10304 (long)wp->w_width / 2, (long)wp->w_width) < 0
10305 || put_eol(fd) == FAIL
10306 || put_line(fd, "if s:c > 0") == FAIL
10307 || fprintf(fd,
10308 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10309 (long)wp->w_cursor.col) < 0
10310 || put_eol(fd) == FAIL
10311 || put_line(fd, "else") == FAIL
10312 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10313 || put_eol(fd) == FAIL
10314 || put_line(fd, "endif") == FAIL)
10315 return FAIL;
10316 }
10317 else
10318 {
10319 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10320 || put_eol(fd) == FAIL)
10321 return FAIL;
10322 }
10323 }
10324 }
10325
10326 /*
10327 * Local directory.
10328 */
10329 if (wp->w_localdir != NULL)
10330 {
10331 if (fputs("lcd ", fd) < 0
10332 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10333 || put_eol(fd) == FAIL)
10334 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010335 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010336 }
10337
10338 return OK;
10339}
10340
10341/*
10342 * Write an argument list to the session file.
10343 * Returns FAIL if writing fails.
10344 */
10345 static int
10346ses_arglist(fd, cmd, gap, fullname, flagp)
10347 FILE *fd;
10348 char *cmd;
10349 garray_T *gap;
10350 int fullname; /* TRUE: use full path name */
10351 unsigned *flagp;
10352{
10353 int i;
10354 char_u buf[MAXPATHL];
10355 char_u *s;
10356
10357 if (gap->ga_len == 0)
10358 return put_line(fd, "silent! argdel *");
10359 if (fputs(cmd, fd) < 0)
10360 return FAIL;
10361 for (i = 0; i < gap->ga_len; ++i)
10362 {
10363 /* NULL file names are skipped (only happens when out of memory). */
10364 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10365 if (s != NULL)
10366 {
10367 if (fullname)
10368 {
10369 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10370 s = buf;
10371 }
10372 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10373 return FAIL;
10374 }
10375 }
10376 return put_eol(fd);
10377}
10378
10379/*
10380 * Write a buffer name to the session file.
10381 * Also ends the line.
10382 * Returns FAIL if writing fails.
10383 */
10384 static int
10385ses_fname(fd, buf, flagp)
10386 FILE *fd;
10387 buf_T *buf;
10388 unsigned *flagp;
10389{
10390 char_u *name;
10391
10392 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010393 * the session file will be sourced.
10394 * Don't do this for ":mkview", we don't know the current directory.
10395 * Don't do this after ":lcd", we don't keep track of what the current
10396 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010397 if (buf->b_sfname != NULL
10398 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010399 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10400 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010401 name = buf->b_sfname;
10402 else
10403 name = buf->b_ffname;
10404 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10405 return FAIL;
10406 return OK;
10407}
10408
10409/*
10410 * Write a file name to the session file.
10411 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10412 * characters.
10413 * Returns FAIL if writing fails.
10414 */
10415 static int
10416ses_put_fname(fd, name, flagp)
10417 FILE *fd;
10418 char_u *name;
10419 unsigned *flagp;
10420{
10421 char_u *sname;
10422 int retval = OK;
10423 int c;
10424
10425 sname = home_replace_save(NULL, name);
10426 if (sname != NULL)
10427 name = sname;
10428 while (*name != NUL)
10429 {
10430#ifdef FEAT_MBYTE
10431 {
10432 int l;
10433
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010434 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010435 {
10436 /* copy a multibyte char */
10437 while (--l >= 0)
10438 {
10439 if (putc(*name, fd) != *name)
10440 retval = FAIL;
10441 ++name;
10442 }
10443 continue;
10444 }
10445 }
10446#endif
10447 c = *name++;
10448 if (c == '\\' && (*flagp & SSOP_SLASH))
10449 /* change a backslash to a forward slash */
10450 c = '/';
10451 else if ((vim_strchr(escape_chars, c) != NULL
10452#ifdef BACKSLASH_IN_FILENAME
10453 && c != '\\'
10454#endif
10455 ) || c == '#' || c == '%')
10456 {
10457 /* escape a special character with a backslash */
10458 if (putc('\\', fd) != '\\')
10459 retval = FAIL;
10460 }
10461 if (putc(c, fd) != c)
10462 retval = FAIL;
10463 }
10464 vim_free(sname);
10465 return retval;
10466}
10467
10468/*
10469 * ":loadview [nr]"
10470 */
10471 static void
10472ex_loadview(eap)
10473 exarg_T *eap;
10474{
10475 char_u *fname;
10476
10477 fname = get_view_file(*eap->arg);
10478 if (fname != NULL)
10479 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010480 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010481 vim_free(fname);
10482 }
10483}
10484
10485/*
10486 * Get the name of the view file for the current buffer.
10487 */
10488 static char_u *
10489get_view_file(c)
10490 int c;
10491{
10492 int len = 0;
10493 char_u *p, *s;
10494 char_u *retval;
10495 char_u *sname;
10496
10497 if (curbuf->b_ffname == NULL)
10498 {
10499 EMSG(_(e_noname));
10500 return NULL;
10501 }
10502 sname = home_replace_save(NULL, curbuf->b_ffname);
10503 if (sname == NULL)
10504 return NULL;
10505
10506 /*
10507 * We want a file name without separators, because we're not going to make
10508 * a directory.
10509 * "normal" path separator -> "=+"
10510 * "=" -> "=="
10511 * ":" path separator -> "=-"
10512 */
10513 for (p = sname; *p; ++p)
10514 if (*p == '=' || vim_ispathsep(*p))
10515 ++len;
10516 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10517 if (retval != NULL)
10518 {
10519 STRCPY(retval, p_vdir);
10520 add_pathsep(retval);
10521 s = retval + STRLEN(retval);
10522 for (p = sname; *p; ++p)
10523 {
10524 if (*p == '=')
10525 {
10526 *s++ = '=';
10527 *s++ = '=';
10528 }
10529 else if (vim_ispathsep(*p))
10530 {
10531 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010532#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010533 || defined(VMS)
10534 if (*p == ':')
10535 *s++ = '-';
10536 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010537#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010538 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010539 }
10540 else
10541 *s++ = *p;
10542 }
10543 *s++ = '=';
10544 *s++ = c;
10545 STRCPY(s, ".vim");
10546 }
10547
10548 vim_free(sname);
10549 return retval;
10550}
10551
10552#endif /* FEAT_SESSION */
10553
10554/*
10555 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10556 * Return FAIL for a write error.
10557 */
10558 int
10559put_eol(fd)
10560 FILE *fd;
10561{
10562 if (
10563#ifdef USE_CRNL
10564 (
10565# ifdef MKSESSION_NL
10566 !mksession_nl &&
10567# endif
10568 (putc('\r', fd) < 0)) ||
10569#endif
10570 (putc('\n', fd) < 0))
10571 return FAIL;
10572 return OK;
10573}
10574
10575/*
10576 * Write a line to "fd".
10577 * Return FAIL for a write error.
10578 */
10579 int
10580put_line(fd, s)
10581 FILE *fd;
10582 char *s;
10583{
10584 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10585 return FAIL;
10586 return OK;
10587}
10588
10589#ifdef FEAT_VIMINFO
10590/*
10591 * ":rviminfo" and ":wviminfo".
10592 */
10593 static void
10594ex_viminfo(eap)
10595 exarg_T *eap;
10596{
10597 char_u *save_viminfo;
10598
10599 save_viminfo = p_viminfo;
10600 if (*p_viminfo == NUL)
10601 p_viminfo = (char_u *)"'100";
10602 if (eap->cmdidx == CMD_rviminfo)
10603 {
10604 if (read_viminfo(eap->arg, TRUE, TRUE, eap->forceit) == FAIL)
10605 EMSG(_("E195: Cannot open viminfo file for reading"));
10606 }
10607 else
10608 write_viminfo(eap->arg, eap->forceit);
10609 p_viminfo = save_viminfo;
10610}
10611#endif
10612
10613#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010614/*
10615 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010616 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010617 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010618 void
10619dialog_msg(buff, format, fname)
10620 char_u *buff;
10621 char *format;
10622 char_u *fname;
10623{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010624 if (fname == NULL)
10625 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010626 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010627}
10628#endif
10629
10630/*
10631 * ":behave {mswin,xterm}"
10632 */
10633 static void
10634ex_behave(eap)
10635 exarg_T *eap;
10636{
10637 if (STRCMP(eap->arg, "mswin") == 0)
10638 {
10639 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10640 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10641 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10642 set_option_value((char_u *)"keymodel", 0L,
10643 (char_u *)"startsel,stopsel", 0);
10644 }
10645 else if (STRCMP(eap->arg, "xterm") == 0)
10646 {
10647 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10648 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10649 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10650 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10651 }
10652 else
10653 EMSG2(_(e_invarg2), eap->arg);
10654}
10655
10656#ifdef FEAT_AUTOCMD
10657static int filetype_detect = FALSE;
10658static int filetype_plugin = FALSE;
10659static int filetype_indent = FALSE;
10660
10661/*
10662 * ":filetype [plugin] [indent] {on,off,detect}"
10663 * on: Load the filetype.vim file to install autocommands for file types.
10664 * off: Load the ftoff.vim file to remove all autocommands for file types.
10665 * plugin on: load filetype.vim and ftplugin.vim
10666 * plugin off: load ftplugof.vim
10667 * indent on: load filetype.vim and indent.vim
10668 * indent off: load indoff.vim
10669 */
10670 static void
10671ex_filetype(eap)
10672 exarg_T *eap;
10673{
10674 char_u *arg = eap->arg;
10675 int plugin = FALSE;
10676 int indent = FALSE;
10677
10678 if (*eap->arg == NUL)
10679 {
10680 /* Print current status. */
10681 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10682 filetype_detect ? "ON" : "OFF",
10683 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10684 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10685 return;
10686 }
10687
10688 /* Accept "plugin" and "indent" in any order. */
10689 for (;;)
10690 {
10691 if (STRNCMP(arg, "plugin", 6) == 0)
10692 {
10693 plugin = TRUE;
10694 arg = skipwhite(arg + 6);
10695 continue;
10696 }
10697 if (STRNCMP(arg, "indent", 6) == 0)
10698 {
10699 indent = TRUE;
10700 arg = skipwhite(arg + 6);
10701 continue;
10702 }
10703 break;
10704 }
10705 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10706 {
10707 if (*arg == 'o' || !filetype_detect)
10708 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010709 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010710 filetype_detect = TRUE;
10711 if (plugin)
10712 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010713 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010714 filetype_plugin = TRUE;
10715 }
10716 if (indent)
10717 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010718 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010719 filetype_indent = TRUE;
10720 }
10721 }
10722 if (*arg == 'd')
10723 {
10724 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010725 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010726 }
10727 }
10728 else if (STRCMP(arg, "off") == 0)
10729 {
10730 if (plugin || indent)
10731 {
10732 if (plugin)
10733 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010734 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010735 filetype_plugin = FALSE;
10736 }
10737 if (indent)
10738 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010739 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010740 filetype_indent = FALSE;
10741 }
10742 }
10743 else
10744 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010745 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010746 filetype_detect = FALSE;
10747 }
10748 }
10749 else
10750 EMSG2(_(e_invarg2), arg);
10751}
10752
10753/*
10754 * ":setfiletype {name}"
10755 */
10756 static void
10757ex_setfiletype(eap)
10758 exarg_T *eap;
10759{
10760 if (!did_filetype)
10761 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10762}
10763#endif
10764
10765/*ARGSUSED*/
10766 static void
10767ex_digraphs(eap)
10768 exarg_T *eap;
10769{
10770#ifdef FEAT_DIGRAPHS
10771 if (*eap->arg != NUL)
10772 putdigraph(eap->arg);
10773 else
10774 listdigraphs();
10775#else
10776 EMSG(_("E196: No digraphs in this version"));
10777#endif
10778}
10779
10780 static void
10781ex_set(eap)
10782 exarg_T *eap;
10783{
10784 int flags = 0;
10785
10786 if (eap->cmdidx == CMD_setlocal)
10787 flags = OPT_LOCAL;
10788 else if (eap->cmdidx == CMD_setglobal)
10789 flags = OPT_GLOBAL;
10790#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10791 if (cmdmod.browse && flags == 0)
10792 ex_options(eap);
10793 else
10794#endif
10795 (void)do_set(eap->arg, flags);
10796}
10797
10798#ifdef FEAT_SEARCH_EXTRA
10799/*
10800 * ":nohlsearch"
10801 */
10802/*ARGSUSED*/
10803 static void
10804ex_nohlsearch(eap)
10805 exarg_T *eap;
10806{
10807 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010808 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010809}
10810
10811/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010812 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010813 * Sets nextcmd to the start of the next command, if any. Also called when
10814 * skipping commands to find the next command.
10815 */
10816 static void
10817ex_match(eap)
10818 exarg_T *eap;
10819{
10820 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000010821 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010822 char_u *end;
10823 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010824 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010825
10826 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010827 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010828 else
10829 {
10830 EMSG(e_invcmd);
10831 return;
10832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010833
10834 /* First clear any old pattern. */
10835 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010836 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010837
10838 if (ends_excmd(*eap->arg))
10839 end = eap->arg;
10840 else if ((STRNICMP(eap->arg, "none", 4) == 0
10841 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10842 end = eap->arg + 4;
10843 else
10844 {
10845 p = skiptowhite(eap->arg);
10846 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010847 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010848 p = skipwhite(p);
10849 if (*p == NUL)
10850 {
10851 /* There must be two arguments. */
10852 EMSG2(_(e_invarg2), eap->arg);
10853 return;
10854 }
10855 end = skip_regexp(p + 1, *p, TRUE, NULL);
10856 if (!eap->skip)
10857 {
10858 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10859 {
10860 eap->errmsg = e_trailing;
10861 return;
10862 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010863 if (*end != *p)
10864 {
10865 EMSG2(_(e_invarg2), p);
10866 return;
10867 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010868
10869 c = *end;
10870 *end = NUL;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010871 match_add(curwin, g, p + 1, 10, id);
10872 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010873 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010874 }
10875 }
10876 eap->nextcmd = find_nextcmd(end);
10877}
10878#endif
10879
10880#ifdef FEAT_CRYPT
10881/*
10882 * ":X": Get crypt key
10883 */
10884/*ARGSUSED*/
10885 static void
10886ex_X(eap)
10887 exarg_T *eap;
10888{
10889 (void)get_crypt_key(TRUE, TRUE);
10890}
10891#endif
10892
10893#ifdef FEAT_FOLDING
10894 static void
10895ex_fold(eap)
10896 exarg_T *eap;
10897{
10898 if (foldManualAllowed(TRUE))
10899 foldCreate(eap->line1, eap->line2);
10900}
10901
10902 static void
10903ex_foldopen(eap)
10904 exarg_T *eap;
10905{
10906 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
10907 eap->forceit, FALSE);
10908}
10909
10910 static void
10911ex_folddo(eap)
10912 exarg_T *eap;
10913{
10914 linenr_T lnum;
10915
10916 /* First set the marks for all lines closed/open. */
10917 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
10918 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
10919 ml_setmarked(lnum);
10920
10921 /* Execute the command on the marked lines. */
10922 global_exe(eap->arg);
10923 ml_clearmarked(); /* clear rest of the marks */
10924}
10925#endif