blob: 246c4c0b2c908b543c54af2a418b09a7dfde2c5b [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
Bram Moolenaar071d4272004-06-13 20:20:40 +000016static int quitmore = 0;
17static int ex_pressedreturn = FALSE;
18#ifndef FEAT_PRINTER
19# define ex_hardcopy ex_ni
20#endif
21
22#ifdef FEAT_USR_CMDS
23typedef struct ucmd
24{
25 char_u *uc_name; /* The command name */
26 long_u uc_argt; /* The argument type */
27 char_u *uc_rep; /* The command's replacement string */
28 long uc_def; /* The default value for a range/count */
29 scid_T uc_scriptID; /* SID where the command was defined */
30 int uc_compl; /* completion type */
31# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
32 char_u *uc_compl_arg; /* completion argument if any */
33# endif
34} ucmd_T;
35
36#define UC_BUFFER 1 /* -buffer: local to current buffer */
37
Bram Moolenaar2c29bee2005-06-01 21:46:07 +000038static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +000039
40#define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
41#define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
42
43static void do_ucmd __ARGS((exarg_T *eap));
44static void ex_command __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000045static void ex_delcommand __ARGS((exarg_T *eap));
46# ifdef FEAT_CMDL_COMPL
47static char_u *get_user_command_name __ARGS((int idx));
48# endif
49
50#else
51# define ex_command ex_ni
52# define ex_comclear ex_ni
53# define ex_delcommand ex_ni
54#endif
55
56#ifdef FEAT_EVAL
Bram Moolenaar89d40322006-08-29 15:30:07 +000057static 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 +000058#else
Bram Moolenaar89d40322006-08-29 15:30:07 +000059static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000060static int if_level = 0; /* depth in :if */
61#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000062static char_u *find_command __ARGS((exarg_T *eap, int *full));
63
64static void ex_abbreviate __ARGS((exarg_T *eap));
65static void ex_map __ARGS((exarg_T *eap));
66static void ex_unmap __ARGS((exarg_T *eap));
67static void ex_mapclear __ARGS((exarg_T *eap));
68static void ex_abclear __ARGS((exarg_T *eap));
69#ifndef FEAT_MENU
70# define ex_emenu ex_ni
71# define ex_menu ex_ni
72# define ex_menutranslate ex_ni
73#endif
74#ifdef FEAT_AUTOCMD
75static void ex_autocmd __ARGS((exarg_T *eap));
76static void ex_doautocmd __ARGS((exarg_T *eap));
77#else
78# define ex_autocmd ex_ni
79# define ex_doautocmd ex_ni
80# define ex_doautoall ex_ni
81#endif
82#ifdef FEAT_LISTCMDS
83static void ex_bunload __ARGS((exarg_T *eap));
84static void ex_buffer __ARGS((exarg_T *eap));
85static void ex_bmodified __ARGS((exarg_T *eap));
86static void ex_bnext __ARGS((exarg_T *eap));
87static void ex_bprevious __ARGS((exarg_T *eap));
88static void ex_brewind __ARGS((exarg_T *eap));
89static void ex_blast __ARGS((exarg_T *eap));
90#else
91# define ex_bunload ex_ni
92# define ex_buffer ex_ni
93# define ex_bmodified ex_ni
94# define ex_bnext ex_ni
95# define ex_bprevious ex_ni
96# define ex_brewind ex_ni
97# define ex_blast ex_ni
98# define buflist_list ex_ni
99# define ex_checktime ex_ni
100#endif
101#if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
102# define ex_buffer_all ex_ni
103#endif
104static char_u *getargcmd __ARGS((char_u **));
105static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
106static int getargopt __ARGS((exarg_T *eap));
107#ifndef FEAT_QUICKFIX
108# define ex_make ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000109# define ex_cbuffer ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110# define ex_cc ex_ni
111# define ex_cnext ex_ni
112# define ex_cfile ex_ni
113# define qf_list ex_ni
114# define qf_age ex_ni
115# define ex_helpgrep ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000116# define ex_vimgrep ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117#endif
118#if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
119# define ex_cclose ex_ni
120# define ex_copen ex_ni
121# define ex_cwindow ex_ni
122#endif
Bram Moolenaar1e015462005-09-25 22:16:38 +0000123#if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
124# define ex_cexpr ex_ni
125#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126
127static int check_more __ARGS((int, int));
128static linenr_T get_address __ARGS((char_u **, int skip, int to_other_file));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000129static void get_flags __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000131 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
Bram Moolenaar7bb75552007-07-16 18:39:49 +0000132# define HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133static void ex_script_ni __ARGS((exarg_T *eap));
134#endif
135static char_u *invalid_range __ARGS((exarg_T *eap));
136static void correct_range __ARGS((exarg_T *eap));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000137#ifdef FEAT_QUICKFIX
138static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
139#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
141static void ex_highlight __ARGS((exarg_T *eap));
142static void ex_colorscheme __ARGS((exarg_T *eap));
143static void ex_quit __ARGS((exarg_T *eap));
144static void ex_cquit __ARGS((exarg_T *eap));
145static void ex_quit_all __ARGS((exarg_T *eap));
146#ifdef FEAT_WINDOWS
147static void ex_close __ARGS((exarg_T *eap));
Bram Moolenaarf740b292006-02-16 22:11:02 +0000148static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149static void ex_only __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150static void ex_resize __ARGS((exarg_T *eap));
151static void ex_stag __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000152static void ex_tabclose __ARGS((exarg_T *eap));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000153static void ex_tabonly __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000154static void ex_tabnext __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000155static void ex_tabmove __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000156static void ex_tabs __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157#else
158# define ex_close ex_ni
159# define ex_only ex_ni
160# define ex_all ex_ni
161# define ex_resize ex_ni
162# define ex_splitview ex_ni
163# define ex_stag ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000164# define ex_tabnext ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000165# define ex_tabmove ex_ni
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000166# define ex_tabs ex_ni
167# define ex_tabclose ex_ni
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000168# define ex_tabonly ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169#endif
170#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
171static void ex_pclose __ARGS((exarg_T *eap));
172static void ex_ptag __ARGS((exarg_T *eap));
173static void ex_pedit __ARGS((exarg_T *eap));
174#else
175# define ex_pclose ex_ni
176# define ex_ptag ex_ni
177# define ex_pedit ex_ni
178#endif
179static void ex_hide __ARGS((exarg_T *eap));
180static void ex_stop __ARGS((exarg_T *eap));
181static void ex_exit __ARGS((exarg_T *eap));
182static void ex_print __ARGS((exarg_T *eap));
183#ifdef FEAT_BYTEOFF
184static void ex_goto __ARGS((exarg_T *eap));
185#else
186# define ex_goto ex_ni
187#endif
188static void ex_shell __ARGS((exarg_T *eap));
189static void ex_preserve __ARGS((exarg_T *eap));
190static void ex_recover __ARGS((exarg_T *eap));
191#ifndef FEAT_LISTCMDS
192# define ex_argedit ex_ni
193# define ex_argadd ex_ni
194# define ex_argdelete ex_ni
195# define ex_listdo ex_ni
196#endif
197static void ex_mode __ARGS((exarg_T *eap));
198static void ex_wrongmodifier __ARGS((exarg_T *eap));
199static void ex_find __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000200static void ex_open __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201static void ex_edit __ARGS((exarg_T *eap));
202#if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
203# define ex_drop ex_ni
204#endif
205#ifndef FEAT_GUI
206# define ex_gui ex_nogui
207static void ex_nogui __ARGS((exarg_T *eap));
208#endif
209#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
210static void ex_tearoff __ARGS((exarg_T *eap));
211#else
212# define ex_tearoff ex_ni
213#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000214#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215static void ex_popup __ARGS((exarg_T *eap));
216#else
217# define ex_popup ex_ni
218#endif
219#ifndef FEAT_GUI_MSWIN
220# define ex_simalt ex_ni
221#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000222#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223# define gui_mch_find_dialog ex_ni
224# define gui_mch_replace_dialog ex_ni
225#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000226#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227# define ex_helpfind ex_ni
228#endif
229#ifndef FEAT_CSCOPE
230# define do_cscope ex_ni
231# define do_scscope ex_ni
232# define do_cstag ex_ni
233#endif
234#ifndef FEAT_SYN_HL
235# define ex_syntax ex_ni
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000236#endif
237#ifndef FEAT_SPELL
Bram Moolenaarb765d632005-06-07 21:00:02 +0000238# define ex_spell ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000239# define ex_mkspell ex_ni
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000240# define ex_spelldump ex_ni
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000241# define ex_spellinfo ex_ni
Bram Moolenaara1ba8112005-06-28 23:23:32 +0000242# define ex_spellrepall ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000243#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000244#ifndef FEAT_MZSCHEME
245# define ex_mzscheme ex_script_ni
246# define ex_mzfile ex_ni
247#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248#ifndef FEAT_PERL
249# define ex_perl ex_script_ni
250# define ex_perldo ex_ni
251#endif
252#ifndef FEAT_PYTHON
253# define ex_python ex_script_ni
254# define ex_pyfile ex_ni
255#endif
256#ifndef FEAT_TCL
257# define ex_tcl ex_script_ni
258# define ex_tcldo ex_ni
259# define ex_tclfile ex_ni
260#endif
261#ifndef FEAT_RUBY
262# define ex_ruby ex_script_ni
263# define ex_rubydo ex_ni
264# define ex_rubyfile ex_ni
265#endif
266#ifndef FEAT_SNIFF
267# define ex_sniff ex_ni
268#endif
269#ifndef FEAT_KEYMAP
270# define ex_loadkeymap ex_ni
271#endif
272static void ex_swapname __ARGS((exarg_T *eap));
273static void ex_syncbind __ARGS((exarg_T *eap));
274static void ex_read __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275static void ex_pwd __ARGS((exarg_T *eap));
276static void ex_equal __ARGS((exarg_T *eap));
277static void ex_sleep __ARGS((exarg_T *eap));
278static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
279static void ex_winsize __ARGS((exarg_T *eap));
280#ifdef FEAT_WINDOWS
281static void ex_wincmd __ARGS((exarg_T *eap));
282#else
283# define ex_wincmd ex_ni
284#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000285#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286static void ex_winpos __ARGS((exarg_T *eap));
287#else
288# define ex_winpos ex_ni
289#endif
290static void ex_operators __ARGS((exarg_T *eap));
291static void ex_put __ARGS((exarg_T *eap));
292static void ex_copymove __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000293static void ex_may_print __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294static void ex_submagic __ARGS((exarg_T *eap));
295static void ex_join __ARGS((exarg_T *eap));
296static void ex_at __ARGS((exarg_T *eap));
297static void ex_bang __ARGS((exarg_T *eap));
298static void ex_undo __ARGS((exarg_T *eap));
299static void ex_redo __ARGS((exarg_T *eap));
Bram Moolenaarc7d89352006-03-14 22:53:34 +0000300static void ex_later __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301static void ex_redir __ARGS((exarg_T *eap));
302static void ex_redraw __ARGS((exarg_T *eap));
303static void ex_redrawstatus __ARGS((exarg_T *eap));
304static void close_redir __ARGS((void));
305static void ex_mkrc __ARGS((exarg_T *eap));
306static void ex_mark __ARGS((exarg_T *eap));
307#ifdef FEAT_USR_CMDS
308static char_u *uc_fun_cmd __ARGS((void));
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000309static 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 +0000310#endif
311#ifdef FEAT_EX_EXTRA
312static void ex_normal __ARGS((exarg_T *eap));
313static void ex_startinsert __ARGS((exarg_T *eap));
314static void ex_stopinsert __ARGS((exarg_T *eap));
315#else
316# define ex_normal ex_ni
317# define ex_align ex_ni
318# define ex_retab ex_ni
319# define ex_startinsert ex_ni
320# define ex_stopinsert ex_ni
321# define ex_helptags ex_ni
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000322# define ex_sort ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323#endif
324#ifdef FEAT_FIND_ID
325static void ex_checkpath __ARGS((exarg_T *eap));
326static void ex_findpat __ARGS((exarg_T *eap));
327#else
328# define ex_findpat ex_ni
329# define ex_checkpath ex_ni
330#endif
331#if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
332static void ex_psearch __ARGS((exarg_T *eap));
333#else
334# define ex_psearch ex_ni
335#endif
336static void ex_tag __ARGS((exarg_T *eap));
337static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
338#ifndef FEAT_EVAL
339# define ex_scriptnames ex_ni
340# define ex_finish ex_ni
341# define ex_echo ex_ni
342# define ex_echohl ex_ni
343# define ex_execute ex_ni
344# define ex_call ex_ni
345# define ex_if ex_ni
346# define ex_endif ex_ni
347# define ex_else ex_ni
348# define ex_while ex_ni
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000349# define ex_for ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350# define ex_continue ex_ni
351# define ex_break ex_ni
352# define ex_endwhile ex_ni
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000353# define ex_endfor ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354# define ex_throw ex_ni
355# define ex_try ex_ni
356# define ex_catch ex_ni
357# define ex_finally ex_ni
358# define ex_endtry ex_ni
359# define ex_endfunction ex_ni
360# define ex_let ex_ni
361# define ex_unlet ex_ni
Bram Moolenaar65c1b012005-01-31 19:02:28 +0000362# define ex_lockvar ex_ni
363# define ex_unlockvar ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364# define ex_function ex_ni
365# define ex_delfunction ex_ni
366# define ex_return ex_ni
367#endif
368static char_u *arg_all __ARGS((void));
369#ifdef FEAT_SESSION
370static int makeopens __ARGS((FILE *fd, char_u *dirnow));
Bram Moolenaarf13be0d2008-01-02 14:13:10 +0000371static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp, int current_arg_idx));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372static void ex_loadview __ARGS((exarg_T *eap));
373static char_u *get_view_file __ARGS((int c));
Bram Moolenaareeefcc72007-05-01 21:21:21 +0000374static int did_lcd; /* whether ":lcd" was produced for a session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375#else
376# define ex_loadview ex_ni
377#endif
378#ifndef FEAT_EVAL
379# define ex_compiler ex_ni
380#endif
381#ifdef FEAT_VIMINFO
382static void ex_viminfo __ARGS((exarg_T *eap));
383#else
384# define ex_viminfo ex_ni
385#endif
386static void ex_behave __ARGS((exarg_T *eap));
387#ifdef FEAT_AUTOCMD
388static void ex_filetype __ARGS((exarg_T *eap));
389static void ex_setfiletype __ARGS((exarg_T *eap));
390#else
391# define ex_filetype ex_ni
392# define ex_setfiletype ex_ni
393#endif
394#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000395# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396# define ex_diffpatch ex_ni
397# define ex_diffgetput ex_ni
398# define ex_diffsplit ex_ni
399# define ex_diffthis ex_ni
400# define ex_diffupdate ex_ni
401#endif
402static void ex_digraphs __ARGS((exarg_T *eap));
403static void ex_set __ARGS((exarg_T *eap));
404#if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
405# define ex_options ex_ni
406#endif
407#ifdef FEAT_SEARCH_EXTRA
408static void ex_nohlsearch __ARGS((exarg_T *eap));
409static void ex_match __ARGS((exarg_T *eap));
410#else
411# define ex_nohlsearch ex_ni
412# define ex_match ex_ni
413#endif
414#ifdef FEAT_CRYPT
415static void ex_X __ARGS((exarg_T *eap));
416#else
417# define ex_X ex_ni
418#endif
419#ifdef FEAT_FOLDING
420static void ex_fold __ARGS((exarg_T *eap));
421static void ex_foldopen __ARGS((exarg_T *eap));
422static void ex_folddo __ARGS((exarg_T *eap));
423#else
424# define ex_fold ex_ni
425# define ex_foldopen ex_ni
426# define ex_folddo ex_ni
427#endif
428#if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
429 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
430# define ex_language ex_ni
431#endif
432#ifndef FEAT_SIGNS
433# define ex_sign ex_ni
434#endif
435#ifndef FEAT_SUN_WORKSHOP
436# define ex_wsverb ex_ni
437#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000438#ifndef FEAT_NETBEANS_INTG
439# define ex_nbkey ex_ni
440#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441
442#ifndef FEAT_EVAL
443# define ex_debug ex_ni
444# define ex_breakadd ex_ni
445# define ex_debuggreedy ex_ni
446# define ex_breakdel ex_ni
447# define ex_breaklist ex_ni
448#endif
449
450#ifndef FEAT_CMDHIST
451# define ex_history ex_ni
452#endif
453#ifndef FEAT_JUMPLIST
454# define ex_jumps ex_ni
455# define ex_changes ex_ni
456#endif
457
Bram Moolenaar05159a02005-02-26 23:04:13 +0000458#ifndef FEAT_PROFILE
459# define ex_profile ex_ni
460#endif
461
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462/*
463 * Declare cmdnames[].
464 */
465#define DO_DECLARE_EXCMD
466#include "ex_cmds.h"
467
468/*
469 * Table used to quickly search for a command, based on its first character.
470 */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +0000471static cmdidx_T cmdidxs[27] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472{
473 CMD_append,
474 CMD_buffer,
475 CMD_change,
476 CMD_delete,
477 CMD_edit,
478 CMD_file,
479 CMD_global,
480 CMD_help,
481 CMD_insert,
482 CMD_join,
483 CMD_k,
484 CMD_list,
485 CMD_move,
486 CMD_next,
487 CMD_open,
488 CMD_print,
489 CMD_quit,
490 CMD_read,
491 CMD_substitute,
492 CMD_t,
493 CMD_undo,
494 CMD_vglobal,
495 CMD_write,
496 CMD_xit,
497 CMD_yank,
498 CMD_z,
499 CMD_bang
500};
501
502static char_u dollar_command[2] = {'$', 0};
503
504
505#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000506/* Struct for storing a line inside a while/for loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507typedef struct
508{
509 char_u *line; /* command line */
510 linenr_T lnum; /* sourcing_lnum of the line */
511} wcmd_T;
512
513/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000514 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000516 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000518struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519{
520 garray_T *lines_gap; /* growarray with line info */
521 int current_line; /* last read line from growarray */
522 int repeating; /* TRUE when looping a second time */
523 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
524 char_u *(*getline) __ARGS((int, void *, int));
525 void *cookie;
526};
527
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000528static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
529static int store_loop_line __ARGS((garray_T *gap, char_u *line));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530static void free_cmdlines __ARGS((garray_T *gap));
Bram Moolenaared203462004-06-16 11:19:22 +0000531
532/* Struct to save a few things while debugging. Used in do_cmdline() only. */
533struct dbg_stuff
534{
535 int trylevel;
536 int force_abort;
537 except_T *caught_stack;
538 char_u *vv_exception;
539 char_u *vv_throwpoint;
540 int did_emsg;
541 int got_int;
542 int did_throw;
543 int need_rethrow;
544 int check_cstack;
545 except_T *current_exception;
546};
547
548static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
549static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
550
551 static void
552save_dbg_stuff(dsp)
553 struct dbg_stuff *dsp;
554{
555 dsp->trylevel = trylevel; trylevel = 0;
556 dsp->force_abort = force_abort; force_abort = FALSE;
557 dsp->caught_stack = caught_stack; caught_stack = NULL;
558 dsp->vv_exception = v_exception(NULL);
559 dsp->vv_throwpoint = v_throwpoint(NULL);
560
561 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
562 dsp->did_emsg = did_emsg; did_emsg = FALSE;
563 dsp->got_int = got_int; got_int = FALSE;
564 dsp->did_throw = did_throw; did_throw = FALSE;
565 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
566 dsp->check_cstack = check_cstack; check_cstack = FALSE;
567 dsp->current_exception = current_exception; current_exception = NULL;
568}
569
570 static void
571restore_dbg_stuff(dsp)
572 struct dbg_stuff *dsp;
573{
574 suppress_errthrow = FALSE;
575 trylevel = dsp->trylevel;
576 force_abort = dsp->force_abort;
577 caught_stack = dsp->caught_stack;
578 (void)v_exception(dsp->vv_exception);
579 (void)v_throwpoint(dsp->vv_throwpoint);
580 did_emsg = dsp->did_emsg;
581 got_int = dsp->got_int;
582 did_throw = dsp->did_throw;
583 need_rethrow = dsp->need_rethrow;
584 check_cstack = dsp->check_cstack;
585 current_exception = dsp->current_exception;
586}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587#endif
588
589
590/*
591 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
592 * command is given.
593 */
594 void
595do_exmode(improved)
596 int improved; /* TRUE for "improved Ex" mode */
597{
598 int save_msg_scroll;
599 int prev_msg_row;
600 linenr_T prev_line;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000601 int changedtick;
602
603 if (improved)
604 exmode_active = EXMODE_VIM;
605 else
606 exmode_active = EXMODE_NORMAL;
607 State = NORMAL;
608
609 /* When using ":global /pat/ visual" and then "Q" we return to continue
610 * the :global command. */
611 if (global_busy)
612 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613
614 save_msg_scroll = msg_scroll;
615 ++RedrawingDisabled; /* don't redisplay the window */
616 ++no_wait_return; /* don't wait for return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617#ifdef FEAT_GUI
618 /* Ignore scrollbar and mouse events in Ex mode */
619 ++hold_gui_events;
620#endif
621#ifdef FEAT_SNIFF
622 want_sniff_request = 0; /* No K_SNIFF wanted */
623#endif
624
625 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
626 while (exmode_active)
627 {
Bram Moolenaar7c626922005-02-07 22:01:03 +0000628#ifdef FEAT_EX_EXTRA
629 /* Check for a ":normal" command and no more characters left. */
630 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
631 {
632 exmode_active = FALSE;
633 break;
634 }
635#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 msg_scroll = TRUE;
637 need_wait_return = FALSE;
638 ex_pressedreturn = FALSE;
639 ex_no_reprint = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000640 changedtick = curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 prev_msg_row = msg_row;
642 prev_line = curwin->w_cursor.lnum;
643#ifdef FEAT_SNIFF
644 ProcessSniffRequests();
645#endif
646 if (improved)
647 {
648 cmdline_row = msg_row;
649 do_cmdline(NULL, getexline, NULL, 0);
650 }
651 else
652 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
653 lines_left = Rows - 1;
654
Bram Moolenaardf177f62005-02-22 08:39:57 +0000655 if ((prev_line != curwin->w_cursor.lnum
656 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000658 if (curbuf->b_ml.ml_flags & ML_EMPTY)
659 EMSG(_(e_emptybuf));
660 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000661 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000662 if (ex_pressedreturn)
663 {
664 /* go up one line, to overwrite the ":<CR>" line, so the
Bram Moolenaar81870892007-11-11 18:17:28 +0000665 * output doesn't contain empty lines. */
Bram Moolenaardf177f62005-02-22 08:39:57 +0000666 msg_row = prev_msg_row;
667 if (prev_msg_row == Rows - 1)
668 msg_row--;
669 }
670 msg_col = 0;
671 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
672 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 }
Bram Moolenaardf177f62005-02-22 08:39:57 +0000675 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
676 {
677 if (curbuf->b_ml.ml_flags & ML_EMPTY)
678 EMSG(_(e_emptybuf));
679 else
680 EMSG(_("E501: At end-of-file"));
681 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 }
683
684#ifdef FEAT_GUI
685 --hold_gui_events;
686#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687 --RedrawingDisabled;
688 --no_wait_return;
689 update_screen(CLEAR);
690 need_wait_return = FALSE;
691 msg_scroll = save_msg_scroll;
692}
693
694/*
695 * Execute a simple command line. Used for translated commands like "*".
696 */
697 int
698do_cmdline_cmd(cmd)
699 char_u *cmd;
700{
701 return do_cmdline(cmd, NULL, NULL,
702 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
703}
704
705/*
706 * do_cmdline(): execute one Ex command line
707 *
708 * 1. Execute "cmdline" when it is not NULL.
709 * If "cmdline" is NULL, or more lines are needed, getline() is used.
710 * 2. Split up in parts separated with '|'.
711 *
712 * This function can be called recursively!
713 *
714 * flags:
715 * DOCMD_VERBOSE - The command will be included in the error message.
716 * DOCMD_NOWAIT - Don't call wait_return() and friends.
717 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
718 * DOCMD_KEYTYPED - Don't reset KeyTyped.
719 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
720 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
721 *
722 * return FAIL if cmdline could not be executed, OK otherwise
723 */
724 int
725do_cmdline(cmdline, getline, cookie, flags)
726 char_u *cmdline;
727 char_u *(*getline) __ARGS((int, void *, int));
728 void *cookie; /* argument for getline() */
729 int flags;
730{
731 char_u *next_cmdline; /* next cmd to execute */
732 char_u *cmdline_copy = NULL; /* copy of cmd line */
733 int used_getline = FALSE; /* used "getline" to obtain command */
734 static int recursive = 0; /* recursive depth */
735 int msg_didout_before_start = 0;
736 int count = 0; /* line number count */
737 int did_inc = FALSE; /* incremented RedrawingDisabled */
738 int retval = OK;
739#ifdef FEAT_EVAL
740 struct condstack cstack; /* conditional stack */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000741 garray_T lines_ga; /* keep lines for ":while"/":for" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 int current_line = 0; /* active line in lines_ga */
743 char_u *fname = NULL; /* function or script name */
744 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
745 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
Bram Moolenaared203462004-06-16 11:19:22 +0000746 struct dbg_stuff debug_saved; /* saved things for debug mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 int initial_trylevel;
748 struct msglist **saved_msg_list = NULL;
749 struct msglist *private_msg_list;
750
751 /* "getline" and "cookie" passed to do_one_cmd() */
752 char_u *(*cmd_getline) __ARGS((int, void *, int));
753 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000754 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000756 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757#else
758# define cmd_getline getline
759# define cmd_cookie cookie
760#endif
761 static int call_depth = 0; /* recursiveness */
762
763#ifdef FEAT_EVAL
764 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
765 * location for storing error messages to be converted to an exception.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000766 * This ensures that the do_errthrow() call in do_one_cmd() does not
767 * combine the messages stored by an earlier invocation of do_one_cmd()
768 * with the command name of the later one. This would happen when
769 * BufWritePost autocommands are executed after a write error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770 saved_msg_list = msg_list;
771 msg_list = &private_msg_list;
772 private_msg_list = NULL;
773#endif
774
775 /* It's possible to create an endless loop with ":execute", catch that
776 * here. The value of 200 allows nested function calls, ":source", etc. */
777 if (call_depth == 200)
778 {
779 EMSG(_("E169: Command too recursive"));
780#ifdef FEAT_EVAL
781 /* When converting to an exception, we do not include the command name
782 * since this is not an error of the specific command. */
783 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
784 msg_list = saved_msg_list;
785#endif
786 return FAIL;
787 }
788 ++call_depth;
789
790#ifdef FEAT_EVAL
791 cstack.cs_idx = -1;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000792 cstack.cs_looplevel = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 cstack.cs_trylevel = 0;
794 cstack.cs_emsg_silent_list = NULL;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000795 cstack.cs_lflags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
797
798 real_cookie = getline_cookie(getline, cookie);
799
800 /* Inside a function use a higher nesting level. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000801 getline_is_func = getline_equal(getline, cookie, get_func_line);
802 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 ++ex_nesting_level;
804
805 /* Get the function or script name and the address where the next breakpoint
806 * line and the debug tick for a function or script are stored. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000807 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 {
809 fname = func_name(real_cookie);
810 breakpoint = func_breakpoint(real_cookie);
811 dbg_tick = func_dbg_tick(real_cookie);
812 }
813 else if (getline_equal(getline, cookie, getsourceline))
814 {
815 fname = sourcing_name;
816 breakpoint = source_breakpoint(real_cookie);
817 dbg_tick = source_dbg_tick(real_cookie);
818 }
819
820 /*
821 * Initialize "force_abort" and "suppress_errthrow" at the top level.
822 */
823 if (!recursive)
824 {
825 force_abort = FALSE;
826 suppress_errthrow = FALSE;
827 }
828
829 /*
830 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000831 * exception handling (used when debugging). Otherwise clear it to avoid
832 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000834 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000835 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000836 else
837 memset(&debug_saved, 0, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838
839 initial_trylevel = trylevel;
840
841 /*
842 * "did_throw" will be set to TRUE when an exception is being thrown.
843 */
844 did_throw = FALSE;
845#endif
846 /*
847 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000848 * cancel the whole command line, and any if/endif or loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 * If force_abort is set, we cancel everything.
850 */
851 did_emsg = FALSE;
852
853 /*
854 * KeyTyped is only set when calling vgetc(). Reset it here when not
855 * calling vgetc() (sourced command lines).
856 */
857 if (!(flags & DOCMD_KEYTYPED) && !getline_equal(getline, cookie, getexline))
858 KeyTyped = FALSE;
859
860 /*
861 * Continue executing command lines:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000862 * - when inside an ":if", ":while" or ":for"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 * - for multiple commands on one line, separated with '|'
864 * - when repeating until there are no more lines (for ":source")
865 */
866 next_cmdline = cmdline;
867 do
868 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000869#ifdef FEAT_EVAL
870 getline_is_func = getline_equal(getline, cookie, get_func_line);
871#endif
872
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000873 /* stop skipping cmds for an error msg after all endif/while/for */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 if (next_cmdline == NULL
875#ifdef FEAT_EVAL
876 && !force_abort
877 && cstack.cs_idx < 0
Bram Moolenaar05159a02005-02-26 23:04:13 +0000878 && !(getline_is_func && func_has_abort(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879#endif
880 )
881 did_emsg = FALSE;
882
883 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000884 * 1. If repeating a line in a loop, get a line from lines_ga.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885 * 2. If no line given: Get an allocated line with getline().
886 * 3. If a line is given: Make a copy, so we can mess with it.
887 */
888
889#ifdef FEAT_EVAL
890 /* 1. If repeating, get a previous line from lines_ga. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000891 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 {
893 /* Each '|' separated command is stored separately in lines_ga, to
894 * be able to jump to it. Don't use next_cmdline now. */
895 vim_free(cmdline_copy);
896 cmdline_copy = NULL;
897
898 /* Check if a function has returned or, unless it has an unclosed
899 * try conditional, aborted. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000900 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000902# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000903 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000904 func_line_end(real_cookie);
905# endif
906 if (func_has_ended(real_cookie))
907 {
908 retval = FAIL;
909 break;
910 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000912#ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000913 else if (do_profiling == PROF_YES
Bram Moolenaar05159a02005-02-26 23:04:13 +0000914 && getline_equal(getline, cookie, getsourceline))
915 script_line_end();
916#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917
918 /* Check if a sourced file hit a ":finish" command. */
919 if (source_finished(getline, cookie))
920 {
921 retval = FAIL;
922 break;
923 }
924
925 /* If breakpoints have been added/deleted need to check for it. */
926 if (breakpoint != NULL && dbg_tick != NULL
927 && *dbg_tick != debug_tick)
928 {
929 *breakpoint = dbg_find_breakpoint(
930 getline_equal(getline, cookie, getsourceline),
931 fname, sourcing_lnum);
932 *dbg_tick = debug_tick;
933 }
934
935 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
936 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
937
938 /* Did we encounter a breakpoint? */
939 if (breakpoint != NULL && *breakpoint != 0
940 && *breakpoint <= sourcing_lnum)
941 {
942 dbg_breakpoint(fname, sourcing_lnum);
943 /* Find next breakpoint. */
944 *breakpoint = dbg_find_breakpoint(
945 getline_equal(getline, cookie, getsourceline),
946 fname, sourcing_lnum);
947 *dbg_tick = debug_tick;
948 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000949# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000950 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000951 {
952 if (getline_is_func)
953 func_line_start(real_cookie);
954 else if (getline_equal(getline, cookie, getsourceline))
955 script_line_start();
956 }
957# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 }
959
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000960 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000962 /* Inside a while/for loop we need to store the lines and use them
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 * again. Pass a different "getline" function to do_one_cmd()
964 * below, so that it stores lines in or reads them from
965 * "lines_ga". Makes it possible to define a function inside a
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000966 * while/for loop. */
967 cmd_getline = get_loop_line;
968 cmd_cookie = (void *)&cmd_loop_cookie;
969 cmd_loop_cookie.lines_gap = &lines_ga;
970 cmd_loop_cookie.current_line = current_line;
971 cmd_loop_cookie.getline = getline;
972 cmd_loop_cookie.cookie = cookie;
973 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 }
975 else
976 {
977 cmd_getline = getline;
978 cmd_cookie = cookie;
979 }
980#endif
981
982 /* 2. If no line given, get an allocated line with getline(). */
983 if (next_cmdline == NULL)
984 {
985 /*
986 * Need to set msg_didout for the first line after an ":if",
987 * otherwise the ":if" will be overwritten.
988 */
989 if (count == 1 && getline_equal(getline, cookie, getexline))
990 msg_didout = TRUE;
991 if (getline == NULL || (next_cmdline = getline(':', cookie,
992#ifdef FEAT_EVAL
993 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
994#else
995 0
996#endif
997 )) == NULL)
998 {
999 /* Don't call wait_return for aborted command line. The NULL
1000 * returned for the end of a sourced file or executed function
1001 * doesn't do this. */
1002 if (KeyTyped && !(flags & DOCMD_REPEAT))
1003 need_wait_return = FALSE;
1004 retval = FAIL;
1005 break;
1006 }
1007 used_getline = TRUE;
1008
1009 /*
1010 * Keep the first typed line. Clear it when more lines are typed.
1011 */
1012 if (flags & DOCMD_KEEPLINE)
1013 {
1014 vim_free(repeat_cmdline);
1015 if (count == 0)
1016 repeat_cmdline = vim_strsave(next_cmdline);
1017 else
1018 repeat_cmdline = NULL;
1019 }
1020 }
1021
1022 /* 3. Make a copy of the command so we can mess with it. */
1023 else if (cmdline_copy == NULL)
1024 {
1025 next_cmdline = vim_strsave(next_cmdline);
1026 if (next_cmdline == NULL)
1027 {
1028 EMSG(_(e_outofmem));
1029 retval = FAIL;
1030 break;
1031 }
1032 }
1033 cmdline_copy = next_cmdline;
1034
1035#ifdef FEAT_EVAL
1036 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001037 * Save the current line when inside a ":while" or ":for", and when
1038 * the command looks like a ":while" or ":for", because we may need it
1039 * later. When there is a '|' and another command, it is stored
1040 * separately, because we need to be able to jump back to it from an
1041 * :endwhile/:endfor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001043 if (current_line == lines_ga.ga_len
1044 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001046 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 {
1048 retval = FAIL;
1049 break;
1050 }
1051 }
1052 did_endif = FALSE;
1053#endif
1054
1055 if (count++ == 0)
1056 {
1057 /*
1058 * All output from the commands is put below each other, without
1059 * waiting for a return. Don't do this when executing commands
1060 * from a script or when being called recursive (e.g. for ":e
1061 * +command file").
1062 */
1063 if (!(flags & DOCMD_NOWAIT) && !recursive)
1064 {
1065 msg_didout_before_start = msg_didout;
1066 msg_didany = FALSE; /* no output yet */
1067 msg_start();
1068 msg_scroll = TRUE; /* put messages below each other */
1069 ++no_wait_return; /* dont wait for return until finished */
1070 ++RedrawingDisabled;
1071 did_inc = TRUE;
1072 }
1073 }
1074
1075 if (p_verbose >= 15 && sourcing_name != NULL)
1076 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077 ++no_wait_return;
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001078 verbose_enter_scroll();
1079
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 smsg((char_u *)_("line %ld: %s"),
1081 (long)sourcing_lnum, cmdline_copy);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001082 if (msg_silent == 0)
1083 msg_puts((char_u *)"\n"); /* don't overwrite this */
1084
1085 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086 --no_wait_return;
1087 }
1088
1089 /*
1090 * 2. Execute one '|' separated command.
1091 * do_one_cmd() will return NULL if there is no trailing '|'.
1092 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1093 */
1094 ++recursive;
1095 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1096#ifdef FEAT_EVAL
1097 &cstack,
1098#endif
1099 cmd_getline, cmd_cookie);
1100 --recursive;
1101
1102#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001103 if (cmd_cookie == (void *)&cmd_loop_cookie)
1104 /* Use "current_line" from "cmd_loop_cookie", it may have been
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 * incremented when defining a function. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001106 current_line = cmd_loop_cookie.current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107#endif
1108
1109 if (next_cmdline == NULL)
1110 {
1111 vim_free(cmdline_copy);
1112 cmdline_copy = NULL;
1113#ifdef FEAT_CMDHIST
1114 /*
1115 * If the command was typed, remember it for the ':' register.
1116 * Do this AFTER executing the command to make :@: work.
1117 */
1118 if (getline_equal(getline, cookie, getexline)
1119 && new_last_cmdline != NULL)
1120 {
1121 vim_free(last_cmdline);
1122 last_cmdline = new_last_cmdline;
1123 new_last_cmdline = NULL;
1124 }
1125#endif
1126 }
1127 else
1128 {
1129 /* need to copy the command after the '|' to cmdline_copy, for the
1130 * next do_one_cmd() */
Bram Moolenaara7241f52008-06-24 20:39:31 +00001131 STRMOVE(cmdline_copy, next_cmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 next_cmdline = cmdline_copy;
1133 }
1134
1135
1136#ifdef FEAT_EVAL
1137 /* reset did_emsg for a function that is not aborted by an error */
1138 if (did_emsg && !force_abort
1139 && getline_equal(getline, cookie, get_func_line)
1140 && !func_has_abort(real_cookie))
1141 did_emsg = FALSE;
1142
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001143 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 {
1145 ++current_line;
1146
1147 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001148 * An ":endwhile", ":endfor" and ":continue" is handled here.
1149 * If we were executing commands, jump back to the ":while" or
1150 * ":for".
1151 * If we were not executing commands, decrement cs_looplevel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001153 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001155 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001157 /* Jump back to the matching ":while" or ":for". Be careful
1158 * not to use a cs_line[] from an entry that isn't a ":while"
1159 * or ":for": It would make "current_line" invalid and can
1160 * cause a crash. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 if (!did_emsg && !got_int && !did_throw
1162 && cstack.cs_idx >= 0
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001163 && (cstack.cs_flags[cstack.cs_idx]
1164 & (CSF_WHILE | CSF_FOR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 && cstack.cs_line[cstack.cs_idx] >= 0
1166 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1167 {
1168 current_line = cstack.cs_line[cstack.cs_idx];
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001169 /* remember we jumped there */
1170 cstack.cs_lflags |= CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 line_breakcheck(); /* check if CTRL-C typed */
1172
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001173 /* Check for the next breakpoint at or after the ":while"
1174 * or ":for". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175 if (breakpoint != NULL)
1176 {
1177 *breakpoint = dbg_find_breakpoint(
1178 getline_equal(getline, cookie, getsourceline),
1179 fname,
1180 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1181 *dbg_tick = debug_tick;
1182 }
1183 }
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001184 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001186 /* can only get here with ":endwhile" or ":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 if (cstack.cs_idx >= 0)
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001188 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1189 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 }
1191 }
1192
1193 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001194 * For a ":while" or ":for" we need to remember the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001196 else if (cstack.cs_lflags & CSL_HAD_LOOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001198 cstack.cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1200 }
1201 }
1202
1203 /*
1204 * When not inside any ":while" loop, clear remembered lines.
1205 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001206 if (cstack.cs_looplevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207 {
1208 if (lines_ga.ga_len > 0)
1209 {
1210 sourcing_lnum =
1211 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1212 free_cmdlines(&lines_ga);
1213 }
1214 current_line = 0;
1215 }
1216
1217 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001218 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1219 * being restored at the ":endtry". Reset them here and set the
1220 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1221 * This includes the case where a missing ":endif", ":endwhile" or
1222 * ":endfor" was detected by the ":finally" itself.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001224 if (cstack.cs_lflags & CSL_HAD_FINA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001226 cstack.cs_lflags &= ~CSL_HAD_FINA;
1227 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1228 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 did_throw ? (void *)current_exception : NULL);
1230 did_emsg = got_int = did_throw = FALSE;
1231 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1232 }
1233
1234 /* Update global "trylevel" for recursive calls to do_cmdline() from
1235 * within this loop. */
1236 trylevel = initial_trylevel + cstack.cs_trylevel;
1237
1238 /*
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001239 * If the outermost try conditional (across function calls and sourced
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 * files) is aborted because of an error, an interrupt, or an uncaught
1241 * exception, cancel everything. If it is left normally, reset
1242 * force_abort to get the non-EH compatible abortion behavior for
1243 * the rest of the script.
1244 */
1245 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1246 force_abort = FALSE;
1247
1248 /* Convert an interrupt to an exception if appropriate. */
1249 (void)do_intthrow(&cstack);
1250#endif /* FEAT_EVAL */
1251
1252 }
1253 /*
1254 * Continue executing command lines when:
1255 * - no CTRL-C typed, no aborting error, no exception thrown or try
1256 * conditionals need to be checked for executing finally clauses or
1257 * catching an interrupt exception
1258 * - didn't get an error message or lines are not typed
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001259 * - there is a command after '|', inside a :if, :while, :for or :try, or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 * looping for ":source" command or function call.
1261 */
1262 while (!((got_int
1263#ifdef FEAT_EVAL
1264 || (did_emsg && force_abort) || did_throw
1265#endif
1266 )
1267#ifdef FEAT_EVAL
1268 && cstack.cs_trylevel == 0
1269#endif
1270 )
1271 && !(did_emsg && used_getline
1272 && (getline_equal(getline, cookie, getexmodeline)
1273 || getline_equal(getline, cookie, getexline)))
1274 && (next_cmdline != NULL
1275#ifdef FEAT_EVAL
1276 || cstack.cs_idx >= 0
1277#endif
1278 || (flags & DOCMD_REPEAT)));
1279
1280 vim_free(cmdline_copy);
1281#ifdef FEAT_EVAL
1282 free_cmdlines(&lines_ga);
1283 ga_clear(&lines_ga);
1284
1285 if (cstack.cs_idx >= 0)
1286 {
1287 /*
1288 * If a sourced file or executed function ran to its end, report the
1289 * unclosed conditional.
1290 */
1291 if (!got_int && !did_throw
1292 && ((getline_equal(getline, cookie, getsourceline)
1293 && !source_finished(getline, cookie))
1294 || (getline_equal(getline, cookie, get_func_line)
1295 && !func_has_ended(real_cookie))))
1296 {
1297 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1298 EMSG(_(e_endtry));
1299 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1300 EMSG(_(e_endwhile));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001301 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1302 EMSG(_(e_endfor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 else
1304 EMSG(_(e_endif));
1305 }
1306
1307 /*
1308 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1309 * ":endtry" in a sourced file or executed function. If the try
1310 * conditional is in its finally clause, ignore anything pending.
1311 * If it is in a catch clause, finish the caught exception.
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001312 * Also cleanup any "cs_forinfo" structures.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 */
1314 do
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001315 {
1316 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1317
Bram Moolenaar89e5d682005-01-17 22:06:23 +00001318 if (idx >= 0)
1319 --idx; /* remove try block not in its finally clause */
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001320 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1321 &cstack.cs_looplevel);
1322 }
1323 while (cstack.cs_idx >= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324 trylevel = initial_trylevel;
1325 }
1326
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001327 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1328 * lack was reported above and the error message is to be converted to an
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 * exception, do this now after rewinding the cstack. */
1330 do_errthrow(&cstack, getline_equal(getline, cookie, get_func_line)
1331 ? (char_u *)"endfunction" : (char_u *)NULL);
1332
1333 if (trylevel == 0)
1334 {
1335 /*
1336 * When an exception is being thrown out of the outermost try
1337 * conditional, discard the uncaught exception, disable the conversion
1338 * of interrupts or errors to exceptions, and ensure that no more
1339 * commands are executed.
1340 */
1341 if (did_throw)
1342 {
1343 void *p = NULL;
1344 char_u *saved_sourcing_name;
1345 int saved_sourcing_lnum;
1346 struct msglist *messages = NULL, *next;
1347
1348 /*
1349 * If the uncaught exception is a user exception, report it as an
1350 * error. If it is an error exception, display the saved error
1351 * message now. For an interrupt exception, do nothing; the
1352 * interrupt message is given elsewhere.
1353 */
1354 switch (current_exception->type)
1355 {
1356 case ET_USER:
Bram Moolenaar9c13b352005-05-19 20:53:52 +00001357 vim_snprintf((char *)IObuff, IOSIZE,
1358 _("E605: Exception not caught: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 current_exception->value);
1360 p = vim_strsave(IObuff);
1361 break;
1362 case ET_ERROR:
1363 messages = current_exception->messages;
1364 current_exception->messages = NULL;
1365 break;
1366 case ET_INTERRUPT:
1367 break;
1368 default:
1369 p = vim_strsave((char_u *)_(e_internal));
1370 }
1371
1372 saved_sourcing_name = sourcing_name;
1373 saved_sourcing_lnum = sourcing_lnum;
1374 sourcing_name = current_exception->throw_name;
1375 sourcing_lnum = current_exception->throw_lnum;
1376 current_exception->throw_name = NULL;
1377
1378 discard_current_exception(); /* uses IObuff if 'verbose' */
1379 suppress_errthrow = TRUE;
1380 force_abort = TRUE;
1381
1382 if (messages != NULL)
1383 {
1384 do
1385 {
1386 next = messages->next;
1387 emsg(messages->msg);
1388 vim_free(messages->msg);
1389 vim_free(messages);
1390 messages = next;
1391 }
1392 while (messages != NULL);
1393 }
1394 else if (p != NULL)
1395 {
1396 emsg(p);
1397 vim_free(p);
1398 }
1399 vim_free(sourcing_name);
1400 sourcing_name = saved_sourcing_name;
1401 sourcing_lnum = saved_sourcing_lnum;
1402 }
1403
1404 /*
1405 * On an interrupt or an aborting error not converted to an exception,
1406 * disable the conversion of errors to exceptions. (Interrupts are not
1407 * converted any more, here.) This enables also the interrupt message
1408 * when force_abort is set and did_emsg unset in case of an interrupt
1409 * from a finally clause after an error.
1410 */
1411 else if (got_int || (did_emsg && force_abort))
1412 suppress_errthrow = TRUE;
1413 }
1414
1415 /*
1416 * The current cstack will be freed when do_cmdline() returns. An uncaught
1417 * exception will have to be rethrown in the previous cstack. If a function
1418 * has just returned or a script file was just finished and the previous
1419 * cstack belongs to the same function or, respectively, script file, it
1420 * will have to be checked for finally clauses to be executed due to the
1421 * ":return" or ":finish". This is done in do_one_cmd().
1422 */
1423 if (did_throw)
1424 need_rethrow = TRUE;
1425 if ((getline_equal(getline, cookie, getsourceline)
1426 && ex_nesting_level > source_level(real_cookie))
1427 || (getline_equal(getline, cookie, get_func_line)
1428 && ex_nesting_level > func_level(real_cookie) + 1))
1429 {
1430 if (!did_throw)
1431 check_cstack = TRUE;
1432 }
1433 else
1434 {
1435 /* When leaving a function, reduce nesting level. */
1436 if (getline_equal(getline, cookie, get_func_line))
1437 --ex_nesting_level;
1438 /*
1439 * Go to debug mode when returning from a function in which we are
1440 * single-stepping.
1441 */
1442 if ((getline_equal(getline, cookie, getsourceline)
1443 || getline_equal(getline, cookie, get_func_line))
1444 && ex_nesting_level + 1 <= debug_break_level)
1445 do_debug(getline_equal(getline, cookie, getsourceline)
1446 ? (char_u *)_("End of sourced file")
1447 : (char_u *)_("End of function"));
1448 }
1449
1450 /*
1451 * Restore the exception environment (done after returning from the
1452 * debugger).
1453 */
1454 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +00001455 restore_dbg_stuff(&debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456
1457 msg_list = saved_msg_list;
1458#endif /* FEAT_EVAL */
1459
1460 /*
1461 * If there was too much output to fit on the command line, ask the user to
1462 * hit return before redrawing the screen. With the ":global" command we do
1463 * this only once after the command is finished.
1464 */
1465 if (did_inc)
1466 {
1467 --RedrawingDisabled;
1468 --no_wait_return;
1469 msg_scroll = FALSE;
1470
1471 /*
1472 * When just finished an ":if"-":else" which was typed, no need to
1473 * wait for hit-return. Also for an error situation.
1474 */
1475 if (retval == FAIL
1476#ifdef FEAT_EVAL
1477 || (did_endif && KeyTyped && !did_emsg)
1478#endif
1479 )
1480 {
1481 need_wait_return = FALSE;
1482 msg_didany = FALSE; /* don't wait when restarting edit */
1483 }
1484 else if (need_wait_return)
1485 {
1486 /*
1487 * The msg_start() above clears msg_didout. The wait_return we do
1488 * here should not overwrite the command that may be shown before
1489 * doing that.
1490 */
1491 msg_didout |= msg_didout_before_start;
1492 wait_return(FALSE);
1493 }
1494 }
1495
1496#ifndef FEAT_EVAL
1497 /*
1498 * Reset if_level, in case a sourced script file contains more ":if" than
1499 * ":endif" (could be ":if x | foo | endif").
1500 */
1501 if_level = 0;
1502#endif
1503
1504 --call_depth;
1505 return retval;
1506}
1507
1508#ifdef FEAT_EVAL
1509/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001510 * Obtain a line when inside a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511 */
1512 static char_u *
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001513get_loop_line(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 int c;
1515 void *cookie;
1516 int indent;
1517{
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001518 struct loop_cookie *cp = (struct loop_cookie *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 wcmd_T *wp;
1520 char_u *line;
1521
1522 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1523 {
1524 if (cp->repeating)
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001525 return NULL; /* trying to read past ":endwhile"/":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001527 /* First time inside the ":while"/":for": get line normally. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 if (cp->getline == NULL)
1529 line = getcmdline(c, 0L, indent);
1530 else
1531 line = cp->getline(c, cp->cookie, indent);
Bram Moolenaard68071d2006-05-02 22:08:30 +00001532 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 ++cp->current_line;
1534
1535 return line;
1536 }
1537
1538 KeyTyped = FALSE;
1539 ++cp->current_line;
1540 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1541 sourcing_lnum = wp->lnum;
1542 return vim_strsave(wp->line);
1543}
1544
1545/*
1546 * Store a line in "gap" so that a ":while" loop can execute it again.
1547 */
1548 static int
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001549store_loop_line(gap, line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 garray_T *gap;
1551 char_u *line;
1552{
1553 if (ga_grow(gap, 1) == FAIL)
1554 return FAIL;
1555 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1556 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1557 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 return OK;
1559}
1560
1561/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001562 * Free the lines stored for a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 */
1564 static void
1565free_cmdlines(gap)
1566 garray_T *gap;
1567{
1568 while (gap->ga_len > 0)
1569 {
1570 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1571 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 }
1573}
1574#endif
1575
1576/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001577 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1578 * "func". * Otherwise return TRUE when "fgetline" equals "func".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 */
1580/*ARGSUSED*/
1581 int
Bram Moolenaar89d40322006-08-29 15:30:07 +00001582getline_equal(fgetline, cookie, func)
1583 char_u *(*fgetline) __ARGS((int, void *, int));
1584 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 char_u *(*func) __ARGS((int, void *, int));
1586{
1587#ifdef FEAT_EVAL
1588 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001589 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590
Bram Moolenaar89d40322006-08-29 15:30:07 +00001591 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001592 * function that's originally used to obtain the lines. This may be
1593 * nested several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001594 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001595 cp = (struct loop_cookie *)cookie;
1596 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 {
1598 gp = cp->getline;
1599 cp = cp->cookie;
1600 }
1601 return gp == func;
1602#else
Bram Moolenaar89d40322006-08-29 15:30:07 +00001603 return fgetline == func;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604#endif
1605}
1606
1607#if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1608/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001609 * If "fgetline" is get_loop_line(), return the cookie used by the original
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 * getline function. Otherwise return "cookie".
1611 */
1612/*ARGSUSED*/
1613 void *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001614getline_cookie(fgetline, cookie)
1615 char_u *(*fgetline) __ARGS((int, void *, int));
1616 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617{
1618# ifdef FEAT_EVAL
1619 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001620 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621
Bram Moolenaar89d40322006-08-29 15:30:07 +00001622 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001623 * cookie that's originally used to obtain the lines. This may be nested
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 * several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001625 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001626 cp = (struct loop_cookie *)cookie;
1627 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 {
1629 gp = cp->getline;
1630 cp = cp->cookie;
1631 }
1632 return cp;
1633# else
1634 return cookie;
1635# endif
1636}
1637#endif
1638
1639/*
1640 * Execute one Ex command.
1641 *
1642 * If 'sourcing' is TRUE, the command will be included in the error message.
1643 *
1644 * 1. skip comment lines and leading space
1645 * 2. handle command modifiers
1646 * 3. parse range
1647 * 4. parse command
1648 * 5. parse arguments
1649 * 6. switch on command name
1650 *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001651 * Note: "fgetline" can be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 *
1653 * This function may be called recursively!
1654 */
1655#if (_MSC_VER == 1200)
1656/*
Bram Moolenaared203462004-06-16 11:19:22 +00001657 * Avoid optimisation bug in VC++ version 6.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 */
Bram Moolenaar281bdce2005-01-25 21:53:18 +00001659 #pragma optimize( "g", off )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660#endif
1661 static char_u *
1662do_one_cmd(cmdlinep, sourcing,
1663#ifdef FEAT_EVAL
1664 cstack,
1665#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001666 fgetline, cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 char_u **cmdlinep;
1668 int sourcing;
1669#ifdef FEAT_EVAL
1670 struct condstack *cstack;
1671#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001672 char_u *(*fgetline) __ARGS((int, void *, int));
1673 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674{
1675 char_u *p;
1676 linenr_T lnum;
1677 long n;
1678 char_u *errormsg = NULL; /* error message */
1679 exarg_T ea; /* Ex command arguments */
1680 long verbose_save = -1;
1681 int save_msg_scroll = 0;
1682 int did_silent = 0;
1683 int did_esilent = 0;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001684#ifdef HAVE_SANDBOX
1685 int did_sandbox = FALSE;
1686#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 cmdmod_T save_cmdmod;
1688 int ni; /* set when Not Implemented */
1689
1690 vim_memset(&ea, 0, sizeof(ea));
1691 ea.line1 = 1;
1692 ea.line2 = 1;
1693#ifdef FEAT_EVAL
1694 ++ex_nesting_level;
1695#endif
1696
1697 /* when not editing the last file :q has to be typed twice */
1698 if (quitmore
1699#ifdef FEAT_EVAL
1700 /* avoid that a function call in 'statusline' does this */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001701 && !getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001702#endif
1703 )
1704 --quitmore;
1705
1706 /*
1707 * Reset browse, confirm, etc.. They are restored when returning, for
1708 * recursive calls.
1709 */
1710 save_cmdmod = cmdmod;
1711 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1712
Bram Moolenaarcbb37ad2006-08-16 15:04:21 +00001713 /* "#!anything" is handled like a comment. */
1714 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1715 goto doend;
1716
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 /*
1718 * Repeat until no more command modifiers are found.
1719 */
1720 ea.cmd = *cmdlinep;
1721 for (;;)
1722 {
1723/*
1724 * 1. skip comment lines and leading white space and colons
1725 */
1726 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1727 ++ea.cmd;
1728
1729 /* in ex mode, an empty line works like :+ */
1730 if (*ea.cmd == NUL && exmode_active
Bram Moolenaar89d40322006-08-29 15:30:07 +00001731 && (getline_equal(fgetline, cookie, getexmodeline)
1732 || getline_equal(fgetline, cookie, getexline))
Bram Moolenaardf177f62005-02-22 08:39:57 +00001733 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 {
1735 ea.cmd = (char_u *)"+";
1736 ex_pressedreturn = TRUE;
1737 }
1738
1739 /* ignore comment and empty lines */
Bram Moolenaarf998c042007-11-20 11:31:26 +00001740 if (*ea.cmd == '"')
1741 goto doend;
1742 if (*ea.cmd == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001743 {
1744 ex_pressedreturn = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001746 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747
1748/*
1749 * 2. handle command modifiers.
1750 */
1751 p = ea.cmd;
1752 if (VIM_ISDIGIT(*ea.cmd))
1753 p = skipwhite(skipdigits(ea.cmd));
1754 switch (*p)
1755 {
1756 /* When adding an entry, also modify cmd_exists(). */
1757 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1758 break;
1759#ifdef FEAT_WINDOWS
1760 cmdmod.split |= WSP_ABOVE;
1761#endif
1762 continue;
1763
1764 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1765 {
1766#ifdef FEAT_WINDOWS
1767 cmdmod.split |= WSP_BELOW;
1768#endif
1769 continue;
1770 }
1771 if (checkforcmd(&ea.cmd, "browse", 3))
1772 {
1773#ifdef FEAT_BROWSE
1774 cmdmod.browse = TRUE;
1775#endif
1776 continue;
1777 }
1778 if (!checkforcmd(&ea.cmd, "botright", 2))
1779 break;
1780#ifdef FEAT_WINDOWS
1781 cmdmod.split |= WSP_BOT;
1782#endif
1783 continue;
1784
1785 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1786 break;
1787#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1788 cmdmod.confirm = TRUE;
1789#endif
1790 continue;
1791
1792 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1793 {
1794 cmdmod.keepmarks = TRUE;
1795 continue;
1796 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001797 if (checkforcmd(&ea.cmd, "keepalt", 5))
1798 {
1799 cmdmod.keepalt = TRUE;
1800 continue;
1801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1803 break;
1804 cmdmod.keepjumps = TRUE;
1805 continue;
1806
1807 /* ":hide" and ":hide | cmd" are not modifiers */
1808 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1809 || *p == NUL || ends_excmd(*p))
1810 break;
1811 ea.cmd = p;
1812 cmdmod.hide = TRUE;
1813 continue;
1814
1815 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1816 {
1817 cmdmod.lockmarks = TRUE;
1818 continue;
1819 }
1820
1821 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1822 break;
1823#ifdef FEAT_WINDOWS
1824 cmdmod.split |= WSP_ABOVE;
1825#endif
1826 continue;
1827
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001828 case 'n': if (!checkforcmd(&ea.cmd, "noautocmd", 3))
1829 break;
1830#ifdef FEAT_AUTOCMD
1831 if (cmdmod.save_ei == NULL)
1832 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001833 /* Set 'eventignore' to "all". Restore the
1834 * existing option value later. */
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001835 cmdmod.save_ei = vim_strsave(p_ei);
1836 set_string_option_direct((char_u *)"ei", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001837 (char_u *)"all", OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001838 }
1839#endif
1840 continue;
1841
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
1843 break;
1844#ifdef FEAT_WINDOWS
1845 cmdmod.split |= WSP_BELOW;
1846#endif
1847 continue;
1848
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001849 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
1850 {
1851#ifdef HAVE_SANDBOX
1852 if (!did_sandbox)
1853 ++sandbox;
1854 did_sandbox = TRUE;
1855#endif
1856 continue;
1857 }
1858 if (!checkforcmd(&ea.cmd, "silent", 3))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 break;
1860 ++did_silent;
1861 ++msg_silent;
1862 save_msg_scroll = msg_scroll;
1863 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
1864 {
1865 /* ":silent!", but not "silent !cmd" */
1866 ea.cmd = skipwhite(ea.cmd + 1);
1867 ++emsg_silent;
1868 ++did_esilent;
1869 }
1870 continue;
1871
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001872 case 't': if (checkforcmd(&p, "tab", 3))
1873 {
1874#ifdef FEAT_WINDOWS
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001875 if (vim_isdigit(*ea.cmd))
1876 cmdmod.tab = atoi((char *)ea.cmd) + 1;
1877 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001878 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001879 ea.cmd = p;
1880#endif
1881 continue;
1882 }
1883 if (!checkforcmd(&ea.cmd, "topleft", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 break;
1885#ifdef FEAT_WINDOWS
1886 cmdmod.split |= WSP_TOP;
1887#endif
1888 continue;
1889
1890 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
1891 {
1892#ifdef FEAT_VERTSPLIT
1893 cmdmod.split |= WSP_VERT;
1894#endif
1895 continue;
1896 }
1897 if (!checkforcmd(&p, "verbose", 4))
1898 break;
1899 if (verbose_save < 0)
1900 verbose_save = p_verbose;
Bram Moolenaared203462004-06-16 11:19:22 +00001901 if (vim_isdigit(*ea.cmd))
1902 p_verbose = atoi((char *)ea.cmd);
1903 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 p_verbose = 1;
1905 ea.cmd = p;
1906 continue;
1907 }
1908 break;
1909 }
1910
1911#ifdef FEAT_EVAL
1912 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1913 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1914#else
1915 ea.skip = (if_level > 0);
1916#endif
1917
1918#ifdef FEAT_EVAL
Bram Moolenaar05159a02005-02-26 23:04:13 +00001919# ifdef FEAT_PROFILE
1920 /* Count this line for profiling if ea.skip is FALSE. */
Bram Moolenaar371d5402006-03-20 21:47:49 +00001921 if (do_profiling == PROF_YES && !ea.skip)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001922 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001923 if (getline_equal(fgetline, cookie, get_func_line))
1924 func_line_exec(getline_cookie(fgetline, cookie));
1925 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +00001926 script_line_exec();
1927 }
1928#endif
1929
Bram Moolenaar071d4272004-06-13 20:20:40 +00001930 /* May go to debug mode. If this happens and the ">quit" debug command is
1931 * used, throw an interrupt exception and skip the next command. */
1932 dbg_check_breakpoint(&ea);
1933 if (!ea.skip && got_int)
1934 {
1935 ea.skip = TRUE;
1936 (void)do_intthrow(cstack);
1937 }
1938#endif
1939
1940/*
1941 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1942 *
1943 * where 'addr' is:
1944 *
1945 * % (entire file)
1946 * $ [+-NUM]
1947 * 'x [+-NUM] (where x denotes a currently defined mark)
1948 * . [+-NUM]
1949 * [+-NUM]..
1950 * NUM
1951 *
1952 * The ea.cmd pointer is updated to point to the first character following the
1953 * range spec. If an initial address is found, but no second, the upper bound
1954 * is equal to the lower.
1955 */
1956
1957 /* repeat for all ',' or ';' separated addresses */
1958 for (;;)
1959 {
1960 ea.line1 = ea.line2;
1961 ea.line2 = curwin->w_cursor.lnum; /* default is current line number */
1962 ea.cmd = skipwhite(ea.cmd);
1963 lnum = get_address(&ea.cmd, ea.skip, ea.addr_count == 0);
1964 if (ea.cmd == NULL) /* error detected */
1965 goto doend;
1966 if (lnum == MAXLNUM)
1967 {
1968 if (*ea.cmd == '%') /* '%' - all lines */
1969 {
1970 ++ea.cmd;
1971 ea.line1 = 1;
1972 ea.line2 = curbuf->b_ml.ml_line_count;
1973 ++ea.addr_count;
1974 }
1975 /* '*' - visual area */
1976 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1977 {
1978 pos_T *fp;
1979
1980 ++ea.cmd;
1981 if (!ea.skip)
1982 {
1983 fp = getmark('<', FALSE);
1984 if (check_mark(fp) == FAIL)
1985 goto doend;
1986 ea.line1 = fp->lnum;
1987 fp = getmark('>', FALSE);
1988 if (check_mark(fp) == FAIL)
1989 goto doend;
1990 ea.line2 = fp->lnum;
1991 ++ea.addr_count;
1992 }
1993 }
1994 }
1995 else
1996 ea.line2 = lnum;
1997 ea.addr_count++;
1998
1999 if (*ea.cmd == ';')
2000 {
2001 if (!ea.skip)
2002 curwin->w_cursor.lnum = ea.line2;
2003 }
2004 else if (*ea.cmd != ',')
2005 break;
2006 ++ea.cmd;
2007 }
2008
2009 /* One address given: set start and end lines */
2010 if (ea.addr_count == 1)
2011 {
2012 ea.line1 = ea.line2;
2013 /* ... but only implicit: really no address given */
2014 if (lnum == MAXLNUM)
2015 ea.addr_count = 0;
2016 }
2017
2018 /* Don't leave the cursor on an illegal line (caused by ';') */
2019 check_cursor_lnum();
2020
2021/*
2022 * 4. parse command
2023 */
2024
2025 /*
2026 * Skip ':' and any white space
2027 */
2028 ea.cmd = skipwhite(ea.cmd);
2029 while (*ea.cmd == ':')
2030 ea.cmd = skipwhite(ea.cmd + 1);
2031
2032 /*
2033 * If we got a line, but no command, then go to the line.
2034 * If we find a '|' or '\n' we set ea.nextcmd.
2035 */
2036 if (*ea.cmd == NUL || *ea.cmd == '"' ||
2037 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2038 {
2039 /*
2040 * strange vi behaviour:
2041 * ":3" jumps to line 3
2042 * ":3|..." prints line 3
2043 * ":|" prints current line
2044 */
2045 if (ea.skip) /* skip this if inside :if */
2046 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002047 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 {
2049 ea.cmdidx = CMD_print;
2050 ea.argt = RANGE+COUNT+TRLBAR;
2051 if ((errormsg = invalid_range(&ea)) == NULL)
2052 {
2053 correct_range(&ea);
2054 ex_print(&ea);
2055 }
2056 }
2057 else if (ea.addr_count != 0)
2058 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002059 if (ea.line2 > curbuf->b_ml.ml_line_count)
2060 {
2061 /* With '-' in 'cpoptions' a line number past the file is an
2062 * error, otherwise put it at the end of the file. */
2063 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2064 ea.line2 = -1;
2065 else
2066 ea.line2 = curbuf->b_ml.ml_line_count;
2067 }
2068
2069 if (ea.line2 < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002070 errormsg = (char_u *)_(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 else
2072 {
2073 if (ea.line2 == 0)
2074 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 else
2076 curwin->w_cursor.lnum = ea.line2;
2077 beginline(BL_SOL | BL_FIX);
2078 }
2079 }
2080 goto doend;
2081 }
2082
2083 /* Find the command and let "p" point to after it. */
2084 p = find_command(&ea, NULL);
2085
2086#ifdef FEAT_USR_CMDS
2087 if (p == NULL)
2088 {
2089 if (!ea.skip)
2090 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2091 goto doend;
2092 }
2093 /* Check for wrong commands. */
2094 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2095 {
2096 errormsg = uc_fun_cmd();
2097 goto doend;
2098 }
2099#endif
2100 if (ea.cmdidx == CMD_SIZE)
2101 {
2102 if (!ea.skip)
2103 {
2104 STRCPY(IObuff, _("E492: Not an editor command"));
2105 if (!sourcing)
2106 {
2107 STRCAT(IObuff, ": ");
2108 STRNCAT(IObuff, *cmdlinep, 40);
2109 }
2110 errormsg = IObuff;
2111 }
2112 goto doend;
2113 }
2114
2115 ni = (
2116#ifdef FEAT_USR_CMDS
2117 !USER_CMDIDX(ea.cmdidx) &&
2118#endif
Bram Moolenaar3ebc1e52007-07-05 07:54:17 +00002119 (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00002120#ifdef HAVE_EX_SCRIPT_NI
2121 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2122#endif
2123 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124
2125#ifndef FEAT_EVAL
2126 /*
2127 * When the expression evaluation is disabled, recognize the ":if" and
2128 * ":endif" commands and ignore everything in between it.
2129 */
2130 if (ea.cmdidx == CMD_if)
2131 ++if_level;
2132 if (if_level)
2133 {
2134 if (ea.cmdidx == CMD_endif)
2135 --if_level;
2136 goto doend;
2137 }
2138
2139#endif
2140
Bram Moolenaar196b3b02008-06-20 16:51:41 +00002141 /* forced commands */
2142 if (*p == '!' && ea.cmdidx != CMD_substitute
2143 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 {
2145 ++p;
2146 ea.forceit = TRUE;
2147 }
2148 else
2149 ea.forceit = FALSE;
2150
2151/*
2152 * 5. parse arguments
2153 */
2154#ifdef FEAT_USR_CMDS
2155 if (!USER_CMDIDX(ea.cmdidx))
2156#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002157 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158
2159 if (!ea.skip)
2160 {
2161#ifdef HAVE_SANDBOX
2162 if (sandbox != 0 && !(ea.argt & SBOXOK))
2163 {
2164 /* Command not allowed in sandbox. */
2165 errormsg = (char_u *)_(e_sandbox);
2166 goto doend;
2167 }
2168#endif
2169 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2170 {
2171 /* Command not allowed in non-'modifiable' buffer */
2172 errormsg = (char_u *)_(e_modifiable);
2173 goto doend;
2174 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002175
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002176 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177# ifdef FEAT_USR_CMDS
2178 && !USER_CMDIDX(ea.cmdidx)
2179# endif
2180 )
2181 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002182 /* Command not allowed when editing the command line. */
2183#ifdef FEAT_CMDWIN
2184 if (cmdwin_type != 0)
2185 errormsg = (char_u *)_(e_cmdwin);
2186 else
2187#endif
2188 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 goto doend;
2190 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002191#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002192 /* Disallow editing another buffer when "curbuf_lock" is set.
2193 * Do allow ":edit" (check for argument later).
2194 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002195 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002196 && ea.cmdidx != CMD_edit
2197 && ea.cmdidx != CMD_checktime
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002198# ifdef FEAT_USR_CMDS
2199 && !USER_CMDIDX(ea.cmdidx)
2200# endif
2201 && curbuf_locked())
2202 goto doend;
2203#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204
2205 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2206 {
2207 /* no range allowed */
2208 errormsg = (char_u *)_(e_norange);
2209 goto doend;
2210 }
2211 }
2212
2213 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2214 {
2215 errormsg = (char_u *)_(e_nobang);
2216 goto doend;
2217 }
2218
2219 /*
2220 * Don't complain about the range if it is not used
2221 * (could happen if line_count is accidentally set to 0).
2222 */
2223 if (!ea.skip && !ni)
2224 {
2225 /*
2226 * If the range is backwards, ask for confirmation and, if given, swap
2227 * ea.line1 & ea.line2 so it's forwards again.
2228 * When global command is busy, don't ask, will fail below.
2229 */
2230 if (!global_busy && ea.line1 > ea.line2)
2231 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002232 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002234 if (sourcing || exmode_active)
2235 {
2236 errormsg = (char_u *)_("E493: Backwards range given");
2237 goto doend;
2238 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 if (ask_yesno((char_u *)
2240 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002241 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242 }
2243 lnum = ea.line1;
2244 ea.line1 = ea.line2;
2245 ea.line2 = lnum;
2246 }
2247 if ((errormsg = invalid_range(&ea)) != NULL)
2248 goto doend;
2249 }
2250
2251 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2252 ea.line2 = 1;
2253
2254 correct_range(&ea);
2255
2256#ifdef FEAT_FOLDING
2257 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2258 {
2259 /* Put the first line at the start of a closed fold, put the last line
2260 * at the end of a closed fold. */
2261 (void)hasFolding(ea.line1, &ea.line1, NULL);
2262 (void)hasFolding(ea.line2, NULL, &ea.line2);
2263 }
2264#endif
2265
2266#ifdef FEAT_QUICKFIX
2267 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002268 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 * option here, so things like % get expanded.
2270 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002271 p = replace_makeprg(&ea, p, cmdlinep);
2272 if (p == NULL)
2273 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274#endif
2275
2276 /*
2277 * Skip to start of argument.
2278 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2279 */
2280 if (ea.cmdidx == CMD_bang)
2281 ea.arg = p;
2282 else
2283 ea.arg = skipwhite(p);
2284
2285 /*
2286 * Check for "++opt=val" argument.
2287 * Must be first, allow ":w ++enc=utf8 !cmd"
2288 */
2289 if (ea.argt & ARGOPT)
2290 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2291 if (getargopt(&ea) == FAIL && !ni)
2292 {
2293 errormsg = (char_u *)_(e_invarg);
2294 goto doend;
2295 }
2296
2297 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2298 {
2299 if (*ea.arg == '>') /* append */
2300 {
2301 if (*++ea.arg != '>') /* typed wrong */
2302 {
2303 errormsg = (char_u *)_("E494: Use w or w>>");
2304 goto doend;
2305 }
2306 ea.arg = skipwhite(ea.arg + 1);
2307 ea.append = TRUE;
2308 }
2309 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2310 {
2311 ++ea.arg;
2312 ea.usefilter = TRUE;
2313 }
2314 }
2315
2316 if (ea.cmdidx == CMD_read)
2317 {
2318 if (ea.forceit)
2319 {
2320 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2321 ea.forceit = FALSE;
2322 }
2323 else if (*ea.arg == '!') /* :r !filter */
2324 {
2325 ++ea.arg;
2326 ea.usefilter = TRUE;
2327 }
2328 }
2329
2330 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2331 {
2332 ea.amount = 1;
2333 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2334 {
2335 ++ea.arg;
2336 ++ea.amount;
2337 }
2338 ea.arg = skipwhite(ea.arg);
2339 }
2340
2341 /*
2342 * Check for "+command" argument, before checking for next command.
2343 * Don't do this for ":read !cmd" and ":write !cmd".
2344 */
2345 if ((ea.argt & EDITCMD) && !ea.usefilter)
2346 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2347
2348 /*
2349 * Check for '|' to separate commands and '"' to start comments.
2350 * Don't do this for ":read !cmd" and ":write !cmd".
2351 */
2352 if ((ea.argt & TRLBAR) && !ea.usefilter)
2353 separate_nextcmd(&ea);
2354
2355 /*
2356 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002357 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2358 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002360 else if (ea.cmdidx == CMD_bang
2361 || ea.cmdidx == CMD_global
2362 || ea.cmdidx == CMD_vglobal
2363 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 {
2365 for (p = ea.arg; *p; ++p)
2366 {
2367 /* Remove one backslash before a newline, so that it's possible to
2368 * pass a newline to the shell and also a newline that is preceded
2369 * with a backslash. This makes it impossible to end a shell
2370 * command in a backslash, but that doesn't appear useful.
2371 * Halving the number of backslashes is incompatible with previous
2372 * versions. */
2373 if (*p == '\\' && p[1] == '\n')
Bram Moolenaara7241f52008-06-24 20:39:31 +00002374 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 else if (*p == '\n')
2376 {
2377 ea.nextcmd = p + 1;
2378 *p = NUL;
2379 break;
2380 }
2381 }
2382 }
2383
2384 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2385 {
2386 ea.line1 = 1;
2387 ea.line2 = curbuf->b_ml.ml_line_count;
2388 }
2389
2390 /* accept numbered register only when no count allowed (:put) */
2391 if ( (ea.argt & REGSTR)
2392 && *ea.arg != NUL
2393#ifdef FEAT_USR_CMDS
2394 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2395 && USER_CMDIDX(ea.cmdidx)))
2396 /* Do not allow register = for user commands */
2397 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2398#else
2399 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2400#endif
2401 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2402 {
2403 ea.regname = *ea.arg++;
2404#ifdef FEAT_EVAL
2405 /* for '=' register: accept the rest of the line as an expression */
2406 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2407 {
2408 set_expr_line(vim_strsave(ea.arg));
2409 ea.arg += STRLEN(ea.arg);
2410 }
2411#endif
2412 ea.arg = skipwhite(ea.arg);
2413 }
2414
2415 /*
2416 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2417 * count, it's a buffer name.
2418 */
2419 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2420 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2421 || vim_iswhite(*p)))
2422 {
2423 n = getdigits(&ea.arg);
2424 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002425 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426 {
2427 errormsg = (char_u *)_(e_zerocount);
2428 goto doend;
2429 }
2430 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2431 {
2432 ea.line2 = n;
2433 if (ea.addr_count == 0)
2434 ea.addr_count = 1;
2435 }
2436 else
2437 {
2438 ea.line1 = ea.line2;
2439 ea.line2 += n - 1;
2440 ++ea.addr_count;
2441 /*
2442 * Be vi compatible: no error message for out of range.
2443 */
2444 if (ea.line2 > curbuf->b_ml.ml_line_count)
2445 ea.line2 = curbuf->b_ml.ml_line_count;
2446 }
2447 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002448
2449 /*
2450 * Check for flags: 'l', 'p' and '#'.
2451 */
2452 if (ea.argt & EXFLAGS)
2453 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002455 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002456 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 {
2458 errormsg = (char_u *)_(e_trailing);
2459 goto doend;
2460 }
2461
2462 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2463 {
2464 errormsg = (char_u *)_(e_argreq);
2465 goto doend;
2466 }
2467
2468#ifdef FEAT_EVAL
2469 /*
2470 * Skip the command when it's not going to be executed.
2471 * The commands like :if, :endif, etc. always need to be executed.
2472 * Also make an exception for commands that handle a trailing command
2473 * themselves.
2474 */
2475 if (ea.skip)
2476 {
2477 switch (ea.cmdidx)
2478 {
2479 /* commands that need evaluation */
2480 case CMD_while:
2481 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002482 case CMD_for:
2483 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 case CMD_if:
2485 case CMD_elseif:
2486 case CMD_else:
2487 case CMD_endif:
2488 case CMD_try:
2489 case CMD_catch:
2490 case CMD_finally:
2491 case CMD_endtry:
2492 case CMD_function:
2493 break;
2494
2495 /* Commands that handle '|' themselves. Check: A command should
2496 * either have the TRLBAR flag, appear in this list or appear in
2497 * the list at ":help :bar". */
2498 case CMD_aboveleft:
2499 case CMD_and:
2500 case CMD_belowright:
2501 case CMD_botright:
2502 case CMD_browse:
2503 case CMD_call:
2504 case CMD_confirm:
2505 case CMD_delfunction:
2506 case CMD_djump:
2507 case CMD_dlist:
2508 case CMD_dsearch:
2509 case CMD_dsplit:
2510 case CMD_echo:
2511 case CMD_echoerr:
2512 case CMD_echomsg:
2513 case CMD_echon:
2514 case CMD_execute:
2515 case CMD_help:
2516 case CMD_hide:
2517 case CMD_ijump:
2518 case CMD_ilist:
2519 case CMD_isearch:
2520 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002521 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 case CMD_keepjumps:
2523 case CMD_keepmarks:
2524 case CMD_leftabove:
2525 case CMD_let:
2526 case CMD_lockmarks:
2527 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002528 case CMD_mzscheme:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 case CMD_perl:
2530 case CMD_psearch:
2531 case CMD_python:
2532 case CMD_return:
2533 case CMD_rightbelow:
2534 case CMD_ruby:
2535 case CMD_silent:
2536 case CMD_smagic:
2537 case CMD_snomagic:
2538 case CMD_substitute:
2539 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002540 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 case CMD_tcl:
2542 case CMD_throw:
2543 case CMD_tilde:
2544 case CMD_topleft:
2545 case CMD_unlet:
2546 case CMD_verbose:
2547 case CMD_vertical:
2548 break;
2549
2550 default: goto doend;
2551 }
2552 }
2553#endif
2554
2555 if (ea.argt & XFILE)
2556 {
2557 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2558 goto doend;
2559 }
2560
2561#ifdef FEAT_LISTCMDS
2562 /*
2563 * Accept buffer name. Cannot be used at the same time with a buffer
2564 * number. Don't do this for a user command.
2565 */
2566 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2567# ifdef FEAT_USR_CMDS
2568 && !USER_CMDIDX(ea.cmdidx)
2569# endif
2570 )
2571 {
2572 /*
2573 * :bdelete, :bwipeout and :bunload take several arguments, separated
2574 * by spaces: find next space (skipping over escaped characters).
2575 * The others take one argument: ignore trailing spaces.
2576 */
2577 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2578 || ea.cmdidx == CMD_bunload)
2579 p = skiptowhite_esc(ea.arg);
2580 else
2581 {
2582 p = ea.arg + STRLEN(ea.arg);
2583 while (p > ea.arg && vim_iswhite(p[-1]))
2584 --p;
2585 }
2586 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2587 if (ea.line2 < 0) /* failed */
2588 goto doend;
2589 ea.addr_count = 1;
2590 ea.arg = skipwhite(p);
2591 }
2592#endif
2593
2594/*
2595 * 6. switch on command name
2596 *
2597 * The "ea" structure holds the arguments that can be used.
2598 */
2599 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002600 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 ea.cookie = cookie;
2602#ifdef FEAT_EVAL
2603 ea.cstack = cstack;
2604#endif
2605
2606#ifdef FEAT_USR_CMDS
2607 if (USER_CMDIDX(ea.cmdidx))
2608 {
2609 /*
2610 * Execute a user-defined command.
2611 */
2612 do_ucmd(&ea);
2613 }
2614 else
2615#endif
2616 {
2617 /*
2618 * Call the function to execute the command.
2619 */
2620 ea.errmsg = NULL;
2621 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2622 if (ea.errmsg != NULL)
2623 errormsg = (char_u *)_(ea.errmsg);
2624 }
2625
2626#ifdef FEAT_EVAL
2627 /*
2628 * If the command just executed called do_cmdline(), any throw or ":return"
2629 * or ":finish" encountered there must also check the cstack of the still
2630 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2631 * exception, or reanimate a returned function or finished script file and
2632 * return or finish it again.
2633 */
2634 if (need_rethrow)
2635 do_throw(cstack);
2636 else if (check_cstack)
2637 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002638 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002640 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002641 && current_func_returned())
2642 do_return(&ea, TRUE, FALSE, NULL);
2643 }
2644 need_rethrow = check_cstack = FALSE;
2645#endif
2646
2647doend:
2648 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2649 curwin->w_cursor.lnum = 1;
2650
2651 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2652 {
2653 if (sourcing)
2654 {
2655 if (errormsg != IObuff)
2656 {
2657 STRCPY(IObuff, errormsg);
2658 errormsg = IObuff;
2659 }
2660 STRCAT(errormsg, ": ");
Bram Moolenaar6c964832007-12-09 18:38:35 +00002661 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 }
2663 emsg(errormsg);
2664 }
2665#ifdef FEAT_EVAL
2666 do_errthrow(cstack,
2667 (ea.cmdidx != CMD_SIZE
2668# ifdef FEAT_USR_CMDS
2669 && !USER_CMDIDX(ea.cmdidx)
2670# endif
2671 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2672#endif
2673
2674 if (verbose_save >= 0)
2675 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002676#ifdef FEAT_AUTOCMD
2677 if (cmdmod.save_ei != NULL)
2678 {
2679 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002680 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2681 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002682 free_string_option(cmdmod.save_ei);
2683 }
2684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685
2686 cmdmod = save_cmdmod;
2687
2688 if (did_silent > 0)
2689 {
2690 /* messages could be enabled for a serious error, need to check if the
2691 * counters don't become negative */
2692 msg_silent -= did_silent;
2693 if (msg_silent < 0)
2694 msg_silent = 0;
2695 emsg_silent -= did_esilent;
2696 if (emsg_silent < 0)
2697 emsg_silent = 0;
2698 /* Restore msg_scroll, it's set by file I/O commands, even when no
2699 * message is actually displayed. */
2700 msg_scroll = save_msg_scroll;
2701 }
2702
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002703#ifdef HAVE_SANDBOX
2704 if (did_sandbox)
2705 --sandbox;
2706#endif
2707
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2709 ea.nextcmd = NULL;
2710
2711#ifdef FEAT_EVAL
2712 --ex_nesting_level;
2713#endif
2714
2715 return ea.nextcmd;
2716}
2717#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00002718 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719#endif
2720
2721/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002722 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 * If there is a match advance "pp" to the argument and return TRUE.
2724 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002725 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002726checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002727 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728 char *cmd; /* name of command */
2729 int len; /* required length */
2730{
2731 int i;
2732
2733 for (i = 0; cmd[i] != NUL; ++i)
2734 if (cmd[i] != (*pp)[i])
2735 break;
2736 if (i >= len && !isalpha((*pp)[i]))
2737 {
2738 *pp = skipwhite(*pp + i);
2739 return TRUE;
2740 }
2741 return FALSE;
2742}
2743
2744/*
2745 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002746 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002748 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 * Returns NULL for an ambiguous user command.
2750 */
2751/*ARGSUSED*/
2752 static char_u *
2753find_command(eap, full)
2754 exarg_T *eap;
2755 int *full;
2756{
2757 int len;
2758 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002759 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002760
2761 /*
2762 * Isolate the command and search for it in the command table.
Bram Moolenaar81870892007-11-11 18:17:28 +00002763 * Exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 * - the 'k' command can directly be followed by any character.
2765 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2766 * but :sre[wind] is another command, as are :scrip[tnames],
2767 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00002768 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 */
2770 p = eap->cmd;
2771 if (*p == 'k')
2772 {
2773 eap->cmdidx = CMD_k;
2774 ++p;
2775 }
2776 else if (p[0] == 's'
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002777 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2778 && p[3] != 'i' && p[4] != 'p')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 || p[1] == 'g'
2780 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2781 || p[1] == 'I'
2782 || (p[1] == 'r' && p[2] != 'e')))
2783 {
2784 eap->cmdidx = CMD_substitute;
2785 ++p;
2786 }
2787 else
2788 {
2789 while (ASCII_ISALPHA(*p))
2790 ++p;
2791 /* check for non-alpha command */
2792 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2793 ++p;
2794 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00002795 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2796 {
2797 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2798 * :delete with the 'l' flag. Same for 'p'. */
2799 for (i = 0; i < len; ++i)
2800 if (eap->cmd[i] != "delete"[i])
2801 break;
2802 if (i == len - 1)
2803 {
2804 --len;
2805 if (p[-1] == 'l')
2806 eap->flags |= EXFLAG_LIST;
2807 else
2808 eap->flags |= EXFLAG_PRINT;
2809 }
2810 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811
2812 if (ASCII_ISLOWER(*eap->cmd))
2813 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2814 else
2815 eap->cmdidx = cmdidxs[26];
2816
2817 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2818 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2819 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2820 (size_t)len) == 0)
2821 {
2822#ifdef FEAT_EVAL
2823 if (full != NULL
2824 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2825 *full = TRUE;
2826#endif
2827 break;
2828 }
2829
2830#ifdef FEAT_USR_CMDS
2831 /* Look for a user defined command as a last resort */
2832 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2833 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002834 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835 while (ASCII_ISALNUM(*p))
2836 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002837 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002838 }
2839#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002840 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 eap->cmdidx = CMD_SIZE;
2842 }
2843
2844 return p;
2845}
2846
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002847#ifdef FEAT_USR_CMDS
2848/*
2849 * Search for a user command that matches "eap->cmd".
2850 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2851 * Return a pointer to just after the command.
2852 * Return NULL if there is no matching command.
2853 */
2854 static char_u *
2855find_ucmd(eap, p, full, xp, compl)
2856 exarg_T *eap;
2857 char_u *p; /* end of the command (possibly including count) */
2858 int *full; /* set to TRUE for a full match */
2859 expand_T *xp; /* used for completion, NULL otherwise */
2860 int *compl; /* completion flags or NULL */
2861{
2862 int len = (int)(p - eap->cmd);
2863 int j, k, matchlen = 0;
2864 ucmd_T *uc;
2865 int found = FALSE;
2866 int possible = FALSE;
2867 char_u *cp, *np; /* Point into typed cmd and test name */
2868 garray_T *gap;
2869 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2870 only full match global is accepted. */
2871
2872 /*
2873 * Look for buffer-local user commands first, then global ones.
2874 */
2875 gap = &curbuf->b_ucmds;
2876 for (;;)
2877 {
2878 for (j = 0; j < gap->ga_len; ++j)
2879 {
2880 uc = USER_CMD_GA(gap, j);
2881 cp = eap->cmd;
2882 np = uc->uc_name;
2883 k = 0;
2884 while (k < len && *np != NUL && *cp++ == *np++)
2885 k++;
2886 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2887 {
2888 /* If finding a second match, the command is ambiguous. But
2889 * not if a buffer-local command wasn't a full match and a
2890 * global command is a full match. */
2891 if (k == len && found && *np != NUL)
2892 {
2893 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002894 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002895 amb_local = TRUE;
2896 }
2897
2898 if (!found || (k == len && *np == NUL))
2899 {
2900 /* If we matched up to a digit, then there could
2901 * be another command including the digit that we
2902 * should use instead.
2903 */
2904 if (k == len)
2905 found = TRUE;
2906 else
2907 possible = TRUE;
2908
2909 if (gap == &ucmds)
2910 eap->cmdidx = CMD_USER;
2911 else
2912 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002913 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002914 eap->useridx = j;
2915
2916# ifdef FEAT_CMDL_COMPL
2917 if (compl != NULL)
2918 *compl = uc->uc_compl;
2919# ifdef FEAT_EVAL
2920 if (xp != NULL)
2921 {
2922 xp->xp_arg = uc->uc_compl_arg;
2923 xp->xp_scriptID = uc->uc_scriptID;
2924 }
2925# endif
2926# endif
2927 /* Do not search for further abbreviations
2928 * if this is an exact match. */
2929 matchlen = k;
2930 if (k == len && *np == NUL)
2931 {
2932 if (full != NULL)
2933 *full = TRUE;
2934 amb_local = FALSE;
2935 break;
2936 }
2937 }
2938 }
2939 }
2940
2941 /* Stop if we found a full match or searched all. */
2942 if (j < gap->ga_len || gap == &ucmds)
2943 break;
2944 gap = &ucmds;
2945 }
2946
2947 /* Only found ambiguous matches. */
2948 if (amb_local)
2949 {
2950 if (xp != NULL)
2951 xp->xp_context = EXPAND_UNSUCCESSFUL;
2952 return NULL;
2953 }
2954
2955 /* The match we found may be followed immediately by a number. Move "p"
2956 * back to point to it. */
2957 if (found || possible)
2958 return p + (matchlen - len);
2959 return p;
2960}
2961#endif
2962
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaared53fb92007-11-24 20:50:24 +00002964static struct cmdmod
2965{
2966 char *name;
2967 int minlen;
2968 int has_count; /* :123verbose :3tab */
2969} cmdmods[] = {
2970 {"aboveleft", 3, FALSE},
2971 {"belowright", 3, FALSE},
2972 {"botright", 2, FALSE},
2973 {"browse", 3, FALSE},
2974 {"confirm", 4, FALSE},
2975 {"hide", 3, FALSE},
2976 {"keepalt", 5, FALSE},
2977 {"keepjumps", 5, FALSE},
2978 {"keepmarks", 3, FALSE},
2979 {"leftabove", 5, FALSE},
2980 {"lockmarks", 3, FALSE},
2981 {"rightbelow", 6, FALSE},
2982 {"sandbox", 3, FALSE},
2983 {"silent", 3, FALSE},
2984 {"tab", 3, TRUE},
2985 {"topleft", 2, FALSE},
2986 {"verbose", 4, TRUE},
2987 {"vertical", 4, FALSE},
2988};
2989
2990/*
2991 * Return length of a command modifier (including optional count).
2992 * Return zero when it's not a modifier.
2993 */
2994 int
2995modifier_len(cmd)
2996 char_u *cmd;
2997{
2998 int i, j;
2999 char_u *p = cmd;
3000
3001 if (VIM_ISDIGIT(*cmd))
3002 p = skipwhite(skipdigits(cmd));
3003 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3004 {
3005 for (j = 0; p[j] != NUL; ++j)
3006 if (p[j] != cmdmods[i].name[j])
3007 break;
3008 if (!isalpha(p[j]) && j >= cmdmods[i].minlen
3009 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003010 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003011 }
3012 return 0;
3013}
3014
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015/*
3016 * Return > 0 if an Ex command "name" exists.
3017 * Return 2 if there is an exact match.
3018 * Return 3 if there is an ambiguous match.
3019 */
3020 int
3021cmd_exists(name)
3022 char_u *name;
3023{
3024 exarg_T ea;
3025 int full = FALSE;
3026 int i;
3027 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003028 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029
3030 /* Check command modifiers. */
3031 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3032 {
3033 for (j = 0; name[j] != NUL; ++j)
3034 if (name[j] != cmdmods[i].name[j])
3035 break;
3036 if (name[j] == NUL && j >= cmdmods[i].minlen)
3037 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3038 }
3039
Bram Moolenaara9587612006-05-04 21:47:50 +00003040 /* Check built-in commands and user defined commands.
3041 * For ":2match" and ":3match" we need to skip the number. */
3042 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003044 p = find_command(&ea, &full);
3045 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003046 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003047 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3048 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003049 if (*skipwhite(p) != NUL)
3050 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3052}
3053#endif
3054
3055/*
3056 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3057 * we don't need/want deleted. Maybe this could be done better if we didn't
3058 * repeat all this stuff. The only problem is that they may not stay
3059 * perfectly compatible with each other, but then the command line syntax
3060 * probably won't change that much -- webb.
3061 */
3062 char_u *
3063set_one_cmd_context(xp, buff)
3064 expand_T *xp;
3065 char_u *buff; /* buffer for command string */
3066{
3067 char_u *p;
3068 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003069 int len = 0;
3070 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3072 int compl = EXPAND_NOTHING;
3073#endif
3074#ifdef FEAT_CMDL_COMPL
3075 int delim;
3076#endif
3077 int forceit = FALSE;
3078 int usefilter = FALSE; /* filter instead of file name */
3079
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003080 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003081 xp->xp_pattern = buff;
3082 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003083 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003084
3085/*
3086 * 2. skip comment lines and leading space, colons or bars
3087 */
3088 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3089 ;
3090 xp->xp_pattern = cmd;
3091
3092 if (*cmd == NUL)
3093 return NULL;
3094 if (*cmd == '"') /* ignore comment lines */
3095 {
3096 xp->xp_context = EXPAND_NOTHING;
3097 return NULL;
3098 }
3099
3100/*
3101 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3102 */
3103 cmd = skip_range(cmd, &xp->xp_context);
3104
3105/*
3106 * 4. parse command
3107 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 xp->xp_pattern = cmd;
3109 if (*cmd == NUL)
3110 return NULL;
3111 if (*cmd == '"')
3112 {
3113 xp->xp_context = EXPAND_NOTHING;
3114 return NULL;
3115 }
3116
3117 if (*cmd == '|' || *cmd == '\n')
3118 return cmd + 1; /* There's another command */
3119
3120 /*
3121 * Isolate the command and search for it in the command table.
3122 * Exceptions:
3123 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003124 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3126 */
3127 if (*cmd == 'k' && cmd[1] != 'e')
3128 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003129 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 p = cmd + 1;
3131 }
3132 else
3133 {
3134 p = cmd;
3135 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3136 ++p;
3137 /* check for non-alpha command */
3138 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3139 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003140 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003142 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 {
3144 xp->xp_context = EXPAND_UNSUCCESSFUL;
3145 return NULL;
3146 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003147 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3148 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3149 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 break;
3151
3152#ifdef FEAT_USR_CMDS
3153 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3154 {
3155 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3156 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003157 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 }
3159#endif
3160 }
3161
3162 /*
3163 * If the cursor is touching the command, and it ends in an alpha-numeric
3164 * character, complete the command name.
3165 */
3166 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3167 return NULL;
3168
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003169 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 {
3171 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3172 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003173 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 p = cmd + 1;
3175 }
3176#ifdef FEAT_USR_CMDS
3177 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3178 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003179 ea.cmd = cmd;
3180 p = find_ucmd(&ea, p, NULL, xp,
3181# if defined(FEAT_CMDL_COMPL)
3182 &compl
3183# else
3184 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003186 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003187 if (p == NULL)
3188 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 }
3190#endif
3191 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003192 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 {
3194 /* Not still touching the command and it was an illegal one */
3195 xp->xp_context = EXPAND_UNSUCCESSFUL;
3196 return NULL;
3197 }
3198
3199 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3200
3201 if (*p == '!') /* forced commands */
3202 {
3203 forceit = TRUE;
3204 ++p;
3205 }
3206
3207/*
3208 * 5. parse arguments
3209 */
3210#ifdef FEAT_USR_CMDS
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003211 if (!USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003213 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214
3215 arg = skipwhite(p);
3216
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003217 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003218 {
3219 if (*arg == '>') /* append */
3220 {
3221 if (*++arg == '>')
3222 ++arg;
3223 arg = skipwhite(arg);
3224 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003225 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226 {
3227 ++arg;
3228 usefilter = TRUE;
3229 }
3230 }
3231
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003232 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003233 {
3234 usefilter = forceit; /* :r! filter if forced */
3235 if (*arg == '!') /* :r !filter */
3236 {
3237 ++arg;
3238 usefilter = TRUE;
3239 }
3240 }
3241
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003242 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 {
3244 while (*arg == *cmd) /* allow any number of '>' or '<' */
3245 ++arg;
3246 arg = skipwhite(arg);
3247 }
3248
3249 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003250 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251 {
3252 /* Check if we're in the +command */
3253 p = arg + 1;
3254 arg = skip_cmd_arg(arg, FALSE);
3255
3256 /* Still touching the command after '+'? */
3257 if (*arg == NUL)
3258 return p;
3259
3260 /* Skip space(s) after +command to get to the real argument */
3261 arg = skipwhite(arg);
3262 }
3263
3264 /*
3265 * Check for '|' to separate commands and '"' to start comments.
3266 * Don't do this for ":read !cmd" and ":write !cmd".
3267 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003268 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 {
3270 p = arg;
3271 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003272 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 p += 2;
3274 while (*p)
3275 {
3276 if (*p == Ctrl_V)
3277 {
3278 if (p[1] != NUL)
3279 ++p;
3280 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003281 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 || *p == '|' || *p == '\n')
3283 {
3284 if (*(p - 1) != '\\')
3285 {
3286 if (*p == '|' || *p == '\n')
3287 return p + 1;
3288 return NULL; /* It's a comment */
3289 }
3290 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003291 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 }
3293 }
3294
3295 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003296 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 vim_strchr((char_u *)"|\"", *arg) == NULL)
3298 return NULL;
3299
3300 /* Find start of last argument (argument just before cursor): */
3301 p = buff + STRLEN(buff);
3302 while (p != arg && *p != ' ' && *p != TAB)
3303 p--;
3304 if (*p == ' ' || *p == TAB)
3305 p++;
3306 xp->xp_pattern = p;
3307
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003308 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003309 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003310 int c;
3311 int in_quote = FALSE;
3312 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313
3314 /*
3315 * Allow spaces within back-quotes to count as part of the argument
3316 * being expanded.
3317 */
3318 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003319 p = xp->xp_pattern;
3320 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003322#ifdef FEAT_MBYTE
3323 if (has_mbyte)
3324 c = mb_ptr2char(p);
3325 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003327 c = *p;
3328 if (c == '\\' && p[1] != NUL)
3329 ++p;
3330 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 {
3332 if (!in_quote)
3333 {
3334 xp->xp_pattern = p;
3335 bow = p + 1;
3336 }
3337 in_quote = !in_quote;
3338 }
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003339 /* An argument can contain just about everything, except
3340 * characters that end the command and white space. */
3341 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003342#ifdef SPACE_IN_FILENAME
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003343 && (!(ea.argt & NOSPC) || usefilter)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003344#endif
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003345 ))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003346 {
Bram Moolenaarcf5a5b82008-02-26 20:30:12 +00003347 len = 0; /* avoid getting stuck when space is in 'isfname' */
Bram Moolenaar6529c102007-08-18 15:47:34 +00003348 while (*p != NUL)
3349 {
3350#ifdef FEAT_MBYTE
3351 if (has_mbyte)
3352 c = mb_ptr2char(p);
3353 else
3354#endif
3355 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003356 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003357 break;
3358#ifdef FEAT_MBYTE
3359 if (has_mbyte)
3360 len = (*mb_ptr2len)(p);
3361 else
3362#endif
3363 len = 1;
3364 mb_ptr_adv(p);
3365 }
3366 if (in_quote)
3367 bow = p;
3368 else
3369 xp->xp_pattern = p;
3370 p -= len;
3371 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003372 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003373 }
3374
3375 /*
3376 * If we are still inside the quotes, and we passed a space, just
3377 * expand from there.
3378 */
3379 if (bow != NULL && in_quote)
3380 xp->xp_pattern = bow;
3381 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003382
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003383#ifndef BACKSLASH_IN_FILENAME
3384 /* For a shell command more chars need to be escaped. */
3385 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003386 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003387 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003388
3389 /* When still after the command name expand executables. */
3390 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003391 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003392 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003393#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394
3395 /* Check for environment variable */
3396 if (*xp->xp_pattern == '$'
3397#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3398 || *xp->xp_pattern == '%'
3399#endif
3400 )
3401 {
3402 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3403 if (!vim_isIDc(*p))
3404 break;
3405 if (*p == NUL)
3406 {
3407 xp->xp_context = EXPAND_ENV_VARS;
3408 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003409#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3410 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003411 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003412 compl = EXPAND_ENV_VARS;
3413#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 }
3415 }
3416 }
3417
3418/*
3419 * 6. switch on command name
3420 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003421 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422 {
3423 case CMD_cd:
3424 case CMD_chdir:
3425 case CMD_lcd:
3426 case CMD_lchdir:
3427 if (xp->xp_context == EXPAND_FILES)
3428 xp->xp_context = EXPAND_DIRECTORIES;
3429 break;
3430 case CMD_help:
3431 xp->xp_context = EXPAND_HELP;
3432 xp->xp_pattern = arg;
3433 break;
3434
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003435 /* Command modifiers: return the argument.
3436 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003438 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 case CMD_belowright:
3440 case CMD_botright:
3441 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003442 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003443 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003444 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 case CMD_folddoclosed:
3446 case CMD_folddoopen:
3447 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003448 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 case CMD_keepjumps:
3450 case CMD_keepmarks:
3451 case CMD_leftabove:
3452 case CMD_lockmarks:
3453 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003454 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003455 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003456 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 case CMD_topleft:
3458 case CMD_verbose:
3459 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003460 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003461 return arg;
3462
Bram Moolenaar4f688582007-07-24 12:34:30 +00003463#ifdef FEAT_CMDL_COMPL
3464# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 case CMD_match:
3466 if (*arg == NUL || !ends_excmd(*arg))
3467 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003468 /* also complete "None" */
3469 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 arg = skipwhite(skiptowhite(arg));
3471 if (*arg != NUL)
3472 {
3473 xp->xp_context = EXPAND_NOTHING;
3474 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3475 }
3476 }
3477 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003478# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003479
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480/*
3481 * All completion for the +cmdline_compl feature goes here.
3482 */
3483
3484# ifdef FEAT_USR_CMDS
3485 case CMD_command:
3486 /* Check for attributes */
3487 while (*arg == '-')
3488 {
3489 arg++; /* Skip "-" */
3490 p = skiptowhite(arg);
3491 if (*p == NUL)
3492 {
3493 /* Cursor is still in the attribute */
3494 p = vim_strchr(arg, '=');
3495 if (p == NULL)
3496 {
3497 /* No "=", so complete attribute names */
3498 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3499 xp->xp_pattern = arg;
3500 return NULL;
3501 }
3502
3503 /* For the -complete and -nargs attributes, we complete
3504 * their arguments as well.
3505 */
3506 if (STRNICMP(arg, "complete", p - arg) == 0)
3507 {
3508 xp->xp_context = EXPAND_USER_COMPLETE;
3509 xp->xp_pattern = p + 1;
3510 return NULL;
3511 }
3512 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3513 {
3514 xp->xp_context = EXPAND_USER_NARGS;
3515 xp->xp_pattern = p + 1;
3516 return NULL;
3517 }
3518 return NULL;
3519 }
3520 arg = skipwhite(p);
3521 }
3522
3523 /* After the attributes comes the new command name */
3524 p = skiptowhite(arg);
3525 if (*p == NUL)
3526 {
3527 xp->xp_context = EXPAND_USER_COMMANDS;
3528 xp->xp_pattern = arg;
3529 break;
3530 }
3531
3532 /* And finally comes a normal command */
3533 return skipwhite(p);
3534
3535 case CMD_delcommand:
3536 xp->xp_context = EXPAND_USER_COMMANDS;
3537 xp->xp_pattern = arg;
3538 break;
3539# endif
3540
3541 case CMD_global:
3542 case CMD_vglobal:
3543 delim = *arg; /* get the delimiter */
3544 if (delim)
3545 ++arg; /* skip delimiter if there is one */
3546
3547 while (arg[0] != NUL && arg[0] != delim)
3548 {
3549 if (arg[0] == '\\' && arg[1] != NUL)
3550 ++arg;
3551 ++arg;
3552 }
3553 if (arg[0] != NUL)
3554 return arg + 1;
3555 break;
3556 case CMD_and:
3557 case CMD_substitute:
3558 delim = *arg;
3559 if (delim)
3560 {
3561 /* skip "from" part */
3562 ++arg;
3563 arg = skip_regexp(arg, delim, p_magic, NULL);
3564 }
3565 /* skip "to" part */
3566 while (arg[0] != NUL && arg[0] != delim)
3567 {
3568 if (arg[0] == '\\' && arg[1] != NUL)
3569 ++arg;
3570 ++arg;
3571 }
3572 if (arg[0] != NUL) /* skip delimiter */
3573 ++arg;
3574 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3575 ++arg;
3576 if (arg[0] != NUL)
3577 return arg;
3578 break;
3579 case CMD_isearch:
3580 case CMD_dsearch:
3581 case CMD_ilist:
3582 case CMD_dlist:
3583 case CMD_ijump:
3584 case CMD_psearch:
3585 case CMD_djump:
3586 case CMD_isplit:
3587 case CMD_dsplit:
3588 arg = skipwhite(skipdigits(arg)); /* skip count */
3589 if (*arg == '/') /* Match regexp, not just whole words */
3590 {
3591 for (++arg; *arg && *arg != '/'; arg++)
3592 if (*arg == '\\' && arg[1] != NUL)
3593 arg++;
3594 if (*arg)
3595 {
3596 arg = skipwhite(arg + 1);
3597
3598 /* Check for trailing illegal characters */
3599 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3600 xp->xp_context = EXPAND_NOTHING;
3601 else
3602 return arg;
3603 }
3604 }
3605 break;
3606#ifdef FEAT_AUTOCMD
3607 case CMD_autocmd:
3608 return set_context_in_autocmd(xp, arg, FALSE);
3609
3610 case CMD_doautocmd:
3611 return set_context_in_autocmd(xp, arg, TRUE);
3612#endif
3613 case CMD_set:
3614 set_context_in_set_cmd(xp, arg, 0);
3615 break;
3616 case CMD_setglobal:
3617 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3618 break;
3619 case CMD_setlocal:
3620 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3621 break;
3622 case CMD_tag:
3623 case CMD_stag:
3624 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003625 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 case CMD_tselect:
3627 case CMD_stselect:
3628 case CMD_ptselect:
3629 case CMD_tjump:
3630 case CMD_stjump:
3631 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003632 if (*p_wop != NUL)
3633 xp->xp_context = EXPAND_TAGS_LISTFILES;
3634 else
3635 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003636 xp->xp_pattern = arg;
3637 break;
3638 case CMD_augroup:
3639 xp->xp_context = EXPAND_AUGROUP;
3640 xp->xp_pattern = arg;
3641 break;
3642#ifdef FEAT_SYN_HL
3643 case CMD_syntax:
3644 set_context_in_syntax_cmd(xp, arg);
3645 break;
3646#endif
3647#ifdef FEAT_EVAL
3648 case CMD_let:
3649 case CMD_if:
3650 case CMD_elseif:
3651 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003652 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 case CMD_echo:
3654 case CMD_echon:
3655 case CMD_execute:
3656 case CMD_echomsg:
3657 case CMD_echoerr:
3658 case CMD_call:
3659 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003660 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661 break;
3662
3663 case CMD_unlet:
3664 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3665 arg = xp->xp_pattern + 1;
3666 xp->xp_context = EXPAND_USER_VARS;
3667 xp->xp_pattern = arg;
3668 break;
3669
3670 case CMD_function:
3671 case CMD_delfunction:
3672 xp->xp_context = EXPAND_USER_FUNC;
3673 xp->xp_pattern = arg;
3674 break;
3675
3676 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00003677 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 break;
3679#endif
3680 case CMD_highlight:
3681 set_context_in_highlight_cmd(xp, arg);
3682 break;
3683#ifdef FEAT_LISTCMDS
3684 case CMD_bdelete:
3685 case CMD_bwipeout:
3686 case CMD_bunload:
3687 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3688 arg = xp->xp_pattern + 1;
3689 /*FALLTHROUGH*/
3690 case CMD_buffer:
3691 case CMD_sbuffer:
3692 case CMD_checktime:
3693 xp->xp_context = EXPAND_BUFFERS;
3694 xp->xp_pattern = arg;
3695 break;
3696#endif
3697#ifdef FEAT_USR_CMDS
3698 case CMD_USER:
3699 case CMD_USER_BUF:
3700 if (compl != EXPAND_NOTHING)
3701 {
3702 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003703 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 {
3705# ifdef FEAT_MENU
3706 if (compl == EXPAND_MENUS)
3707 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3708# endif
3709 if (compl == EXPAND_COMMANDS)
3710 return arg;
3711 if (compl == EXPAND_MAPPINGS)
3712 return set_context_in_map_cmd(xp, (char_u *)"map",
3713 arg, forceit, FALSE, FALSE, CMD_map);
3714 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3715 arg = xp->xp_pattern + 1;
3716 xp->xp_pattern = arg;
3717 }
3718 xp->xp_context = compl;
3719 }
3720 break;
3721#endif
3722 case CMD_map: case CMD_noremap:
3723 case CMD_nmap: case CMD_nnoremap:
3724 case CMD_vmap: case CMD_vnoremap:
3725 case CMD_omap: case CMD_onoremap:
3726 case CMD_imap: case CMD_inoremap:
3727 case CMD_cmap: case CMD_cnoremap:
3728 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003729 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 case CMD_unmap:
3731 case CMD_nunmap:
3732 case CMD_vunmap:
3733 case CMD_ounmap:
3734 case CMD_iunmap:
3735 case CMD_cunmap:
3736 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003737 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 case CMD_abbreviate: case CMD_noreabbrev:
3739 case CMD_cabbrev: case CMD_cnoreabbrev:
3740 case CMD_iabbrev: case CMD_inoreabbrev:
3741 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003742 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743 case CMD_unabbreviate:
3744 case CMD_cunabbrev:
3745 case CMD_iunabbrev:
3746 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003747 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748#ifdef FEAT_MENU
3749 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3750 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3751 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3752 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3753 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3754 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3755 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3756 case CMD_tmenu: case CMD_tunmenu:
3757 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3758 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3759#endif
3760
3761 case CMD_colorscheme:
3762 xp->xp_context = EXPAND_COLORS;
3763 xp->xp_pattern = arg;
3764 break;
3765
3766 case CMD_compiler:
3767 xp->xp_context = EXPAND_COMPILER;
3768 xp->xp_pattern = arg;
3769 break;
3770
3771#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3772 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3773 case CMD_language:
3774 if (*skiptowhite(arg) == NUL)
3775 {
3776 xp->xp_context = EXPAND_LANGUAGE;
3777 xp->xp_pattern = arg;
3778 }
3779 else
3780 xp->xp_context = EXPAND_NOTHING;
3781 break;
3782#endif
3783
3784#endif /* FEAT_CMDL_COMPL */
3785
3786 default:
3787 break;
3788 }
3789 return NULL;
3790}
3791
3792/*
3793 * skip a range specifier of the form: addr [,addr] [;addr] ..
3794 *
3795 * Backslashed delimiters after / or ? will be skipped, and commands will
3796 * not be expanded between /'s and ?'s or after "'".
3797 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003798 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 * Returns the "cmd" pointer advanced to beyond the range.
3800 */
3801 char_u *
3802skip_range(cmd, ctx)
3803 char_u *cmd;
3804 int *ctx; /* pointer to xp_context or NULL */
3805{
3806 int delim;
3807
Bram Moolenaardf177f62005-02-22 08:39:57 +00003808 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 {
3810 if (*cmd == '\'')
3811 {
3812 if (*++cmd == NUL && ctx != NULL)
3813 *ctx = EXPAND_NOTHING;
3814 }
3815 else if (*cmd == '/' || *cmd == '?')
3816 {
3817 delim = *cmd++;
3818 while (*cmd != NUL && *cmd != delim)
3819 if (*cmd++ == '\\' && *cmd != NUL)
3820 ++cmd;
3821 if (*cmd == NUL && ctx != NULL)
3822 *ctx = EXPAND_NOTHING;
3823 }
3824 if (*cmd != NUL)
3825 ++cmd;
3826 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003827
3828 /* Skip ":" and white space. */
3829 while (*cmd == ':')
3830 cmd = skipwhite(cmd + 1);
3831
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 return cmd;
3833}
3834
3835/*
3836 * get a single EX address
3837 *
3838 * Set ptr to the next character after the part that was interpreted.
3839 * Set ptr to NULL when an error is encountered.
3840 *
3841 * Return MAXLNUM when no Ex address was found.
3842 */
3843 static linenr_T
3844get_address(ptr, skip, to_other_file)
3845 char_u **ptr;
3846 int skip; /* only skip the address, don't use it */
3847 int to_other_file; /* flag: may jump to other file */
3848{
3849 int c;
3850 int i;
3851 long n;
3852 char_u *cmd;
3853 pos_T pos;
3854 pos_T *fp;
3855 linenr_T lnum;
3856
3857 cmd = skipwhite(*ptr);
3858 lnum = MAXLNUM;
3859 do
3860 {
3861 switch (*cmd)
3862 {
3863 case '.': /* '.' - Cursor position */
3864 ++cmd;
3865 lnum = curwin->w_cursor.lnum;
3866 break;
3867
3868 case '$': /* '$' - last line */
3869 ++cmd;
3870 lnum = curbuf->b_ml.ml_line_count;
3871 break;
3872
3873 case '\'': /* ''' - mark */
3874 if (*++cmd == NUL)
3875 {
3876 cmd = NULL;
3877 goto error;
3878 }
3879 if (skip)
3880 ++cmd;
3881 else
3882 {
3883 /* Only accept a mark in another file when it is
3884 * used by itself: ":'M". */
3885 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3886 ++cmd;
3887 if (fp == (pos_T *)-1)
3888 /* Jumped to another file. */
3889 lnum = curwin->w_cursor.lnum;
3890 else
3891 {
3892 if (check_mark(fp) == FAIL)
3893 {
3894 cmd = NULL;
3895 goto error;
3896 }
3897 lnum = fp->lnum;
3898 }
3899 }
3900 break;
3901
3902 case '/':
3903 case '?': /* '/' or '?' - search */
3904 c = *cmd++;
3905 if (skip) /* skip "/pat/" */
3906 {
3907 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3908 if (*cmd == c)
3909 ++cmd;
3910 }
3911 else
3912 {
3913 pos = curwin->w_cursor; /* save curwin->w_cursor */
3914 /*
3915 * When '/' or '?' follows another address, start
3916 * from there.
3917 */
3918 if (lnum != MAXLNUM)
3919 curwin->w_cursor.lnum = lnum;
3920 /*
3921 * Start a forward search at the end of the line.
3922 * Start a backward search at the start of the line.
3923 * This makes sure we never match in the current
3924 * line, and can match anywhere in the
3925 * next/previous line.
3926 */
3927 if (c == '/')
3928 curwin->w_cursor.col = MAXCOL;
3929 else
3930 curwin->w_cursor.col = 0;
3931 searchcmdlen = 0;
3932 if (!do_search(NULL, c, cmd, 1L,
Bram Moolenaaraad86642008-03-10 20:34:59 +00003933 SEARCH_HIS | SEARCH_MSG, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 {
3935 curwin->w_cursor = pos;
3936 cmd = NULL;
3937 goto error;
3938 }
3939 lnum = curwin->w_cursor.lnum;
3940 curwin->w_cursor = pos;
3941 /* adjust command string pointer */
3942 cmd += searchcmdlen;
3943 }
3944 break;
3945
3946 case '\\': /* "\?", "\/" or "\&", repeat search */
3947 ++cmd;
3948 if (*cmd == '&')
3949 i = RE_SUBST;
3950 else if (*cmd == '?' || *cmd == '/')
3951 i = RE_SEARCH;
3952 else
3953 {
3954 EMSG(_(e_backslash));
3955 cmd = NULL;
3956 goto error;
3957 }
3958
3959 if (!skip)
3960 {
3961 /*
3962 * When search follows another address, start from
3963 * there.
3964 */
3965 if (lnum != MAXLNUM)
3966 pos.lnum = lnum;
3967 else
3968 pos.lnum = curwin->w_cursor.lnum;
3969
3970 /*
3971 * Start the search just like for the above
3972 * do_search().
3973 */
3974 if (*cmd != '?')
3975 pos.col = MAXCOL;
3976 else
3977 pos.col = 0;
3978 if (searchit(curwin, curbuf, &pos,
3979 *cmd == '?' ? BACKWARD : FORWARD,
Bram Moolenaaraad86642008-03-10 20:34:59 +00003980 (char_u *)"", 1L, SEARCH_MSG,
Bram Moolenaar76929292008-01-06 19:07:36 +00003981 i, (linenr_T)0, NULL) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003982 lnum = pos.lnum;
3983 else
3984 {
3985 cmd = NULL;
3986 goto error;
3987 }
3988 }
3989 ++cmd;
3990 break;
3991
3992 default:
3993 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3994 lnum = getdigits(&cmd);
3995 }
3996
3997 for (;;)
3998 {
3999 cmd = skipwhite(cmd);
4000 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4001 break;
4002
4003 if (lnum == MAXLNUM)
4004 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
4005 if (VIM_ISDIGIT(*cmd))
4006 i = '+'; /* "number" is same as "+number" */
4007 else
4008 i = *cmd++;
4009 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4010 n = 1;
4011 else
4012 n = getdigits(&cmd);
4013 if (i == '-')
4014 lnum -= n;
4015 else
4016 lnum += n;
4017 }
4018 } while (*cmd == '/' || *cmd == '?');
4019
4020error:
4021 *ptr = cmd;
4022 return lnum;
4023}
4024
4025/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004026 * Get flags from an Ex command argument.
4027 */
4028 static void
4029get_flags(eap)
4030 exarg_T *eap;
4031{
4032 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4033 {
4034 if (*eap->arg == 'l')
4035 eap->flags |= EXFLAG_LIST;
4036 else if (*eap->arg == 'p')
4037 eap->flags |= EXFLAG_PRINT;
4038 else
4039 eap->flags |= EXFLAG_NR;
4040 eap->arg = skipwhite(eap->arg + 1);
4041 }
4042}
4043
4044/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045 * Function called for command which is Not Implemented. NI!
4046 */
4047 void
4048ex_ni(eap)
4049 exarg_T *eap;
4050{
4051 if (!eap->skip)
4052 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4053}
4054
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004055#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056/*
4057 * Function called for script command which is Not Implemented. NI!
4058 * Skips over ":perl <<EOF" constructs.
4059 */
4060 static void
4061ex_script_ni(eap)
4062 exarg_T *eap;
4063{
4064 if (!eap->skip)
4065 ex_ni(eap);
4066 else
4067 vim_free(script_get(eap, eap->arg));
4068}
4069#endif
4070
4071/*
4072 * Check range in Ex command for validity.
4073 * Return NULL when valid, error message when invalid.
4074 */
4075 static char_u *
4076invalid_range(eap)
4077 exarg_T *eap;
4078{
4079 if ( eap->line1 < 0
4080 || eap->line2 < 0
4081 || eap->line1 > eap->line2
4082 || ((eap->argt & RANGE)
4083 && !(eap->argt & NOTADR)
4084 && eap->line2 > curbuf->b_ml.ml_line_count
4085#ifdef FEAT_DIFF
4086 + (eap->cmdidx == CMD_diffget)
4087#endif
4088 ))
4089 return (char_u *)_(e_invrange);
4090 return NULL;
4091}
4092
4093/*
4094 * Correct the range for zero line number, if required.
4095 */
4096 static void
4097correct_range(eap)
4098 exarg_T *eap;
4099{
4100 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4101 {
4102 if (eap->line1 == 0)
4103 eap->line1 = 1;
4104 if (eap->line2 == 0)
4105 eap->line2 = 1;
4106 }
4107}
4108
Bram Moolenaar748bf032005-02-02 23:04:36 +00004109#ifdef FEAT_QUICKFIX
4110static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4111
4112/*
4113 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4114 * pattern. Otherwise return eap->arg.
4115 */
4116 static char_u *
4117skip_grep_pat(eap)
4118 exarg_T *eap;
4119{
4120 char_u *p = eap->arg;
4121
Bram Moolenaara37420f2006-02-04 22:37:47 +00004122 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4123 || eap->cmdidx == CMD_vimgrepadd
4124 || eap->cmdidx == CMD_lvimgrepadd
4125 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004126 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004127 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004128 if (p == NULL)
4129 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004130 }
4131 return p;
4132}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004133
4134/*
4135 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4136 * in the command line, so that things like % get expanded.
4137 */
4138 static char_u *
4139replace_makeprg(eap, p, cmdlinep)
4140 exarg_T *eap;
4141 char_u *p;
4142 char_u **cmdlinep;
4143{
4144 char_u *new_cmdline;
4145 char_u *program;
4146 char_u *pos;
4147 char_u *ptr;
4148 int len;
4149 int i;
4150
4151 /*
4152 * Don't do it when ":vimgrep" is used for ":grep".
4153 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004154 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4155 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4156 || eap->cmdidx == CMD_grepadd
4157 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004158 && !grep_internal(eap->cmdidx))
4159 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004160 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4161 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004162 {
4163 if (*curbuf->b_p_gp == NUL)
4164 program = p_gp;
4165 else
4166 program = curbuf->b_p_gp;
4167 }
4168 else
4169 {
4170 if (*curbuf->b_p_mp == NUL)
4171 program = p_mp;
4172 else
4173 program = curbuf->b_p_mp;
4174 }
4175
4176 p = skipwhite(p);
4177
4178 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4179 {
4180 /* replace $* by given arguments */
4181 i = 1;
4182 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4183 ++i;
4184 len = (int)STRLEN(p);
4185 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4186 if (new_cmdline == NULL)
4187 return NULL; /* out of memory */
4188 ptr = new_cmdline;
4189 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4190 {
4191 i = (int)(pos - program);
4192 STRNCPY(ptr, program, i);
4193 STRCPY(ptr += i, p);
4194 ptr += len;
4195 program = pos + 2;
4196 }
4197 STRCPY(ptr, program);
4198 }
4199 else
4200 {
4201 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4202 if (new_cmdline == NULL)
4203 return NULL; /* out of memory */
4204 STRCPY(new_cmdline, program);
4205 STRCAT(new_cmdline, " ");
4206 STRCAT(new_cmdline, p);
4207 }
4208 msg_make(p);
4209
4210 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4211 vim_free(*cmdlinep);
4212 *cmdlinep = new_cmdline;
4213 p = new_cmdline;
4214 }
4215 return p;
4216}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004217#endif
4218
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219/*
4220 * Expand file name in Ex command argument.
4221 * Return FAIL for failure, OK otherwise.
4222 */
4223 int
4224expand_filename(eap, cmdlinep, errormsgp)
4225 exarg_T *eap;
4226 char_u **cmdlinep;
4227 char_u **errormsgp;
4228{
4229 int has_wildcards; /* need to expand wildcards */
4230 char_u *repl;
4231 int srclen;
4232 char_u *p;
4233 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004234 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235
Bram Moolenaar748bf032005-02-02 23:04:36 +00004236#ifdef FEAT_QUICKFIX
4237 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4238 p = skip_grep_pat(eap);
4239#else
4240 p = eap->arg;
4241#endif
4242
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 /*
4244 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4245 * the file name contains a wildcard it should not cause expanding.
4246 * (it will be expanded anyway if there is a wildcard before replacing).
4247 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004248 has_wildcards = mch_has_wildcard(p);
4249 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004251#ifdef FEAT_EVAL
4252 /* Skip over `=expr`, wildcards in it are not expanded. */
4253 if (p[0] == '`' && p[1] == '=')
4254 {
4255 p += 2;
4256 (void)skip_expr(&p);
4257 if (*p == '`')
4258 ++p;
4259 continue;
4260 }
4261#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 /*
4263 * Quick check if this cannot be the start of a special string.
4264 * Also removes backslash before '%', '#' and '<'.
4265 */
4266 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4267 {
4268 ++p;
4269 continue;
4270 }
4271
4272 /*
4273 * Try to find a match at this position.
4274 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004275 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4276 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 if (*errormsgp != NULL) /* error detected */
4278 return FAIL;
4279 if (repl == NULL) /* no match found */
4280 {
4281 p += srclen;
4282 continue;
4283 }
4284
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004285 /* Wildcards won't be expanded below, the replacement is taken
4286 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4287 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4288 {
4289 char_u *l = repl;
4290
4291 repl = expand_env_save(repl);
4292 vim_free(l);
4293 }
4294
Bram Moolenaar63b92542007-03-27 14:57:09 +00004295 /* Need to escape white space et al. with a backslash.
4296 * Don't do this for:
4297 * - replacement that already has been escaped: "##"
4298 * - shell commands (may have to use quotes instead).
4299 * - non-unix systems when there is a single argument (spaces don't
4300 * separate arguments then).
4301 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004303 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 && eap->cmdidx != CMD_bang
4305 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004306 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004308 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004310 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311#ifndef UNIX
4312 && !(eap->argt & NOSPC)
4313#endif
4314 )
4315 {
4316 char_u *l;
4317#ifdef BACKSLASH_IN_FILENAME
4318 /* Don't escape a backslash here, because rem_backslash() doesn't
4319 * remove it later. */
4320 static char_u *nobslash = (char_u *)" \t\"|";
4321# define ESCAPE_CHARS nobslash
4322#else
4323# define ESCAPE_CHARS escape_chars
4324#endif
4325
4326 for (l = repl; *l; ++l)
4327 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4328 {
4329 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4330 if (l != NULL)
4331 {
4332 vim_free(repl);
4333 repl = l;
4334 }
4335 break;
4336 }
4337 }
4338
4339 /* For a shell command a '!' must be escaped. */
4340 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004341 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342 {
4343 char_u *l;
4344
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004345 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 if (l != NULL)
4347 {
4348 vim_free(repl);
4349 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004350 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004351 if (strstr((char *)p_sh, "sh") != NULL)
4352 {
4353 l = vim_strsave_escaped(repl, (char_u *)"!");
4354 if (l != NULL)
4355 {
4356 vim_free(repl);
4357 repl = l;
4358 }
4359 }
4360 }
4361 }
4362
4363 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4364 vim_free(repl);
4365 if (p == NULL)
4366 return FAIL;
4367 }
4368
4369 /*
4370 * One file argument: Expand wildcards.
4371 * Don't do this with ":r !command" or ":w !command".
4372 */
4373 if ((eap->argt & NOSPC) && !eap->usefilter)
4374 {
4375 /*
4376 * May do this twice:
4377 * 1. Replace environment variables.
4378 * 2. Replace any other wildcards, remove backslashes.
4379 */
4380 for (n = 1; n <= 2; ++n)
4381 {
4382 if (n == 2)
4383 {
4384#ifdef UNIX
4385 /*
4386 * Only for Unix we check for more than one file name.
4387 * For other systems spaces are considered to be part
4388 * of the file name.
4389 * Only check here if there is no wildcard, otherwise
4390 * ExpandOne() will check for errors. This allows
4391 * ":e `ls ve*.c`" on Unix.
4392 */
4393 if (!has_wildcards)
4394 for (p = eap->arg; *p; ++p)
4395 {
4396 /* skip escaped characters */
4397 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4398 ++p;
4399 else if (vim_iswhite(*p))
4400 {
4401 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4402 return FAIL;
4403 }
4404 }
4405#endif
4406
4407 /*
4408 * Halve the number of backslashes (this is Vi compatible).
4409 * For Unix and OS/2, when wildcards are expanded, this is
4410 * done by ExpandOne() below.
4411 */
4412#if defined(UNIX) || defined(OS2)
4413 if (!has_wildcards)
4414#endif
4415 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 }
4417
4418 if (has_wildcards)
4419 {
4420 if (n == 1)
4421 {
4422 /*
4423 * First loop: May expand environment variables. This
4424 * can be done much faster with expand_env() than with
4425 * something else (e.g., calling a shell).
4426 * After expanding environment variables, check again
4427 * if there are still wildcards present.
4428 */
4429 if (vim_strchr(eap->arg, '$') != NULL
4430 || vim_strchr(eap->arg, '~') != NULL)
4431 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004432 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004433 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004434 has_wildcards = mch_has_wildcard(NameBuff);
4435 p = NameBuff;
4436 }
4437 else
4438 p = NULL;
4439 }
4440 else /* n == 2 */
4441 {
4442 expand_T xpc;
4443
4444 ExpandInit(&xpc);
4445 xpc.xp_context = EXPAND_FILES;
4446 p = ExpandOne(&xpc, eap->arg, NULL,
4447 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4448 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449 if (p == NULL)
4450 return FAIL;
4451 }
4452 if (p != NULL)
4453 {
4454 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4455 p, cmdlinep);
4456 if (n == 2) /* p came from ExpandOne() */
4457 vim_free(p);
4458 }
4459 }
4460 }
4461 }
4462 return OK;
4463}
4464
4465/*
4466 * Replace part of the command line, keeping eap->cmd, eap->arg and
4467 * eap->nextcmd correct.
4468 * "src" points to the part that is to be replaced, of length "srclen".
4469 * "repl" is the replacement string.
4470 * Returns a pointer to the character after the replaced string.
4471 * Returns NULL for failure.
4472 */
4473 static char_u *
4474repl_cmdline(eap, src, srclen, repl, cmdlinep)
4475 exarg_T *eap;
4476 char_u *src;
4477 int srclen;
4478 char_u *repl;
4479 char_u **cmdlinep;
4480{
4481 int len;
4482 int i;
4483 char_u *new_cmdline;
4484
4485 /*
4486 * The new command line is build in new_cmdline[].
4487 * First allocate it.
4488 * Careful: a "+cmd" argument may have been NUL terminated.
4489 */
4490 len = (int)STRLEN(repl);
4491 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004492 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4494 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4495 return NULL; /* out of memory! */
4496
4497 /*
4498 * Copy the stuff before the expanded part.
4499 * Copy the expanded stuff.
4500 * Copy what came after the expanded part.
4501 * Copy the next commands, if there are any.
4502 */
4503 i = (int)(src - *cmdlinep); /* length of part before match */
4504 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004505
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 mch_memmove(new_cmdline + i, repl, (size_t)len);
4507 i += len; /* remember the end of the string */
4508 STRCPY(new_cmdline + i, src + srclen);
4509 src = new_cmdline + i; /* remember where to continue */
4510
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004511 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 {
4513 i = (int)STRLEN(new_cmdline) + 1;
4514 STRCPY(new_cmdline + i, eap->nextcmd);
4515 eap->nextcmd = new_cmdline + i;
4516 }
4517 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4518 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4519 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4520 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4521 vim_free(*cmdlinep);
4522 *cmdlinep = new_cmdline;
4523
4524 return src;
4525}
4526
4527/*
4528 * Check for '|' to separate commands and '"' to start comments.
4529 */
4530 void
4531separate_nextcmd(eap)
4532 exarg_T *eap;
4533{
4534 char_u *p;
4535
Bram Moolenaar86b68352004-12-27 21:59:20 +00004536#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004537 p = skip_grep_pat(eap);
4538#else
4539 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004540#endif
4541
4542 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 {
4544 if (*p == Ctrl_V)
4545 {
4546 if (eap->argt & (USECTRLV | XFILE))
4547 ++p; /* skip CTRL-V and next char */
4548 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00004549 /* remove CTRL-V and skip next char */
Bram Moolenaara7241f52008-06-24 20:39:31 +00004550 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 if (*p == NUL) /* stop at NUL after CTRL-V */
4552 break;
4553 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004554
4555#ifdef FEAT_EVAL
4556 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004557 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004558 {
4559 p += 2;
4560 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004561 }
4562#endif
4563
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 /* Check for '"': start of comment or '|': next command */
4565 /* :@" and :*" do not start a comment!
4566 * :redir @" doesn't either. */
4567 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4568 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4569 || p != eap->arg)
4570 && (eap->cmdidx != CMD_redir
4571 || p != eap->arg + 1 || p[-1] != '@'))
4572 || *p == '|' || *p == '\n')
4573 {
4574 /*
4575 * We remove the '\' before the '|', unless USECTRLV is used
4576 * AND 'b' is present in 'cpoptions'.
4577 */
4578 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4579 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4580 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00004581 STRMOVE(p - 1, p); /* remove the '\' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582 --p;
4583 }
4584 else
4585 {
4586 eap->nextcmd = check_nextcmd(p);
4587 *p = NUL;
4588 break;
4589 }
4590 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004592
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4594 del_trailing_spaces(eap->arg);
4595}
4596
4597/*
4598 * get + command from ex argument
4599 */
4600 static char_u *
4601getargcmd(argp)
4602 char_u **argp;
4603{
4604 char_u *arg = *argp;
4605 char_u *command = NULL;
4606
4607 if (*arg == '+') /* +[command] */
4608 {
4609 ++arg;
4610 if (vim_isspace(*arg))
4611 command = dollar_command;
4612 else
4613 {
4614 command = arg;
4615 arg = skip_cmd_arg(command, TRUE);
4616 if (*arg != NUL)
4617 *arg++ = NUL; /* terminate command with NUL */
4618 }
4619
4620 arg = skipwhite(arg); /* skip over spaces */
4621 *argp = arg;
4622 }
4623 return command;
4624}
4625
4626/*
4627 * Find end of "+command" argument. Skip over "\ " and "\\".
4628 */
4629 static char_u *
4630skip_cmd_arg(p, rembs)
4631 char_u *p;
4632 int rembs; /* TRUE to halve the number of backslashes */
4633{
4634 while (*p && !vim_isspace(*p))
4635 {
4636 if (*p == '\\' && p[1] != NUL)
4637 {
4638 if (rembs)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004639 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640 else
4641 ++p;
4642 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004643 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 }
4645 return p;
4646}
4647
4648/*
4649 * Get "++opt=arg" argument.
4650 * Return FAIL or OK.
4651 */
4652 static int
4653getargopt(eap)
4654 exarg_T *eap;
4655{
4656 char_u *arg = eap->arg + 2;
4657 int *pp = NULL;
4658#ifdef FEAT_MBYTE
4659 char_u *p;
4660#endif
4661
4662 /* ":edit ++[no]bin[ary] file" */
4663 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4664 {
4665 if (*arg == 'n')
4666 {
4667 arg += 2;
4668 eap->force_bin = FORCE_NOBIN;
4669 }
4670 else
4671 eap->force_bin = FORCE_BIN;
4672 if (!checkforcmd(&arg, "binary", 3))
4673 return FAIL;
4674 eap->arg = skipwhite(arg);
4675 return OK;
4676 }
4677
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004678 /* ":read ++edit file" */
4679 if (STRNCMP(arg, "edit", 4) == 0)
4680 {
4681 eap->read_edit = TRUE;
4682 eap->arg = skipwhite(arg + 4);
4683 return OK;
4684 }
4685
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 if (STRNCMP(arg, "ff", 2) == 0)
4687 {
4688 arg += 2;
4689 pp = &eap->force_ff;
4690 }
4691 else if (STRNCMP(arg, "fileformat", 10) == 0)
4692 {
4693 arg += 10;
4694 pp = &eap->force_ff;
4695 }
4696#ifdef FEAT_MBYTE
4697 else if (STRNCMP(arg, "enc", 3) == 0)
4698 {
4699 arg += 3;
4700 pp = &eap->force_enc;
4701 }
4702 else if (STRNCMP(arg, "encoding", 8) == 0)
4703 {
4704 arg += 8;
4705 pp = &eap->force_enc;
4706 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004707 else if (STRNCMP(arg, "bad", 3) == 0)
4708 {
4709 arg += 3;
4710 pp = &eap->bad_char;
4711 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004712#endif
4713
4714 if (pp == NULL || *arg != '=')
4715 return FAIL;
4716
4717 ++arg;
4718 *pp = (int)(arg - eap->cmd);
4719 arg = skip_cmd_arg(arg, FALSE);
4720 eap->arg = skipwhite(arg);
4721 *arg = NUL;
4722
4723#ifdef FEAT_MBYTE
4724 if (pp == &eap->force_ff)
4725 {
4726#endif
4727 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4728 return FAIL;
4729#ifdef FEAT_MBYTE
4730 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004731 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 {
4733 /* Make 'fileencoding' lower case. */
4734 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4735 *p = TOLOWER_ASC(*p);
4736 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004737 else
4738 {
4739 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4740 * "drop". */
4741 p = eap->cmd + eap->bad_char;
4742 if (STRICMP(p, "keep") == 0)
4743 eap->bad_char = BAD_KEEP;
4744 else if (STRICMP(p, "drop") == 0)
4745 eap->bad_char = BAD_DROP;
4746 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4747 eap->bad_char = *p;
4748 else
4749 return FAIL;
4750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751#endif
4752
4753 return OK;
4754}
4755
4756/*
4757 * ":abbreviate" and friends.
4758 */
4759 static void
4760ex_abbreviate(eap)
4761 exarg_T *eap;
4762{
4763 do_exmap(eap, TRUE); /* almost the same as mapping */
4764}
4765
4766/*
4767 * ":map" and friends.
4768 */
4769 static void
4770ex_map(eap)
4771 exarg_T *eap;
4772{
4773 /*
4774 * If we are sourcing .exrc or .vimrc in current directory we
4775 * print the mappings for security reasons.
4776 */
4777 if (secure)
4778 {
4779 secure = 2;
4780 msg_outtrans(eap->cmd);
4781 msg_putchar('\n');
4782 }
4783 do_exmap(eap, FALSE);
4784}
4785
4786/*
4787 * ":unmap" and friends.
4788 */
4789 static void
4790ex_unmap(eap)
4791 exarg_T *eap;
4792{
4793 do_exmap(eap, FALSE);
4794}
4795
4796/*
4797 * ":mapclear" and friends.
4798 */
4799 static void
4800ex_mapclear(eap)
4801 exarg_T *eap;
4802{
4803 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4804}
4805
4806/*
4807 * ":abclear" and friends.
4808 */
4809 static void
4810ex_abclear(eap)
4811 exarg_T *eap;
4812{
4813 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4814}
4815
4816#ifdef FEAT_AUTOCMD
4817 static void
4818ex_autocmd(eap)
4819 exarg_T *eap;
4820{
4821 /*
4822 * Disallow auto commands from .exrc and .vimrc in current
4823 * directory for security reasons.
4824 */
4825 if (secure)
4826 {
4827 secure = 2;
4828 eap->errmsg = e_curdir;
4829 }
4830 else if (eap->cmdidx == CMD_autocmd)
4831 do_autocmd(eap->arg, eap->forceit);
4832 else
4833 do_augroup(eap->arg, eap->forceit);
4834}
4835
4836/*
4837 * ":doautocmd": Apply the automatic commands to the current buffer.
4838 */
4839 static void
4840ex_doautocmd(eap)
4841 exarg_T *eap;
4842{
4843 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004844 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004845}
4846#endif
4847
4848#ifdef FEAT_LISTCMDS
4849/*
4850 * :[N]bunload[!] [N] [bufname] unload buffer
4851 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4852 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4853 */
4854 static void
4855ex_bunload(eap)
4856 exarg_T *eap;
4857{
4858 eap->errmsg = do_bufdel(
4859 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4860 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4861 : DOBUF_UNLOAD, eap->arg,
4862 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4863}
4864
4865/*
4866 * :[N]buffer [N] to buffer N
4867 * :[N]sbuffer [N] to buffer N
4868 */
4869 static void
4870ex_buffer(eap)
4871 exarg_T *eap;
4872{
4873 if (*eap->arg)
4874 eap->errmsg = e_trailing;
4875 else
4876 {
4877 if (eap->addr_count == 0) /* default is current buffer */
4878 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4879 else
4880 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4881 }
4882}
4883
4884/*
4885 * :[N]bmodified [N] to next mod. buffer
4886 * :[N]sbmodified [N] to next mod. buffer
4887 */
4888 static void
4889ex_bmodified(eap)
4890 exarg_T *eap;
4891{
4892 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4893}
4894
4895/*
4896 * :[N]bnext [N] to next buffer
4897 * :[N]sbnext [N] split and to next buffer
4898 */
4899 static void
4900ex_bnext(eap)
4901 exarg_T *eap;
4902{
4903 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4904}
4905
4906/*
4907 * :[N]bNext [N] to previous buffer
4908 * :[N]bprevious [N] to previous buffer
4909 * :[N]sbNext [N] split and to previous buffer
4910 * :[N]sbprevious [N] split and to previous buffer
4911 */
4912 static void
4913ex_bprevious(eap)
4914 exarg_T *eap;
4915{
4916 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4917}
4918
4919/*
4920 * :brewind to first buffer
4921 * :bfirst to first buffer
4922 * :sbrewind split and to first buffer
4923 * :sbfirst split and to first buffer
4924 */
4925 static void
4926ex_brewind(eap)
4927 exarg_T *eap;
4928{
4929 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4930}
4931
4932/*
4933 * :blast to last buffer
4934 * :sblast split and to last buffer
4935 */
4936 static void
4937ex_blast(eap)
4938 exarg_T *eap;
4939{
4940 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4941}
4942#endif
4943
4944 int
4945ends_excmd(c)
4946 int c;
4947{
4948 return (c == NUL || c == '|' || c == '"' || c == '\n');
4949}
4950
4951#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4952 || defined(PROTO)
4953/*
4954 * Return the next command, after the first '|' or '\n'.
4955 * Return NULL if not found.
4956 */
4957 char_u *
4958find_nextcmd(p)
4959 char_u *p;
4960{
4961 while (*p != '|' && *p != '\n')
4962 {
4963 if (*p == NUL)
4964 return NULL;
4965 ++p;
4966 }
4967 return (p + 1);
4968}
4969#endif
4970
4971/*
4972 * Check if *p is a separator between Ex commands.
4973 * Return NULL if it isn't, (p + 1) if it is.
4974 */
4975 char_u *
4976check_nextcmd(p)
4977 char_u *p;
4978{
4979 p = skipwhite(p);
4980 if (*p == '|' || *p == '\n')
4981 return (p + 1);
4982 else
4983 return NULL;
4984}
4985
4986/*
4987 * - if there are more files to edit
4988 * - and this is the last window
4989 * - and forceit not used
4990 * - and not repeated twice on a row
4991 * return FAIL and give error message if 'message' TRUE
4992 * return OK otherwise
4993 */
4994 static int
4995check_more(message, forceit)
4996 int message; /* when FALSE check only, no messages */
4997 int forceit;
4998{
4999 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5000
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005001 if (!forceit && only_one_window()
5002 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 {
5004 if (message)
5005 {
5006#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5007 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5008 {
5009 char_u buff[IOSIZE];
5010
5011 if (n == 1)
5012 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
5013 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005014 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 _("%d more files to edit. Quit anyway?"), n);
5016 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5017 return OK;
5018 return FAIL;
5019 }
5020#endif
5021 if (n == 1)
5022 EMSG(_("E173: 1 more file to edit"));
5023 else
5024 EMSGN(_("E173: %ld more files to edit"), n);
5025 quitmore = 2; /* next try to quit is allowed */
5026 }
5027 return FAIL;
5028 }
5029 return OK;
5030}
5031
5032#ifdef FEAT_CMDL_COMPL
5033/*
5034 * Function given to ExpandGeneric() to obtain the list of command names.
5035 */
5036/*ARGSUSED*/
5037 char_u *
5038get_command_name(xp, idx)
5039 expand_T *xp;
5040 int idx;
5041{
5042 if (idx >= (int)CMD_SIZE)
5043# ifdef FEAT_USR_CMDS
5044 return get_user_command_name(idx);
5045# else
5046 return NULL;
5047# endif
5048 return cmdnames[idx].cmd_name;
5049}
5050#endif
5051
5052#if defined(FEAT_USR_CMDS) || defined(PROTO)
5053static 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));
5054static void uc_list __ARGS((char_u *name, size_t name_len));
5055static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5056static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5057static 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));
5058
5059 static int
5060uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5061 char_u *name;
5062 size_t name_len;
5063 char_u *rep;
5064 long argt;
5065 long def;
5066 int flags;
5067 int compl;
5068 char_u *compl_arg;
5069 int force;
5070{
5071 ucmd_T *cmd = NULL;
5072 char_u *p;
5073 int i;
5074 int cmp = 1;
5075 char_u *rep_buf = NULL;
5076 garray_T *gap;
5077
Bram Moolenaar9c102382006-05-03 21:26:49 +00005078 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 if (rep_buf == NULL)
5080 {
5081 /* Can't replace termcodes - try using the string as is */
5082 rep_buf = vim_strsave(rep);
5083
5084 /* Give up if out of memory */
5085 if (rep_buf == NULL)
5086 return FAIL;
5087 }
5088
5089 /* get address of growarray: global or in curbuf */
5090 if (flags & UC_BUFFER)
5091 {
5092 gap = &curbuf->b_ucmds;
5093 if (gap->ga_itemsize == 0)
5094 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5095 }
5096 else
5097 gap = &ucmds;
5098
5099 /* Search for the command in the already defined commands. */
5100 for (i = 0; i < gap->ga_len; ++i)
5101 {
5102 size_t len;
5103
5104 cmd = USER_CMD_GA(gap, i);
5105 len = STRLEN(cmd->uc_name);
5106 cmp = STRNCMP(name, cmd->uc_name, name_len);
5107 if (cmp == 0)
5108 {
5109 if (name_len < len)
5110 cmp = -1;
5111 else if (name_len > len)
5112 cmp = 1;
5113 }
5114
5115 if (cmp == 0)
5116 {
5117 if (!force)
5118 {
5119 EMSG(_("E174: Command already exists: add ! to replace it"));
5120 goto fail;
5121 }
5122
5123 vim_free(cmd->uc_rep);
5124 cmd->uc_rep = 0;
5125 break;
5126 }
5127
5128 /* Stop as soon as we pass the name to add */
5129 if (cmp < 0)
5130 break;
5131 }
5132
5133 /* Extend the array unless we're replacing an existing command */
5134 if (cmp != 0)
5135 {
5136 if (ga_grow(gap, 1) != OK)
5137 goto fail;
5138 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5139 goto fail;
5140
5141 cmd = USER_CMD_GA(gap, i);
5142 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5143
5144 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145
5146 cmd->uc_name = p;
5147 }
5148
5149 cmd->uc_rep = rep_buf;
5150 cmd->uc_argt = argt;
5151 cmd->uc_def = def;
5152 cmd->uc_compl = compl;
5153#ifdef FEAT_EVAL
5154 cmd->uc_scriptID = current_SID;
5155# ifdef FEAT_CMDL_COMPL
5156 cmd->uc_compl_arg = compl_arg;
5157# endif
5158#endif
5159
5160 return OK;
5161
5162fail:
5163 vim_free(rep_buf);
5164#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5165 vim_free(compl_arg);
5166#endif
5167 return FAIL;
5168}
5169
5170/*
5171 * List of names for completion for ":command" with the EXPAND_ flag.
5172 * Must be alphabetical for completion.
5173 */
5174static struct
5175{
5176 int expand;
5177 char *name;
5178} command_complete[] =
5179{
5180 {EXPAND_AUGROUP, "augroup"},
5181 {EXPAND_BUFFERS, "buffer"},
5182 {EXPAND_COMMANDS, "command"},
5183#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5184 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005185 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186#endif
5187 {EXPAND_DIRECTORIES, "dir"},
5188 {EXPAND_ENV_VARS, "environment"},
5189 {EXPAND_EVENTS, "event"},
5190 {EXPAND_EXPRESSION, "expression"},
5191 {EXPAND_FILES, "file"},
5192 {EXPAND_FUNCTIONS, "function"},
5193 {EXPAND_HELP, "help"},
5194 {EXPAND_HIGHLIGHT, "highlight"},
5195 {EXPAND_MAPPINGS, "mapping"},
5196 {EXPAND_MENUS, "menu"},
5197 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005198 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199 {EXPAND_TAGS, "tag"},
5200 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5201 {EXPAND_USER_VARS, "var"},
5202 {0, NULL}
5203};
5204
5205 static void
5206uc_list(name, name_len)
5207 char_u *name;
5208 size_t name_len;
5209{
5210 int i, j;
5211 int found = FALSE;
5212 ucmd_T *cmd;
5213 int len;
5214 long a;
5215 garray_T *gap;
5216
5217 gap = &curbuf->b_ucmds;
5218 for (;;)
5219 {
5220 for (i = 0; i < gap->ga_len; ++i)
5221 {
5222 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005223 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224
5225 /* Skip commands which don't match the requested prefix */
5226 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5227 continue;
5228
5229 /* Put out the title first time */
5230 if (!found)
5231 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5232 found = TRUE;
5233 msg_putchar('\n');
5234 if (got_int)
5235 break;
5236
5237 /* Special cases */
5238 msg_putchar(a & BANG ? '!' : ' ');
5239 msg_putchar(a & REGSTR ? '"' : ' ');
5240 msg_putchar(gap != &ucmds ? 'b' : ' ');
5241 msg_putchar(' ');
5242
5243 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5244 len = (int)STRLEN(cmd->uc_name) + 4;
5245
5246 do {
5247 msg_putchar(' ');
5248 ++len;
5249 } while (len < 16);
5250
5251 len = 0;
5252
5253 /* Arguments */
5254 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5255 {
5256 case 0: IObuff[len++] = '0'; break;
5257 case (EXTRA): IObuff[len++] = '*'; break;
5258 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5259 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5260 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5261 }
5262
5263 do {
5264 IObuff[len++] = ' ';
5265 } while (len < 5);
5266
5267 /* Range */
5268 if (a & (RANGE|COUNT))
5269 {
5270 if (a & COUNT)
5271 {
5272 /* -count=N */
5273 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5274 len += (int)STRLEN(IObuff + len);
5275 }
5276 else if (a & DFLALL)
5277 IObuff[len++] = '%';
5278 else if (cmd->uc_def >= 0)
5279 {
5280 /* -range=N */
5281 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5282 len += (int)STRLEN(IObuff + len);
5283 }
5284 else
5285 IObuff[len++] = '.';
5286 }
5287
5288 do {
5289 IObuff[len++] = ' ';
5290 } while (len < 11);
5291
5292 /* Completion */
5293 for (j = 0; command_complete[j].expand != 0; ++j)
5294 if (command_complete[j].expand == cmd->uc_compl)
5295 {
5296 STRCPY(IObuff + len, command_complete[j].name);
5297 len += (int)STRLEN(IObuff + len);
5298 break;
5299 }
5300
5301 do {
5302 IObuff[len++] = ' ';
5303 } while (len < 21);
5304
5305 IObuff[len] = '\0';
5306 msg_outtrans(IObuff);
5307
5308 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005309#ifdef FEAT_EVAL
5310 if (p_verbose > 0)
5311 last_set_msg(cmd->uc_scriptID);
5312#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313 out_flush();
5314 ui_breakcheck();
5315 if (got_int)
5316 break;
5317 }
5318 if (gap == &ucmds || i < gap->ga_len)
5319 break;
5320 gap = &ucmds;
5321 }
5322
5323 if (!found)
5324 MSG(_("No user-defined commands found"));
5325}
5326
5327 static char_u *
5328uc_fun_cmd()
5329{
5330 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5331 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5332 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5333 0xb9, 0x7f, 0};
5334 int i;
5335
5336 for (i = 0; fcmd[i]; ++i)
5337 IObuff[i] = fcmd[i] - 0x40;
5338 IObuff[i] = 0;
5339 return IObuff;
5340}
5341
5342 static int
5343uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5344 char_u *attr;
5345 size_t len;
5346 long *argt;
5347 long *def;
5348 int *flags;
5349 int *compl;
5350 char_u **compl_arg;
5351{
5352 char_u *p;
5353
5354 if (len == 0)
5355 {
5356 EMSG(_("E175: No attribute specified"));
5357 return FAIL;
5358 }
5359
5360 /* First, try the simple attributes (no arguments) */
5361 if (STRNICMP(attr, "bang", len) == 0)
5362 *argt |= BANG;
5363 else if (STRNICMP(attr, "buffer", len) == 0)
5364 *flags |= UC_BUFFER;
5365 else if (STRNICMP(attr, "register", len) == 0)
5366 *argt |= REGSTR;
5367 else if (STRNICMP(attr, "bar", len) == 0)
5368 *argt |= TRLBAR;
5369 else
5370 {
5371 int i;
5372 char_u *val = NULL;
5373 size_t vallen = 0;
5374 size_t attrlen = len;
5375
5376 /* Look for the attribute name - which is the part before any '=' */
5377 for (i = 0; i < (int)len; ++i)
5378 {
5379 if (attr[i] == '=')
5380 {
5381 val = &attr[i + 1];
5382 vallen = len - i - 1;
5383 attrlen = i;
5384 break;
5385 }
5386 }
5387
5388 if (STRNICMP(attr, "nargs", attrlen) == 0)
5389 {
5390 if (vallen == 1)
5391 {
5392 if (*val == '0')
5393 /* Do nothing - this is the default */;
5394 else if (*val == '1')
5395 *argt |= (EXTRA | NOSPC | NEEDARG);
5396 else if (*val == '*')
5397 *argt |= EXTRA;
5398 else if (*val == '?')
5399 *argt |= (EXTRA | NOSPC);
5400 else if (*val == '+')
5401 *argt |= (EXTRA | NEEDARG);
5402 else
5403 goto wrong_nargs;
5404 }
5405 else
5406 {
5407wrong_nargs:
5408 EMSG(_("E176: Invalid number of arguments"));
5409 return FAIL;
5410 }
5411 }
5412 else if (STRNICMP(attr, "range", attrlen) == 0)
5413 {
5414 *argt |= RANGE;
5415 if (vallen == 1 && *val == '%')
5416 *argt |= DFLALL;
5417 else if (val != NULL)
5418 {
5419 p = val;
5420 if (*def >= 0)
5421 {
5422two_count:
5423 EMSG(_("E177: Count cannot be specified twice"));
5424 return FAIL;
5425 }
5426
5427 *def = getdigits(&p);
5428 *argt |= (ZEROR | NOTADR);
5429
5430 if (p != val + vallen || vallen == 0)
5431 {
5432invalid_count:
5433 EMSG(_("E178: Invalid default value for count"));
5434 return FAIL;
5435 }
5436 }
5437 }
5438 else if (STRNICMP(attr, "count", attrlen) == 0)
5439 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005440 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441
5442 if (val != NULL)
5443 {
5444 p = val;
5445 if (*def >= 0)
5446 goto two_count;
5447
5448 *def = getdigits(&p);
5449
5450 if (p != val + vallen)
5451 goto invalid_count;
5452 }
5453
5454 if (*def < 0)
5455 *def = 0;
5456 }
5457 else if (STRNICMP(attr, "complete", attrlen) == 0)
5458 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 if (val == NULL)
5460 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005461 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 return FAIL;
5463 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005465 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5466 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005468 }
5469 else
5470 {
5471 char_u ch = attr[len];
5472 attr[len] = '\0';
5473 EMSG2(_("E181: Invalid attribute: %s"), attr);
5474 attr[len] = ch;
5475 return FAIL;
5476 }
5477 }
5478
5479 return OK;
5480}
5481
5482 static void
5483ex_command(eap)
5484 exarg_T *eap;
5485{
5486 char_u *name;
5487 char_u *end;
5488 char_u *p;
5489 long argt = 0;
5490 long def = -1;
5491 int flags = 0;
5492 int compl = EXPAND_NOTHING;
5493 char_u *compl_arg = NULL;
5494 int has_attr = (eap->arg[0] == '-');
5495
5496 p = eap->arg;
5497
5498 /* Check for attributes */
5499 while (*p == '-')
5500 {
5501 ++p;
5502 end = skiptowhite(p);
5503 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5504 == FAIL)
5505 return;
5506 p = skipwhite(end);
5507 }
5508
5509 /* Get the name (if any) and skip to the following argument */
5510 name = p;
5511 if (ASCII_ISALPHA(*p))
5512 while (ASCII_ISALNUM(*p))
5513 ++p;
5514 if (!ends_excmd(*p) && !vim_iswhite(*p))
5515 {
5516 EMSG(_("E182: Invalid command name"));
5517 return;
5518 }
5519 end = p;
5520
5521 /* If there is nothing after the name, and no attributes were specified,
5522 * we are listing commands
5523 */
5524 p = skipwhite(end);
5525 if (!has_attr && ends_excmd(*p))
5526 {
5527 uc_list(name, end - name);
5528 }
5529 else if (!ASCII_ISUPPER(*name))
5530 {
5531 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5532 return;
5533 }
5534 else
5535 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5536 eap->forceit);
5537}
5538
5539/*
5540 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 * Clear all user commands, global and for current buffer.
5542 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005543/*ARGSUSED*/
5544 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545ex_comclear(eap)
5546 exarg_T *eap;
5547{
5548 uc_clear(&ucmds);
5549 uc_clear(&curbuf->b_ucmds);
5550}
5551
5552/*
5553 * Clear all user commands for "gap".
5554 */
5555 void
5556uc_clear(gap)
5557 garray_T *gap;
5558{
5559 int i;
5560 ucmd_T *cmd;
5561
5562 for (i = 0; i < gap->ga_len; ++i)
5563 {
5564 cmd = USER_CMD_GA(gap, i);
5565 vim_free(cmd->uc_name);
5566 vim_free(cmd->uc_rep);
5567# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5568 vim_free(cmd->uc_compl_arg);
5569# endif
5570 }
5571 ga_clear(gap);
5572}
5573
5574 static void
5575ex_delcommand(eap)
5576 exarg_T *eap;
5577{
5578 int i = 0;
5579 ucmd_T *cmd = NULL;
5580 int cmp = -1;
5581 garray_T *gap;
5582
5583 gap = &curbuf->b_ucmds;
5584 for (;;)
5585 {
5586 for (i = 0; i < gap->ga_len; ++i)
5587 {
5588 cmd = USER_CMD_GA(gap, i);
5589 cmp = STRCMP(eap->arg, cmd->uc_name);
5590 if (cmp <= 0)
5591 break;
5592 }
5593 if (gap == &ucmds || cmp == 0)
5594 break;
5595 gap = &ucmds;
5596 }
5597
5598 if (cmp != 0)
5599 {
5600 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5601 return;
5602 }
5603
5604 vim_free(cmd->uc_name);
5605 vim_free(cmd->uc_rep);
5606# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5607 vim_free(cmd->uc_compl_arg);
5608# endif
5609
5610 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611
5612 if (i < gap->ga_len)
5613 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5614}
5615
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005616/*
5617 * split and quote args for <f-args>
5618 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 static char_u *
5620uc_split_args(arg, lenp)
5621 char_u *arg;
5622 size_t *lenp;
5623{
5624 char_u *buf;
5625 char_u *p;
5626 char_u *q;
5627 int len;
5628
5629 /* Precalculate length */
5630 p = arg;
5631 len = 2; /* Initial and final quotes */
5632
5633 while (*p)
5634 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005635 if (p[0] == '\\' && p[1] == '\\')
5636 {
5637 len += 2;
5638 p += 2;
5639 }
5640 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641 {
5642 len += 1;
5643 p += 2;
5644 }
5645 else if (*p == '\\' || *p == '"')
5646 {
5647 len += 2;
5648 p += 1;
5649 }
5650 else if (vim_iswhite(*p))
5651 {
5652 p = skipwhite(p);
5653 if (*p == NUL)
5654 break;
5655 len += 3; /* "," */
5656 }
5657 else
5658 {
5659 ++len;
5660 ++p;
5661 }
5662 }
5663
5664 buf = alloc(len + 1);
5665 if (buf == NULL)
5666 {
5667 *lenp = 0;
5668 return buf;
5669 }
5670
5671 p = arg;
5672 q = buf;
5673 *q++ = '"';
5674 while (*p)
5675 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005676 if (p[0] == '\\' && p[1] == '\\')
5677 {
5678 *q++ = '\\';
5679 *q++ = '\\';
5680 p += 2;
5681 }
5682 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 {
5684 *q++ = p[1];
5685 p += 2;
5686 }
5687 else if (*p == '\\' || *p == '"')
5688 {
5689 *q++ = '\\';
5690 *q++ = *p++;
5691 }
5692 else if (vim_iswhite(*p))
5693 {
5694 p = skipwhite(p);
5695 if (*p == NUL)
5696 break;
5697 *q++ = '"';
5698 *q++ = ',';
5699 *q++ = '"';
5700 }
5701 else
5702 {
5703 *q++ = *p++;
5704 }
5705 }
5706 *q++ = '"';
5707 *q = 0;
5708
5709 *lenp = len;
5710 return buf;
5711}
5712
5713/*
5714 * Check for a <> code in a user command.
5715 * "code" points to the '<'. "len" the length of the <> (inclusive).
5716 * "buf" is where the result is to be added.
5717 * "split_buf" points to a buffer used for splitting, caller should free it.
5718 * "split_len" is the length of what "split_buf" contains.
5719 * Returns the length of the replacement, which has been added to "buf".
5720 * Returns -1 if there was no match, and only the "<" has been copied.
5721 */
5722 static size_t
5723uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5724 char_u *code;
5725 size_t len;
5726 char_u *buf;
5727 ucmd_T *cmd; /* the user command we're expanding */
5728 exarg_T *eap; /* ex arguments */
5729 char_u **split_buf;
5730 size_t *split_len;
5731{
5732 size_t result = 0;
5733 char_u *p = code + 1;
5734 size_t l = len - 2;
5735 int quote = 0;
5736 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5737 ct_LT, ct_NONE } type = ct_NONE;
5738
5739 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5740 {
5741 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5742 p += 2;
5743 l -= 2;
5744 }
5745
Bram Moolenaar371d5402006-03-20 21:47:49 +00005746 ++l;
5747 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005749 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005751 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005753 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005755 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005757 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005759 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005761 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 type = ct_REGISTER;
5763
5764 switch (type)
5765 {
5766 case ct_ARGS:
5767 /* Simple case first */
5768 if (*eap->arg == NUL)
5769 {
5770 if (quote == 1)
5771 {
5772 result = 2;
5773 if (buf != NULL)
5774 STRCPY(buf, "''");
5775 }
5776 else
5777 result = 0;
5778 break;
5779 }
5780
5781 /* When specified there is a single argument don't split it.
5782 * Works for ":Cmd %" when % is "a b c". */
5783 if ((eap->argt & NOSPC) && quote == 2)
5784 quote = 1;
5785
5786 switch (quote)
5787 {
5788 case 0: /* No quoting, no splitting */
5789 result = STRLEN(eap->arg);
5790 if (buf != NULL)
5791 STRCPY(buf, eap->arg);
5792 break;
5793 case 1: /* Quote, but don't split */
5794 result = STRLEN(eap->arg) + 2;
5795 for (p = eap->arg; *p; ++p)
5796 {
5797 if (*p == '\\' || *p == '"')
5798 ++result;
5799 }
5800
5801 if (buf != NULL)
5802 {
5803 *buf++ = '"';
5804 for (p = eap->arg; *p; ++p)
5805 {
5806 if (*p == '\\' || *p == '"')
5807 *buf++ = '\\';
5808 *buf++ = *p;
5809 }
5810 *buf = '"';
5811 }
5812
5813 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005814 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 /* This is hard, so only do it once, and cache the result */
5816 if (*split_buf == NULL)
5817 *split_buf = uc_split_args(eap->arg, split_len);
5818
5819 result = *split_len;
5820 if (buf != NULL && result != 0)
5821 STRCPY(buf, *split_buf);
5822
5823 break;
5824 }
5825 break;
5826
5827 case ct_BANG:
5828 result = eap->forceit ? 1 : 0;
5829 if (quote)
5830 result += 2;
5831 if (buf != NULL)
5832 {
5833 if (quote)
5834 *buf++ = '"';
5835 if (eap->forceit)
5836 *buf++ = '!';
5837 if (quote)
5838 *buf = '"';
5839 }
5840 break;
5841
5842 case ct_LINE1:
5843 case ct_LINE2:
5844 case ct_COUNT:
5845 {
5846 char num_buf[20];
5847 long num = (type == ct_LINE1) ? eap->line1 :
5848 (type == ct_LINE2) ? eap->line2 :
5849 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5850 size_t num_len;
5851
5852 sprintf(num_buf, "%ld", num);
5853 num_len = STRLEN(num_buf);
5854 result = num_len;
5855
5856 if (quote)
5857 result += 2;
5858
5859 if (buf != NULL)
5860 {
5861 if (quote)
5862 *buf++ = '"';
5863 STRCPY(buf, num_buf);
5864 buf += num_len;
5865 if (quote)
5866 *buf = '"';
5867 }
5868
5869 break;
5870 }
5871
5872 case ct_REGISTER:
5873 result = eap->regname ? 1 : 0;
5874 if (quote)
5875 result += 2;
5876 if (buf != NULL)
5877 {
5878 if (quote)
5879 *buf++ = '\'';
5880 if (eap->regname)
5881 *buf++ = eap->regname;
5882 if (quote)
5883 *buf = '\'';
5884 }
5885 break;
5886
5887 case ct_LT:
5888 result = 1;
5889 if (buf != NULL)
5890 *buf = '<';
5891 break;
5892
5893 default:
5894 /* Not recognized: just copy the '<' and return -1. */
5895 result = (size_t)-1;
5896 if (buf != NULL)
5897 *buf = '<';
5898 break;
5899 }
5900
5901 return result;
5902}
5903
5904 static void
5905do_ucmd(eap)
5906 exarg_T *eap;
5907{
5908 char_u *buf;
5909 char_u *p;
5910 char_u *q;
5911
5912 char_u *start;
5913 char_u *end;
5914 size_t len, totlen;
5915
5916 size_t split_len = 0;
5917 char_u *split_buf = NULL;
5918 ucmd_T *cmd;
5919#ifdef FEAT_EVAL
5920 scid_T save_current_SID = current_SID;
5921#endif
5922
5923 if (eap->cmdidx == CMD_USER)
5924 cmd = USER_CMD(eap->useridx);
5925 else
5926 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5927
5928 /*
5929 * Replace <> in the command by the arguments.
5930 */
5931 buf = NULL;
5932 for (;;)
5933 {
5934 p = cmd->uc_rep;
5935 q = buf;
5936 totlen = 0;
5937 while ((start = vim_strchr(p, '<')) != NULL
5938 && (end = vim_strchr(start + 1, '>')) != NULL)
5939 {
5940 /* Include the '>' */
5941 ++end;
5942
5943 /* Take everything up to the '<' */
5944 len = start - p;
5945 if (buf == NULL)
5946 totlen += len;
5947 else
5948 {
5949 mch_memmove(q, p, len);
5950 q += len;
5951 }
5952
5953 len = uc_check_code(start, end - start, q, cmd, eap,
5954 &split_buf, &split_len);
5955 if (len == (size_t)-1)
5956 {
5957 /* no match, continue after '<' */
5958 p = start + 1;
5959 len = 1;
5960 }
5961 else
5962 p = end;
5963 if (buf == NULL)
5964 totlen += len;
5965 else
5966 q += len;
5967 }
5968 if (buf != NULL) /* second time here, finished */
5969 {
5970 STRCPY(q, p);
5971 break;
5972 }
5973
5974 totlen += STRLEN(p); /* Add on the trailing characters */
5975 buf = alloc((unsigned)(totlen + 1));
5976 if (buf == NULL)
5977 {
5978 vim_free(split_buf);
5979 return;
5980 }
5981 }
5982
5983#ifdef FEAT_EVAL
5984 current_SID = cmd->uc_scriptID;
5985#endif
5986 (void)do_cmdline(buf, eap->getline, eap->cookie,
5987 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5988#ifdef FEAT_EVAL
5989 current_SID = save_current_SID;
5990#endif
5991 vim_free(buf);
5992 vim_free(split_buf);
5993}
5994
5995# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5996 static char_u *
5997get_user_command_name(idx)
5998 int idx;
5999{
6000 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6001}
6002
6003/*
6004 * Function given to ExpandGeneric() to obtain the list of user command names.
6005 */
6006/*ARGSUSED*/
6007 char_u *
6008get_user_commands(xp, idx)
6009 expand_T *xp;
6010 int idx;
6011{
6012 if (idx < curbuf->b_ucmds.ga_len)
6013 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6014 idx -= curbuf->b_ucmds.ga_len;
6015 if (idx < ucmds.ga_len)
6016 return USER_CMD(idx)->uc_name;
6017 return NULL;
6018}
6019
6020/*
6021 * Function given to ExpandGeneric() to obtain the list of user command
6022 * attributes.
6023 */
6024/*ARGSUSED*/
6025 char_u *
6026get_user_cmd_flags(xp, idx)
6027 expand_T *xp;
6028 int idx;
6029{
6030 static char *user_cmd_flags[] =
6031 {"bang", "bar", "buffer", "complete", "count",
6032 "nargs", "range", "register"};
6033
6034 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
6035 return NULL;
6036 return (char_u *)user_cmd_flags[idx];
6037}
6038
6039/*
6040 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6041 */
6042/*ARGSUSED*/
6043 char_u *
6044get_user_cmd_nargs(xp, idx)
6045 expand_T *xp;
6046 int idx;
6047{
6048 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6049
6050 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
6051 return NULL;
6052 return (char_u *)user_cmd_nargs[idx];
6053}
6054
6055/*
6056 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6057 */
6058/*ARGSUSED*/
6059 char_u *
6060get_user_cmd_complete(xp, idx)
6061 expand_T *xp;
6062 int idx;
6063{
6064 return (char_u *)command_complete[idx].name;
6065}
6066# endif /* FEAT_CMDL_COMPL */
6067
6068#endif /* FEAT_USR_CMDS */
6069
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006070#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6071/*
6072 * Parse a completion argument "value[vallen]".
6073 * The detected completion goes in "*complp", argument type in "*argt".
6074 * When there is an argument, for function and user defined completion, it's
6075 * copied to allocated memory and stored in "*compl_arg".
6076 * Returns FAIL if something is wrong.
6077 */
6078 int
6079parse_compl_arg(value, vallen, complp, argt, compl_arg)
6080 char_u *value;
6081 int vallen;
6082 int *complp;
6083 long *argt;
6084 char_u **compl_arg;
6085{
6086 char_u *arg = NULL;
6087 size_t arglen = 0;
6088 int i;
6089 int valend = vallen;
6090
6091 /* Look for any argument part - which is the part after any ',' */
6092 for (i = 0; i < vallen; ++i)
6093 {
6094 if (value[i] == ',')
6095 {
6096 arg = &value[i + 1];
6097 arglen = vallen - i - 1;
6098 valend = i;
6099 break;
6100 }
6101 }
6102
6103 for (i = 0; command_complete[i].expand != 0; ++i)
6104 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006105 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006106 && STRNCMP(value, command_complete[i].name, valend) == 0)
6107 {
6108 *complp = command_complete[i].expand;
6109 if (command_complete[i].expand == EXPAND_BUFFERS)
6110 *argt |= BUFNAME;
6111 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6112 || command_complete[i].expand == EXPAND_FILES)
6113 *argt |= XFILE;
6114 break;
6115 }
6116 }
6117
6118 if (command_complete[i].expand == 0)
6119 {
6120 EMSG2(_("E180: Invalid complete value: %s"), value);
6121 return FAIL;
6122 }
6123
6124# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6125 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6126 && arg != NULL)
6127# else
6128 if (arg != NULL)
6129# endif
6130 {
6131 EMSG(_("E468: Completion argument only allowed for custom completion"));
6132 return FAIL;
6133 }
6134
6135# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6136 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6137 && arg == NULL)
6138 {
6139 EMSG(_("E467: Custom completion requires a function argument"));
6140 return FAIL;
6141 }
6142
6143 if (arg != NULL)
6144 *compl_arg = vim_strnsave(arg, (int)arglen);
6145# endif
6146 return OK;
6147}
6148#endif
6149
Bram Moolenaar071d4272004-06-13 20:20:40 +00006150 static void
6151ex_colorscheme(eap)
6152 exarg_T *eap;
6153{
6154 if (load_colors(eap->arg) == FAIL)
6155 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6156}
6157
6158 static void
6159ex_highlight(eap)
6160 exarg_T *eap;
6161{
6162 if (*eap->arg == NUL && eap->cmd[2] == '!')
6163 MSG(_("Greetings, Vim user!"));
6164 do_highlight(eap->arg, eap->forceit, FALSE);
6165}
6166
6167
6168/*
6169 * Call this function if we thought we were going to exit, but we won't
6170 * (because of an error). May need to restore the terminal mode.
6171 */
6172 void
6173not_exiting()
6174{
6175 exiting = FALSE;
6176 settmode(TMODE_RAW);
6177}
6178
6179/*
6180 * ":quit": quit current window, quit Vim if closed the last window.
6181 */
6182 static void
6183ex_quit(eap)
6184 exarg_T *eap;
6185{
6186#ifdef FEAT_CMDWIN
6187 if (cmdwin_type != 0)
6188 {
6189 cmdwin_result = Ctrl_C;
6190 return;
6191 }
6192#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006193 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006194 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006195 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006196 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006197 return;
6198 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006199#ifdef FEAT_AUTOCMD
6200 if (curbuf_locked())
6201 return;
6202#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203
6204#ifdef FEAT_NETBEANS_INTG
6205 netbeansForcedQuit = eap->forceit;
6206#endif
6207
6208 /*
6209 * If there are more files or windows we won't exit.
6210 */
6211 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6212 exiting = TRUE;
6213 if ((!P_HID(curbuf)
6214 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6215 || check_more(TRUE, eap->forceit) == FAIL
6216 || (only_one_window() && check_changed_any(eap->forceit)))
6217 {
6218 not_exiting();
6219 }
6220 else
6221 {
6222#ifdef FEAT_WINDOWS
6223 if (only_one_window()) /* quit last window */
6224#endif
6225 getout(0);
6226#ifdef FEAT_WINDOWS
6227# ifdef FEAT_GUI
6228 need_mouse_correct = TRUE;
6229# endif
6230 /* close window; may free buffer */
6231 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6232#endif
6233 }
6234}
6235
6236/*
6237 * ":cquit".
6238 */
6239/*ARGSUSED*/
6240 static void
6241ex_cquit(eap)
6242 exarg_T *eap;
6243{
6244 getout(1); /* this does not always pass on the exit code to the Manx
6245 compiler. why? */
6246}
6247
6248/*
6249 * ":qall": try to quit all windows
6250 */
6251 static void
6252ex_quit_all(eap)
6253 exarg_T *eap;
6254{
6255# ifdef FEAT_CMDWIN
6256 if (cmdwin_type != 0)
6257 {
6258 if (eap->forceit)
6259 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6260 else
6261 cmdwin_result = K_XF2;
6262 return;
6263 }
6264# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006265
6266 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006267 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006268 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006269 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006270 return;
6271 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006272#ifdef FEAT_AUTOCMD
6273 if (curbuf_locked())
6274 return;
6275#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006276
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 exiting = TRUE;
6278 if (eap->forceit || !check_changed_any(FALSE))
6279 getout(0);
6280 not_exiting();
6281}
6282
Bram Moolenaard9967712006-03-11 21:18:15 +00006283#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284/*
6285 * ":close": close current window, unless it is the last one
6286 */
6287 static void
6288ex_close(eap)
6289 exarg_T *eap;
6290{
6291# ifdef FEAT_CMDWIN
6292 if (cmdwin_type != 0)
6293 cmdwin_result = K_IGNORE;
6294 else
6295# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006296 if (!text_locked()
6297#ifdef FEAT_AUTOCMD
6298 && !curbuf_locked()
6299#endif
6300 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006301 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302}
6303
Bram Moolenaard9967712006-03-11 21:18:15 +00006304# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006305/*
6306 * ":pclose": Close any preview window.
6307 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006309ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006311{
6312 win_T *win;
6313
6314 for (win = firstwin; win != NULL; win = win->w_next)
6315 if (win->w_p_pvw)
6316 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006317 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006318 break;
6319 }
6320}
Bram Moolenaard9967712006-03-11 21:18:15 +00006321# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006322
Bram Moolenaarf740b292006-02-16 22:11:02 +00006323/*
6324 * Close window "win" and take care of handling closing the last window for a
6325 * modified buffer.
6326 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006327 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006328ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006329 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006331 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332{
6333 int need_hide;
6334 buf_T *buf = win->w_buffer;
6335
6336 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006337 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006339# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 if ((p_confirm || cmdmod.confirm) && p_write)
6341 {
6342 dialog_changed(buf, FALSE);
6343 if (buf_valid(buf) && bufIsChanged(buf))
6344 return;
6345 need_hide = FALSE;
6346 }
6347 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006348# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349 {
6350 EMSG(_(e_nowrtmsg));
6351 return;
6352 }
6353 }
6354
Bram Moolenaard9967712006-03-11 21:18:15 +00006355# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006356 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006357# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006358
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006360 if (tp == NULL)
6361 win_close(win, !need_hide && !P_HID(buf));
6362 else
6363 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364}
6365
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006367 * ":tabclose": close current tab page, unless it is the last one.
6368 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369 */
6370 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006371ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 exarg_T *eap;
6373{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006374 tabpage_T *tp;
6375
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006376# ifdef FEAT_CMDWIN
6377 if (cmdwin_type != 0)
6378 cmdwin_result = K_IGNORE;
6379 else
6380# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006381 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006382 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006383 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006384 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006385 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006386 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006387 tp = find_tabpage((int)eap->line2);
6388 if (tp == NULL)
6389 {
6390 beep_flush();
6391 return;
6392 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006393 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006394 {
6395 tabpage_close_other(tp, eap->forceit);
6396 return;
6397 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006398 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006399 if (!text_locked()
6400#ifdef FEAT_AUTOCMD
6401 && !curbuf_locked()
6402#endif
6403 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006404 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006406}
6407
6408/*
6409 * ":tabonly": close all tab pages except the current one
6410 */
6411 static void
6412ex_tabonly(eap)
6413 exarg_T *eap;
6414{
6415 tabpage_T *tp;
6416 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006417
6418# ifdef FEAT_CMDWIN
6419 if (cmdwin_type != 0)
6420 cmdwin_result = K_IGNORE;
6421 else
6422# endif
6423 if (first_tabpage->tp_next == NULL)
6424 MSG(_("Already only one tab page"));
6425 else
6426 {
6427 /* Repeat this up to a 1000 times, because autocommands may mess
6428 * up the lists. */
6429 for (done = 0; done < 1000; ++done)
6430 {
6431 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6432 if (tp->tp_topframe != topframe)
6433 {
6434 tabpage_close_other(tp, eap->forceit);
6435 /* if we failed to close it quit */
6436 if (valid_tabpage(tp))
6437 done = 1000;
6438 /* start over, "tp" is now invalid */
6439 break;
6440 }
6441 if (first_tabpage->tp_next == NULL)
6442 break;
6443 }
6444 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006446
6447/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006448 * Close the current tab page.
6449 */
6450 void
6451tabpage_close(forceit)
6452 int forceit;
6453{
6454 /* First close all the windows but the current one. If that worked then
6455 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006456 if (lastwin != firstwin)
6457 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006458 if (lastwin == firstwin)
6459 ex_win_close(forceit, curwin, NULL);
6460# ifdef FEAT_GUI
6461 need_mouse_correct = TRUE;
6462# endif
6463}
6464
6465/*
6466 * Close tab page "tp", which is not the current tab page.
6467 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006468 * Also takes care of the tab pages line disappearing when closing the
6469 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006470 */
6471 void
6472tabpage_close_other(tp, forceit)
6473 tabpage_T *tp;
6474 int forceit;
6475{
6476 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006477 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006478 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006479
6480 /* Limit to 1000 windows, autocommands may add a window while we close
6481 * one. OK, so I'm paranoid... */
6482 while (++done < 1000)
6483 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006484 wp = tp->tp_firstwin;
6485 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006486
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006487 /* Autocommands may delete the tab page under our fingers and we may
6488 * fail to close a window with a modified buffer. */
6489 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006490 break;
6491 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006492
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006493 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006494 if (h != tabline_height())
6495 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006496}
6497
6498/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 * ":only".
6500 */
6501 static void
6502ex_only(eap)
6503 exarg_T *eap;
6504{
6505# ifdef FEAT_GUI
6506 need_mouse_correct = TRUE;
6507# endif
6508 close_others(TRUE, eap->forceit);
6509}
6510
6511/*
6512 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006513 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006514 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006515 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516ex_all(eap)
6517 exarg_T *eap;
6518{
6519 if (eap->addr_count == 0)
6520 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006521 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006522}
6523#endif /* FEAT_WINDOWS */
6524
6525 static void
6526ex_hide(eap)
6527 exarg_T *eap;
6528{
6529 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6530 eap->errmsg = e_invarg;
6531 else
6532 {
6533 /* ":hide" or ":hide | cmd": hide current window */
6534 eap->nextcmd = check_nextcmd(eap->arg);
6535#ifdef FEAT_WINDOWS
6536 if (!eap->skip)
6537 {
6538# ifdef FEAT_GUI
6539 need_mouse_correct = TRUE;
6540# endif
6541 win_close(curwin, FALSE); /* don't free buffer */
6542 }
6543#endif
6544 }
6545}
6546
6547/*
6548 * ":stop" and ":suspend": Suspend Vim.
6549 */
6550 static void
6551ex_stop(eap)
6552 exarg_T *eap;
6553{
6554 /*
6555 * Disallow suspending for "rvim".
6556 */
6557 if (!check_restricted()
6558#ifdef WIN3264
6559 /*
6560 * Check if external commands are allowed now.
6561 */
6562 && can_end_termcap_mode(TRUE)
6563#endif
6564 )
6565 {
6566 if (!eap->forceit)
6567 autowrite_all();
6568 windgoto((int)Rows - 1, 0);
6569 out_char('\n');
6570 out_flush();
6571 stoptermcap();
6572 out_flush(); /* needed for SUN to restore xterm buffer */
6573#ifdef FEAT_TITLE
6574 mch_restore_title(3); /* restore window titles */
6575#endif
6576 ui_suspend(); /* call machine specific function */
6577#ifdef FEAT_TITLE
6578 maketitle();
6579 resettitle(); /* force updating the title */
6580#endif
6581 starttermcap();
6582 scroll_start(); /* scroll screen before redrawing */
6583 redraw_later_clear();
6584 shell_resized(); /* may have resized window */
6585 }
6586}
6587
6588/*
6589 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6590 */
6591 static void
6592ex_exit(eap)
6593 exarg_T *eap;
6594{
6595#ifdef FEAT_CMDWIN
6596 if (cmdwin_type != 0)
6597 {
6598 cmdwin_result = Ctrl_C;
6599 return;
6600 }
6601#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006602 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006603 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006604 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006605 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006606 return;
6607 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006608#ifdef FEAT_AUTOCMD
6609 if (curbuf_locked())
6610 return;
6611#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612
6613 /*
6614 * if more files or windows we won't exit
6615 */
6616 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6617 exiting = TRUE;
6618 if ( ((eap->cmdidx == CMD_wq
6619 || curbufIsChanged())
6620 && do_write(eap) == FAIL)
6621 || check_more(TRUE, eap->forceit) == FAIL
6622 || (only_one_window() && check_changed_any(eap->forceit)))
6623 {
6624 not_exiting();
6625 }
6626 else
6627 {
6628#ifdef FEAT_WINDOWS
6629 if (only_one_window()) /* quit last window, exit Vim */
6630#endif
6631 getout(0);
6632#ifdef FEAT_WINDOWS
6633# ifdef FEAT_GUI
6634 need_mouse_correct = TRUE;
6635# endif
6636 /* quit current window, may free buffer */
6637 win_close(curwin, !P_HID(curwin->w_buffer));
6638#endif
6639 }
6640}
6641
6642/*
6643 * ":print", ":list", ":number".
6644 */
6645 static void
6646ex_print(eap)
6647 exarg_T *eap;
6648{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006649 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6650 EMSG(_(e_emptybuf));
6651 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006652 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006653 for ( ;!got_int; ui_breakcheck())
6654 {
6655 print_line(eap->line1,
6656 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6657 || (eap->flags & EXFLAG_NR)),
6658 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6659 if (++eap->line1 > eap->line2)
6660 break;
6661 out_flush(); /* show one line at a time */
6662 }
6663 setpcmark();
6664 /* put cursor at last line */
6665 curwin->w_cursor.lnum = eap->line2;
6666 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667 }
6668
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670}
6671
6672#ifdef FEAT_BYTEOFF
6673 static void
6674ex_goto(eap)
6675 exarg_T *eap;
6676{
6677 goto_byte(eap->line2);
6678}
6679#endif
6680
6681/*
6682 * ":shell".
6683 */
6684/*ARGSUSED*/
6685 static void
6686ex_shell(eap)
6687 exarg_T *eap;
6688{
6689 do_shell(NULL, 0);
6690}
6691
6692#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6693 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006694 || defined(FEAT_GUI_MSWIN) \
6695 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006696 || defined(PROTO)
6697
6698/*
6699 * Handle a file drop. The code is here because a drop is *nearly* like an
6700 * :args command, but not quite (we have a list of exact filenames, so we
6701 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6702 * code is very similar to :args and hence needs access to a lot of the static
6703 * functions in this file.
6704 *
6705 * The list should be allocated using alloc(), as should each item in the
6706 * list. This function takes over responsibility for freeing the list.
6707 *
Bram Moolenaar81870892007-11-11 18:17:28 +00006708 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6710 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6711 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6712 * file functionality is (currently) not in EMX this is not presently a
6713 * problem.
6714 */
6715 void
6716handle_drop(filec, filev, split)
6717 int filec; /* the number of files dropped */
6718 char_u **filev; /* the list of files dropped */
6719 int split; /* force splitting the window */
6720{
6721 exarg_T ea;
6722 int save_msg_scroll = msg_scroll;
6723
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006724 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006725 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006727#ifdef FEAT_AUTOCMD
6728 if (curbuf_locked())
6729 return;
6730#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00006731 /* When the screen is being updated we should not change buffers and
6732 * windows structures, it may cause freed memory to be used. */
6733 if (updating_screen)
6734 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735
6736 /* Check whether the current buffer is changed. If so, we will need
6737 * to split the current window or data could be lost.
6738 * We don't need to check if the 'hidden' option is set, as in this
6739 * case the buffer won't be lost.
6740 */
6741 if (!P_HID(curbuf) && !split)
6742 {
6743 ++emsg_off;
6744 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6745 --emsg_off;
6746 }
6747 if (split)
6748 {
6749# ifdef FEAT_WINDOWS
6750 if (win_split(0, 0) == FAIL)
6751 return;
6752# ifdef FEAT_SCROLLBIND
6753 curwin->w_p_scb = FALSE;
6754# endif
6755
6756 /* When splitting the window, create a new alist. Otherwise the
6757 * existing one is overwritten. */
6758 alist_unlink(curwin->w_alist);
6759 alist_new();
6760# else
6761 return; /* can't split, always fail */
6762# endif
6763 }
6764
6765 /*
6766 * Set up the new argument list.
6767 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006768 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769
6770 /*
6771 * Move to the first file.
6772 */
6773 /* Fake up a minimal "next" command for do_argfile() */
6774 vim_memset(&ea, 0, sizeof(ea));
6775 ea.cmd = (char_u *)"next";
6776 do_argfile(&ea, 0);
6777
6778 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6779 * mode that is not needed here. */
6780 need_start_insertmode = FALSE;
6781
6782 /* Restore msg_scroll, otherwise a following command may cause scrolling
6783 * unexpectedly. The screen will be redrawn by the caller, thus
6784 * msg_scroll being set by displaying a message is irrelevant. */
6785 msg_scroll = save_msg_scroll;
6786}
6787#endif
6788
Bram Moolenaar071d4272004-06-13 20:20:40 +00006789/*
6790 * Clear an argument list: free all file names and reset it to zero entries.
6791 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006792 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793alist_clear(al)
6794 alist_T *al;
6795{
6796 while (--al->al_ga.ga_len >= 0)
6797 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6798 ga_clear(&al->al_ga);
6799}
6800
6801/*
6802 * Init an argument list.
6803 */
6804 void
6805alist_init(al)
6806 alist_T *al;
6807{
6808 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6809}
6810
6811#if defined(FEAT_WINDOWS) || defined(PROTO)
6812
6813/*
6814 * Remove a reference from an argument list.
6815 * Ignored when the argument list is the global one.
6816 * If the argument list is no longer used by any window, free it.
6817 */
6818 void
6819alist_unlink(al)
6820 alist_T *al;
6821{
6822 if (al != &global_alist && --al->al_refcount <= 0)
6823 {
6824 alist_clear(al);
6825 vim_free(al);
6826 }
6827}
6828
6829# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6830/*
6831 * Create a new argument list and use it for the current window.
6832 */
6833 void
6834alist_new()
6835{
6836 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6837 if (curwin->w_alist == NULL)
6838 {
6839 curwin->w_alist = &global_alist;
6840 ++global_alist.al_refcount;
6841 }
6842 else
6843 {
6844 curwin->w_alist->al_refcount = 1;
6845 alist_init(curwin->w_alist);
6846 }
6847}
6848# endif
6849#endif
6850
6851#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6852/*
6853 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006854 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6855 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856 */
6857 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006858alist_expand(fnum_list, fnum_len)
6859 int *fnum_list;
6860 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006861{
6862 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006863 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864 char_u **new_arg_files;
6865 int new_arg_file_count;
6866 char_u *save_p_su = p_su;
6867 int i;
6868
6869 /* Don't use 'suffixes' here. This should work like the shell did the
6870 * expansion. Also, the vimrc file isn't read yet, thus the user
6871 * can't set the options. */
6872 p_su = empty_option;
6873 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6874 if (old_arg_files != NULL)
6875 {
6876 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006877 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6878 old_arg_count = GARGCOUNT;
6879 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006880 &new_arg_file_count, &new_arg_files,
6881 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6882 && new_arg_file_count > 0)
6883 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006884 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6885 TRUE, fnum_list, fnum_len);
6886 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 }
6889 p_su = save_p_su;
6890}
6891#endif
6892
6893/*
6894 * Set the argument list for the current window.
6895 * Takes over the allocated files[] and the allocated fnames in it.
6896 */
6897 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006898alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 alist_T *al;
6900 int count;
6901 char_u **files;
6902 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006903 int *fnum_list;
6904 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905{
6906 int i;
6907
6908 alist_clear(al);
6909 if (ga_grow(&al->al_ga, count) == OK)
6910 {
6911 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006912 {
6913 if (got_int)
6914 {
6915 /* When adding many buffers this can take a long time. Allow
6916 * interrupting here. */
6917 while (i < count)
6918 vim_free(files[i++]);
6919 break;
6920 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006921
6922 /* May set buffer name of a buffer previously used for the
6923 * argument list, so that it's re-used by alist_add. */
6924 if (fnum_list != NULL && i < fnum_len)
6925 buf_set_name(fnum_list[i], files[i]);
6926
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006928 ui_breakcheck();
6929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 vim_free(files);
6931 }
6932 else
6933 FreeWild(count, files);
6934#ifdef FEAT_WINDOWS
6935 if (al == &global_alist)
6936#endif
6937 arg_had_last = FALSE;
6938}
6939
6940/*
6941 * Add file "fname" to argument list "al".
6942 * "fname" must have been allocated and "al" must have been checked for room.
6943 */
6944 void
6945alist_add(al, fname, set_fnum)
6946 alist_T *al;
6947 char_u *fname;
6948 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6949{
6950 if (fname == NULL) /* don't add NULL file names */
6951 return;
6952#ifdef BACKSLASH_IN_FILENAME
6953 slash_adjust(fname);
6954#endif
6955 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6956 if (set_fnum > 0)
6957 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6958 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6959 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006960}
6961
6962#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6963/*
6964 * Adjust slashes in file names. Called after 'shellslash' was set.
6965 */
6966 void
6967alist_slash_adjust()
6968{
6969 int i;
6970# ifdef FEAT_WINDOWS
6971 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006972 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006973# endif
6974
6975 for (i = 0; i < GARGCOUNT; ++i)
6976 if (GARGLIST[i].ae_fname != NULL)
6977 slash_adjust(GARGLIST[i].ae_fname);
6978# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006979 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980 if (wp->w_alist != &global_alist)
6981 for (i = 0; i < WARGCOUNT(wp); ++i)
6982 if (WARGLIST(wp)[i].ae_fname != NULL)
6983 slash_adjust(WARGLIST(wp)[i].ae_fname);
6984# endif
6985}
6986#endif
6987
6988/*
6989 * ":preserve".
6990 */
6991/*ARGSUSED*/
6992 static void
6993ex_preserve(eap)
6994 exarg_T *eap;
6995{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006996 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006997 ml_preserve(curbuf, TRUE);
6998}
6999
7000/*
7001 * ":recover".
7002 */
7003 static void
7004ex_recover(eap)
7005 exarg_T *eap;
7006{
7007 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7008 recoverymode = TRUE;
7009 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
7010 && (*eap->arg == NUL
7011 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7012 ml_recover();
7013 recoverymode = FALSE;
7014}
7015
7016/*
7017 * Command modifier used in a wrong way.
7018 */
7019 static void
7020ex_wrongmodifier(eap)
7021 exarg_T *eap;
7022{
7023 eap->errmsg = e_invcmd;
7024}
7025
7026#ifdef FEAT_WINDOWS
7027/*
7028 * :sview [+command] file split window with new file, read-only
7029 * :split [[+command] file] split window with current or new file
7030 * :vsplit [[+command] file] split window vertically with current or new file
7031 * :new [[+command] file] split window with no or new file
7032 * :vnew [[+command] file] split vertically window with no or new file
7033 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007034 *
7035 * :tabedit open new Tab page with empty window
7036 * :tabedit [+command] file open new Tab page and edit "file"
7037 * :tabnew [[+command] file] just like :tabedit
7038 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 */
7040 void
7041ex_splitview(eap)
7042 exarg_T *eap;
7043{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007044 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007045# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007046 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007047# endif
7048# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007050# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007052# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7054 {
7055 ex_ni(eap);
7056 return;
7057 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007058# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007060# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007062# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007064# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 /* A ":split" in the quickfix window works like ":new". Don't want two
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007066 * quickfix windows. But it's OK when doing ":tab split". */
7067 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068 {
7069 if (eap->cmdidx == CMD_split)
7070 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007071# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007072 if (eap->cmdidx == CMD_vsplit)
7073 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007074# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007076# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007078# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007079 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080 {
7081 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7082 FNAME_MESS, TRUE, curbuf->b_ffname);
7083 if (fname == NULL)
7084 goto theend;
7085 eap->arg = fname;
7086 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007087# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007089# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007091# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007093# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007094 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007095# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007096 && eap->cmdidx != CMD_new)
7097 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007098 if (
7099# ifdef FEAT_GUI
7100 !gui.in_use &&
7101# endif
7102 au_has_group((char_u *)"FileExplorer"))
7103 {
7104 /* No browsing supported but we do have the file explorer:
7105 * Edit the directory. */
7106 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7107 eap->arg = (char_u *)".";
7108 }
7109 else
7110 {
7111 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007112 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007113 if (fname == NULL)
7114 goto theend;
7115 eap->arg = fname;
7116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 }
7118 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007121 /*
7122 * Either open new tab page or split the window.
7123 */
7124 if (eap->cmdidx == CMD_tabedit
7125 || eap->cmdidx == CMD_tabfind
7126 || eap->cmdidx == CMD_tabnew)
7127 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007128 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7129 : eap->addr_count == 0 ? 0
7130 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007131 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00007132 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007133
7134 /* set the alternate buffer for the window we came from */
7135 if (curwin != old_curwin
7136 && win_valid(old_curwin)
7137 && old_curwin->w_buffer != curbuf
7138 && !cmdmod.keepalt)
7139 old_curwin->w_alt_fnum = curbuf->b_fnum;
7140 }
7141 }
7142 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007143 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7144 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007145# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007146 /* Reset 'scrollbind' when editing another file, but keep it when
7147 * doing ":split" without arguments. */
7148 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007149# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007151# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152 )
7153 curwin->w_p_scb = FALSE;
7154 else
7155 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007156# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007157 do_exedit(eap, old_curwin);
7158 }
7159
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007160# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007162# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007163
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007164# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165theend:
7166 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007167# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007169
7170/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007171 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007172 */
7173 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007174tabpage_new()
7175{
7176 exarg_T ea;
7177
7178 vim_memset(&ea, 0, sizeof(ea));
7179 ea.cmdidx = CMD_tabnew;
7180 ea.cmd = (char_u *)"tabn";
7181 ea.arg = (char_u *)"";
7182 ex_splitview(&ea);
7183}
7184
7185/*
7186 * :tabnext command
7187 */
7188 static void
7189ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007190 exarg_T *eap;
7191{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007192 switch (eap->cmdidx)
7193 {
7194 case CMD_tabfirst:
7195 case CMD_tabrewind:
7196 goto_tabpage(1);
7197 break;
7198 case CMD_tablast:
7199 goto_tabpage(9999);
7200 break;
7201 case CMD_tabprevious:
7202 case CMD_tabNext:
7203 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7204 break;
7205 default: /* CMD_tabnext */
7206 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7207 break;
7208 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007209}
7210
7211/*
7212 * :tabmove command
7213 */
7214 static void
7215ex_tabmove(eap)
7216 exarg_T *eap;
7217{
7218 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007219}
7220
7221/*
7222 * :tabs command: List tabs and their contents.
7223 */
7224/*ARGSUSED*/
7225 static void
7226ex_tabs(eap)
7227 exarg_T *eap;
7228{
7229 tabpage_T *tp;
7230 win_T *wp;
7231 int tabcount = 1;
7232
7233 msg_start();
7234 msg_scroll = TRUE;
7235 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7236 {
7237 msg_putchar('\n');
7238 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7239 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7240 out_flush(); /* output one line at a time */
7241 ui_breakcheck();
7242
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007243 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007244 wp = firstwin;
7245 else
7246 wp = tp->tp_firstwin;
7247 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7248 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007249 msg_putchar('\n');
7250 msg_putchar(wp == curwin ? '>' : ' ');
7251 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007252 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7253 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007254 if (buf_spname(wp->w_buffer) != NULL)
7255 STRCPY(IObuff, buf_spname(wp->w_buffer));
7256 else
7257 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7258 IObuff, IOSIZE, TRUE);
7259 msg_outtrans(IObuff);
7260 out_flush(); /* output one line at a time */
7261 ui_breakcheck();
7262 }
7263 }
7264}
7265
7266#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267
7268/*
7269 * ":mode": Set screen mode.
7270 * If no argument given, just get the screen size and redraw.
7271 */
7272 static void
7273ex_mode(eap)
7274 exarg_T *eap;
7275{
7276 if (*eap->arg == NUL)
7277 shell_resized();
7278 else
7279 mch_screenmode(eap->arg);
7280}
7281
7282#ifdef FEAT_WINDOWS
7283/*
7284 * ":resize".
7285 * set, increment or decrement current window height
7286 */
7287 static void
7288ex_resize(eap)
7289 exarg_T *eap;
7290{
7291 int n;
7292 win_T *wp = curwin;
7293
7294 if (eap->addr_count > 0)
7295 {
7296 n = eap->line2;
7297 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7298 ;
7299 }
7300
7301#ifdef FEAT_GUI
7302 need_mouse_correct = TRUE;
7303#endif
7304 n = atol((char *)eap->arg);
7305#ifdef FEAT_VERTSPLIT
7306 if (cmdmod.split & WSP_VERT)
7307 {
7308 if (*eap->arg == '-' || *eap->arg == '+')
7309 n += W_WIDTH(curwin);
7310 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7311 n = 9999;
7312 win_setwidth_win((int)n, wp);
7313 }
7314 else
7315#endif
7316 {
7317 if (*eap->arg == '-' || *eap->arg == '+')
7318 n += curwin->w_height;
7319 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7320 n = 9999;
7321 win_setheight_win((int)n, wp);
7322 }
7323}
7324#endif
7325
7326/*
7327 * ":find [+command] <file>" command.
7328 */
7329 static void
7330ex_find(eap)
7331 exarg_T *eap;
7332{
7333#ifdef FEAT_SEARCHPATH
7334 char_u *fname;
7335 int count;
7336
7337 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7338 TRUE, curbuf->b_ffname);
7339 if (eap->addr_count > 0)
7340 {
7341 /* Repeat finding the file "count" times. This matters when it
7342 * appears several times in the path. */
7343 count = eap->line2;
7344 while (fname != NULL && --count > 0)
7345 {
7346 vim_free(fname);
7347 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7348 FALSE, curbuf->b_ffname);
7349 }
7350 }
7351
7352 if (fname != NULL)
7353 {
7354 eap->arg = fname;
7355#endif
7356 do_exedit(eap, NULL);
7357#ifdef FEAT_SEARCHPATH
7358 vim_free(fname);
7359 }
7360#endif
7361}
7362
7363/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007364 * ":open" simulation: for now just work like ":visual".
7365 */
7366 static void
7367ex_open(eap)
7368 exarg_T *eap;
7369{
7370 regmatch_T regmatch;
7371 char_u *p;
7372
7373 curwin->w_cursor.lnum = eap->line2;
7374 beginline(BL_SOL | BL_FIX);
7375 if (*eap->arg == '/')
7376 {
7377 /* ":open /pattern/": put cursor in column found with pattern */
7378 ++eap->arg;
7379 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7380 *p = NUL;
7381 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7382 if (regmatch.regprog != NULL)
7383 {
7384 regmatch.rm_ic = p_ic;
7385 p = ml_get_curline();
7386 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007387 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007388 else
7389 EMSG(_(e_nomatch));
7390 vim_free(regmatch.regprog);
7391 }
7392 /* Move to the NUL, ignore any other arguments. */
7393 eap->arg += STRLEN(eap->arg);
7394 }
7395 check_cursor();
7396
7397 eap->cmdidx = CMD_visual;
7398 do_exedit(eap, NULL);
7399}
7400
7401/*
7402 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403 */
7404 static void
7405ex_edit(eap)
7406 exarg_T *eap;
7407{
7408 do_exedit(eap, NULL);
7409}
7410
7411/*
7412 * ":edit <file>" command and alikes.
7413 */
7414/*ARGSUSED*/
7415 void
7416do_exedit(eap, old_curwin)
7417 exarg_T *eap;
7418 win_T *old_curwin; /* curwin before doing a split or NULL */
7419{
7420 int n;
7421#ifdef FEAT_WINDOWS
7422 int need_hide;
7423#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007424 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425
7426 /*
7427 * ":vi" command ends Ex mode.
7428 */
7429 if (exmode_active && (eap->cmdidx == CMD_visual
7430 || eap->cmdidx == CMD_view))
7431 {
7432 exmode_active = FALSE;
7433 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007434 {
7435 /* Special case: ":global/pat/visual\NLvi-commands" */
7436 if (global_busy)
7437 {
7438 int rd = RedrawingDisabled;
7439 int nwr = no_wait_return;
7440 int ms = msg_scroll;
7441#ifdef FEAT_GUI
7442 int he = hold_gui_events;
7443#endif
7444
7445 if (eap->nextcmd != NULL)
7446 {
7447 stuffReadbuff(eap->nextcmd);
7448 eap->nextcmd = NULL;
7449 }
7450
7451 if (exmode_was != EXMODE_VIM)
7452 settmode(TMODE_RAW);
7453 RedrawingDisabled = 0;
7454 no_wait_return = 0;
7455 need_wait_return = FALSE;
7456 msg_scroll = 0;
7457#ifdef FEAT_GUI
7458 hold_gui_events = 0;
7459#endif
7460 must_redraw = CLEAR;
7461
7462 main_loop(FALSE, TRUE);
7463
7464 RedrawingDisabled = rd;
7465 no_wait_return = nwr;
7466 msg_scroll = ms;
7467#ifdef FEAT_GUI
7468 hold_gui_events = he;
7469#endif
7470 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007471 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007472 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007473 }
7474
7475 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007476 || eap->cmdidx == CMD_tabnew
7477 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007478#ifdef FEAT_VERTSPLIT
7479 || eap->cmdidx == CMD_vnew
7480#endif
7481 ) && *eap->arg == NUL)
7482 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007483 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007484 setpcmark();
7485 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7486 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7487 }
7488 else if ((eap->cmdidx != CMD_split
7489#ifdef FEAT_VERTSPLIT
7490 && eap->cmdidx != CMD_vsplit
7491#endif
7492 )
7493 || *eap->arg != NUL
7494#ifdef FEAT_BROWSE
7495 || cmdmod.browse
7496#endif
7497 )
7498 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007499#ifdef FEAT_AUTOCMD
7500 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7501 * can bring us here, others are stopped earlier. */
7502 if (*eap->arg != NUL && curbuf_locked())
7503 return;
7504#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007505 n = readonlymode;
7506 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7507 readonlymode = TRUE;
7508 else if (eap->cmdidx == CMD_enew)
7509 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7510 empty buffer */
7511 setpcmark();
7512 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7513 NULL, eap,
7514 /* ":edit" goes to first line if Vi compatible */
7515 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7516 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7517 ? ECMD_ONE : eap->do_ecmd_lnum,
7518 (P_HID(curbuf) ? ECMD_HIDE : 0)
7519 + (eap->forceit ? ECMD_FORCEIT : 0)
7520#ifdef FEAT_LISTCMDS
7521 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7522#endif
7523 ) == FAIL)
7524 {
7525 /* Editing the file failed. If the window was split, close it. */
7526#ifdef FEAT_WINDOWS
7527 if (old_curwin != NULL)
7528 {
7529 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7530 if (!need_hide || P_HID(curbuf))
7531 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007532# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7533 cleanup_T cs;
7534
7535 /* Reset the error/interrupt/exception state here so that
7536 * aborting() returns FALSE when closing a window. */
7537 enter_cleanup(&cs);
7538# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007539# ifdef FEAT_GUI
7540 need_mouse_correct = TRUE;
7541# endif
7542 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007543
7544# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7545 /* Restore the error/interrupt/exception state if not
7546 * discarded by a new aborting error, interrupt, or
7547 * uncaught exception. */
7548 leave_cleanup(&cs);
7549# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007550 }
7551 }
7552#endif
7553 }
7554 else if (readonlymode && curbuf->b_nwindows == 1)
7555 {
7556 /* When editing an already visited buffer, 'readonly' won't be set
7557 * but the previous value is kept. With ":view" and ":sview" we
7558 * want the file to be readonly, except when another window is
7559 * editing the same buffer. */
7560 curbuf->b_p_ro = TRUE;
7561 }
7562 readonlymode = n;
7563 }
7564 else
7565 {
7566 if (eap->do_ecmd_cmd != NULL)
7567 do_cmdline_cmd(eap->do_ecmd_cmd);
7568#ifdef FEAT_TITLE
7569 n = curwin->w_arg_idx_invalid;
7570#endif
7571 check_arg_idx(curwin);
7572#ifdef FEAT_TITLE
7573 if (n != curwin->w_arg_idx_invalid)
7574 maketitle();
7575#endif
7576 }
7577
7578#ifdef FEAT_WINDOWS
7579 /*
7580 * if ":split file" worked, set alternate file name in old window to new
7581 * file
7582 */
7583 if (old_curwin != NULL
7584 && *eap->arg != NUL
7585 && curwin != old_curwin
7586 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007587 && old_curwin->w_buffer != curbuf
7588 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007589 old_curwin->w_alt_fnum = curbuf->b_fnum;
7590#endif
7591
7592 ex_no_reprint = TRUE;
7593}
7594
7595#ifndef FEAT_GUI
7596/*
7597 * ":gui" and ":gvim" when there is no GUI.
7598 */
7599 static void
7600ex_nogui(eap)
7601 exarg_T *eap;
7602{
7603 eap->errmsg = e_nogvim;
7604}
7605#endif
7606
7607#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7608 static void
7609ex_tearoff(eap)
7610 exarg_T *eap;
7611{
7612 gui_make_tearoff(eap->arg);
7613}
7614#endif
7615
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007616#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007617 static void
7618ex_popup(eap)
7619 exarg_T *eap;
7620{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007621 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007622}
7623#endif
7624
7625/*ARGSUSED*/
7626 static void
7627ex_swapname(eap)
7628 exarg_T *eap;
7629{
7630 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7631 MSG(_("No swap file"));
7632 else
7633 msg(curbuf->b_ml.ml_mfp->mf_fname);
7634}
7635
7636/*
7637 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7638 * offset.
7639 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7640 */
7641/*ARGSUSED*/
7642 static void
7643ex_syncbind(eap)
7644 exarg_T *eap;
7645{
7646#ifdef FEAT_SCROLLBIND
7647 win_T *wp;
7648 long topline;
7649 long y;
7650 linenr_T old_linenr = curwin->w_cursor.lnum;
7651
7652 setpcmark();
7653
7654 /*
7655 * determine max topline
7656 */
7657 if (curwin->w_p_scb)
7658 {
7659 topline = curwin->w_topline;
7660 for (wp = firstwin; wp; wp = wp->w_next)
7661 {
7662 if (wp->w_p_scb && wp->w_buffer)
7663 {
7664 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7665 if (topline > y)
7666 topline = y;
7667 }
7668 }
7669 if (topline < 1)
7670 topline = 1;
7671 }
7672 else
7673 {
7674 topline = 1;
7675 }
7676
7677
7678 /*
7679 * set all scrollbind windows to the same topline
7680 */
7681 wp = curwin;
7682 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7683 {
7684 if (curwin->w_p_scb)
7685 {
7686 y = topline - curwin->w_topline;
7687 if (y > 0)
7688 scrollup(y, TRUE);
7689 else
7690 scrolldown(-y, TRUE);
7691 curwin->w_scbind_pos = topline;
7692 redraw_later(VALID);
7693 cursor_correct();
7694#ifdef FEAT_WINDOWS
7695 curwin->w_redr_status = TRUE;
7696#endif
7697 }
7698 }
7699 curwin = wp;
7700 if (curwin->w_p_scb)
7701 {
7702 did_syncbind = TRUE;
7703 checkpcmark();
7704 if (old_linenr != curwin->w_cursor.lnum)
7705 {
7706 char_u ctrl_o[2];
7707
7708 ctrl_o[0] = Ctrl_O;
7709 ctrl_o[1] = 0;
7710 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7711 }
7712 }
7713#endif
7714}
7715
7716
7717 static void
7718ex_read(eap)
7719 exarg_T *eap;
7720{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007721 int i;
7722 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7723 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007724
7725 if (eap->usefilter) /* :r!cmd */
7726 do_bang(1, eap, FALSE, FALSE, TRUE);
7727 else
7728 {
7729 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7730 return;
7731
7732#ifdef FEAT_BROWSE
7733 if (cmdmod.browse)
7734 {
7735 char_u *browseFile;
7736
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007737 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007738 NULL, NULL, NULL, curbuf);
7739 if (browseFile != NULL)
7740 {
7741 i = readfile(browseFile, NULL,
7742 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7743 vim_free(browseFile);
7744 }
7745 else
7746 i = OK;
7747 }
7748 else
7749#endif
7750 if (*eap->arg == NUL)
7751 {
7752 if (check_fname() == FAIL) /* check for no file name */
7753 return;
7754 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7755 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7756 }
7757 else
7758 {
7759 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7760 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7761 i = readfile(eap->arg, NULL,
7762 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7763
7764 }
7765 if (i == FAIL)
7766 {
7767#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7768 if (!aborting())
7769#endif
7770 EMSG2(_(e_notopen), eap->arg);
7771 }
7772 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007773 {
7774 if (empty && exmode_active)
7775 {
7776 /* Delete the empty line that remains. Historically ex does
7777 * this but vi doesn't. */
7778 if (eap->line2 == 0)
7779 lnum = curbuf->b_ml.ml_line_count;
7780 else
7781 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007782 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007783 {
7784 ml_delete(lnum, FALSE);
7785 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007786 if (curwin->w_cursor.lnum > 1
7787 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007788 --curwin->w_cursor.lnum;
7789 }
7790 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007791 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007792 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007793 }
7794}
7795
Bram Moolenaarea408852005-06-25 22:49:46 +00007796static char_u *prev_dir = NULL;
7797
7798#if defined(EXITFREE) || defined(PROTO)
7799 void
7800free_cd_dir()
7801{
7802 vim_free(prev_dir);
Bram Moolenaara0174af2008-01-02 20:08:25 +00007803 prev_dir = NULL;
Bram Moolenaarea408852005-06-25 22:49:46 +00007804}
7805#endif
7806
7807
Bram Moolenaar071d4272004-06-13 20:20:40 +00007808/*
7809 * ":cd", ":lcd", ":chdir" and ":lchdir".
7810 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00007811 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007812ex_cd(eap)
7813 exarg_T *eap;
7814{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007815 char_u *new_dir;
7816 char_u *tofree;
7817
7818 new_dir = eap->arg;
7819#if !defined(UNIX) && !defined(VMS)
7820 /* for non-UNIX ":cd" means: print current directory */
7821 if (*new_dir == NUL)
7822 ex_pwd(NULL);
7823 else
7824#endif
7825 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007826 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7827 && !eap->forceit)
7828 {
Bram Moolenaar81870892007-11-11 18:17:28 +00007829 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00007830 return;
7831 }
7832
Bram Moolenaar071d4272004-06-13 20:20:40 +00007833 /* ":cd -": Change to previous directory */
7834 if (STRCMP(new_dir, "-") == 0)
7835 {
7836 if (prev_dir == NULL)
7837 {
7838 EMSG(_("E186: No previous directory"));
7839 return;
7840 }
7841 new_dir = prev_dir;
7842 }
7843
7844 /* Save current directory for next ":cd -" */
7845 tofree = prev_dir;
7846 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7847 prev_dir = vim_strsave(NameBuff);
7848 else
7849 prev_dir = NULL;
7850
7851#if defined(UNIX) || defined(VMS)
7852 /* for UNIX ":cd" means: go to home directory */
7853 if (*new_dir == NUL)
7854 {
7855 /* use NameBuff for home directory name */
7856# ifdef VMS
7857 char_u *p;
7858
7859 p = mch_getenv((char_u *)"SYS$LOGIN");
7860 if (p == NULL || *p == NUL) /* empty is the same as not set */
7861 NameBuff[0] = NUL;
7862 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007863 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007864# else
7865 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7866# endif
7867 new_dir = NameBuff;
7868 }
7869#endif
7870 if (new_dir == NULL || vim_chdir(new_dir))
7871 EMSG(_(e_failed));
7872 else
7873 {
7874 vim_free(curwin->w_localdir);
7875 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7876 {
7877 /* If still in global directory, need to remember current
7878 * directory as global directory. */
7879 if (globaldir == NULL && prev_dir != NULL)
7880 globaldir = vim_strsave(prev_dir);
7881 /* Remember this local directory for the window. */
7882 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7883 curwin->w_localdir = vim_strsave(NameBuff);
7884 }
7885 else
7886 {
7887 /* We are now in the global directory, no need to remember its
7888 * name. */
7889 vim_free(globaldir);
7890 globaldir = NULL;
7891 curwin->w_localdir = NULL;
7892 }
7893
7894 shorten_fnames(TRUE);
7895
7896 /* Echo the new current directory if the command was typed. */
7897 if (KeyTyped)
7898 ex_pwd(eap);
7899 }
7900 vim_free(tofree);
7901 }
7902}
7903
7904/*
7905 * ":pwd".
7906 */
7907/*ARGSUSED*/
7908 static void
7909ex_pwd(eap)
7910 exarg_T *eap;
7911{
7912 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7913 {
7914#ifdef BACKSLASH_IN_FILENAME
7915 slash_adjust(NameBuff);
7916#endif
7917 msg(NameBuff);
7918 }
7919 else
7920 EMSG(_("E187: Unknown"));
7921}
7922
7923/*
7924 * ":=".
7925 */
7926 static void
7927ex_equal(eap)
7928 exarg_T *eap;
7929{
7930 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007931 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007932}
7933
7934 static void
7935ex_sleep(eap)
7936 exarg_T *eap;
7937{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007938 int n;
7939 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007940
7941 if (cursor_valid())
7942 {
7943 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7944 if (n >= 0)
7945 windgoto((int)n, curwin->w_wcol);
7946 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007947
7948 len = eap->line2;
7949 switch (*eap->arg)
7950 {
7951 case 'm': break;
7952 case NUL: len *= 1000L; break;
7953 default: EMSG2(_(e_invarg2), eap->arg); return;
7954 }
7955 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007956}
7957
7958/*
7959 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7960 */
7961 void
7962do_sleep(msec)
7963 long msec;
7964{
7965 long done;
7966
7967 cursor_on();
7968 out_flush();
7969 for (done = 0; !got_int && done < msec; done += 1000L)
7970 {
7971 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7972 ui_breakcheck();
7973 }
7974}
7975
7976 static void
7977do_exmap(eap, isabbrev)
7978 exarg_T *eap;
7979 int isabbrev;
7980{
7981 int mode;
7982 char_u *cmdp;
7983
7984 cmdp = eap->cmd;
7985 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7986
7987 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7988 eap->arg, mode, isabbrev))
7989 {
7990 case 1: EMSG(_(e_invarg));
7991 break;
7992 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7993 break;
7994 }
7995}
7996
7997/*
7998 * ":winsize" command (obsolete).
7999 */
8000 static void
8001ex_winsize(eap)
8002 exarg_T *eap;
8003{
8004 int w, h;
8005 char_u *arg = eap->arg;
8006 char_u *p;
8007
8008 w = getdigits(&arg);
8009 arg = skipwhite(arg);
8010 p = arg;
8011 h = getdigits(&arg);
8012 if (*p != NUL && *arg == NUL)
8013 set_shellsize(w, h, TRUE);
8014 else
8015 EMSG(_("E465: :winsize requires two number arguments"));
8016}
8017
8018#ifdef FEAT_WINDOWS
8019 static void
8020ex_wincmd(eap)
8021 exarg_T *eap;
8022{
8023 int xchar = NUL;
8024 char_u *p;
8025
8026 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8027 {
8028 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8029 if (eap->arg[1] == NUL)
8030 {
8031 EMSG(_(e_invarg));
8032 return;
8033 }
8034 xchar = eap->arg[1];
8035 p = eap->arg + 2;
8036 }
8037 else
8038 p = eap->arg + 1;
8039
8040 eap->nextcmd = check_nextcmd(p);
8041 p = skipwhite(p);
8042 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8043 EMSG(_(e_invarg));
8044 else
8045 {
8046 /* Pass flags on for ":vertical wincmd ]". */
8047 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008048 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008049 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8050 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008051 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008052 }
8053}
8054#endif
8055
Bram Moolenaar843ee412004-06-30 16:16:41 +00008056#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008057/*
8058 * ":winpos".
8059 */
8060 static void
8061ex_winpos(eap)
8062 exarg_T *eap;
8063{
8064 int x, y;
8065 char_u *arg = eap->arg;
8066 char_u *p;
8067
8068 if (*arg == NUL)
8069 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008070# if defined(FEAT_GUI) || defined(MSWIN)
8071# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008072 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008073# else
8074 if (mch_get_winpos(&x, &y) != FAIL)
8075# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076 {
8077 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8078 msg(IObuff);
8079 }
8080 else
8081# endif
8082 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8083 }
8084 else
8085 {
8086 x = getdigits(&arg);
8087 arg = skipwhite(arg);
8088 p = arg;
8089 y = getdigits(&arg);
8090 if (*p == NUL || *arg != NUL)
8091 {
8092 EMSG(_("E466: :winpos requires two number arguments"));
8093 return;
8094 }
8095# ifdef FEAT_GUI
8096 if (gui.in_use)
8097 gui_mch_set_winpos(x, y);
8098 else if (gui.starting)
8099 {
8100 /* Remember the coordinates for when the window is opened. */
8101 gui_win_x = x;
8102 gui_win_y = y;
8103 }
8104# ifdef HAVE_TGETENT
8105 else
8106# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008107# else
8108# ifdef MSWIN
8109 mch_set_winpos(x, y);
8110# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008111# endif
8112# ifdef HAVE_TGETENT
8113 if (*T_CWP)
8114 term_set_winpos(x, y);
8115# endif
8116 }
8117}
8118#endif
8119
8120/*
8121 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8122 */
8123 static void
8124ex_operators(eap)
8125 exarg_T *eap;
8126{
8127 oparg_T oa;
8128
8129 clear_oparg(&oa);
8130 oa.regname = eap->regname;
8131 oa.start.lnum = eap->line1;
8132 oa.end.lnum = eap->line2;
8133 oa.line_count = eap->line2 - eap->line1 + 1;
8134 oa.motion_type = MLINE;
8135#ifdef FEAT_VIRTUALEDIT
8136 virtual_op = FALSE;
8137#endif
8138 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8139 {
8140 setpcmark();
8141 curwin->w_cursor.lnum = eap->line1;
8142 beginline(BL_SOL | BL_FIX);
8143 }
8144
8145 switch (eap->cmdidx)
8146 {
8147 case CMD_delete:
8148 oa.op_type = OP_DELETE;
8149 op_delete(&oa);
8150 break;
8151
8152 case CMD_yank:
8153 oa.op_type = OP_YANK;
8154 (void)op_yank(&oa, FALSE, TRUE);
8155 break;
8156
8157 default: /* CMD_rshift or CMD_lshift */
8158 if ((eap->cmdidx == CMD_rshift)
8159#ifdef FEAT_RIGHTLEFT
8160 ^ curwin->w_p_rl
8161#endif
8162 )
8163 oa.op_type = OP_RSHIFT;
8164 else
8165 oa.op_type = OP_LSHIFT;
8166 op_shift(&oa, FALSE, eap->amount);
8167 break;
8168 }
8169#ifdef FEAT_VIRTUALEDIT
8170 virtual_op = MAYBE;
8171#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008172 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008173}
8174
8175/*
8176 * ":put".
8177 */
8178 static void
8179ex_put(eap)
8180 exarg_T *eap;
8181{
8182 /* ":0put" works like ":1put!". */
8183 if (eap->line2 == 0)
8184 {
8185 eap->line2 = 1;
8186 eap->forceit = TRUE;
8187 }
8188 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008189 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8190 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008191}
8192
8193/*
8194 * Handle ":copy" and ":move".
8195 */
8196 static void
8197ex_copymove(eap)
8198 exarg_T *eap;
8199{
8200 long n;
8201
8202 n = get_address(&eap->arg, FALSE, FALSE);
8203 if (eap->arg == NULL) /* error detected */
8204 {
8205 eap->nextcmd = NULL;
8206 return;
8207 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008208 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008209
8210 /*
8211 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8212 */
8213 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8214 {
8215 EMSG(_(e_invaddr));
8216 return;
8217 }
8218
8219 if (eap->cmdidx == CMD_move)
8220 {
8221 if (do_move(eap->line1, eap->line2, n) == FAIL)
8222 return;
8223 }
8224 else
8225 ex_copy(eap->line1, eap->line2, n);
8226 u_clearline();
8227 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008228 ex_may_print(eap);
8229}
8230
8231/*
8232 * Print the current line if flags were given to the Ex command.
8233 */
8234 static void
8235ex_may_print(eap)
8236 exarg_T *eap;
8237{
8238 if (eap->flags != 0)
8239 {
8240 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8241 (eap->flags & EXFLAG_LIST));
8242 ex_no_reprint = TRUE;
8243 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008244}
8245
8246/*
8247 * ":smagic" and ":snomagic".
8248 */
8249 static void
8250ex_submagic(eap)
8251 exarg_T *eap;
8252{
8253 int magic_save = p_magic;
8254
8255 p_magic = (eap->cmdidx == CMD_smagic);
8256 do_sub(eap);
8257 p_magic = magic_save;
8258}
8259
8260/*
8261 * ":join".
8262 */
8263 static void
8264ex_join(eap)
8265 exarg_T *eap;
8266{
8267 curwin->w_cursor.lnum = eap->line1;
8268 if (eap->line1 == eap->line2)
8269 {
8270 if (eap->addr_count >= 2) /* :2,2join does nothing */
8271 return;
8272 if (eap->line2 == curbuf->b_ml.ml_line_count)
8273 {
8274 beep_flush();
8275 return;
8276 }
8277 ++eap->line2;
8278 }
8279 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8280 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008281 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008282}
8283
8284/*
8285 * ":[addr]@r" or ":[addr]*r": execute register
8286 */
8287 static void
8288ex_at(eap)
8289 exarg_T *eap;
8290{
8291 int c;
8292
8293 curwin->w_cursor.lnum = eap->line2;
8294
8295#ifdef USE_ON_FLY_SCROLL
8296 dont_scroll = TRUE; /* disallow scrolling here */
8297#endif
8298
8299 /* get the register name. No name means to use the previous one */
8300 c = *eap->arg;
8301 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8302 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008303 /* Put the register in the typeahead buffer with the "silent" flag. */
8304 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8305 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008306 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008307 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008308 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008309 else
8310 {
8311 int save_efr = exec_from_reg;
8312
8313 exec_from_reg = TRUE;
8314
8315 /*
8316 * Execute from the typeahead buffer.
8317 * Originally this didn't check for the typeahead buffer to be empty,
8318 * thus could read more Ex commands from stdin. It's not clear why,
8319 * it is certainly unexpected.
8320 */
8321 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8322 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8323
8324 exec_from_reg = save_efr;
8325 }
8326}
8327
8328/*
8329 * ":!".
8330 */
8331 static void
8332ex_bang(eap)
8333 exarg_T *eap;
8334{
8335 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8336}
8337
8338/*
8339 * ":undo".
8340 */
8341/*ARGSUSED*/
8342 static void
8343ex_undo(eap)
8344 exarg_T *eap;
8345{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008346 if (eap->addr_count == 1) /* :undo 123 */
8347 undo_time(eap->line2, FALSE, TRUE);
8348 else
8349 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008350}
8351
8352/*
8353 * ":redo".
8354 */
8355/*ARGSUSED*/
8356 static void
8357ex_redo(eap)
8358 exarg_T *eap;
8359{
8360 u_redo(1);
8361}
8362
8363/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008364 * ":earlier" and ":later".
8365 */
8366/*ARGSUSED*/
8367 static void
8368ex_later(eap)
8369 exarg_T *eap;
8370{
8371 long count = 0;
8372 int sec = FALSE;
8373 char_u *p = eap->arg;
8374
8375 if (*p == NUL)
8376 count = 1;
8377 else if (isdigit(*p))
8378 {
8379 count = getdigits(&p);
8380 switch (*p)
8381 {
8382 case 's': ++p; sec = TRUE; break;
8383 case 'm': ++p; sec = TRUE; count *= 60; break;
8384 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8385 }
8386 }
8387
8388 if (*p != NUL)
8389 EMSG2(_(e_invarg2), eap->arg);
8390 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008391 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008392}
8393
8394/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008395 * ":redir": start/stop redirection.
8396 */
8397 static void
8398ex_redir(eap)
8399 exarg_T *eap;
8400{
8401 char *mode;
8402 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008403 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008404
8405 if (STRICMP(eap->arg, "END") == 0)
8406 close_redir();
8407 else
8408 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008409 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008410 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008411 ++arg;
8412 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008413 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008414 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008415 mode = "a";
8416 }
8417 else
8418 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008419 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008420
8421 close_redir();
8422
8423 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008424 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008425 if (fname == NULL)
8426 return;
8427#ifdef FEAT_BROWSE
8428 if (cmdmod.browse)
8429 {
8430 char_u *browseFile;
8431
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008432 browseFile = do_browse(BROWSE_SAVE,
8433 (char_u *)_("Save Redirection"),
8434 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008435 if (browseFile == NULL)
8436 return; /* operation cancelled */
8437 vim_free(fname);
8438 fname = browseFile;
8439 eap->forceit = TRUE; /* since dialog already asked */
8440 }
8441#endif
8442
8443 redir_fd = open_exfile(fname, eap->forceit, mode);
8444 vim_free(fname);
8445 }
8446#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008447 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008448 {
8449 /* redirect to a register a-z (resp. A-Z for appending) */
8450 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008451 ++arg;
8452 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008453# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008454 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008455 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008456# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008457 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008458 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008459 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008460 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00008461 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008462 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008463 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00008464 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008465 if (*arg == '>')
8466 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008467 /* Make register empty when not using @A-@Z and the
8468 * command is valid. */
8469 if (*arg == NUL && !isupper(redir_reg))
8470 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008471 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008472 }
8473 if (*arg != NUL)
8474 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008475 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008476 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008477 }
8478 }
8479 else if (*arg == '=' && arg[1] == '>')
8480 {
8481 int append;
8482
8483 /* redirect to a variable */
8484 close_redir();
8485 arg += 2;
8486
8487 if (*arg == '>')
8488 {
8489 ++arg;
8490 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008491 }
8492 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008493 append = FALSE;
8494
8495 if (var_redir_start(skipwhite(arg), append) == OK)
8496 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008497 }
8498#endif
8499
8500 /* TODO: redirect to a buffer */
8501
Bram Moolenaar071d4272004-06-13 20:20:40 +00008502 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008503 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008504 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008505
8506 /* Make sure redirection is not off. Can happen for cmdline completion
8507 * that indirectly invokes a command to catch its output. */
8508 if (redir_fd != NULL
8509#ifdef FEAT_EVAL
8510 || redir_reg || redir_vname
8511#endif
8512 )
8513 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008514}
8515
8516/*
8517 * ":redraw": force redraw
8518 */
8519 static void
8520ex_redraw(eap)
8521 exarg_T *eap;
8522{
8523 int r = RedrawingDisabled;
8524 int p = p_lz;
8525
8526 RedrawingDisabled = 0;
8527 p_lz = FALSE;
8528 update_topline();
8529 update_screen(eap->forceit ? CLEAR :
8530#ifdef FEAT_VISUAL
8531 VIsual_active ? INVERTED :
8532#endif
8533 0);
8534#ifdef FEAT_TITLE
8535 if (need_maketitle)
8536 maketitle();
8537#endif
8538 RedrawingDisabled = r;
8539 p_lz = p;
8540
8541 /* Reset msg_didout, so that a message that's there is overwritten. */
8542 msg_didout = FALSE;
8543 msg_col = 0;
8544
8545 out_flush();
8546}
8547
8548/*
8549 * ":redrawstatus": force redraw of status line(s)
8550 */
8551/*ARGSUSED*/
8552 static void
8553ex_redrawstatus(eap)
8554 exarg_T *eap;
8555{
8556#if defined(FEAT_WINDOWS)
8557 int r = RedrawingDisabled;
8558 int p = p_lz;
8559
8560 RedrawingDisabled = 0;
8561 p_lz = FALSE;
8562 if (eap->forceit)
8563 status_redraw_all();
8564 else
8565 status_redraw_curbuf();
8566 update_screen(
8567# ifdef FEAT_VISUAL
8568 VIsual_active ? INVERTED :
8569# endif
8570 0);
8571 RedrawingDisabled = r;
8572 p_lz = p;
8573 out_flush();
8574#endif
8575}
8576
8577 static void
8578close_redir()
8579{
8580 if (redir_fd != NULL)
8581 {
8582 fclose(redir_fd);
8583 redir_fd = NULL;
8584 }
8585#ifdef FEAT_EVAL
8586 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008587 if (redir_vname)
8588 {
8589 var_redir_stop();
8590 redir_vname = 0;
8591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008592#endif
8593}
8594
8595#if defined(FEAT_SESSION) && defined(USE_CRNL)
8596# define MKSESSION_NL
8597static int mksession_nl = FALSE; /* use NL only in put_eol() */
8598#endif
8599
8600/*
8601 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8602 */
8603 static void
8604ex_mkrc(eap)
8605 exarg_T *eap;
8606{
8607 FILE *fd;
8608 int failed = FALSE;
8609 char_u *fname;
8610#ifdef FEAT_BROWSE
8611 char_u *browseFile = NULL;
8612#endif
8613#ifdef FEAT_SESSION
8614 int view_session = FALSE;
8615 int using_vdir = FALSE; /* using 'viewdir'? */
8616 char_u *viewFile = NULL;
8617 unsigned *flagp;
8618#endif
8619
8620 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8621 {
8622#ifdef FEAT_SESSION
8623 view_session = TRUE;
8624#else
8625 ex_ni(eap);
8626 return;
8627#endif
8628 }
8629
8630#ifdef FEAT_SESSION
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008631 did_lcd = FALSE;
8632
Bram Moolenaar071d4272004-06-13 20:20:40 +00008633 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8634 if (eap->cmdidx == CMD_mkview
8635 && (*eap->arg == NUL
8636 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8637 {
8638 eap->forceit = TRUE;
8639 fname = get_view_file(*eap->arg);
8640 if (fname == NULL)
8641 return;
8642 viewFile = fname;
8643 using_vdir = TRUE;
8644 }
8645 else
8646#endif
8647 if (*eap->arg != NUL)
8648 fname = eap->arg;
8649 else if (eap->cmdidx == CMD_mkvimrc)
8650 fname = (char_u *)VIMRC_FILE;
8651#ifdef FEAT_SESSION
8652 else if (eap->cmdidx == CMD_mksession)
8653 fname = (char_u *)SESSION_FILE;
8654#endif
8655 else
8656 fname = (char_u *)EXRC_FILE;
8657
8658#ifdef FEAT_BROWSE
8659 if (cmdmod.browse)
8660 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008661 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008662# ifdef FEAT_SESSION
8663 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8664 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8665# endif
8666 (char_u *)_("Save Setup"),
8667 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8668 if (browseFile == NULL)
8669 goto theend;
8670 fname = browseFile;
8671 eap->forceit = TRUE; /* since dialog already asked */
8672 }
8673#endif
8674
8675#if defined(FEAT_SESSION) && defined(vim_mkdir)
8676 /* When using 'viewdir' may have to create the directory. */
8677 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008678 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008679#endif
8680
8681 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8682 if (fd != NULL)
8683 {
8684#ifdef FEAT_SESSION
8685 if (eap->cmdidx == CMD_mkview)
8686 flagp = &vop_flags;
8687 else
8688 flagp = &ssop_flags;
8689#endif
8690
8691#ifdef MKSESSION_NL
8692 /* "unix" in 'sessionoptions': use NL line separator */
8693 if (view_session && (*flagp & SSOP_UNIX))
8694 mksession_nl = TRUE;
8695#endif
8696
8697 /* Write the version command for :mkvimrc */
8698 if (eap->cmdidx == CMD_mkvimrc)
8699 (void)put_line(fd, "version 6.0");
8700
8701#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008702 if (eap->cmdidx == CMD_mksession)
8703 {
8704 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8705 failed = TRUE;
8706 }
8707
Bram Moolenaar071d4272004-06-13 20:20:40 +00008708 if (eap->cmdidx != CMD_mkview)
8709#endif
8710 {
8711 /* Write setting 'compatible' first, because it has side effects.
8712 * For that same reason only do it when needed. */
8713 if (p_cp)
8714 (void)put_line(fd, "if !&cp | set cp | endif");
8715 else
8716 (void)put_line(fd, "if &cp | set nocp | endif");
8717 }
8718
8719#ifdef FEAT_SESSION
8720 if (!view_session
8721 || (eap->cmdidx == CMD_mksession
8722 && (*flagp & SSOP_OPTIONS)))
8723#endif
8724 failed |= (makemap(fd, NULL) == FAIL
8725 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8726
8727#ifdef FEAT_SESSION
8728 if (!failed && view_session)
8729 {
8730 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8731 failed = TRUE;
8732 if (eap->cmdidx == CMD_mksession)
8733 {
8734 char_u dirnow[MAXPATHL]; /* current directory */
8735
8736 /*
8737 * Change to session file's dir.
8738 */
8739 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8740 || mch_chdir((char *)dirnow) != 0)
8741 *dirnow = NUL;
8742 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8743 {
8744 if (vim_chdirfile(fname) == OK)
8745 shorten_fnames(TRUE);
8746 }
8747 else if (*dirnow != NUL
8748 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8749 {
8750 (void)mch_chdir((char *)globaldir);
8751 shorten_fnames(TRUE);
8752 }
8753
8754 failed |= (makeopens(fd, dirnow) == FAIL);
8755
8756 /* restore original dir */
8757 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8758 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8759 {
8760 if (mch_chdir((char *)dirnow) != 0)
8761 EMSG(_(e_prev_dir));
8762 shorten_fnames(TRUE);
8763 }
8764 }
8765 else
8766 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00008767 failed |= (put_view(fd, curwin, !using_vdir, flagp,
8768 -1) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008769 }
8770 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8771 == FAIL)
8772 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008773 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8774 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008775 if (eap->cmdidx == CMD_mksession)
8776 {
8777 if (put_line(fd, "unlet SessionLoad") == FAIL)
8778 failed = TRUE;
8779 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008780 }
8781#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008782 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8783 failed = TRUE;
8784
Bram Moolenaar071d4272004-06-13 20:20:40 +00008785 failed |= fclose(fd);
8786
8787 if (failed)
8788 EMSG(_(e_write));
8789#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8790 else if (eap->cmdidx == CMD_mksession)
8791 {
8792 /* successful session write - set this_session var */
8793 char_u tbuf[MAXPATHL];
8794
8795 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8796 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8797 }
8798#endif
8799#ifdef MKSESSION_NL
8800 mksession_nl = FALSE;
8801#endif
8802 }
8803
8804#ifdef FEAT_BROWSE
8805theend:
8806 vim_free(browseFile);
8807#endif
8808#ifdef FEAT_SESSION
8809 vim_free(viewFile);
8810#endif
8811}
8812
Bram Moolenaardf177f62005-02-22 08:39:57 +00008813#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8814 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008815/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008816 int
8817vim_mkdir_emsg(name, prot)
8818 char_u *name;
8819 int prot;
8820{
8821 if (vim_mkdir(name, prot) != 0)
8822 {
8823 EMSG2(_("E739: Cannot create directory: %s"), name);
8824 return FAIL;
8825 }
8826 return OK;
8827}
8828#endif
8829
Bram Moolenaar071d4272004-06-13 20:20:40 +00008830/*
8831 * Open a file for writing for an Ex command, with some checks.
8832 * Return file descriptor, or NULL on failure.
8833 */
8834 FILE *
8835open_exfile(fname, forceit, mode)
8836 char_u *fname;
8837 int forceit;
8838 char *mode; /* "w" for create new file or "a" for append */
8839{
8840 FILE *fd;
8841
8842#ifdef UNIX
8843 /* with Unix it is possible to open a directory */
8844 if (mch_isdir(fname))
8845 {
8846 EMSG2(_(e_isadir2), fname);
8847 return NULL;
8848 }
8849#endif
8850 if (!forceit && *mode != 'a' && vim_fexists(fname))
8851 {
8852 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8853 return NULL;
8854 }
8855
8856 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8857 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8858
8859 return fd;
8860}
8861
8862/*
8863 * ":mark" and ":k".
8864 */
8865 static void
8866ex_mark(eap)
8867 exarg_T *eap;
8868{
8869 pos_T pos;
8870
8871 if (*eap->arg == NUL) /* No argument? */
8872 EMSG(_(e_argreq));
8873 else if (eap->arg[1] != NUL) /* more than one character? */
8874 EMSG(_(e_trailing));
8875 else
8876 {
8877 pos = curwin->w_cursor; /* save curwin->w_cursor */
8878 curwin->w_cursor.lnum = eap->line2;
8879 beginline(BL_WHITE | BL_FIX);
8880 if (setmark(*eap->arg) == FAIL) /* set mark */
8881 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8882 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8883 }
8884}
8885
8886/*
8887 * Update w_topline, w_leftcol and the cursor position.
8888 */
8889 void
8890update_topline_cursor()
8891{
8892 check_cursor(); /* put cursor on valid line */
8893 update_topline();
8894 if (!curwin->w_p_wrap)
8895 validate_cursor();
8896 update_curswant();
8897}
8898
8899#ifdef FEAT_EX_EXTRA
8900/*
8901 * ":normal[!] {commands}": Execute normal mode commands.
8902 */
8903 static void
8904ex_normal(eap)
8905 exarg_T *eap;
8906{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008907 int save_msg_scroll = msg_scroll;
8908 int save_restart_edit = restart_edit;
8909 int save_msg_didout = msg_didout;
8910 int save_State = State;
8911 tasave_T tabuf;
8912 int save_insertmode = p_im;
8913 int save_finish_op = finish_op;
8914#ifdef FEAT_MBYTE
8915 char_u *arg = NULL;
8916 int l;
8917 char_u *p;
8918#endif
8919
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008920 if (ex_normal_lock > 0)
8921 {
8922 EMSG(_(e_secure));
8923 return;
8924 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925 if (ex_normal_busy >= p_mmd)
8926 {
8927 EMSG(_("E192: Recursive use of :normal too deep"));
8928 return;
8929 }
8930 ++ex_normal_busy;
8931
8932 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8933 restart_edit = 0; /* don't go to Insert mode */
8934 p_im = FALSE; /* don't use 'insertmode' */
8935
8936#ifdef FEAT_MBYTE
8937 /*
8938 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8939 * this for the K_SPECIAL leading byte, otherwise special keys will not
8940 * work.
8941 */
8942 if (has_mbyte)
8943 {
8944 int len = 0;
8945
8946 /* Count the number of characters to be escaped. */
8947 for (p = eap->arg; *p != NUL; ++p)
8948 {
8949# ifdef FEAT_GUI
8950 if (*p == CSI) /* leadbyte CSI */
8951 len += 2;
8952# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008953 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008954 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8955# ifdef FEAT_GUI
8956 || *p == CSI
8957# endif
8958 )
8959 len += 2;
8960 }
8961 if (len > 0)
8962 {
8963 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8964 if (arg != NULL)
8965 {
8966 len = 0;
8967 for (p = eap->arg; *p != NUL; ++p)
8968 {
8969 arg[len++] = *p;
8970# ifdef FEAT_GUI
8971 if (*p == CSI)
8972 {
8973 arg[len++] = KS_EXTRA;
8974 arg[len++] = (int)KE_CSI;
8975 }
8976# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008977 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008978 {
8979 arg[len++] = *++p;
8980 if (*p == K_SPECIAL)
8981 {
8982 arg[len++] = KS_SPECIAL;
8983 arg[len++] = KE_FILLER;
8984 }
8985# ifdef FEAT_GUI
8986 else if (*p == CSI)
8987 {
8988 arg[len++] = KS_EXTRA;
8989 arg[len++] = (int)KE_CSI;
8990 }
8991# endif
8992 }
8993 arg[len] = NUL;
8994 }
8995 }
8996 }
8997 }
8998#endif
8999
9000 /*
9001 * Save the current typeahead. This is required to allow using ":normal"
9002 * from an event handler and makes sure we don't hang when the argument
9003 * ends with half a command.
9004 */
9005 save_typeahead(&tabuf);
9006 if (tabuf.typebuf_valid)
9007 {
9008 /*
9009 * Repeat the :normal command for each line in the range. When no
9010 * range given, execute it just once, without positioning the cursor
9011 * first.
9012 */
9013 do
9014 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009015 if (eap->addr_count != 0)
9016 {
9017 curwin->w_cursor.lnum = eap->line1++;
9018 curwin->w_cursor.col = 0;
9019 }
9020
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009021 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00009022#ifdef FEAT_MBYTE
9023 arg != NULL ? arg :
9024#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009025 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009026 }
9027 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9028 }
9029
9030 /* Might not return to the main loop when in an event handler. */
9031 update_topline_cursor();
9032
9033 /* Restore the previous typeahead. */
9034 restore_typeahead(&tabuf);
9035
9036 --ex_normal_busy;
9037 msg_scroll = save_msg_scroll;
9038 restart_edit = save_restart_edit;
9039 p_im = save_insertmode;
9040 finish_op = save_finish_op;
9041 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9042
9043 /* Restore the state (needed when called from a function executed for
9044 * 'indentexpr'). */
9045 State = save_State;
9046#ifdef FEAT_MBYTE
9047 vim_free(arg);
9048#endif
9049}
9050
9051/*
Bram Moolenaar64969662005-12-14 21:59:55 +00009052 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00009053 */
9054 static void
9055ex_startinsert(eap)
9056 exarg_T *eap;
9057{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009058 if (eap->forceit)
9059 {
9060 coladvance((colnr_T)MAXCOL);
9061 curwin->w_curswant = MAXCOL;
9062 curwin->w_set_curswant = FALSE;
9063 }
9064
Bram Moolenaara40c5002005-01-09 21:16:21 +00009065 /* Ignore the command when already in Insert mode. Inserting an
9066 * expression register that invokes a function can do this. */
9067 if (State & INSERT)
9068 return;
9069
Bram Moolenaar64969662005-12-14 21:59:55 +00009070 if (eap->cmdidx == CMD_startinsert)
9071 restart_edit = 'a';
9072 else if (eap->cmdidx == CMD_startreplace)
9073 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009074 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009075 restart_edit = 'V';
9076
9077 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009078 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009079 if (eap->cmdidx == CMD_startinsert)
9080 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009081 curwin->w_curswant = 0; /* avoid MAXCOL */
9082 }
9083}
9084
9085/*
9086 * ":stopinsert"
9087 */
9088/*ARGSUSED*/
9089 static void
9090ex_stopinsert(eap)
9091 exarg_T *eap;
9092{
9093 restart_edit = 0;
9094 stop_insert_mode = TRUE;
9095}
9096#endif
9097
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009098#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9099/*
9100 * Execute normal mode command "cmd".
9101 * "remap" can be REMAP_NONE or REMAP_YES.
9102 */
9103 void
9104exec_normal_cmd(cmd, remap, silent)
9105 char_u *cmd;
9106 int remap;
9107 int silent;
9108{
9109 oparg_T oa;
9110
9111 /*
9112 * Stuff the argument into the typeahead buffer.
9113 * Execute normal_cmd() until there is no typeahead left.
9114 */
9115 clear_oparg(&oa);
9116 finish_op = FALSE;
9117 ins_typebuf(cmd, remap, 0, TRUE, silent);
9118 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9119 && !got_int)
9120 {
9121 update_topline_cursor();
9122 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9123 }
9124}
9125#endif
9126
Bram Moolenaar071d4272004-06-13 20:20:40 +00009127#ifdef FEAT_FIND_ID
9128 static void
9129ex_checkpath(eap)
9130 exarg_T *eap;
9131{
9132 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9133 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9134 (linenr_T)1, (linenr_T)MAXLNUM);
9135}
9136
9137#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9138/*
9139 * ":psearch"
9140 */
9141 static void
9142ex_psearch(eap)
9143 exarg_T *eap;
9144{
9145 g_do_tagpreview = p_pvh;
9146 ex_findpat(eap);
9147 g_do_tagpreview = 0;
9148}
9149#endif
9150
9151 static void
9152ex_findpat(eap)
9153 exarg_T *eap;
9154{
9155 int whole = TRUE;
9156 long n;
9157 char_u *p;
9158 int action;
9159
9160 switch (cmdnames[eap->cmdidx].cmd_name[2])
9161 {
9162 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9163 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9164 action = ACTION_GOTO;
9165 else
9166 action = ACTION_SHOW;
9167 break;
9168 case 'i': /* ":ilist" and ":dlist" */
9169 action = ACTION_SHOW_ALL;
9170 break;
9171 case 'u': /* ":ijump" and ":djump" */
9172 action = ACTION_GOTO;
9173 break;
9174 default: /* ":isplit" and ":dsplit" */
9175 action = ACTION_SPLIT;
9176 break;
9177 }
9178
9179 n = 1;
9180 if (vim_isdigit(*eap->arg)) /* get count */
9181 {
9182 n = getdigits(&eap->arg);
9183 eap->arg = skipwhite(eap->arg);
9184 }
9185 if (*eap->arg == '/') /* Match regexp, not just whole words */
9186 {
9187 whole = FALSE;
9188 ++eap->arg;
9189 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9190 if (*p)
9191 {
9192 *p++ = NUL;
9193 p = skipwhite(p);
9194
9195 /* Check for trailing illegal characters */
9196 if (!ends_excmd(*p))
9197 eap->errmsg = e_trailing;
9198 else
9199 eap->nextcmd = check_nextcmd(p);
9200 }
9201 }
9202 if (!eap->skip)
9203 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9204 whole, !eap->forceit,
9205 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9206 n, action, eap->line1, eap->line2);
9207}
9208#endif
9209
9210#ifdef FEAT_WINDOWS
9211
9212# ifdef FEAT_QUICKFIX
9213/*
9214 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9215 */
9216 static void
9217ex_ptag(eap)
9218 exarg_T *eap;
9219{
9220 g_do_tagpreview = p_pvh;
9221 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9222}
9223
9224/*
9225 * ":pedit"
9226 */
9227 static void
9228ex_pedit(eap)
9229 exarg_T *eap;
9230{
9231 win_T *curwin_save = curwin;
9232
9233 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009234 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009235 keep_help_flag = curwin_save->w_buffer->b_help;
9236 do_exedit(eap, NULL);
9237 keep_help_flag = FALSE;
9238 if (curwin != curwin_save && win_valid(curwin_save))
9239 {
9240 /* Return cursor to where we were */
9241 validate_cursor();
9242 redraw_later(VALID);
9243 win_enter(curwin_save, TRUE);
9244 }
9245 g_do_tagpreview = 0;
9246}
9247# endif
9248
9249/*
9250 * ":stag", ":stselect" and ":stjump".
9251 */
9252 static void
9253ex_stag(eap)
9254 exarg_T *eap;
9255{
9256 postponed_split = -1;
9257 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009258 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009259 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9260 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009261 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009262}
9263#endif
9264
9265/*
9266 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9267 */
9268 static void
9269ex_tag(eap)
9270 exarg_T *eap;
9271{
9272 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9273}
9274
9275 static void
9276ex_tag_cmd(eap, name)
9277 exarg_T *eap;
9278 char_u *name;
9279{
9280 int cmd;
9281
9282 switch (name[1])
9283 {
9284 case 'j': cmd = DT_JUMP; /* ":tjump" */
9285 break;
9286 case 's': cmd = DT_SELECT; /* ":tselect" */
9287 break;
9288 case 'p': cmd = DT_PREV; /* ":tprevious" */
9289 break;
9290 case 'N': cmd = DT_PREV; /* ":tNext" */
9291 break;
9292 case 'n': cmd = DT_NEXT; /* ":tnext" */
9293 break;
9294 case 'o': cmd = DT_POP; /* ":pop" */
9295 break;
9296 case 'f': /* ":tfirst" */
9297 case 'r': cmd = DT_FIRST; /* ":trewind" */
9298 break;
9299 case 'l': cmd = DT_LAST; /* ":tlast" */
9300 break;
9301 default: /* ":tag" */
9302#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +00009303 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009304 {
9305 do_cstag(eap);
9306 return;
9307 }
9308#endif
9309 cmd = DT_TAG;
9310 break;
9311 }
9312
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009313 if (name[0] == 'l')
9314 {
9315#ifndef FEAT_QUICKFIX
9316 ex_ni(eap);
9317 return;
9318#else
9319 cmd = DT_LTAG;
9320#endif
9321 }
9322
Bram Moolenaar071d4272004-06-13 20:20:40 +00009323 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9324 eap->forceit, TRUE);
9325}
9326
9327/*
Bram Moolenaar05bb9532008-07-04 09:44:11 +00009328 * Check "str" for starting with a special cmdline variable.
9329 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9330 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9331 */
9332 int
9333find_cmdline_var(src, usedlen)
9334 char_u *src;
9335 int *usedlen;
9336{
9337 int len;
9338 int i;
9339 static char *(spec_str[]) = {
9340 "%",
9341#define SPEC_PERC 0
9342 "#",
9343#define SPEC_HASH 1
9344 "<cword>", /* cursor word */
9345#define SPEC_CWORD 2
9346 "<cWORD>", /* cursor WORD */
9347#define SPEC_CCWORD 3
9348 "<cfile>", /* cursor path name */
9349#define SPEC_CFILE 4
9350 "<sfile>", /* ":so" file name */
9351#define SPEC_SFILE 5
9352#ifdef FEAT_AUTOCMD
9353 "<afile>", /* autocommand file name */
9354# define SPEC_AFILE 6
9355 "<abuf>", /* autocommand buffer number */
9356# define SPEC_ABUF 7
9357 "<amatch>", /* autocommand match name */
9358# define SPEC_AMATCH 8
9359#endif
9360#ifdef FEAT_CLIENTSERVER
9361 "<client>"
9362# define SPEC_CLIENT 9
9363#endif
9364 };
9365#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9366
9367 for (i = 0; i < SPEC_COUNT; ++i)
9368 {
9369 len = (int)STRLEN(spec_str[i]);
9370 if (STRNCMP(src, spec_str[i], len) == 0)
9371 {
9372 *usedlen = len;
9373 return i;
9374 }
9375 }
9376 return -1;
9377}
9378
9379/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009380 * Evaluate cmdline variables.
9381 *
9382 * change '%' to curbuf->b_ffname
9383 * '#' to curwin->w_altfile
9384 * '<cword>' to word under the cursor
9385 * '<cWORD>' to WORD under the cursor
9386 * '<cfile>' to path name under the cursor
9387 * '<sfile>' to sourced file name
9388 * '<afile>' to file name for autocommand
9389 * '<abuf>' to buffer number for autocommand
9390 * '<amatch>' to matching name for autocommand
9391 *
9392 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9393 * "" for error without a message) and NULL is returned.
9394 * Returns an allocated string if a valid match was found.
9395 * Returns NULL if no match was found. "usedlen" then still contains the
9396 * number of characters to skip.
9397 */
9398 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009399eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009400 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009401 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009402 int *usedlen; /* characters after src that are used */
9403 linenr_T *lnump; /* line number for :e command, or NULL */
9404 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009405 int *escaped; /* return value has escaped white space (can
9406 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009407{
9408 int i;
9409 char_u *s;
9410 char_u *result;
9411 char_u *resultbuf = NULL;
9412 int resultlen;
9413 buf_T *buf;
9414 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9415 int spec_idx;
9416#ifdef FEAT_MODIFY_FNAME
9417 int skip_mod = FALSE;
9418#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009419
9420#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9421 char_u strbuf[30];
9422#endif
9423
9424 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009425 if (escaped != NULL)
9426 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009427
9428 /*
9429 * Check if there is something to do.
9430 */
Bram Moolenaar05bb9532008-07-04 09:44:11 +00009431 spec_idx = find_cmdline_var(src, usedlen);
9432 if (spec_idx < 0) /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009433 {
9434 *usedlen = 1;
9435 return NULL;
9436 }
9437
9438 /*
9439 * Skip when preceded with a backslash "\%" and "\#".
9440 * Note: In "\\%" the % is also not recognized!
9441 */
9442 if (src > srcstart && src[-1] == '\\')
9443 {
9444 *usedlen = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +00009445 STRMOVE(src - 1, src); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009446 return NULL;
9447 }
9448
9449 /*
9450 * word or WORD under cursor
9451 */
9452 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9453 {
9454 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9455 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9456 if (resultlen == 0)
9457 {
9458 *errormsg = (char_u *)"";
9459 return NULL;
9460 }
9461 }
9462
9463 /*
9464 * '#': Alternate file name
9465 * '%': Current file name
9466 * File name under the cursor
9467 * File name for autocommand
9468 * and following modifiers
9469 */
9470 else
9471 {
9472 switch (spec_idx)
9473 {
9474 case SPEC_PERC: /* '%': current file */
9475 if (curbuf->b_fname == NULL)
9476 {
9477 result = (char_u *)"";
9478 valid = 0; /* Must have ":p:h" to be valid */
9479 }
9480 else
9481#ifdef RISCOS
9482 /* Always use the full path for RISC OS if possible. */
9483 result = curbuf->b_ffname;
9484 if (result == NULL)
9485 result = curbuf->b_fname;
9486#else
9487 result = curbuf->b_fname;
9488#endif
9489 break;
9490
9491 case SPEC_HASH: /* '#' or "#99": alternate file */
9492 if (src[1] == '#') /* "##": the argument list */
9493 {
9494 result = arg_all();
9495 resultbuf = result;
9496 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009497 if (escaped != NULL)
9498 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009499#ifdef FEAT_MODIFY_FNAME
9500 skip_mod = TRUE;
9501#endif
9502 break;
9503 }
9504 s = src + 1;
9505 i = (int)getdigits(&s);
9506 *usedlen = (int)(s - src); /* length of what we expand */
9507
9508 buf = buflist_findnr(i);
9509 if (buf == NULL)
9510 {
9511 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9512 return NULL;
9513 }
9514 if (lnump != NULL)
9515 *lnump = ECMD_LAST;
9516 if (buf->b_fname == NULL)
9517 {
9518 result = (char_u *)"";
9519 valid = 0; /* Must have ":p:h" to be valid */
9520 }
9521 else
9522 result = buf->b_fname;
9523 break;
9524
9525#ifdef FEAT_SEARCHPATH
9526 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009527 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009528 if (result == NULL)
9529 {
9530 *errormsg = (char_u *)"";
9531 return NULL;
9532 }
9533 resultbuf = result; /* remember allocated string */
9534 break;
9535#endif
9536
9537#ifdef FEAT_AUTOCMD
9538 case SPEC_AFILE: /* file name for autocommand */
9539 result = autocmd_fname;
9540 if (result == NULL)
9541 {
9542 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9543 return NULL;
9544 }
Bram Moolenaara0174af2008-01-02 20:08:25 +00009545 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009546 break;
9547
9548 case SPEC_ABUF: /* buffer number for autocommand */
9549 if (autocmd_bufnr <= 0)
9550 {
9551 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9552 return NULL;
9553 }
9554 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9555 result = strbuf;
9556 break;
9557
9558 case SPEC_AMATCH: /* match name for autocommand */
9559 result = autocmd_match;
9560 if (result == NULL)
9561 {
9562 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9563 return NULL;
9564 }
9565 break;
9566
9567#endif
9568 case SPEC_SFILE: /* file name for ":so" command */
9569 result = sourcing_name;
9570 if (result == NULL)
9571 {
9572 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9573 return NULL;
9574 }
9575 break;
9576#if defined(FEAT_CLIENTSERVER)
9577 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009578 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9579 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009580 result = strbuf;
9581 break;
9582#endif
9583 }
9584
9585 resultlen = (int)STRLEN(result); /* length of new string */
9586 if (src[*usedlen] == '<') /* remove the file name extension */
9587 {
9588 ++*usedlen;
9589#ifdef RISCOS
9590 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9591#else
9592 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9593#endif
9594 resultlen = (int)(s - result);
9595 }
9596#ifdef FEAT_MODIFY_FNAME
9597 else if (!skip_mod)
9598 {
9599 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9600 &resultlen);
9601 if (result == NULL)
9602 {
9603 *errormsg = (char_u *)"";
9604 return NULL;
9605 }
9606 }
9607#endif
9608 }
9609
9610 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9611 {
9612 if (valid != VALID_HEAD + VALID_PATH)
9613 /* xgettext:no-c-format */
9614 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9615 else
9616 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9617 result = NULL;
9618 }
9619 else
9620 result = vim_strnsave(result, resultlen);
9621 vim_free(resultbuf);
9622 return result;
9623}
9624
9625/*
9626 * Concatenate all files in the argument list, separated by spaces, and return
9627 * it in one allocated string.
9628 * Spaces and backslashes in the file names are escaped with a backslash.
9629 * Returns NULL when out of memory.
9630 */
9631 static char_u *
9632arg_all()
9633{
9634 int len;
9635 int idx;
9636 char_u *retval = NULL;
9637 char_u *p;
9638
9639 /*
9640 * Do this loop two times:
9641 * first time: compute the total length
9642 * second time: concatenate the names
9643 */
9644 for (;;)
9645 {
9646 len = 0;
9647 for (idx = 0; idx < ARGCOUNT; ++idx)
9648 {
9649 p = alist_name(&ARGLIST[idx]);
9650 if (p != NULL)
9651 {
9652 if (len > 0)
9653 {
9654 /* insert a space in between names */
9655 if (retval != NULL)
9656 retval[len] = ' ';
9657 ++len;
9658 }
9659 for ( ; *p != NUL; ++p)
9660 {
9661 if (*p == ' ' || *p == '\\')
9662 {
9663 /* insert a backslash */
9664 if (retval != NULL)
9665 retval[len] = '\\';
9666 ++len;
9667 }
9668 if (retval != NULL)
9669 retval[len] = *p;
9670 ++len;
9671 }
9672 }
9673 }
9674
9675 /* second time: break here */
9676 if (retval != NULL)
9677 {
9678 retval[len] = NUL;
9679 break;
9680 }
9681
9682 /* allocate memory */
9683 retval = alloc(len + 1);
9684 if (retval == NULL)
9685 break;
9686 }
9687
9688 return retval;
9689}
9690
9691#if defined(FEAT_AUTOCMD) || defined(PROTO)
9692/*
9693 * Expand the <sfile> string in "arg".
9694 *
9695 * Returns an allocated string, or NULL for any error.
9696 */
9697 char_u *
9698expand_sfile(arg)
9699 char_u *arg;
9700{
9701 char_u *errormsg;
9702 int len;
9703 char_u *result;
9704 char_u *newres;
9705 char_u *repl;
9706 int srclen;
9707 char_u *p;
9708
9709 result = vim_strsave(arg);
9710 if (result == NULL)
9711 return NULL;
9712
9713 for (p = result; *p; )
9714 {
9715 if (STRNCMP(p, "<sfile>", 7) != 0)
9716 ++p;
9717 else
9718 {
9719 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009720 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009721 if (errormsg != NULL)
9722 {
9723 if (*errormsg)
9724 emsg(errormsg);
9725 vim_free(result);
9726 return NULL;
9727 }
9728 if (repl == NULL) /* no match (cannot happen) */
9729 {
9730 p += srclen;
9731 continue;
9732 }
9733 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9734 newres = alloc(len);
9735 if (newres == NULL)
9736 {
9737 vim_free(repl);
9738 vim_free(result);
9739 return NULL;
9740 }
9741 mch_memmove(newres, result, (size_t)(p - result));
9742 STRCPY(newres + (p - result), repl);
9743 len = (int)STRLEN(newres);
9744 STRCAT(newres, p + srclen);
9745 vim_free(repl);
9746 vim_free(result);
9747 result = newres;
9748 p = newres + len; /* continue after the match */
9749 }
9750 }
9751
9752 return result;
9753}
9754#endif
9755
9756#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009757static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9758 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009759static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9760static frame_T *ses_skipframe __ARGS((frame_T *fr));
9761static int ses_do_frame __ARGS((frame_T *fr));
9762static int ses_do_win __ARGS((win_T *wp));
9763static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9764static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9765static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9766
9767/*
9768 * Write openfile commands for the current buffers to an .exrc file.
9769 * Return FAIL on error, OK otherwise.
9770 */
9771 static int
9772makeopens(fd, dirnow)
9773 FILE *fd;
9774 char_u *dirnow; /* Current directory name */
9775{
9776 buf_T *buf;
9777 int only_save_windows = TRUE;
9778 int nr;
9779 int cnr = 1;
9780 int restore_size = TRUE;
9781 win_T *wp;
9782 char_u *sname;
9783 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009784 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009785 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009786 frame_T *tab_topframe;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009787 int cur_arg_idx = 0;
Bram Moolenaar383c6f52008-01-04 15:01:07 +00009788 int next_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009789
9790 if (ssop_flags & SSOP_BUFFERS)
9791 only_save_windows = FALSE; /* Save ALL buffers */
9792
9793 /*
9794 * Begin by setting the this_session variable, and then other
9795 * sessionable variables.
9796 */
9797#ifdef FEAT_EVAL
9798 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9799 return FAIL;
9800 if (ssop_flags & SSOP_GLOBALS)
9801 if (store_session_globals(fd) == FAIL)
9802 return FAIL;
9803#endif
9804
9805 /*
9806 * Close all windows but one.
9807 */
9808 if (put_line(fd, "silent only") == FAIL)
9809 return FAIL;
9810
9811 /*
9812 * Now a :cd command to the session directory or the current directory
9813 */
9814 if (ssop_flags & SSOP_SESDIR)
9815 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009816 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9817 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009818 return FAIL;
9819 }
9820 else if (ssop_flags & SSOP_CURDIR)
9821 {
9822 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9823 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009824 || fputs("cd ", fd) < 0
9825 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9826 || put_eol(fd) == FAIL)
9827 {
9828 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009829 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009831 vim_free(sname);
9832 }
9833
9834 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009835 * If there is an empty, unnamed buffer we will wipe it out later.
9836 * Remember the buffer number.
9837 */
9838 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9839 return FAIL;
9840 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9841 return FAIL;
9842 if (put_line(fd, "endif") == FAIL)
9843 return FAIL;
9844
9845 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009846 * Now save the current files, current buffer first.
9847 */
9848 if (put_line(fd, "set shortmess=aoO") == FAIL)
9849 return FAIL;
9850
9851 /* Now put the other buffers into the buffer list */
9852 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9853 {
9854 if (!(only_save_windows && buf->b_nwindows == 0)
9855 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9856 && buf->b_fname != NULL
9857 && buf->b_p_bl)
9858 {
9859 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9860 : buf->b_wininfo->wi_fpos.lnum) < 0
9861 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9862 return FAIL;
9863 }
9864 }
9865
9866 /* the global argument list */
9867 if (ses_arglist(fd, "args", &global_alist.al_ga,
9868 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9869 return FAIL;
9870
9871 if (ssop_flags & SSOP_RESIZE)
9872 {
9873 /* Note: after the restore we still check it worked!*/
9874 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9875 || put_eol(fd) == FAIL)
9876 return FAIL;
9877 }
9878
9879#ifdef FEAT_GUI
9880 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9881 {
9882 int x, y;
9883
9884 if (gui_mch_get_winpos(&x, &y) == OK)
9885 {
9886 /* Note: after the restore we still check it worked!*/
9887 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9888 return FAIL;
9889 }
9890 }
9891#endif
9892
9893 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009894 * May repeat putting Windows for each tab, when "tabpages" is in
9895 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009896 * Don't use goto_tabpage(), it may change directory and trigger
9897 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009898 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009899 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009900 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009901 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009902 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009903 int need_tabnew = FALSE;
9904
Bram Moolenaar18144c82006-04-12 21:52:12 +00009905 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009906 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009907 tabpage_T *tp = find_tabpage(tabnr);
9908
9909 if (tp == NULL)
9910 break; /* done all tab pages */
9911 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009912 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009913 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009914 tab_topframe = topframe;
9915 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009916 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009917 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009918 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009919 tab_topframe = tp->tp_topframe;
9920 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009921 if (tabnr > 1)
9922 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009923 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009924
Bram Moolenaar18144c82006-04-12 21:52:12 +00009925 /*
9926 * Before creating the window layout, try loading one file. If this
9927 * is aborted we don't end up with a number of useless windows.
9928 * This may have side effects! (e.g., compressed or network file).
9929 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009930 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009931 {
9932 if (ses_do_win(wp)
9933 && wp->w_buffer->b_ffname != NULL
9934 && !wp->w_buffer->b_help
9935#ifdef FEAT_QUICKFIX
9936 && !bt_nofile(wp->w_buffer)
9937#endif
9938 )
9939 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009940 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009941 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9942 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009943 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009944 if (!wp->w_arg_idx_invalid)
9945 edited_win = wp;
9946 break;
9947 }
9948 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009949
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009950 /* If no file got edited create an empty tab page. */
9951 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9952 return FAIL;
9953
Bram Moolenaar18144c82006-04-12 21:52:12 +00009954 /*
9955 * Save current window layout.
9956 */
9957 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009958 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009959 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009960 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009961 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
9962 return FAIL;
9963 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
9964 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009965
Bram Moolenaar18144c82006-04-12 21:52:12 +00009966 /*
9967 * Check if window sizes can be restored (no windows omitted).
9968 * Remember the window number of the current window after restoring.
9969 */
9970 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009971 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009972 {
9973 if (ses_do_win(wp))
9974 ++nr;
9975 else
9976 restore_size = FALSE;
9977 if (curwin == wp)
9978 cnr = nr;
9979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009980
Bram Moolenaar18144c82006-04-12 21:52:12 +00009981 /* Go to the first window. */
9982 if (put_line(fd, "wincmd t") == FAIL)
9983 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009984
Bram Moolenaar18144c82006-04-12 21:52:12 +00009985 /*
9986 * If more than one window, see if sizes can be restored.
9987 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
9988 * resized when moving between windows.
9989 * Do this before restoring the view, so that the topline and the
9990 * cursor can be set. This is done again below.
9991 */
9992 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
9993 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009994 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009995 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009996
Bram Moolenaar18144c82006-04-12 21:52:12 +00009997 /*
9998 * Restore the view of the window (options, file, cursor, etc.).
9999 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010000 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010001 {
10002 if (!ses_do_win(wp))
10003 continue;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010004 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
10005 cur_arg_idx) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010006 return FAIL;
10007 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
10008 return FAIL;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010009 next_arg_idx = wp->w_arg_idx;
Bram Moolenaar18144c82006-04-12 21:52:12 +000010010 }
10011
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010012 /* The argument index in the first tab page is zero, need to set it in
10013 * each window. For further tab pages it's the window where we do
10014 * "tabedit". */
10015 cur_arg_idx = next_arg_idx;
10016
Bram Moolenaar18144c82006-04-12 21:52:12 +000010017 /*
10018 * Restore cursor to the current window if it's not the first one.
10019 */
10020 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
10021 || put_eol(fd) == FAIL))
10022 return FAIL;
10023
10024 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000010025 * Restore window sizes again after jumping around in windows, because
10026 * the current window has a minimum size while others may not.
10027 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010028 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010029 return FAIL;
10030
Bram Moolenaar18144c82006-04-12 21:52:12 +000010031 /* Don't continue in another tab page when doing only the current one
10032 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010033 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +000010034 break;
10035 }
10036
10037 if (ssop_flags & SSOP_TABPAGES)
10038 {
Bram Moolenaar18144c82006-04-12 21:52:12 +000010039 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
10040 || put_eol(fd) == FAIL)
10041 return FAIL;
10042 }
10043
Bram Moolenaar9c102382006-05-03 21:26:49 +000010044 /*
10045 * Wipe out an empty unnamed buffer we started in.
10046 */
10047 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
10048 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +000010049 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +000010050 return FAIL;
10051 if (put_line(fd, "endif") == FAIL)
10052 return FAIL;
10053 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
10054 return FAIL;
10055
10056 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10057 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10058 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10059 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010060
10061 /*
10062 * Lastly, execute the x.vim file if it exists.
10063 */
10064 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10065 || put_line(fd, "if file_readable(s:sx)") == FAIL
10066 || put_line(fd, " exe \"source \" . s:sx") == FAIL
10067 || put_line(fd, "endif") == FAIL)
10068 return FAIL;
10069
10070 return OK;
10071}
10072
10073 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010074ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010075 FILE *fd;
10076 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010077 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010078{
10079 int n = 0;
10080 win_T *wp;
10081
10082 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10083 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010084 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010085 {
10086 if (!ses_do_win(wp))
10087 continue;
10088 ++n;
10089
10090 /* restore height when not full height */
10091 if (wp->w_height + wp->w_status_height < topframe->fr_height
10092 && (fprintf(fd,
10093 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10094 n, (long)wp->w_height, Rows / 2, Rows) < 0
10095 || put_eol(fd) == FAIL))
10096 return FAIL;
10097
10098 /* restore width when not full width */
10099 if (wp->w_width < Columns && (fprintf(fd,
10100 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10101 n, (long)wp->w_width, Columns / 2, Columns) < 0
10102 || put_eol(fd) == FAIL))
10103 return FAIL;
10104 }
10105 }
10106 else
10107 {
10108 /* Just equalise window sizes */
10109 if (put_line(fd, "wincmd =") == FAIL)
10110 return FAIL;
10111 }
10112 return OK;
10113}
10114
10115/*
10116 * Write commands to "fd" to recursively create windows for frame "fr",
10117 * horizontally and vertically split.
10118 * After the commands the last window in the frame is the current window.
10119 * Returns FAIL when writing the commands to "fd" fails.
10120 */
10121 static int
10122ses_win_rec(fd, fr)
10123 FILE *fd;
10124 frame_T *fr;
10125{
10126 frame_T *frc;
10127 int count = 0;
10128
10129 if (fr->fr_layout != FR_LEAF)
10130 {
10131 /* Find first frame that's not skipped and then create a window for
10132 * each following one (first frame is already there). */
10133 frc = ses_skipframe(fr->fr_child);
10134 if (frc != NULL)
10135 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10136 {
10137 /* Make window as big as possible so that we have lots of room
10138 * to split. */
10139 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10140 || put_line(fd, fr->fr_layout == FR_COL
10141 ? "split" : "vsplit") == FAIL)
10142 return FAIL;
10143 ++count;
10144 }
10145
10146 /* Go back to the first window. */
10147 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10148 ? "%dwincmd k" : "%dwincmd h", count) < 0
10149 || put_eol(fd) == FAIL))
10150 return FAIL;
10151
10152 /* Recursively create frames/windows in each window of this column or
10153 * row. */
10154 frc = ses_skipframe(fr->fr_child);
10155 while (frc != NULL)
10156 {
10157 ses_win_rec(fd, frc);
10158 frc = ses_skipframe(frc->fr_next);
10159 /* Go to next window. */
10160 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10161 return FAIL;
10162 }
10163 }
10164 return OK;
10165}
10166
10167/*
10168 * Skip frames that don't contain windows we want to save in the Session.
10169 * Returns NULL when there none.
10170 */
10171 static frame_T *
10172ses_skipframe(fr)
10173 frame_T *fr;
10174{
10175 frame_T *frc;
10176
10177 for (frc = fr; frc != NULL; frc = frc->fr_next)
10178 if (ses_do_frame(frc))
10179 break;
10180 return frc;
10181}
10182
10183/*
10184 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10185 * the Session.
10186 */
10187 static int
10188ses_do_frame(fr)
10189 frame_T *fr;
10190{
10191 frame_T *frc;
10192
10193 if (fr->fr_layout == FR_LEAF)
10194 return ses_do_win(fr->fr_win);
10195 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10196 if (ses_do_frame(frc))
10197 return TRUE;
10198 return FALSE;
10199}
10200
10201/*
10202 * Return non-zero if window "wp" is to be stored in the Session.
10203 */
10204 static int
10205ses_do_win(wp)
10206 win_T *wp;
10207{
10208 if (wp->w_buffer->b_fname == NULL
10209#ifdef FEAT_QUICKFIX
10210 /* When 'buftype' is "nofile" can't restore the window contents. */
10211 || bt_nofile(wp->w_buffer)
10212#endif
10213 )
10214 return (ssop_flags & SSOP_BLANK);
10215 if (wp->w_buffer->b_help)
10216 return (ssop_flags & SSOP_HELP);
10217 return TRUE;
10218}
10219
10220/*
10221 * Write commands to "fd" to restore the view of a window.
10222 * Caller must make sure 'scrolloff' is zero.
10223 */
10224 static int
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010225put_view(fd, wp, add_edit, flagp, current_arg_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010226 FILE *fd;
10227 win_T *wp;
10228 int add_edit; /* add ":edit" command to view */
10229 unsigned *flagp; /* vop_flags or ssop_flags */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010230 int current_arg_idx; /* current argument index of the window, use
10231 * -1 if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010232{
10233 win_T *save_curwin;
10234 int f;
10235 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010236 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010237
10238 /* Always restore cursor position for ":mksession". For ":mkview" only
10239 * when 'viewoptions' contains "cursor". */
10240 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10241
10242 /*
10243 * Local argument list.
10244 */
10245 if (wp->w_alist == &global_alist)
10246 {
10247 if (put_line(fd, "argglobal") == FAIL)
10248 return FAIL;
10249 }
10250 else
10251 {
10252 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10253 flagp == &vop_flags
10254 || !(*flagp & SSOP_CURDIR)
10255 || wp->w_localdir != NULL, flagp) == FAIL)
10256 return FAIL;
10257 }
10258
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010259 /* Only when part of a session: restore the argument index. Some
10260 * arguments may have been deleted, check if the index is valid. */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010261 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx <= WARGCOUNT(wp)
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010262 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010263 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010264 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000010265 || put_eol(fd) == FAIL)
10266 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010267 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010268 }
10269
10270 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010271 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010272 {
10273 /*
10274 * Load the file.
10275 */
10276 if (wp->w_buffer->b_ffname != NULL
10277#ifdef FEAT_QUICKFIX
10278 && !bt_nofile(wp->w_buffer)
10279#endif
10280 )
10281 {
10282 /*
10283 * Editing a file in this buffer: use ":edit file".
10284 * This may have side effects! (e.g., compressed or network file).
10285 */
10286 if (fputs("edit ", fd) < 0
10287 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10288 return FAIL;
10289 }
10290 else
10291 {
10292 /* No file in this buffer, just make it empty. */
10293 if (put_line(fd, "enew") == FAIL)
10294 return FAIL;
10295#ifdef FEAT_QUICKFIX
10296 if (wp->w_buffer->b_ffname != NULL)
10297 {
10298 /* The buffer does have a name, but it's not a file name. */
10299 if (fputs("file ", fd) < 0
10300 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10301 return FAIL;
10302 }
10303#endif
10304 do_cursor = FALSE;
10305 }
10306 }
10307
10308 /*
10309 * Local mappings and abbreviations.
10310 */
10311 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10312 && makemap(fd, wp->w_buffer) == FAIL)
10313 return FAIL;
10314
10315 /*
10316 * Local options. Need to go to the window temporarily.
10317 * Store only local values when using ":mkview" and when ":mksession" is
10318 * used and 'sessionoptions' doesn't include "options".
10319 * Some folding options are always stored when "folds" is included,
10320 * otherwise the folds would not be restored correctly.
10321 */
10322 save_curwin = curwin;
10323 curwin = wp;
10324 curbuf = curwin->w_buffer;
10325 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10326 f = makeset(fd, OPT_LOCAL,
10327 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10328#ifdef FEAT_FOLDING
10329 else if (*flagp & SSOP_FOLDS)
10330 f = makefoldset(fd);
10331#endif
10332 else
10333 f = OK;
10334 curwin = save_curwin;
10335 curbuf = curwin->w_buffer;
10336 if (f == FAIL)
10337 return FAIL;
10338
10339#ifdef FEAT_FOLDING
10340 /*
10341 * Save Folds when 'buftype' is empty and for help files.
10342 */
10343 if ((*flagp & SSOP_FOLDS)
10344 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010345# ifdef FEAT_QUICKFIX
10346 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10347# endif
10348 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010349 {
10350 if (put_folds(fd, wp) == FAIL)
10351 return FAIL;
10352 }
10353#endif
10354
10355 /*
10356 * Set the cursor after creating folds, since that moves the cursor.
10357 */
10358 if (do_cursor)
10359 {
10360
10361 /* Restore the cursor line in the file and relatively in the
10362 * window. Don't use "G", it changes the jumplist. */
10363 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10364 (long)wp->w_cursor.lnum,
10365 (long)(wp->w_cursor.lnum - wp->w_topline),
10366 (long)wp->w_height / 2, (long)wp->w_height) < 0
10367 || put_eol(fd) == FAIL
10368 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10369 || put_line(fd, "exe s:l") == FAIL
10370 || put_line(fd, "normal! zt") == FAIL
10371 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10372 || put_eol(fd) == FAIL)
10373 return FAIL;
10374 /* Restore the cursor column and left offset when not wrapping. */
10375 if (wp->w_cursor.col == 0)
10376 {
10377 if (put_line(fd, "normal! 0") == FAIL)
10378 return FAIL;
10379 }
10380 else
10381 {
10382 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10383 {
10384 if (fprintf(fd,
10385 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10386 (long)wp->w_cursor.col,
10387 (long)(wp->w_cursor.col - wp->w_leftcol),
10388 (long)wp->w_width / 2, (long)wp->w_width) < 0
10389 || put_eol(fd) == FAIL
10390 || put_line(fd, "if s:c > 0") == FAIL
10391 || fprintf(fd,
10392 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10393 (long)wp->w_cursor.col) < 0
10394 || put_eol(fd) == FAIL
10395 || put_line(fd, "else") == FAIL
10396 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10397 || put_eol(fd) == FAIL
10398 || put_line(fd, "endif") == FAIL)
10399 return FAIL;
10400 }
10401 else
10402 {
10403 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10404 || put_eol(fd) == FAIL)
10405 return FAIL;
10406 }
10407 }
10408 }
10409
10410 /*
10411 * Local directory.
10412 */
10413 if (wp->w_localdir != NULL)
10414 {
10415 if (fputs("lcd ", fd) < 0
10416 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10417 || put_eol(fd) == FAIL)
10418 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010419 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010420 }
10421
10422 return OK;
10423}
10424
10425/*
10426 * Write an argument list to the session file.
10427 * Returns FAIL if writing fails.
10428 */
10429 static int
10430ses_arglist(fd, cmd, gap, fullname, flagp)
10431 FILE *fd;
10432 char *cmd;
10433 garray_T *gap;
10434 int fullname; /* TRUE: use full path name */
10435 unsigned *flagp;
10436{
10437 int i;
10438 char_u buf[MAXPATHL];
10439 char_u *s;
10440
10441 if (gap->ga_len == 0)
10442 return put_line(fd, "silent! argdel *");
10443 if (fputs(cmd, fd) < 0)
10444 return FAIL;
10445 for (i = 0; i < gap->ga_len; ++i)
10446 {
10447 /* NULL file names are skipped (only happens when out of memory). */
10448 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10449 if (s != NULL)
10450 {
10451 if (fullname)
10452 {
10453 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10454 s = buf;
10455 }
10456 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10457 return FAIL;
10458 }
10459 }
10460 return put_eol(fd);
10461}
10462
10463/*
10464 * Write a buffer name to the session file.
10465 * Also ends the line.
10466 * Returns FAIL if writing fails.
10467 */
10468 static int
10469ses_fname(fd, buf, flagp)
10470 FILE *fd;
10471 buf_T *buf;
10472 unsigned *flagp;
10473{
10474 char_u *name;
10475
10476 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010477 * the session file will be sourced.
10478 * Don't do this for ":mkview", we don't know the current directory.
10479 * Don't do this after ":lcd", we don't keep track of what the current
10480 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010481 if (buf->b_sfname != NULL
10482 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010483 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10484 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010485 name = buf->b_sfname;
10486 else
10487 name = buf->b_ffname;
10488 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10489 return FAIL;
10490 return OK;
10491}
10492
10493/*
10494 * Write a file name to the session file.
10495 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10496 * characters.
10497 * Returns FAIL if writing fails.
10498 */
10499 static int
10500ses_put_fname(fd, name, flagp)
10501 FILE *fd;
10502 char_u *name;
10503 unsigned *flagp;
10504{
10505 char_u *sname;
10506 int retval = OK;
10507 int c;
10508
10509 sname = home_replace_save(NULL, name);
10510 if (sname != NULL)
10511 name = sname;
10512 while (*name != NUL)
10513 {
10514#ifdef FEAT_MBYTE
10515 {
10516 int l;
10517
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010518 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010519 {
10520 /* copy a multibyte char */
10521 while (--l >= 0)
10522 {
10523 if (putc(*name, fd) != *name)
10524 retval = FAIL;
10525 ++name;
10526 }
10527 continue;
10528 }
10529 }
10530#endif
10531 c = *name++;
10532 if (c == '\\' && (*flagp & SSOP_SLASH))
10533 /* change a backslash to a forward slash */
10534 c = '/';
10535 else if ((vim_strchr(escape_chars, c) != NULL
10536#ifdef BACKSLASH_IN_FILENAME
10537 && c != '\\'
10538#endif
10539 ) || c == '#' || c == '%')
10540 {
10541 /* escape a special character with a backslash */
10542 if (putc('\\', fd) != '\\')
10543 retval = FAIL;
10544 }
10545 if (putc(c, fd) != c)
10546 retval = FAIL;
10547 }
10548 vim_free(sname);
10549 return retval;
10550}
10551
10552/*
10553 * ":loadview [nr]"
10554 */
10555 static void
10556ex_loadview(eap)
10557 exarg_T *eap;
10558{
10559 char_u *fname;
10560
10561 fname = get_view_file(*eap->arg);
10562 if (fname != NULL)
10563 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010564 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010565 vim_free(fname);
10566 }
10567}
10568
10569/*
10570 * Get the name of the view file for the current buffer.
10571 */
10572 static char_u *
10573get_view_file(c)
10574 int c;
10575{
10576 int len = 0;
10577 char_u *p, *s;
10578 char_u *retval;
10579 char_u *sname;
10580
10581 if (curbuf->b_ffname == NULL)
10582 {
10583 EMSG(_(e_noname));
10584 return NULL;
10585 }
10586 sname = home_replace_save(NULL, curbuf->b_ffname);
10587 if (sname == NULL)
10588 return NULL;
10589
10590 /*
10591 * We want a file name without separators, because we're not going to make
10592 * a directory.
10593 * "normal" path separator -> "=+"
10594 * "=" -> "=="
10595 * ":" path separator -> "=-"
10596 */
10597 for (p = sname; *p; ++p)
10598 if (*p == '=' || vim_ispathsep(*p))
10599 ++len;
10600 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10601 if (retval != NULL)
10602 {
10603 STRCPY(retval, p_vdir);
10604 add_pathsep(retval);
10605 s = retval + STRLEN(retval);
10606 for (p = sname; *p; ++p)
10607 {
10608 if (*p == '=')
10609 {
10610 *s++ = '=';
10611 *s++ = '=';
10612 }
10613 else if (vim_ispathsep(*p))
10614 {
10615 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010616#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010617 || defined(VMS)
10618 if (*p == ':')
10619 *s++ = '-';
10620 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010621#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010622 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010623 }
10624 else
10625 *s++ = *p;
10626 }
10627 *s++ = '=';
10628 *s++ = c;
10629 STRCPY(s, ".vim");
10630 }
10631
10632 vim_free(sname);
10633 return retval;
10634}
10635
10636#endif /* FEAT_SESSION */
10637
10638/*
10639 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10640 * Return FAIL for a write error.
10641 */
10642 int
10643put_eol(fd)
10644 FILE *fd;
10645{
10646 if (
10647#ifdef USE_CRNL
10648 (
10649# ifdef MKSESSION_NL
10650 !mksession_nl &&
10651# endif
10652 (putc('\r', fd) < 0)) ||
10653#endif
10654 (putc('\n', fd) < 0))
10655 return FAIL;
10656 return OK;
10657}
10658
10659/*
10660 * Write a line to "fd".
10661 * Return FAIL for a write error.
10662 */
10663 int
10664put_line(fd, s)
10665 FILE *fd;
10666 char *s;
10667{
10668 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10669 return FAIL;
10670 return OK;
10671}
10672
10673#ifdef FEAT_VIMINFO
10674/*
10675 * ":rviminfo" and ":wviminfo".
10676 */
10677 static void
10678ex_viminfo(eap)
10679 exarg_T *eap;
10680{
10681 char_u *save_viminfo;
10682
10683 save_viminfo = p_viminfo;
10684 if (*p_viminfo == NUL)
10685 p_viminfo = (char_u *)"'100";
10686 if (eap->cmdidx == CMD_rviminfo)
10687 {
10688 if (read_viminfo(eap->arg, TRUE, TRUE, eap->forceit) == FAIL)
10689 EMSG(_("E195: Cannot open viminfo file for reading"));
10690 }
10691 else
10692 write_viminfo(eap->arg, eap->forceit);
10693 p_viminfo = save_viminfo;
10694}
10695#endif
10696
10697#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010698/*
10699 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010700 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010701 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010702 void
10703dialog_msg(buff, format, fname)
10704 char_u *buff;
10705 char *format;
10706 char_u *fname;
10707{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010708 if (fname == NULL)
10709 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010710 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010711}
10712#endif
10713
10714/*
10715 * ":behave {mswin,xterm}"
10716 */
10717 static void
10718ex_behave(eap)
10719 exarg_T *eap;
10720{
10721 if (STRCMP(eap->arg, "mswin") == 0)
10722 {
10723 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10724 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10725 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10726 set_option_value((char_u *)"keymodel", 0L,
10727 (char_u *)"startsel,stopsel", 0);
10728 }
10729 else if (STRCMP(eap->arg, "xterm") == 0)
10730 {
10731 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10732 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10733 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10734 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10735 }
10736 else
10737 EMSG2(_(e_invarg2), eap->arg);
10738}
10739
10740#ifdef FEAT_AUTOCMD
10741static int filetype_detect = FALSE;
10742static int filetype_plugin = FALSE;
10743static int filetype_indent = FALSE;
10744
10745/*
10746 * ":filetype [plugin] [indent] {on,off,detect}"
10747 * on: Load the filetype.vim file to install autocommands for file types.
10748 * off: Load the ftoff.vim file to remove all autocommands for file types.
10749 * plugin on: load filetype.vim and ftplugin.vim
10750 * plugin off: load ftplugof.vim
10751 * indent on: load filetype.vim and indent.vim
10752 * indent off: load indoff.vim
10753 */
10754 static void
10755ex_filetype(eap)
10756 exarg_T *eap;
10757{
10758 char_u *arg = eap->arg;
10759 int plugin = FALSE;
10760 int indent = FALSE;
10761
10762 if (*eap->arg == NUL)
10763 {
10764 /* Print current status. */
10765 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10766 filetype_detect ? "ON" : "OFF",
10767 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10768 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10769 return;
10770 }
10771
10772 /* Accept "plugin" and "indent" in any order. */
10773 for (;;)
10774 {
10775 if (STRNCMP(arg, "plugin", 6) == 0)
10776 {
10777 plugin = TRUE;
10778 arg = skipwhite(arg + 6);
10779 continue;
10780 }
10781 if (STRNCMP(arg, "indent", 6) == 0)
10782 {
10783 indent = TRUE;
10784 arg = skipwhite(arg + 6);
10785 continue;
10786 }
10787 break;
10788 }
10789 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10790 {
10791 if (*arg == 'o' || !filetype_detect)
10792 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010793 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010794 filetype_detect = TRUE;
10795 if (plugin)
10796 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010797 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010798 filetype_plugin = TRUE;
10799 }
10800 if (indent)
10801 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010802 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010803 filetype_indent = TRUE;
10804 }
10805 }
10806 if (*arg == 'd')
10807 {
10808 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010809 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010810 }
10811 }
10812 else if (STRCMP(arg, "off") == 0)
10813 {
10814 if (plugin || indent)
10815 {
10816 if (plugin)
10817 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010818 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010819 filetype_plugin = FALSE;
10820 }
10821 if (indent)
10822 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010823 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010824 filetype_indent = FALSE;
10825 }
10826 }
10827 else
10828 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010829 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010830 filetype_detect = FALSE;
10831 }
10832 }
10833 else
10834 EMSG2(_(e_invarg2), arg);
10835}
10836
10837/*
10838 * ":setfiletype {name}"
10839 */
10840 static void
10841ex_setfiletype(eap)
10842 exarg_T *eap;
10843{
10844 if (!did_filetype)
10845 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10846}
10847#endif
10848
10849/*ARGSUSED*/
10850 static void
10851ex_digraphs(eap)
10852 exarg_T *eap;
10853{
10854#ifdef FEAT_DIGRAPHS
10855 if (*eap->arg != NUL)
10856 putdigraph(eap->arg);
10857 else
10858 listdigraphs();
10859#else
10860 EMSG(_("E196: No digraphs in this version"));
10861#endif
10862}
10863
10864 static void
10865ex_set(eap)
10866 exarg_T *eap;
10867{
10868 int flags = 0;
10869
10870 if (eap->cmdidx == CMD_setlocal)
10871 flags = OPT_LOCAL;
10872 else if (eap->cmdidx == CMD_setglobal)
10873 flags = OPT_GLOBAL;
10874#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10875 if (cmdmod.browse && flags == 0)
10876 ex_options(eap);
10877 else
10878#endif
10879 (void)do_set(eap->arg, flags);
10880}
10881
10882#ifdef FEAT_SEARCH_EXTRA
10883/*
10884 * ":nohlsearch"
10885 */
10886/*ARGSUSED*/
10887 static void
10888ex_nohlsearch(eap)
10889 exarg_T *eap;
10890{
10891 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010892 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010893}
10894
10895/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010896 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010897 * Sets nextcmd to the start of the next command, if any. Also called when
10898 * skipping commands to find the next command.
10899 */
10900 static void
10901ex_match(eap)
10902 exarg_T *eap;
10903{
10904 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000010905 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010906 char_u *end;
10907 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010908 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010909
10910 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010911 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010912 else
10913 {
10914 EMSG(e_invcmd);
10915 return;
10916 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010917
10918 /* First clear any old pattern. */
10919 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010920 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010921
10922 if (ends_excmd(*eap->arg))
10923 end = eap->arg;
10924 else if ((STRNICMP(eap->arg, "none", 4) == 0
10925 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10926 end = eap->arg + 4;
10927 else
10928 {
10929 p = skiptowhite(eap->arg);
10930 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010931 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010932 p = skipwhite(p);
10933 if (*p == NUL)
10934 {
10935 /* There must be two arguments. */
10936 EMSG2(_(e_invarg2), eap->arg);
10937 return;
10938 }
10939 end = skip_regexp(p + 1, *p, TRUE, NULL);
10940 if (!eap->skip)
10941 {
10942 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10943 {
10944 eap->errmsg = e_trailing;
10945 return;
10946 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010947 if (*end != *p)
10948 {
10949 EMSG2(_(e_invarg2), p);
10950 return;
10951 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010952
10953 c = *end;
10954 *end = NUL;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010955 match_add(curwin, g, p + 1, 10, id);
10956 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010957 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010958 }
10959 }
10960 eap->nextcmd = find_nextcmd(end);
10961}
10962#endif
10963
10964#ifdef FEAT_CRYPT
10965/*
10966 * ":X": Get crypt key
10967 */
10968/*ARGSUSED*/
10969 static void
10970ex_X(eap)
10971 exarg_T *eap;
10972{
10973 (void)get_crypt_key(TRUE, TRUE);
10974}
10975#endif
10976
10977#ifdef FEAT_FOLDING
10978 static void
10979ex_fold(eap)
10980 exarg_T *eap;
10981{
10982 if (foldManualAllowed(TRUE))
10983 foldCreate(eap->line1, eap->line2);
10984}
10985
10986 static void
10987ex_foldopen(eap)
10988 exarg_T *eap;
10989{
10990 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
10991 eap->forceit, FALSE);
10992}
10993
10994 static void
10995ex_folddo(eap)
10996 exarg_T *eap;
10997{
10998 linenr_T lnum;
10999
11000 /* First set the marks for all lines closed/open. */
11001 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
11002 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
11003 ml_setmarked(lnum);
11004
11005 /* Execute the command on the marked lines. */
11006 global_exe(eap->arg);
11007 ml_clearmarked(); /* clear rest of the marks */
11008}
11009#endif