blob: c6cbd0d493f4e4269fbff2335a20f0a07d2fe224 [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},
Bram Moolenaarca9f9582008-09-18 10:44:28 +00002981 {"noautocmd", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00002982 {"rightbelow", 6, FALSE},
2983 {"sandbox", 3, FALSE},
2984 {"silent", 3, FALSE},
2985 {"tab", 3, TRUE},
2986 {"topleft", 2, FALSE},
2987 {"verbose", 4, TRUE},
2988 {"vertical", 4, FALSE},
2989};
2990
2991/*
2992 * Return length of a command modifier (including optional count).
2993 * Return zero when it's not a modifier.
2994 */
2995 int
2996modifier_len(cmd)
2997 char_u *cmd;
2998{
2999 int i, j;
3000 char_u *p = cmd;
3001
3002 if (VIM_ISDIGIT(*cmd))
3003 p = skipwhite(skipdigits(cmd));
3004 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3005 {
3006 for (j = 0; p[j] != NUL; ++j)
3007 if (p[j] != cmdmods[i].name[j])
3008 break;
3009 if (!isalpha(p[j]) && j >= cmdmods[i].minlen
3010 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003011 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003012 }
3013 return 0;
3014}
3015
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016/*
3017 * Return > 0 if an Ex command "name" exists.
3018 * Return 2 if there is an exact match.
3019 * Return 3 if there is an ambiguous match.
3020 */
3021 int
3022cmd_exists(name)
3023 char_u *name;
3024{
3025 exarg_T ea;
3026 int full = FALSE;
3027 int i;
3028 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003029 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030
3031 /* Check command modifiers. */
3032 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3033 {
3034 for (j = 0; name[j] != NUL; ++j)
3035 if (name[j] != cmdmods[i].name[j])
3036 break;
3037 if (name[j] == NUL && j >= cmdmods[i].minlen)
3038 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3039 }
3040
Bram Moolenaara9587612006-05-04 21:47:50 +00003041 /* Check built-in commands and user defined commands.
3042 * For ":2match" and ":3match" we need to skip the number. */
3043 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003044 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003045 p = find_command(&ea, &full);
3046 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003048 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3049 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003050 if (*skipwhite(p) != NUL)
3051 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3053}
3054#endif
3055
3056/*
3057 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3058 * we don't need/want deleted. Maybe this could be done better if we didn't
3059 * repeat all this stuff. The only problem is that they may not stay
3060 * perfectly compatible with each other, but then the command line syntax
3061 * probably won't change that much -- webb.
3062 */
3063 char_u *
3064set_one_cmd_context(xp, buff)
3065 expand_T *xp;
3066 char_u *buff; /* buffer for command string */
3067{
3068 char_u *p;
3069 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003070 int len = 0;
3071 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3073 int compl = EXPAND_NOTHING;
3074#endif
3075#ifdef FEAT_CMDL_COMPL
3076 int delim;
3077#endif
3078 int forceit = FALSE;
3079 int usefilter = FALSE; /* filter instead of file name */
3080
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003081 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003082 xp->xp_pattern = buff;
3083 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003084 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085
3086/*
3087 * 2. skip comment lines and leading space, colons or bars
3088 */
3089 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3090 ;
3091 xp->xp_pattern = cmd;
3092
3093 if (*cmd == NUL)
3094 return NULL;
3095 if (*cmd == '"') /* ignore comment lines */
3096 {
3097 xp->xp_context = EXPAND_NOTHING;
3098 return NULL;
3099 }
3100
3101/*
3102 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3103 */
3104 cmd = skip_range(cmd, &xp->xp_context);
3105
3106/*
3107 * 4. parse command
3108 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 xp->xp_pattern = cmd;
3110 if (*cmd == NUL)
3111 return NULL;
3112 if (*cmd == '"')
3113 {
3114 xp->xp_context = EXPAND_NOTHING;
3115 return NULL;
3116 }
3117
3118 if (*cmd == '|' || *cmd == '\n')
3119 return cmd + 1; /* There's another command */
3120
3121 /*
3122 * Isolate the command and search for it in the command table.
3123 * Exceptions:
3124 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003125 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3127 */
3128 if (*cmd == 'k' && cmd[1] != 'e')
3129 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003130 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 p = cmd + 1;
3132 }
3133 else
3134 {
3135 p = cmd;
3136 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3137 ++p;
3138 /* check for non-alpha command */
3139 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3140 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003141 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003143 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003144 {
3145 xp->xp_context = EXPAND_UNSUCCESSFUL;
3146 return NULL;
3147 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003148 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3149 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3150 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 break;
3152
3153#ifdef FEAT_USR_CMDS
3154 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3155 {
3156 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3157 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003158 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 }
3160#endif
3161 }
3162
3163 /*
3164 * If the cursor is touching the command, and it ends in an alpha-numeric
3165 * character, complete the command name.
3166 */
3167 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3168 return NULL;
3169
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003170 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 {
3172 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3173 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003174 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 p = cmd + 1;
3176 }
3177#ifdef FEAT_USR_CMDS
3178 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3179 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003180 ea.cmd = cmd;
3181 p = find_ucmd(&ea, p, NULL, xp,
3182# if defined(FEAT_CMDL_COMPL)
3183 &compl
3184# else
3185 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003187 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003188 if (p == NULL)
3189 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 }
3191#endif
3192 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003193 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 {
3195 /* Not still touching the command and it was an illegal one */
3196 xp->xp_context = EXPAND_UNSUCCESSFUL;
3197 return NULL;
3198 }
3199
3200 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3201
3202 if (*p == '!') /* forced commands */
3203 {
3204 forceit = TRUE;
3205 ++p;
3206 }
3207
3208/*
3209 * 5. parse arguments
3210 */
3211#ifdef FEAT_USR_CMDS
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003212 if (!USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003214 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215
3216 arg = skipwhite(p);
3217
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003218 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 {
3220 if (*arg == '>') /* append */
3221 {
3222 if (*++arg == '>')
3223 ++arg;
3224 arg = skipwhite(arg);
3225 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003226 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 {
3228 ++arg;
3229 usefilter = TRUE;
3230 }
3231 }
3232
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003233 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 {
3235 usefilter = forceit; /* :r! filter if forced */
3236 if (*arg == '!') /* :r !filter */
3237 {
3238 ++arg;
3239 usefilter = TRUE;
3240 }
3241 }
3242
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003243 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244 {
3245 while (*arg == *cmd) /* allow any number of '>' or '<' */
3246 ++arg;
3247 arg = skipwhite(arg);
3248 }
3249
3250 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003251 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 {
3253 /* Check if we're in the +command */
3254 p = arg + 1;
3255 arg = skip_cmd_arg(arg, FALSE);
3256
3257 /* Still touching the command after '+'? */
3258 if (*arg == NUL)
3259 return p;
3260
3261 /* Skip space(s) after +command to get to the real argument */
3262 arg = skipwhite(arg);
3263 }
3264
3265 /*
3266 * Check for '|' to separate commands and '"' to start comments.
3267 * Don't do this for ":read !cmd" and ":write !cmd".
3268 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003269 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 {
3271 p = arg;
3272 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003273 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003274 p += 2;
3275 while (*p)
3276 {
3277 if (*p == Ctrl_V)
3278 {
3279 if (p[1] != NUL)
3280 ++p;
3281 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003282 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 || *p == '|' || *p == '\n')
3284 {
3285 if (*(p - 1) != '\\')
3286 {
3287 if (*p == '|' || *p == '\n')
3288 return p + 1;
3289 return NULL; /* It's a comment */
3290 }
3291 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003292 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293 }
3294 }
3295
3296 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003297 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 vim_strchr((char_u *)"|\"", *arg) == NULL)
3299 return NULL;
3300
3301 /* Find start of last argument (argument just before cursor): */
3302 p = buff + STRLEN(buff);
3303 while (p != arg && *p != ' ' && *p != TAB)
3304 p--;
3305 if (*p == ' ' || *p == TAB)
3306 p++;
3307 xp->xp_pattern = p;
3308
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003309 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003310 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003311 int c;
3312 int in_quote = FALSE;
3313 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003314
3315 /*
3316 * Allow spaces within back-quotes to count as part of the argument
3317 * being expanded.
3318 */
3319 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003320 p = xp->xp_pattern;
3321 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003323#ifdef FEAT_MBYTE
3324 if (has_mbyte)
3325 c = mb_ptr2char(p);
3326 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003327#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003328 c = *p;
3329 if (c == '\\' && p[1] != NUL)
3330 ++p;
3331 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003332 {
3333 if (!in_quote)
3334 {
3335 xp->xp_pattern = p;
3336 bow = p + 1;
3337 }
3338 in_quote = !in_quote;
3339 }
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003340 /* An argument can contain just about everything, except
3341 * characters that end the command and white space. */
3342 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003343#ifdef SPACE_IN_FILENAME
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003344 && (!(ea.argt & NOSPC) || usefilter)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003345#endif
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003346 ))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003347 {
Bram Moolenaarcf5a5b82008-02-26 20:30:12 +00003348 len = 0; /* avoid getting stuck when space is in 'isfname' */
Bram Moolenaar6529c102007-08-18 15:47:34 +00003349 while (*p != NUL)
3350 {
3351#ifdef FEAT_MBYTE
3352 if (has_mbyte)
3353 c = mb_ptr2char(p);
3354 else
3355#endif
3356 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003357 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003358 break;
3359#ifdef FEAT_MBYTE
3360 if (has_mbyte)
3361 len = (*mb_ptr2len)(p);
3362 else
3363#endif
3364 len = 1;
3365 mb_ptr_adv(p);
3366 }
3367 if (in_quote)
3368 bow = p;
3369 else
3370 xp->xp_pattern = p;
3371 p -= len;
3372 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003373 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 }
3375
3376 /*
3377 * If we are still inside the quotes, and we passed a space, just
3378 * expand from there.
3379 */
3380 if (bow != NULL && in_quote)
3381 xp->xp_pattern = bow;
3382 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003383
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003384#ifndef BACKSLASH_IN_FILENAME
3385 /* For a shell command more chars need to be escaped. */
3386 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003387 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003388 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003389
3390 /* When still after the command name expand executables. */
3391 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003392 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003393 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003394#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395
3396 /* Check for environment variable */
3397 if (*xp->xp_pattern == '$'
3398#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3399 || *xp->xp_pattern == '%'
3400#endif
3401 )
3402 {
3403 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3404 if (!vim_isIDc(*p))
3405 break;
3406 if (*p == NUL)
3407 {
3408 xp->xp_context = EXPAND_ENV_VARS;
3409 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003410#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3411 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003412 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003413 compl = EXPAND_ENV_VARS;
3414#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003415 }
3416 }
3417 }
3418
3419/*
3420 * 6. switch on command name
3421 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003422 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 {
3424 case CMD_cd:
3425 case CMD_chdir:
3426 case CMD_lcd:
3427 case CMD_lchdir:
3428 if (xp->xp_context == EXPAND_FILES)
3429 xp->xp_context = EXPAND_DIRECTORIES;
3430 break;
3431 case CMD_help:
3432 xp->xp_context = EXPAND_HELP;
3433 xp->xp_pattern = arg;
3434 break;
3435
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003436 /* Command modifiers: return the argument.
3437 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003439 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440 case CMD_belowright:
3441 case CMD_botright:
3442 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003443 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003445 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 case CMD_folddoclosed:
3447 case CMD_folddoopen:
3448 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003449 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003450 case CMD_keepjumps:
3451 case CMD_keepmarks:
3452 case CMD_leftabove:
3453 case CMD_lockmarks:
3454 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003455 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003457 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 case CMD_topleft:
3459 case CMD_verbose:
3460 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003461 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003462 return arg;
3463
Bram Moolenaar4f688582007-07-24 12:34:30 +00003464#ifdef FEAT_CMDL_COMPL
3465# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 case CMD_match:
3467 if (*arg == NUL || !ends_excmd(*arg))
3468 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003469 /* also complete "None" */
3470 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 arg = skipwhite(skiptowhite(arg));
3472 if (*arg != NUL)
3473 {
3474 xp->xp_context = EXPAND_NOTHING;
3475 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3476 }
3477 }
3478 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003479# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481/*
3482 * All completion for the +cmdline_compl feature goes here.
3483 */
3484
3485# ifdef FEAT_USR_CMDS
3486 case CMD_command:
3487 /* Check for attributes */
3488 while (*arg == '-')
3489 {
3490 arg++; /* Skip "-" */
3491 p = skiptowhite(arg);
3492 if (*p == NUL)
3493 {
3494 /* Cursor is still in the attribute */
3495 p = vim_strchr(arg, '=');
3496 if (p == NULL)
3497 {
3498 /* No "=", so complete attribute names */
3499 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3500 xp->xp_pattern = arg;
3501 return NULL;
3502 }
3503
3504 /* For the -complete and -nargs attributes, we complete
3505 * their arguments as well.
3506 */
3507 if (STRNICMP(arg, "complete", p - arg) == 0)
3508 {
3509 xp->xp_context = EXPAND_USER_COMPLETE;
3510 xp->xp_pattern = p + 1;
3511 return NULL;
3512 }
3513 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3514 {
3515 xp->xp_context = EXPAND_USER_NARGS;
3516 xp->xp_pattern = p + 1;
3517 return NULL;
3518 }
3519 return NULL;
3520 }
3521 arg = skipwhite(p);
3522 }
3523
3524 /* After the attributes comes the new command name */
3525 p = skiptowhite(arg);
3526 if (*p == NUL)
3527 {
3528 xp->xp_context = EXPAND_USER_COMMANDS;
3529 xp->xp_pattern = arg;
3530 break;
3531 }
3532
3533 /* And finally comes a normal command */
3534 return skipwhite(p);
3535
3536 case CMD_delcommand:
3537 xp->xp_context = EXPAND_USER_COMMANDS;
3538 xp->xp_pattern = arg;
3539 break;
3540# endif
3541
3542 case CMD_global:
3543 case CMD_vglobal:
3544 delim = *arg; /* get the delimiter */
3545 if (delim)
3546 ++arg; /* skip delimiter if there is one */
3547
3548 while (arg[0] != NUL && arg[0] != delim)
3549 {
3550 if (arg[0] == '\\' && arg[1] != NUL)
3551 ++arg;
3552 ++arg;
3553 }
3554 if (arg[0] != NUL)
3555 return arg + 1;
3556 break;
3557 case CMD_and:
3558 case CMD_substitute:
3559 delim = *arg;
3560 if (delim)
3561 {
3562 /* skip "from" part */
3563 ++arg;
3564 arg = skip_regexp(arg, delim, p_magic, NULL);
3565 }
3566 /* skip "to" part */
3567 while (arg[0] != NUL && arg[0] != delim)
3568 {
3569 if (arg[0] == '\\' && arg[1] != NUL)
3570 ++arg;
3571 ++arg;
3572 }
3573 if (arg[0] != NUL) /* skip delimiter */
3574 ++arg;
3575 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3576 ++arg;
3577 if (arg[0] != NUL)
3578 return arg;
3579 break;
3580 case CMD_isearch:
3581 case CMD_dsearch:
3582 case CMD_ilist:
3583 case CMD_dlist:
3584 case CMD_ijump:
3585 case CMD_psearch:
3586 case CMD_djump:
3587 case CMD_isplit:
3588 case CMD_dsplit:
3589 arg = skipwhite(skipdigits(arg)); /* skip count */
3590 if (*arg == '/') /* Match regexp, not just whole words */
3591 {
3592 for (++arg; *arg && *arg != '/'; arg++)
3593 if (*arg == '\\' && arg[1] != NUL)
3594 arg++;
3595 if (*arg)
3596 {
3597 arg = skipwhite(arg + 1);
3598
3599 /* Check for trailing illegal characters */
3600 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3601 xp->xp_context = EXPAND_NOTHING;
3602 else
3603 return arg;
3604 }
3605 }
3606 break;
3607#ifdef FEAT_AUTOCMD
3608 case CMD_autocmd:
3609 return set_context_in_autocmd(xp, arg, FALSE);
3610
3611 case CMD_doautocmd:
Bram Moolenaar73a9d7b2008-11-06 16:16:44 +00003612 case CMD_doautoall:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 return set_context_in_autocmd(xp, arg, TRUE);
3614#endif
3615 case CMD_set:
3616 set_context_in_set_cmd(xp, arg, 0);
3617 break;
3618 case CMD_setglobal:
3619 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3620 break;
3621 case CMD_setlocal:
3622 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3623 break;
3624 case CMD_tag:
3625 case CMD_stag:
3626 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003627 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 case CMD_tselect:
3629 case CMD_stselect:
3630 case CMD_ptselect:
3631 case CMD_tjump:
3632 case CMD_stjump:
3633 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003634 if (*p_wop != NUL)
3635 xp->xp_context = EXPAND_TAGS_LISTFILES;
3636 else
3637 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 xp->xp_pattern = arg;
3639 break;
3640 case CMD_augroup:
3641 xp->xp_context = EXPAND_AUGROUP;
3642 xp->xp_pattern = arg;
3643 break;
3644#ifdef FEAT_SYN_HL
3645 case CMD_syntax:
3646 set_context_in_syntax_cmd(xp, arg);
3647 break;
3648#endif
3649#ifdef FEAT_EVAL
3650 case CMD_let:
3651 case CMD_if:
3652 case CMD_elseif:
3653 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003654 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 case CMD_echo:
3656 case CMD_echon:
3657 case CMD_execute:
3658 case CMD_echomsg:
3659 case CMD_echoerr:
3660 case CMD_call:
3661 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003662 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 break;
3664
3665 case CMD_unlet:
3666 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3667 arg = xp->xp_pattern + 1;
3668 xp->xp_context = EXPAND_USER_VARS;
3669 xp->xp_pattern = arg;
3670 break;
3671
3672 case CMD_function:
3673 case CMD_delfunction:
3674 xp->xp_context = EXPAND_USER_FUNC;
3675 xp->xp_pattern = arg;
3676 break;
3677
3678 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00003679 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 break;
3681#endif
3682 case CMD_highlight:
3683 set_context_in_highlight_cmd(xp, arg);
3684 break;
3685#ifdef FEAT_LISTCMDS
3686 case CMD_bdelete:
3687 case CMD_bwipeout:
3688 case CMD_bunload:
3689 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3690 arg = xp->xp_pattern + 1;
3691 /*FALLTHROUGH*/
3692 case CMD_buffer:
3693 case CMD_sbuffer:
3694 case CMD_checktime:
3695 xp->xp_context = EXPAND_BUFFERS;
3696 xp->xp_pattern = arg;
3697 break;
3698#endif
3699#ifdef FEAT_USR_CMDS
3700 case CMD_USER:
3701 case CMD_USER_BUF:
3702 if (compl != EXPAND_NOTHING)
3703 {
3704 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003705 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 {
3707# ifdef FEAT_MENU
3708 if (compl == EXPAND_MENUS)
3709 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3710# endif
3711 if (compl == EXPAND_COMMANDS)
3712 return arg;
3713 if (compl == EXPAND_MAPPINGS)
3714 return set_context_in_map_cmd(xp, (char_u *)"map",
3715 arg, forceit, FALSE, FALSE, CMD_map);
3716 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3717 arg = xp->xp_pattern + 1;
3718 xp->xp_pattern = arg;
3719 }
3720 xp->xp_context = compl;
3721 }
3722 break;
3723#endif
3724 case CMD_map: case CMD_noremap:
3725 case CMD_nmap: case CMD_nnoremap:
3726 case CMD_vmap: case CMD_vnoremap:
3727 case CMD_omap: case CMD_onoremap:
3728 case CMD_imap: case CMD_inoremap:
3729 case CMD_cmap: case CMD_cnoremap:
3730 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003731 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 case CMD_unmap:
3733 case CMD_nunmap:
3734 case CMD_vunmap:
3735 case CMD_ounmap:
3736 case CMD_iunmap:
3737 case CMD_cunmap:
3738 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003739 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003740 case CMD_abbreviate: case CMD_noreabbrev:
3741 case CMD_cabbrev: case CMD_cnoreabbrev:
3742 case CMD_iabbrev: case CMD_inoreabbrev:
3743 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003744 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 case CMD_unabbreviate:
3746 case CMD_cunabbrev:
3747 case CMD_iunabbrev:
3748 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003749 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750#ifdef FEAT_MENU
3751 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3752 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3753 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3754 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3755 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3756 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3757 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3758 case CMD_tmenu: case CMD_tunmenu:
3759 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3760 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3761#endif
3762
3763 case CMD_colorscheme:
3764 xp->xp_context = EXPAND_COLORS;
3765 xp->xp_pattern = arg;
3766 break;
3767
3768 case CMD_compiler:
3769 xp->xp_context = EXPAND_COMPILER;
3770 xp->xp_pattern = arg;
3771 break;
3772
3773#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3774 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3775 case CMD_language:
3776 if (*skiptowhite(arg) == NUL)
3777 {
3778 xp->xp_context = EXPAND_LANGUAGE;
3779 xp->xp_pattern = arg;
3780 }
3781 else
3782 xp->xp_context = EXPAND_NOTHING;
3783 break;
3784#endif
3785
3786#endif /* FEAT_CMDL_COMPL */
3787
3788 default:
3789 break;
3790 }
3791 return NULL;
3792}
3793
3794/*
3795 * skip a range specifier of the form: addr [,addr] [;addr] ..
3796 *
3797 * Backslashed delimiters after / or ? will be skipped, and commands will
3798 * not be expanded between /'s and ?'s or after "'".
3799 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003800 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801 * Returns the "cmd" pointer advanced to beyond the range.
3802 */
3803 char_u *
3804skip_range(cmd, ctx)
3805 char_u *cmd;
3806 int *ctx; /* pointer to xp_context or NULL */
3807{
3808 int delim;
3809
Bram Moolenaardf177f62005-02-22 08:39:57 +00003810 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 {
3812 if (*cmd == '\'')
3813 {
3814 if (*++cmd == NUL && ctx != NULL)
3815 *ctx = EXPAND_NOTHING;
3816 }
3817 else if (*cmd == '/' || *cmd == '?')
3818 {
3819 delim = *cmd++;
3820 while (*cmd != NUL && *cmd != delim)
3821 if (*cmd++ == '\\' && *cmd != NUL)
3822 ++cmd;
3823 if (*cmd == NUL && ctx != NULL)
3824 *ctx = EXPAND_NOTHING;
3825 }
3826 if (*cmd != NUL)
3827 ++cmd;
3828 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003829
3830 /* Skip ":" and white space. */
3831 while (*cmd == ':')
3832 cmd = skipwhite(cmd + 1);
3833
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 return cmd;
3835}
3836
3837/*
3838 * get a single EX address
3839 *
3840 * Set ptr to the next character after the part that was interpreted.
3841 * Set ptr to NULL when an error is encountered.
3842 *
3843 * Return MAXLNUM when no Ex address was found.
3844 */
3845 static linenr_T
3846get_address(ptr, skip, to_other_file)
3847 char_u **ptr;
3848 int skip; /* only skip the address, don't use it */
3849 int to_other_file; /* flag: may jump to other file */
3850{
3851 int c;
3852 int i;
3853 long n;
3854 char_u *cmd;
3855 pos_T pos;
3856 pos_T *fp;
3857 linenr_T lnum;
3858
3859 cmd = skipwhite(*ptr);
3860 lnum = MAXLNUM;
3861 do
3862 {
3863 switch (*cmd)
3864 {
3865 case '.': /* '.' - Cursor position */
3866 ++cmd;
3867 lnum = curwin->w_cursor.lnum;
3868 break;
3869
3870 case '$': /* '$' - last line */
3871 ++cmd;
3872 lnum = curbuf->b_ml.ml_line_count;
3873 break;
3874
3875 case '\'': /* ''' - mark */
3876 if (*++cmd == NUL)
3877 {
3878 cmd = NULL;
3879 goto error;
3880 }
3881 if (skip)
3882 ++cmd;
3883 else
3884 {
3885 /* Only accept a mark in another file when it is
3886 * used by itself: ":'M". */
3887 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3888 ++cmd;
3889 if (fp == (pos_T *)-1)
3890 /* Jumped to another file. */
3891 lnum = curwin->w_cursor.lnum;
3892 else
3893 {
3894 if (check_mark(fp) == FAIL)
3895 {
3896 cmd = NULL;
3897 goto error;
3898 }
3899 lnum = fp->lnum;
3900 }
3901 }
3902 break;
3903
3904 case '/':
3905 case '?': /* '/' or '?' - search */
3906 c = *cmd++;
3907 if (skip) /* skip "/pat/" */
3908 {
3909 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3910 if (*cmd == c)
3911 ++cmd;
3912 }
3913 else
3914 {
3915 pos = curwin->w_cursor; /* save curwin->w_cursor */
3916 /*
3917 * When '/' or '?' follows another address, start
3918 * from there.
3919 */
3920 if (lnum != MAXLNUM)
3921 curwin->w_cursor.lnum = lnum;
3922 /*
3923 * Start a forward search at the end of the line.
3924 * Start a backward search at the start of the line.
3925 * This makes sure we never match in the current
3926 * line, and can match anywhere in the
3927 * next/previous line.
3928 */
3929 if (c == '/')
3930 curwin->w_cursor.col = MAXCOL;
3931 else
3932 curwin->w_cursor.col = 0;
3933 searchcmdlen = 0;
3934 if (!do_search(NULL, c, cmd, 1L,
Bram Moolenaaraad86642008-03-10 20:34:59 +00003935 SEARCH_HIS | SEARCH_MSG, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 {
3937 curwin->w_cursor = pos;
3938 cmd = NULL;
3939 goto error;
3940 }
3941 lnum = curwin->w_cursor.lnum;
3942 curwin->w_cursor = pos;
3943 /* adjust command string pointer */
3944 cmd += searchcmdlen;
3945 }
3946 break;
3947
3948 case '\\': /* "\?", "\/" or "\&", repeat search */
3949 ++cmd;
3950 if (*cmd == '&')
3951 i = RE_SUBST;
3952 else if (*cmd == '?' || *cmd == '/')
3953 i = RE_SEARCH;
3954 else
3955 {
3956 EMSG(_(e_backslash));
3957 cmd = NULL;
3958 goto error;
3959 }
3960
3961 if (!skip)
3962 {
3963 /*
3964 * When search follows another address, start from
3965 * there.
3966 */
3967 if (lnum != MAXLNUM)
3968 pos.lnum = lnum;
3969 else
3970 pos.lnum = curwin->w_cursor.lnum;
3971
3972 /*
3973 * Start the search just like for the above
3974 * do_search().
3975 */
3976 if (*cmd != '?')
3977 pos.col = MAXCOL;
3978 else
3979 pos.col = 0;
3980 if (searchit(curwin, curbuf, &pos,
3981 *cmd == '?' ? BACKWARD : FORWARD,
Bram Moolenaaraad86642008-03-10 20:34:59 +00003982 (char_u *)"", 1L, SEARCH_MSG,
Bram Moolenaar76929292008-01-06 19:07:36 +00003983 i, (linenr_T)0, NULL) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 lnum = pos.lnum;
3985 else
3986 {
3987 cmd = NULL;
3988 goto error;
3989 }
3990 }
3991 ++cmd;
3992 break;
3993
3994 default:
3995 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3996 lnum = getdigits(&cmd);
3997 }
3998
3999 for (;;)
4000 {
4001 cmd = skipwhite(cmd);
4002 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4003 break;
4004
4005 if (lnum == MAXLNUM)
4006 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
4007 if (VIM_ISDIGIT(*cmd))
4008 i = '+'; /* "number" is same as "+number" */
4009 else
4010 i = *cmd++;
4011 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4012 n = 1;
4013 else
4014 n = getdigits(&cmd);
4015 if (i == '-')
4016 lnum -= n;
4017 else
4018 lnum += n;
4019 }
4020 } while (*cmd == '/' || *cmd == '?');
4021
4022error:
4023 *ptr = cmd;
4024 return lnum;
4025}
4026
4027/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004028 * Get flags from an Ex command argument.
4029 */
4030 static void
4031get_flags(eap)
4032 exarg_T *eap;
4033{
4034 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4035 {
4036 if (*eap->arg == 'l')
4037 eap->flags |= EXFLAG_LIST;
4038 else if (*eap->arg == 'p')
4039 eap->flags |= EXFLAG_PRINT;
4040 else
4041 eap->flags |= EXFLAG_NR;
4042 eap->arg = skipwhite(eap->arg + 1);
4043 }
4044}
4045
4046/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047 * Function called for command which is Not Implemented. NI!
4048 */
4049 void
4050ex_ni(eap)
4051 exarg_T *eap;
4052{
4053 if (!eap->skip)
4054 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4055}
4056
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004057#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058/*
4059 * Function called for script command which is Not Implemented. NI!
4060 * Skips over ":perl <<EOF" constructs.
4061 */
4062 static void
4063ex_script_ni(eap)
4064 exarg_T *eap;
4065{
4066 if (!eap->skip)
4067 ex_ni(eap);
4068 else
4069 vim_free(script_get(eap, eap->arg));
4070}
4071#endif
4072
4073/*
4074 * Check range in Ex command for validity.
4075 * Return NULL when valid, error message when invalid.
4076 */
4077 static char_u *
4078invalid_range(eap)
4079 exarg_T *eap;
4080{
4081 if ( eap->line1 < 0
4082 || eap->line2 < 0
4083 || eap->line1 > eap->line2
4084 || ((eap->argt & RANGE)
4085 && !(eap->argt & NOTADR)
4086 && eap->line2 > curbuf->b_ml.ml_line_count
4087#ifdef FEAT_DIFF
4088 + (eap->cmdidx == CMD_diffget)
4089#endif
4090 ))
4091 return (char_u *)_(e_invrange);
4092 return NULL;
4093}
4094
4095/*
4096 * Correct the range for zero line number, if required.
4097 */
4098 static void
4099correct_range(eap)
4100 exarg_T *eap;
4101{
4102 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4103 {
4104 if (eap->line1 == 0)
4105 eap->line1 = 1;
4106 if (eap->line2 == 0)
4107 eap->line2 = 1;
4108 }
4109}
4110
Bram Moolenaar748bf032005-02-02 23:04:36 +00004111#ifdef FEAT_QUICKFIX
4112static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4113
4114/*
4115 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4116 * pattern. Otherwise return eap->arg.
4117 */
4118 static char_u *
4119skip_grep_pat(eap)
4120 exarg_T *eap;
4121{
4122 char_u *p = eap->arg;
4123
Bram Moolenaara37420f2006-02-04 22:37:47 +00004124 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4125 || eap->cmdidx == CMD_vimgrepadd
4126 || eap->cmdidx == CMD_lvimgrepadd
4127 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004128 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004129 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004130 if (p == NULL)
4131 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004132 }
4133 return p;
4134}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004135
4136/*
4137 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4138 * in the command line, so that things like % get expanded.
4139 */
4140 static char_u *
4141replace_makeprg(eap, p, cmdlinep)
4142 exarg_T *eap;
4143 char_u *p;
4144 char_u **cmdlinep;
4145{
4146 char_u *new_cmdline;
4147 char_u *program;
4148 char_u *pos;
4149 char_u *ptr;
4150 int len;
4151 int i;
4152
4153 /*
4154 * Don't do it when ":vimgrep" is used for ":grep".
4155 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004156 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4157 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4158 || eap->cmdidx == CMD_grepadd
4159 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004160 && !grep_internal(eap->cmdidx))
4161 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004162 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4163 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004164 {
4165 if (*curbuf->b_p_gp == NUL)
4166 program = p_gp;
4167 else
4168 program = curbuf->b_p_gp;
4169 }
4170 else
4171 {
4172 if (*curbuf->b_p_mp == NUL)
4173 program = p_mp;
4174 else
4175 program = curbuf->b_p_mp;
4176 }
4177
4178 p = skipwhite(p);
4179
4180 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4181 {
4182 /* replace $* by given arguments */
4183 i = 1;
4184 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4185 ++i;
4186 len = (int)STRLEN(p);
4187 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4188 if (new_cmdline == NULL)
4189 return NULL; /* out of memory */
4190 ptr = new_cmdline;
4191 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4192 {
4193 i = (int)(pos - program);
4194 STRNCPY(ptr, program, i);
4195 STRCPY(ptr += i, p);
4196 ptr += len;
4197 program = pos + 2;
4198 }
4199 STRCPY(ptr, program);
4200 }
4201 else
4202 {
4203 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4204 if (new_cmdline == NULL)
4205 return NULL; /* out of memory */
4206 STRCPY(new_cmdline, program);
4207 STRCAT(new_cmdline, " ");
4208 STRCAT(new_cmdline, p);
4209 }
4210 msg_make(p);
4211
4212 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4213 vim_free(*cmdlinep);
4214 *cmdlinep = new_cmdline;
4215 p = new_cmdline;
4216 }
4217 return p;
4218}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004219#endif
4220
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221/*
4222 * Expand file name in Ex command argument.
4223 * Return FAIL for failure, OK otherwise.
4224 */
4225 int
4226expand_filename(eap, cmdlinep, errormsgp)
4227 exarg_T *eap;
4228 char_u **cmdlinep;
4229 char_u **errormsgp;
4230{
4231 int has_wildcards; /* need to expand wildcards */
4232 char_u *repl;
4233 int srclen;
4234 char_u *p;
4235 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004236 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237
Bram Moolenaar748bf032005-02-02 23:04:36 +00004238#ifdef FEAT_QUICKFIX
4239 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4240 p = skip_grep_pat(eap);
4241#else
4242 p = eap->arg;
4243#endif
4244
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 /*
4246 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4247 * the file name contains a wildcard it should not cause expanding.
4248 * (it will be expanded anyway if there is a wildcard before replacing).
4249 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004250 has_wildcards = mch_has_wildcard(p);
4251 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004253#ifdef FEAT_EVAL
4254 /* Skip over `=expr`, wildcards in it are not expanded. */
4255 if (p[0] == '`' && p[1] == '=')
4256 {
4257 p += 2;
4258 (void)skip_expr(&p);
4259 if (*p == '`')
4260 ++p;
4261 continue;
4262 }
4263#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 /*
4265 * Quick check if this cannot be the start of a special string.
4266 * Also removes backslash before '%', '#' and '<'.
4267 */
4268 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4269 {
4270 ++p;
4271 continue;
4272 }
4273
4274 /*
4275 * Try to find a match at this position.
4276 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004277 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4278 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 if (*errormsgp != NULL) /* error detected */
4280 return FAIL;
4281 if (repl == NULL) /* no match found */
4282 {
4283 p += srclen;
4284 continue;
4285 }
4286
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004287 /* Wildcards won't be expanded below, the replacement is taken
4288 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4289 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4290 {
4291 char_u *l = repl;
4292
4293 repl = expand_env_save(repl);
4294 vim_free(l);
4295 }
4296
Bram Moolenaar63b92542007-03-27 14:57:09 +00004297 /* Need to escape white space et al. with a backslash.
4298 * Don't do this for:
4299 * - replacement that already has been escaped: "##"
4300 * - shell commands (may have to use quotes instead).
4301 * - non-unix systems when there is a single argument (spaces don't
4302 * separate arguments then).
4303 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004305 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 && eap->cmdidx != CMD_bang
4307 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004308 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004310 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004312 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313#ifndef UNIX
4314 && !(eap->argt & NOSPC)
4315#endif
4316 )
4317 {
4318 char_u *l;
4319#ifdef BACKSLASH_IN_FILENAME
4320 /* Don't escape a backslash here, because rem_backslash() doesn't
4321 * remove it later. */
4322 static char_u *nobslash = (char_u *)" \t\"|";
4323# define ESCAPE_CHARS nobslash
4324#else
4325# define ESCAPE_CHARS escape_chars
4326#endif
4327
4328 for (l = repl; *l; ++l)
4329 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4330 {
4331 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4332 if (l != NULL)
4333 {
4334 vim_free(repl);
4335 repl = l;
4336 }
4337 break;
4338 }
4339 }
4340
4341 /* For a shell command a '!' must be escaped. */
4342 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004343 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 {
4345 char_u *l;
4346
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004347 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 if (l != NULL)
4349 {
4350 vim_free(repl);
4351 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004352 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 if (strstr((char *)p_sh, "sh") != NULL)
4354 {
4355 l = vim_strsave_escaped(repl, (char_u *)"!");
4356 if (l != NULL)
4357 {
4358 vim_free(repl);
4359 repl = l;
4360 }
4361 }
4362 }
4363 }
4364
4365 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4366 vim_free(repl);
4367 if (p == NULL)
4368 return FAIL;
4369 }
4370
4371 /*
4372 * One file argument: Expand wildcards.
4373 * Don't do this with ":r !command" or ":w !command".
4374 */
4375 if ((eap->argt & NOSPC) && !eap->usefilter)
4376 {
4377 /*
4378 * May do this twice:
4379 * 1. Replace environment variables.
4380 * 2. Replace any other wildcards, remove backslashes.
4381 */
4382 for (n = 1; n <= 2; ++n)
4383 {
4384 if (n == 2)
4385 {
4386#ifdef UNIX
4387 /*
4388 * Only for Unix we check for more than one file name.
4389 * For other systems spaces are considered to be part
4390 * of the file name.
4391 * Only check here if there is no wildcard, otherwise
4392 * ExpandOne() will check for errors. This allows
4393 * ":e `ls ve*.c`" on Unix.
4394 */
4395 if (!has_wildcards)
4396 for (p = eap->arg; *p; ++p)
4397 {
4398 /* skip escaped characters */
4399 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4400 ++p;
4401 else if (vim_iswhite(*p))
4402 {
4403 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4404 return FAIL;
4405 }
4406 }
4407#endif
4408
4409 /*
4410 * Halve the number of backslashes (this is Vi compatible).
4411 * For Unix and OS/2, when wildcards are expanded, this is
4412 * done by ExpandOne() below.
4413 */
4414#if defined(UNIX) || defined(OS2)
4415 if (!has_wildcards)
4416#endif
4417 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 }
4419
4420 if (has_wildcards)
4421 {
4422 if (n == 1)
4423 {
4424 /*
4425 * First loop: May expand environment variables. This
4426 * can be done much faster with expand_env() than with
4427 * something else (e.g., calling a shell).
4428 * After expanding environment variables, check again
4429 * if there are still wildcards present.
4430 */
4431 if (vim_strchr(eap->arg, '$') != NULL
4432 || vim_strchr(eap->arg, '~') != NULL)
4433 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004434 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004435 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 has_wildcards = mch_has_wildcard(NameBuff);
4437 p = NameBuff;
4438 }
4439 else
4440 p = NULL;
4441 }
4442 else /* n == 2 */
4443 {
4444 expand_T xpc;
4445
4446 ExpandInit(&xpc);
4447 xpc.xp_context = EXPAND_FILES;
4448 p = ExpandOne(&xpc, eap->arg, NULL,
4449 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4450 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 if (p == NULL)
4452 return FAIL;
4453 }
4454 if (p != NULL)
4455 {
4456 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4457 p, cmdlinep);
4458 if (n == 2) /* p came from ExpandOne() */
4459 vim_free(p);
4460 }
4461 }
4462 }
4463 }
4464 return OK;
4465}
4466
4467/*
4468 * Replace part of the command line, keeping eap->cmd, eap->arg and
4469 * eap->nextcmd correct.
4470 * "src" points to the part that is to be replaced, of length "srclen".
4471 * "repl" is the replacement string.
4472 * Returns a pointer to the character after the replaced string.
4473 * Returns NULL for failure.
4474 */
4475 static char_u *
4476repl_cmdline(eap, src, srclen, repl, cmdlinep)
4477 exarg_T *eap;
4478 char_u *src;
4479 int srclen;
4480 char_u *repl;
4481 char_u **cmdlinep;
4482{
4483 int len;
4484 int i;
4485 char_u *new_cmdline;
4486
4487 /*
4488 * The new command line is build in new_cmdline[].
4489 * First allocate it.
4490 * Careful: a "+cmd" argument may have been NUL terminated.
4491 */
4492 len = (int)STRLEN(repl);
4493 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004494 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4496 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4497 return NULL; /* out of memory! */
4498
4499 /*
4500 * Copy the stuff before the expanded part.
4501 * Copy the expanded stuff.
4502 * Copy what came after the expanded part.
4503 * Copy the next commands, if there are any.
4504 */
4505 i = (int)(src - *cmdlinep); /* length of part before match */
4506 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004507
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 mch_memmove(new_cmdline + i, repl, (size_t)len);
4509 i += len; /* remember the end of the string */
4510 STRCPY(new_cmdline + i, src + srclen);
4511 src = new_cmdline + i; /* remember where to continue */
4512
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004513 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 {
4515 i = (int)STRLEN(new_cmdline) + 1;
4516 STRCPY(new_cmdline + i, eap->nextcmd);
4517 eap->nextcmd = new_cmdline + i;
4518 }
4519 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4520 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4521 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4522 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4523 vim_free(*cmdlinep);
4524 *cmdlinep = new_cmdline;
4525
4526 return src;
4527}
4528
4529/*
4530 * Check for '|' to separate commands and '"' to start comments.
4531 */
4532 void
4533separate_nextcmd(eap)
4534 exarg_T *eap;
4535{
4536 char_u *p;
4537
Bram Moolenaar86b68352004-12-27 21:59:20 +00004538#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004539 p = skip_grep_pat(eap);
4540#else
4541 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004542#endif
4543
4544 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 {
4546 if (*p == Ctrl_V)
4547 {
4548 if (eap->argt & (USECTRLV | XFILE))
4549 ++p; /* skip CTRL-V and next char */
4550 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00004551 /* remove CTRL-V and skip next char */
Bram Moolenaara7241f52008-06-24 20:39:31 +00004552 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 if (*p == NUL) /* stop at NUL after CTRL-V */
4554 break;
4555 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004556
4557#ifdef FEAT_EVAL
4558 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004559 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004560 {
4561 p += 2;
4562 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004563 }
4564#endif
4565
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 /* Check for '"': start of comment or '|': next command */
4567 /* :@" and :*" do not start a comment!
4568 * :redir @" doesn't either. */
4569 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4570 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4571 || p != eap->arg)
4572 && (eap->cmdidx != CMD_redir
4573 || p != eap->arg + 1 || p[-1] != '@'))
4574 || *p == '|' || *p == '\n')
4575 {
4576 /*
4577 * We remove the '\' before the '|', unless USECTRLV is used
4578 * AND 'b' is present in 'cpoptions'.
4579 */
4580 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4581 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4582 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00004583 STRMOVE(p - 1, p); /* remove the '\' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584 --p;
4585 }
4586 else
4587 {
4588 eap->nextcmd = check_nextcmd(p);
4589 *p = NUL;
4590 break;
4591 }
4592 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004594
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4596 del_trailing_spaces(eap->arg);
4597}
4598
4599/*
4600 * get + command from ex argument
4601 */
4602 static char_u *
4603getargcmd(argp)
4604 char_u **argp;
4605{
4606 char_u *arg = *argp;
4607 char_u *command = NULL;
4608
4609 if (*arg == '+') /* +[command] */
4610 {
4611 ++arg;
4612 if (vim_isspace(*arg))
4613 command = dollar_command;
4614 else
4615 {
4616 command = arg;
4617 arg = skip_cmd_arg(command, TRUE);
4618 if (*arg != NUL)
4619 *arg++ = NUL; /* terminate command with NUL */
4620 }
4621
4622 arg = skipwhite(arg); /* skip over spaces */
4623 *argp = arg;
4624 }
4625 return command;
4626}
4627
4628/*
4629 * Find end of "+command" argument. Skip over "\ " and "\\".
4630 */
4631 static char_u *
4632skip_cmd_arg(p, rembs)
4633 char_u *p;
4634 int rembs; /* TRUE to halve the number of backslashes */
4635{
4636 while (*p && !vim_isspace(*p))
4637 {
4638 if (*p == '\\' && p[1] != NUL)
4639 {
4640 if (rembs)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004641 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 else
4643 ++p;
4644 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004645 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 }
4647 return p;
4648}
4649
4650/*
4651 * Get "++opt=arg" argument.
4652 * Return FAIL or OK.
4653 */
4654 static int
4655getargopt(eap)
4656 exarg_T *eap;
4657{
4658 char_u *arg = eap->arg + 2;
4659 int *pp = NULL;
4660#ifdef FEAT_MBYTE
4661 char_u *p;
4662#endif
4663
4664 /* ":edit ++[no]bin[ary] file" */
4665 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4666 {
4667 if (*arg == 'n')
4668 {
4669 arg += 2;
4670 eap->force_bin = FORCE_NOBIN;
4671 }
4672 else
4673 eap->force_bin = FORCE_BIN;
4674 if (!checkforcmd(&arg, "binary", 3))
4675 return FAIL;
4676 eap->arg = skipwhite(arg);
4677 return OK;
4678 }
4679
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004680 /* ":read ++edit file" */
4681 if (STRNCMP(arg, "edit", 4) == 0)
4682 {
4683 eap->read_edit = TRUE;
4684 eap->arg = skipwhite(arg + 4);
4685 return OK;
4686 }
4687
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 if (STRNCMP(arg, "ff", 2) == 0)
4689 {
4690 arg += 2;
4691 pp = &eap->force_ff;
4692 }
4693 else if (STRNCMP(arg, "fileformat", 10) == 0)
4694 {
4695 arg += 10;
4696 pp = &eap->force_ff;
4697 }
4698#ifdef FEAT_MBYTE
4699 else if (STRNCMP(arg, "enc", 3) == 0)
4700 {
4701 arg += 3;
4702 pp = &eap->force_enc;
4703 }
4704 else if (STRNCMP(arg, "encoding", 8) == 0)
4705 {
4706 arg += 8;
4707 pp = &eap->force_enc;
4708 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004709 else if (STRNCMP(arg, "bad", 3) == 0)
4710 {
4711 arg += 3;
4712 pp = &eap->bad_char;
4713 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714#endif
4715
4716 if (pp == NULL || *arg != '=')
4717 return FAIL;
4718
4719 ++arg;
4720 *pp = (int)(arg - eap->cmd);
4721 arg = skip_cmd_arg(arg, FALSE);
4722 eap->arg = skipwhite(arg);
4723 *arg = NUL;
4724
4725#ifdef FEAT_MBYTE
4726 if (pp == &eap->force_ff)
4727 {
4728#endif
4729 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4730 return FAIL;
4731#ifdef FEAT_MBYTE
4732 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004733 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 {
4735 /* Make 'fileencoding' lower case. */
4736 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4737 *p = TOLOWER_ASC(*p);
4738 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004739 else
4740 {
4741 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4742 * "drop". */
4743 p = eap->cmd + eap->bad_char;
4744 if (STRICMP(p, "keep") == 0)
4745 eap->bad_char = BAD_KEEP;
4746 else if (STRICMP(p, "drop") == 0)
4747 eap->bad_char = BAD_DROP;
4748 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4749 eap->bad_char = *p;
4750 else
4751 return FAIL;
4752 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753#endif
4754
4755 return OK;
4756}
4757
4758/*
4759 * ":abbreviate" and friends.
4760 */
4761 static void
4762ex_abbreviate(eap)
4763 exarg_T *eap;
4764{
4765 do_exmap(eap, TRUE); /* almost the same as mapping */
4766}
4767
4768/*
4769 * ":map" and friends.
4770 */
4771 static void
4772ex_map(eap)
4773 exarg_T *eap;
4774{
4775 /*
4776 * If we are sourcing .exrc or .vimrc in current directory we
4777 * print the mappings for security reasons.
4778 */
4779 if (secure)
4780 {
4781 secure = 2;
4782 msg_outtrans(eap->cmd);
4783 msg_putchar('\n');
4784 }
4785 do_exmap(eap, FALSE);
4786}
4787
4788/*
4789 * ":unmap" and friends.
4790 */
4791 static void
4792ex_unmap(eap)
4793 exarg_T *eap;
4794{
4795 do_exmap(eap, FALSE);
4796}
4797
4798/*
4799 * ":mapclear" and friends.
4800 */
4801 static void
4802ex_mapclear(eap)
4803 exarg_T *eap;
4804{
4805 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4806}
4807
4808/*
4809 * ":abclear" and friends.
4810 */
4811 static void
4812ex_abclear(eap)
4813 exarg_T *eap;
4814{
4815 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4816}
4817
4818#ifdef FEAT_AUTOCMD
4819 static void
4820ex_autocmd(eap)
4821 exarg_T *eap;
4822{
4823 /*
4824 * Disallow auto commands from .exrc and .vimrc in current
4825 * directory for security reasons.
4826 */
4827 if (secure)
4828 {
4829 secure = 2;
4830 eap->errmsg = e_curdir;
4831 }
4832 else if (eap->cmdidx == CMD_autocmd)
4833 do_autocmd(eap->arg, eap->forceit);
4834 else
4835 do_augroup(eap->arg, eap->forceit);
4836}
4837
4838/*
4839 * ":doautocmd": Apply the automatic commands to the current buffer.
4840 */
4841 static void
4842ex_doautocmd(eap)
4843 exarg_T *eap;
4844{
4845 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004846 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847}
4848#endif
4849
4850#ifdef FEAT_LISTCMDS
4851/*
4852 * :[N]bunload[!] [N] [bufname] unload buffer
4853 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4854 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4855 */
4856 static void
4857ex_bunload(eap)
4858 exarg_T *eap;
4859{
4860 eap->errmsg = do_bufdel(
4861 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4862 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4863 : DOBUF_UNLOAD, eap->arg,
4864 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4865}
4866
4867/*
4868 * :[N]buffer [N] to buffer N
4869 * :[N]sbuffer [N] to buffer N
4870 */
4871 static void
4872ex_buffer(eap)
4873 exarg_T *eap;
4874{
4875 if (*eap->arg)
4876 eap->errmsg = e_trailing;
4877 else
4878 {
4879 if (eap->addr_count == 0) /* default is current buffer */
4880 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4881 else
4882 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4883 }
4884}
4885
4886/*
4887 * :[N]bmodified [N] to next mod. buffer
4888 * :[N]sbmodified [N] to next mod. buffer
4889 */
4890 static void
4891ex_bmodified(eap)
4892 exarg_T *eap;
4893{
4894 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4895}
4896
4897/*
4898 * :[N]bnext [N] to next buffer
4899 * :[N]sbnext [N] split and to next buffer
4900 */
4901 static void
4902ex_bnext(eap)
4903 exarg_T *eap;
4904{
4905 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4906}
4907
4908/*
4909 * :[N]bNext [N] to previous buffer
4910 * :[N]bprevious [N] to previous buffer
4911 * :[N]sbNext [N] split and to previous buffer
4912 * :[N]sbprevious [N] split and to previous buffer
4913 */
4914 static void
4915ex_bprevious(eap)
4916 exarg_T *eap;
4917{
4918 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4919}
4920
4921/*
4922 * :brewind to first buffer
4923 * :bfirst to first buffer
4924 * :sbrewind split and to first buffer
4925 * :sbfirst split and to first buffer
4926 */
4927 static void
4928ex_brewind(eap)
4929 exarg_T *eap;
4930{
4931 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4932}
4933
4934/*
4935 * :blast to last buffer
4936 * :sblast split and to last buffer
4937 */
4938 static void
4939ex_blast(eap)
4940 exarg_T *eap;
4941{
4942 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4943}
4944#endif
4945
4946 int
4947ends_excmd(c)
4948 int c;
4949{
4950 return (c == NUL || c == '|' || c == '"' || c == '\n');
4951}
4952
4953#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4954 || defined(PROTO)
4955/*
4956 * Return the next command, after the first '|' or '\n'.
4957 * Return NULL if not found.
4958 */
4959 char_u *
4960find_nextcmd(p)
4961 char_u *p;
4962{
4963 while (*p != '|' && *p != '\n')
4964 {
4965 if (*p == NUL)
4966 return NULL;
4967 ++p;
4968 }
4969 return (p + 1);
4970}
4971#endif
4972
4973/*
4974 * Check if *p is a separator between Ex commands.
4975 * Return NULL if it isn't, (p + 1) if it is.
4976 */
4977 char_u *
4978check_nextcmd(p)
4979 char_u *p;
4980{
4981 p = skipwhite(p);
4982 if (*p == '|' || *p == '\n')
4983 return (p + 1);
4984 else
4985 return NULL;
4986}
4987
4988/*
4989 * - if there are more files to edit
4990 * - and this is the last window
4991 * - and forceit not used
4992 * - and not repeated twice on a row
4993 * return FAIL and give error message if 'message' TRUE
4994 * return OK otherwise
4995 */
4996 static int
4997check_more(message, forceit)
4998 int message; /* when FALSE check only, no messages */
4999 int forceit;
5000{
5001 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5002
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005003 if (!forceit && only_one_window()
5004 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 {
5006 if (message)
5007 {
5008#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5009 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5010 {
5011 char_u buff[IOSIZE];
5012
5013 if (n == 1)
5014 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
5015 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005016 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 _("%d more files to edit. Quit anyway?"), n);
5018 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5019 return OK;
5020 return FAIL;
5021 }
5022#endif
5023 if (n == 1)
5024 EMSG(_("E173: 1 more file to edit"));
5025 else
5026 EMSGN(_("E173: %ld more files to edit"), n);
5027 quitmore = 2; /* next try to quit is allowed */
5028 }
5029 return FAIL;
5030 }
5031 return OK;
5032}
5033
5034#ifdef FEAT_CMDL_COMPL
5035/*
5036 * Function given to ExpandGeneric() to obtain the list of command names.
5037 */
5038/*ARGSUSED*/
5039 char_u *
5040get_command_name(xp, idx)
5041 expand_T *xp;
5042 int idx;
5043{
5044 if (idx >= (int)CMD_SIZE)
5045# ifdef FEAT_USR_CMDS
5046 return get_user_command_name(idx);
5047# else
5048 return NULL;
5049# endif
5050 return cmdnames[idx].cmd_name;
5051}
5052#endif
5053
5054#if defined(FEAT_USR_CMDS) || defined(PROTO)
5055static 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));
5056static void uc_list __ARGS((char_u *name, size_t name_len));
5057static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5058static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5059static 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));
5060
5061 static int
5062uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5063 char_u *name;
5064 size_t name_len;
5065 char_u *rep;
5066 long argt;
5067 long def;
5068 int flags;
5069 int compl;
5070 char_u *compl_arg;
5071 int force;
5072{
5073 ucmd_T *cmd = NULL;
5074 char_u *p;
5075 int i;
5076 int cmp = 1;
5077 char_u *rep_buf = NULL;
5078 garray_T *gap;
5079
Bram Moolenaar9c102382006-05-03 21:26:49 +00005080 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081 if (rep_buf == NULL)
5082 {
5083 /* Can't replace termcodes - try using the string as is */
5084 rep_buf = vim_strsave(rep);
5085
5086 /* Give up if out of memory */
5087 if (rep_buf == NULL)
5088 return FAIL;
5089 }
5090
5091 /* get address of growarray: global or in curbuf */
5092 if (flags & UC_BUFFER)
5093 {
5094 gap = &curbuf->b_ucmds;
5095 if (gap->ga_itemsize == 0)
5096 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5097 }
5098 else
5099 gap = &ucmds;
5100
5101 /* Search for the command in the already defined commands. */
5102 for (i = 0; i < gap->ga_len; ++i)
5103 {
5104 size_t len;
5105
5106 cmd = USER_CMD_GA(gap, i);
5107 len = STRLEN(cmd->uc_name);
5108 cmp = STRNCMP(name, cmd->uc_name, name_len);
5109 if (cmp == 0)
5110 {
5111 if (name_len < len)
5112 cmp = -1;
5113 else if (name_len > len)
5114 cmp = 1;
5115 }
5116
5117 if (cmp == 0)
5118 {
5119 if (!force)
5120 {
5121 EMSG(_("E174: Command already exists: add ! to replace it"));
5122 goto fail;
5123 }
5124
5125 vim_free(cmd->uc_rep);
5126 cmd->uc_rep = 0;
5127 break;
5128 }
5129
5130 /* Stop as soon as we pass the name to add */
5131 if (cmp < 0)
5132 break;
5133 }
5134
5135 /* Extend the array unless we're replacing an existing command */
5136 if (cmp != 0)
5137 {
5138 if (ga_grow(gap, 1) != OK)
5139 goto fail;
5140 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5141 goto fail;
5142
5143 cmd = USER_CMD_GA(gap, i);
5144 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5145
5146 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147
5148 cmd->uc_name = p;
5149 }
5150
5151 cmd->uc_rep = rep_buf;
5152 cmd->uc_argt = argt;
5153 cmd->uc_def = def;
5154 cmd->uc_compl = compl;
5155#ifdef FEAT_EVAL
5156 cmd->uc_scriptID = current_SID;
5157# ifdef FEAT_CMDL_COMPL
5158 cmd->uc_compl_arg = compl_arg;
5159# endif
5160#endif
5161
5162 return OK;
5163
5164fail:
5165 vim_free(rep_buf);
5166#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5167 vim_free(compl_arg);
5168#endif
5169 return FAIL;
5170}
5171
5172/*
5173 * List of names for completion for ":command" with the EXPAND_ flag.
5174 * Must be alphabetical for completion.
5175 */
5176static struct
5177{
5178 int expand;
5179 char *name;
5180} command_complete[] =
5181{
5182 {EXPAND_AUGROUP, "augroup"},
5183 {EXPAND_BUFFERS, "buffer"},
5184 {EXPAND_COMMANDS, "command"},
5185#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5186 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005187 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188#endif
5189 {EXPAND_DIRECTORIES, "dir"},
5190 {EXPAND_ENV_VARS, "environment"},
5191 {EXPAND_EVENTS, "event"},
5192 {EXPAND_EXPRESSION, "expression"},
5193 {EXPAND_FILES, "file"},
5194 {EXPAND_FUNCTIONS, "function"},
5195 {EXPAND_HELP, "help"},
5196 {EXPAND_HIGHLIGHT, "highlight"},
5197 {EXPAND_MAPPINGS, "mapping"},
5198 {EXPAND_MENUS, "menu"},
5199 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005200 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005201 {EXPAND_TAGS, "tag"},
5202 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5203 {EXPAND_USER_VARS, "var"},
5204 {0, NULL}
5205};
5206
5207 static void
5208uc_list(name, name_len)
5209 char_u *name;
5210 size_t name_len;
5211{
5212 int i, j;
5213 int found = FALSE;
5214 ucmd_T *cmd;
5215 int len;
5216 long a;
5217 garray_T *gap;
5218
5219 gap = &curbuf->b_ucmds;
5220 for (;;)
5221 {
5222 for (i = 0; i < gap->ga_len; ++i)
5223 {
5224 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005225 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226
5227 /* Skip commands which don't match the requested prefix */
5228 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5229 continue;
5230
5231 /* Put out the title first time */
5232 if (!found)
5233 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5234 found = TRUE;
5235 msg_putchar('\n');
5236 if (got_int)
5237 break;
5238
5239 /* Special cases */
5240 msg_putchar(a & BANG ? '!' : ' ');
5241 msg_putchar(a & REGSTR ? '"' : ' ');
5242 msg_putchar(gap != &ucmds ? 'b' : ' ');
5243 msg_putchar(' ');
5244
5245 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5246 len = (int)STRLEN(cmd->uc_name) + 4;
5247
5248 do {
5249 msg_putchar(' ');
5250 ++len;
5251 } while (len < 16);
5252
5253 len = 0;
5254
5255 /* Arguments */
5256 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5257 {
5258 case 0: IObuff[len++] = '0'; break;
5259 case (EXTRA): IObuff[len++] = '*'; break;
5260 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5261 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5262 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5263 }
5264
5265 do {
5266 IObuff[len++] = ' ';
5267 } while (len < 5);
5268
5269 /* Range */
5270 if (a & (RANGE|COUNT))
5271 {
5272 if (a & COUNT)
5273 {
5274 /* -count=N */
5275 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5276 len += (int)STRLEN(IObuff + len);
5277 }
5278 else if (a & DFLALL)
5279 IObuff[len++] = '%';
5280 else if (cmd->uc_def >= 0)
5281 {
5282 /* -range=N */
5283 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5284 len += (int)STRLEN(IObuff + len);
5285 }
5286 else
5287 IObuff[len++] = '.';
5288 }
5289
5290 do {
5291 IObuff[len++] = ' ';
5292 } while (len < 11);
5293
5294 /* Completion */
5295 for (j = 0; command_complete[j].expand != 0; ++j)
5296 if (command_complete[j].expand == cmd->uc_compl)
5297 {
5298 STRCPY(IObuff + len, command_complete[j].name);
5299 len += (int)STRLEN(IObuff + len);
5300 break;
5301 }
5302
5303 do {
5304 IObuff[len++] = ' ';
5305 } while (len < 21);
5306
5307 IObuff[len] = '\0';
5308 msg_outtrans(IObuff);
5309
5310 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005311#ifdef FEAT_EVAL
5312 if (p_verbose > 0)
5313 last_set_msg(cmd->uc_scriptID);
5314#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 out_flush();
5316 ui_breakcheck();
5317 if (got_int)
5318 break;
5319 }
5320 if (gap == &ucmds || i < gap->ga_len)
5321 break;
5322 gap = &ucmds;
5323 }
5324
5325 if (!found)
5326 MSG(_("No user-defined commands found"));
5327}
5328
5329 static char_u *
5330uc_fun_cmd()
5331{
5332 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5333 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5334 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5335 0xb9, 0x7f, 0};
5336 int i;
5337
5338 for (i = 0; fcmd[i]; ++i)
5339 IObuff[i] = fcmd[i] - 0x40;
5340 IObuff[i] = 0;
5341 return IObuff;
5342}
5343
5344 static int
5345uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5346 char_u *attr;
5347 size_t len;
5348 long *argt;
5349 long *def;
5350 int *flags;
5351 int *compl;
5352 char_u **compl_arg;
5353{
5354 char_u *p;
5355
5356 if (len == 0)
5357 {
5358 EMSG(_("E175: No attribute specified"));
5359 return FAIL;
5360 }
5361
5362 /* First, try the simple attributes (no arguments) */
5363 if (STRNICMP(attr, "bang", len) == 0)
5364 *argt |= BANG;
5365 else if (STRNICMP(attr, "buffer", len) == 0)
5366 *flags |= UC_BUFFER;
5367 else if (STRNICMP(attr, "register", len) == 0)
5368 *argt |= REGSTR;
5369 else if (STRNICMP(attr, "bar", len) == 0)
5370 *argt |= TRLBAR;
5371 else
5372 {
5373 int i;
5374 char_u *val = NULL;
5375 size_t vallen = 0;
5376 size_t attrlen = len;
5377
5378 /* Look for the attribute name - which is the part before any '=' */
5379 for (i = 0; i < (int)len; ++i)
5380 {
5381 if (attr[i] == '=')
5382 {
5383 val = &attr[i + 1];
5384 vallen = len - i - 1;
5385 attrlen = i;
5386 break;
5387 }
5388 }
5389
5390 if (STRNICMP(attr, "nargs", attrlen) == 0)
5391 {
5392 if (vallen == 1)
5393 {
5394 if (*val == '0')
5395 /* Do nothing - this is the default */;
5396 else if (*val == '1')
5397 *argt |= (EXTRA | NOSPC | NEEDARG);
5398 else if (*val == '*')
5399 *argt |= EXTRA;
5400 else if (*val == '?')
5401 *argt |= (EXTRA | NOSPC);
5402 else if (*val == '+')
5403 *argt |= (EXTRA | NEEDARG);
5404 else
5405 goto wrong_nargs;
5406 }
5407 else
5408 {
5409wrong_nargs:
5410 EMSG(_("E176: Invalid number of arguments"));
5411 return FAIL;
5412 }
5413 }
5414 else if (STRNICMP(attr, "range", attrlen) == 0)
5415 {
5416 *argt |= RANGE;
5417 if (vallen == 1 && *val == '%')
5418 *argt |= DFLALL;
5419 else if (val != NULL)
5420 {
5421 p = val;
5422 if (*def >= 0)
5423 {
5424two_count:
5425 EMSG(_("E177: Count cannot be specified twice"));
5426 return FAIL;
5427 }
5428
5429 *def = getdigits(&p);
5430 *argt |= (ZEROR | NOTADR);
5431
5432 if (p != val + vallen || vallen == 0)
5433 {
5434invalid_count:
5435 EMSG(_("E178: Invalid default value for count"));
5436 return FAIL;
5437 }
5438 }
5439 }
5440 else if (STRNICMP(attr, "count", attrlen) == 0)
5441 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005442 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005443
5444 if (val != NULL)
5445 {
5446 p = val;
5447 if (*def >= 0)
5448 goto two_count;
5449
5450 *def = getdigits(&p);
5451
5452 if (p != val + vallen)
5453 goto invalid_count;
5454 }
5455
5456 if (*def < 0)
5457 *def = 0;
5458 }
5459 else if (STRNICMP(attr, "complete", attrlen) == 0)
5460 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 if (val == NULL)
5462 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005463 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 return FAIL;
5465 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005467 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5468 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 }
5471 else
5472 {
5473 char_u ch = attr[len];
5474 attr[len] = '\0';
5475 EMSG2(_("E181: Invalid attribute: %s"), attr);
5476 attr[len] = ch;
5477 return FAIL;
5478 }
5479 }
5480
5481 return OK;
5482}
5483
5484 static void
5485ex_command(eap)
5486 exarg_T *eap;
5487{
5488 char_u *name;
5489 char_u *end;
5490 char_u *p;
5491 long argt = 0;
5492 long def = -1;
5493 int flags = 0;
5494 int compl = EXPAND_NOTHING;
5495 char_u *compl_arg = NULL;
5496 int has_attr = (eap->arg[0] == '-');
5497
5498 p = eap->arg;
5499
5500 /* Check for attributes */
5501 while (*p == '-')
5502 {
5503 ++p;
5504 end = skiptowhite(p);
5505 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5506 == FAIL)
5507 return;
5508 p = skipwhite(end);
5509 }
5510
5511 /* Get the name (if any) and skip to the following argument */
5512 name = p;
5513 if (ASCII_ISALPHA(*p))
5514 while (ASCII_ISALNUM(*p))
5515 ++p;
5516 if (!ends_excmd(*p) && !vim_iswhite(*p))
5517 {
5518 EMSG(_("E182: Invalid command name"));
5519 return;
5520 }
5521 end = p;
5522
5523 /* If there is nothing after the name, and no attributes were specified,
5524 * we are listing commands
5525 */
5526 p = skipwhite(end);
5527 if (!has_attr && ends_excmd(*p))
5528 {
5529 uc_list(name, end - name);
5530 }
5531 else if (!ASCII_ISUPPER(*name))
5532 {
5533 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5534 return;
5535 }
5536 else
5537 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5538 eap->forceit);
5539}
5540
5541/*
5542 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 * Clear all user commands, global and for current buffer.
5544 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005545/*ARGSUSED*/
5546 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547ex_comclear(eap)
5548 exarg_T *eap;
5549{
5550 uc_clear(&ucmds);
5551 uc_clear(&curbuf->b_ucmds);
5552}
5553
5554/*
5555 * Clear all user commands for "gap".
5556 */
5557 void
5558uc_clear(gap)
5559 garray_T *gap;
5560{
5561 int i;
5562 ucmd_T *cmd;
5563
5564 for (i = 0; i < gap->ga_len; ++i)
5565 {
5566 cmd = USER_CMD_GA(gap, i);
5567 vim_free(cmd->uc_name);
5568 vim_free(cmd->uc_rep);
5569# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5570 vim_free(cmd->uc_compl_arg);
5571# endif
5572 }
5573 ga_clear(gap);
5574}
5575
5576 static void
5577ex_delcommand(eap)
5578 exarg_T *eap;
5579{
5580 int i = 0;
5581 ucmd_T *cmd = NULL;
5582 int cmp = -1;
5583 garray_T *gap;
5584
5585 gap = &curbuf->b_ucmds;
5586 for (;;)
5587 {
5588 for (i = 0; i < gap->ga_len; ++i)
5589 {
5590 cmd = USER_CMD_GA(gap, i);
5591 cmp = STRCMP(eap->arg, cmd->uc_name);
5592 if (cmp <= 0)
5593 break;
5594 }
5595 if (gap == &ucmds || cmp == 0)
5596 break;
5597 gap = &ucmds;
5598 }
5599
5600 if (cmp != 0)
5601 {
5602 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5603 return;
5604 }
5605
5606 vim_free(cmd->uc_name);
5607 vim_free(cmd->uc_rep);
5608# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5609 vim_free(cmd->uc_compl_arg);
5610# endif
5611
5612 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613
5614 if (i < gap->ga_len)
5615 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5616}
5617
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005618/*
5619 * split and quote args for <f-args>
5620 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 static char_u *
5622uc_split_args(arg, lenp)
5623 char_u *arg;
5624 size_t *lenp;
5625{
5626 char_u *buf;
5627 char_u *p;
5628 char_u *q;
5629 int len;
5630
5631 /* Precalculate length */
5632 p = arg;
5633 len = 2; /* Initial and final quotes */
5634
5635 while (*p)
5636 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005637 if (p[0] == '\\' && p[1] == '\\')
5638 {
5639 len += 2;
5640 p += 2;
5641 }
5642 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 {
5644 len += 1;
5645 p += 2;
5646 }
5647 else if (*p == '\\' || *p == '"')
5648 {
5649 len += 2;
5650 p += 1;
5651 }
5652 else if (vim_iswhite(*p))
5653 {
5654 p = skipwhite(p);
5655 if (*p == NUL)
5656 break;
5657 len += 3; /* "," */
5658 }
5659 else
5660 {
5661 ++len;
5662 ++p;
5663 }
5664 }
5665
5666 buf = alloc(len + 1);
5667 if (buf == NULL)
5668 {
5669 *lenp = 0;
5670 return buf;
5671 }
5672
5673 p = arg;
5674 q = buf;
5675 *q++ = '"';
5676 while (*p)
5677 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005678 if (p[0] == '\\' && p[1] == '\\')
5679 {
5680 *q++ = '\\';
5681 *q++ = '\\';
5682 p += 2;
5683 }
5684 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 {
5686 *q++ = p[1];
5687 p += 2;
5688 }
5689 else if (*p == '\\' || *p == '"')
5690 {
5691 *q++ = '\\';
5692 *q++ = *p++;
5693 }
5694 else if (vim_iswhite(*p))
5695 {
5696 p = skipwhite(p);
5697 if (*p == NUL)
5698 break;
5699 *q++ = '"';
5700 *q++ = ',';
5701 *q++ = '"';
5702 }
5703 else
5704 {
5705 *q++ = *p++;
5706 }
5707 }
5708 *q++ = '"';
5709 *q = 0;
5710
5711 *lenp = len;
5712 return buf;
5713}
5714
5715/*
5716 * Check for a <> code in a user command.
5717 * "code" points to the '<'. "len" the length of the <> (inclusive).
5718 * "buf" is where the result is to be added.
5719 * "split_buf" points to a buffer used for splitting, caller should free it.
5720 * "split_len" is the length of what "split_buf" contains.
5721 * Returns the length of the replacement, which has been added to "buf".
5722 * Returns -1 if there was no match, and only the "<" has been copied.
5723 */
5724 static size_t
5725uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5726 char_u *code;
5727 size_t len;
5728 char_u *buf;
5729 ucmd_T *cmd; /* the user command we're expanding */
5730 exarg_T *eap; /* ex arguments */
5731 char_u **split_buf;
5732 size_t *split_len;
5733{
5734 size_t result = 0;
5735 char_u *p = code + 1;
5736 size_t l = len - 2;
5737 int quote = 0;
5738 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5739 ct_LT, ct_NONE } type = ct_NONE;
5740
5741 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5742 {
5743 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5744 p += 2;
5745 l -= 2;
5746 }
5747
Bram Moolenaar371d5402006-03-20 21:47:49 +00005748 ++l;
5749 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005750 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005751 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005752 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005753 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005755 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005757 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005758 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005759 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005761 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005763 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 type = ct_REGISTER;
5765
5766 switch (type)
5767 {
5768 case ct_ARGS:
5769 /* Simple case first */
5770 if (*eap->arg == NUL)
5771 {
5772 if (quote == 1)
5773 {
5774 result = 2;
5775 if (buf != NULL)
5776 STRCPY(buf, "''");
5777 }
5778 else
5779 result = 0;
5780 break;
5781 }
5782
5783 /* When specified there is a single argument don't split it.
5784 * Works for ":Cmd %" when % is "a b c". */
5785 if ((eap->argt & NOSPC) && quote == 2)
5786 quote = 1;
5787
5788 switch (quote)
5789 {
5790 case 0: /* No quoting, no splitting */
5791 result = STRLEN(eap->arg);
5792 if (buf != NULL)
5793 STRCPY(buf, eap->arg);
5794 break;
5795 case 1: /* Quote, but don't split */
5796 result = STRLEN(eap->arg) + 2;
5797 for (p = eap->arg; *p; ++p)
5798 {
5799 if (*p == '\\' || *p == '"')
5800 ++result;
5801 }
5802
5803 if (buf != NULL)
5804 {
5805 *buf++ = '"';
5806 for (p = eap->arg; *p; ++p)
5807 {
5808 if (*p == '\\' || *p == '"')
5809 *buf++ = '\\';
5810 *buf++ = *p;
5811 }
5812 *buf = '"';
5813 }
5814
5815 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005816 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 /* This is hard, so only do it once, and cache the result */
5818 if (*split_buf == NULL)
5819 *split_buf = uc_split_args(eap->arg, split_len);
5820
5821 result = *split_len;
5822 if (buf != NULL && result != 0)
5823 STRCPY(buf, *split_buf);
5824
5825 break;
5826 }
5827 break;
5828
5829 case ct_BANG:
5830 result = eap->forceit ? 1 : 0;
5831 if (quote)
5832 result += 2;
5833 if (buf != NULL)
5834 {
5835 if (quote)
5836 *buf++ = '"';
5837 if (eap->forceit)
5838 *buf++ = '!';
5839 if (quote)
5840 *buf = '"';
5841 }
5842 break;
5843
5844 case ct_LINE1:
5845 case ct_LINE2:
5846 case ct_COUNT:
5847 {
5848 char num_buf[20];
5849 long num = (type == ct_LINE1) ? eap->line1 :
5850 (type == ct_LINE2) ? eap->line2 :
5851 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5852 size_t num_len;
5853
5854 sprintf(num_buf, "%ld", num);
5855 num_len = STRLEN(num_buf);
5856 result = num_len;
5857
5858 if (quote)
5859 result += 2;
5860
5861 if (buf != NULL)
5862 {
5863 if (quote)
5864 *buf++ = '"';
5865 STRCPY(buf, num_buf);
5866 buf += num_len;
5867 if (quote)
5868 *buf = '"';
5869 }
5870
5871 break;
5872 }
5873
5874 case ct_REGISTER:
5875 result = eap->regname ? 1 : 0;
5876 if (quote)
5877 result += 2;
5878 if (buf != NULL)
5879 {
5880 if (quote)
5881 *buf++ = '\'';
5882 if (eap->regname)
5883 *buf++ = eap->regname;
5884 if (quote)
5885 *buf = '\'';
5886 }
5887 break;
5888
5889 case ct_LT:
5890 result = 1;
5891 if (buf != NULL)
5892 *buf = '<';
5893 break;
5894
5895 default:
5896 /* Not recognized: just copy the '<' and return -1. */
5897 result = (size_t)-1;
5898 if (buf != NULL)
5899 *buf = '<';
5900 break;
5901 }
5902
5903 return result;
5904}
5905
5906 static void
5907do_ucmd(eap)
5908 exarg_T *eap;
5909{
5910 char_u *buf;
5911 char_u *p;
5912 char_u *q;
5913
5914 char_u *start;
5915 char_u *end;
5916 size_t len, totlen;
5917
5918 size_t split_len = 0;
5919 char_u *split_buf = NULL;
5920 ucmd_T *cmd;
5921#ifdef FEAT_EVAL
5922 scid_T save_current_SID = current_SID;
5923#endif
5924
5925 if (eap->cmdidx == CMD_USER)
5926 cmd = USER_CMD(eap->useridx);
5927 else
5928 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5929
5930 /*
5931 * Replace <> in the command by the arguments.
5932 */
5933 buf = NULL;
5934 for (;;)
5935 {
5936 p = cmd->uc_rep;
5937 q = buf;
5938 totlen = 0;
5939 while ((start = vim_strchr(p, '<')) != NULL
5940 && (end = vim_strchr(start + 1, '>')) != NULL)
5941 {
5942 /* Include the '>' */
5943 ++end;
5944
5945 /* Take everything up to the '<' */
5946 len = start - p;
5947 if (buf == NULL)
5948 totlen += len;
5949 else
5950 {
5951 mch_memmove(q, p, len);
5952 q += len;
5953 }
5954
5955 len = uc_check_code(start, end - start, q, cmd, eap,
5956 &split_buf, &split_len);
5957 if (len == (size_t)-1)
5958 {
5959 /* no match, continue after '<' */
5960 p = start + 1;
5961 len = 1;
5962 }
5963 else
5964 p = end;
5965 if (buf == NULL)
5966 totlen += len;
5967 else
5968 q += len;
5969 }
5970 if (buf != NULL) /* second time here, finished */
5971 {
5972 STRCPY(q, p);
5973 break;
5974 }
5975
5976 totlen += STRLEN(p); /* Add on the trailing characters */
5977 buf = alloc((unsigned)(totlen + 1));
5978 if (buf == NULL)
5979 {
5980 vim_free(split_buf);
5981 return;
5982 }
5983 }
5984
5985#ifdef FEAT_EVAL
5986 current_SID = cmd->uc_scriptID;
5987#endif
5988 (void)do_cmdline(buf, eap->getline, eap->cookie,
5989 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5990#ifdef FEAT_EVAL
5991 current_SID = save_current_SID;
5992#endif
5993 vim_free(buf);
5994 vim_free(split_buf);
5995}
5996
5997# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5998 static char_u *
5999get_user_command_name(idx)
6000 int idx;
6001{
6002 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6003}
6004
6005/*
6006 * Function given to ExpandGeneric() to obtain the list of user command names.
6007 */
6008/*ARGSUSED*/
6009 char_u *
6010get_user_commands(xp, idx)
6011 expand_T *xp;
6012 int idx;
6013{
6014 if (idx < curbuf->b_ucmds.ga_len)
6015 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6016 idx -= curbuf->b_ucmds.ga_len;
6017 if (idx < ucmds.ga_len)
6018 return USER_CMD(idx)->uc_name;
6019 return NULL;
6020}
6021
6022/*
6023 * Function given to ExpandGeneric() to obtain the list of user command
6024 * attributes.
6025 */
6026/*ARGSUSED*/
6027 char_u *
6028get_user_cmd_flags(xp, idx)
6029 expand_T *xp;
6030 int idx;
6031{
6032 static char *user_cmd_flags[] =
6033 {"bang", "bar", "buffer", "complete", "count",
6034 "nargs", "range", "register"};
6035
6036 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
6037 return NULL;
6038 return (char_u *)user_cmd_flags[idx];
6039}
6040
6041/*
6042 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6043 */
6044/*ARGSUSED*/
6045 char_u *
6046get_user_cmd_nargs(xp, idx)
6047 expand_T *xp;
6048 int idx;
6049{
6050 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6051
6052 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
6053 return NULL;
6054 return (char_u *)user_cmd_nargs[idx];
6055}
6056
6057/*
6058 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6059 */
6060/*ARGSUSED*/
6061 char_u *
6062get_user_cmd_complete(xp, idx)
6063 expand_T *xp;
6064 int idx;
6065{
6066 return (char_u *)command_complete[idx].name;
6067}
6068# endif /* FEAT_CMDL_COMPL */
6069
6070#endif /* FEAT_USR_CMDS */
6071
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006072#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6073/*
6074 * Parse a completion argument "value[vallen]".
6075 * The detected completion goes in "*complp", argument type in "*argt".
6076 * When there is an argument, for function and user defined completion, it's
6077 * copied to allocated memory and stored in "*compl_arg".
6078 * Returns FAIL if something is wrong.
6079 */
6080 int
6081parse_compl_arg(value, vallen, complp, argt, compl_arg)
6082 char_u *value;
6083 int vallen;
6084 int *complp;
6085 long *argt;
6086 char_u **compl_arg;
6087{
6088 char_u *arg = NULL;
6089 size_t arglen = 0;
6090 int i;
6091 int valend = vallen;
6092
6093 /* Look for any argument part - which is the part after any ',' */
6094 for (i = 0; i < vallen; ++i)
6095 {
6096 if (value[i] == ',')
6097 {
6098 arg = &value[i + 1];
6099 arglen = vallen - i - 1;
6100 valend = i;
6101 break;
6102 }
6103 }
6104
6105 for (i = 0; command_complete[i].expand != 0; ++i)
6106 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006107 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006108 && STRNCMP(value, command_complete[i].name, valend) == 0)
6109 {
6110 *complp = command_complete[i].expand;
6111 if (command_complete[i].expand == EXPAND_BUFFERS)
6112 *argt |= BUFNAME;
6113 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6114 || command_complete[i].expand == EXPAND_FILES)
6115 *argt |= XFILE;
6116 break;
6117 }
6118 }
6119
6120 if (command_complete[i].expand == 0)
6121 {
6122 EMSG2(_("E180: Invalid complete value: %s"), value);
6123 return FAIL;
6124 }
6125
6126# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6127 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6128 && arg != NULL)
6129# else
6130 if (arg != NULL)
6131# endif
6132 {
6133 EMSG(_("E468: Completion argument only allowed for custom completion"));
6134 return FAIL;
6135 }
6136
6137# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6138 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6139 && arg == NULL)
6140 {
6141 EMSG(_("E467: Custom completion requires a function argument"));
6142 return FAIL;
6143 }
6144
6145 if (arg != NULL)
6146 *compl_arg = vim_strnsave(arg, (int)arglen);
6147# endif
6148 return OK;
6149}
6150#endif
6151
Bram Moolenaar071d4272004-06-13 20:20:40 +00006152 static void
6153ex_colorscheme(eap)
6154 exarg_T *eap;
6155{
6156 if (load_colors(eap->arg) == FAIL)
6157 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6158}
6159
6160 static void
6161ex_highlight(eap)
6162 exarg_T *eap;
6163{
6164 if (*eap->arg == NUL && eap->cmd[2] == '!')
6165 MSG(_("Greetings, Vim user!"));
6166 do_highlight(eap->arg, eap->forceit, FALSE);
6167}
6168
6169
6170/*
6171 * Call this function if we thought we were going to exit, but we won't
6172 * (because of an error). May need to restore the terminal mode.
6173 */
6174 void
6175not_exiting()
6176{
6177 exiting = FALSE;
6178 settmode(TMODE_RAW);
6179}
6180
6181/*
6182 * ":quit": quit current window, quit Vim if closed the last window.
6183 */
6184 static void
6185ex_quit(eap)
6186 exarg_T *eap;
6187{
6188#ifdef FEAT_CMDWIN
6189 if (cmdwin_type != 0)
6190 {
6191 cmdwin_result = Ctrl_C;
6192 return;
6193 }
6194#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006195 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006196 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006197 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006198 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006199 return;
6200 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006201#ifdef FEAT_AUTOCMD
6202 if (curbuf_locked())
6203 return;
6204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205
6206#ifdef FEAT_NETBEANS_INTG
6207 netbeansForcedQuit = eap->forceit;
6208#endif
6209
6210 /*
6211 * If there are more files or windows we won't exit.
6212 */
6213 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6214 exiting = TRUE;
6215 if ((!P_HID(curbuf)
6216 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6217 || check_more(TRUE, eap->forceit) == FAIL
6218 || (only_one_window() && check_changed_any(eap->forceit)))
6219 {
6220 not_exiting();
6221 }
6222 else
6223 {
6224#ifdef FEAT_WINDOWS
6225 if (only_one_window()) /* quit last window */
6226#endif
6227 getout(0);
6228#ifdef FEAT_WINDOWS
6229# ifdef FEAT_GUI
6230 need_mouse_correct = TRUE;
6231# endif
6232 /* close window; may free buffer */
6233 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6234#endif
6235 }
6236}
6237
6238/*
6239 * ":cquit".
6240 */
6241/*ARGSUSED*/
6242 static void
6243ex_cquit(eap)
6244 exarg_T *eap;
6245{
6246 getout(1); /* this does not always pass on the exit code to the Manx
6247 compiler. why? */
6248}
6249
6250/*
6251 * ":qall": try to quit all windows
6252 */
6253 static void
6254ex_quit_all(eap)
6255 exarg_T *eap;
6256{
6257# ifdef FEAT_CMDWIN
6258 if (cmdwin_type != 0)
6259 {
6260 if (eap->forceit)
6261 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6262 else
6263 cmdwin_result = K_XF2;
6264 return;
6265 }
6266# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006267
6268 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006269 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006270 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006271 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006272 return;
6273 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006274#ifdef FEAT_AUTOCMD
6275 if (curbuf_locked())
6276 return;
6277#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006278
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279 exiting = TRUE;
6280 if (eap->forceit || !check_changed_any(FALSE))
6281 getout(0);
6282 not_exiting();
6283}
6284
Bram Moolenaard9967712006-03-11 21:18:15 +00006285#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286/*
6287 * ":close": close current window, unless it is the last one
6288 */
6289 static void
6290ex_close(eap)
6291 exarg_T *eap;
6292{
6293# ifdef FEAT_CMDWIN
6294 if (cmdwin_type != 0)
6295 cmdwin_result = K_IGNORE;
6296 else
6297# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006298 if (!text_locked()
6299#ifdef FEAT_AUTOCMD
6300 && !curbuf_locked()
6301#endif
6302 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006303 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304}
6305
Bram Moolenaard9967712006-03-11 21:18:15 +00006306# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006307/*
6308 * ":pclose": Close any preview window.
6309 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006311ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006313{
6314 win_T *win;
6315
6316 for (win = firstwin; win != NULL; win = win->w_next)
6317 if (win->w_p_pvw)
6318 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006319 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006320 break;
6321 }
6322}
Bram Moolenaard9967712006-03-11 21:18:15 +00006323# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006324
Bram Moolenaarf740b292006-02-16 22:11:02 +00006325/*
6326 * Close window "win" and take care of handling closing the last window for a
6327 * modified buffer.
6328 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006329 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006330ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006331 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006333 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334{
6335 int need_hide;
6336 buf_T *buf = win->w_buffer;
6337
6338 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006339 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006341# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342 if ((p_confirm || cmdmod.confirm) && p_write)
6343 {
6344 dialog_changed(buf, FALSE);
6345 if (buf_valid(buf) && bufIsChanged(buf))
6346 return;
6347 need_hide = FALSE;
6348 }
6349 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006350# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 {
6352 EMSG(_(e_nowrtmsg));
6353 return;
6354 }
6355 }
6356
Bram Moolenaard9967712006-03-11 21:18:15 +00006357# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006359# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006360
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006362 if (tp == NULL)
6363 win_close(win, !need_hide && !P_HID(buf));
6364 else
6365 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366}
6367
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006369 * ":tabclose": close current tab page, unless it is the last one.
6370 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 */
6372 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006373ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 exarg_T *eap;
6375{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006376 tabpage_T *tp;
6377
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006378# ifdef FEAT_CMDWIN
6379 if (cmdwin_type != 0)
6380 cmdwin_result = K_IGNORE;
6381 else
6382# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006383 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006384 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006385 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006387 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006388 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006389 tp = find_tabpage((int)eap->line2);
6390 if (tp == NULL)
6391 {
6392 beep_flush();
6393 return;
6394 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006395 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006396 {
6397 tabpage_close_other(tp, eap->forceit);
6398 return;
6399 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006400 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006401 if (!text_locked()
6402#ifdef FEAT_AUTOCMD
6403 && !curbuf_locked()
6404#endif
6405 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006406 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006408}
6409
6410/*
6411 * ":tabonly": close all tab pages except the current one
6412 */
6413 static void
6414ex_tabonly(eap)
6415 exarg_T *eap;
6416{
6417 tabpage_T *tp;
6418 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006419
6420# ifdef FEAT_CMDWIN
6421 if (cmdwin_type != 0)
6422 cmdwin_result = K_IGNORE;
6423 else
6424# endif
6425 if (first_tabpage->tp_next == NULL)
6426 MSG(_("Already only one tab page"));
6427 else
6428 {
6429 /* Repeat this up to a 1000 times, because autocommands may mess
6430 * up the lists. */
6431 for (done = 0; done < 1000; ++done)
6432 {
6433 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6434 if (tp->tp_topframe != topframe)
6435 {
6436 tabpage_close_other(tp, eap->forceit);
6437 /* if we failed to close it quit */
6438 if (valid_tabpage(tp))
6439 done = 1000;
6440 /* start over, "tp" is now invalid */
6441 break;
6442 }
6443 if (first_tabpage->tp_next == NULL)
6444 break;
6445 }
6446 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448
6449/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006450 * Close the current tab page.
6451 */
6452 void
6453tabpage_close(forceit)
6454 int forceit;
6455{
6456 /* First close all the windows but the current one. If that worked then
6457 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006458 if (lastwin != firstwin)
6459 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006460 if (lastwin == firstwin)
6461 ex_win_close(forceit, curwin, NULL);
6462# ifdef FEAT_GUI
6463 need_mouse_correct = TRUE;
6464# endif
6465}
6466
6467/*
6468 * Close tab page "tp", which is not the current tab page.
6469 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006470 * Also takes care of the tab pages line disappearing when closing the
6471 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006472 */
6473 void
6474tabpage_close_other(tp, forceit)
6475 tabpage_T *tp;
6476 int forceit;
6477{
6478 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006479 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006480 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006481
6482 /* Limit to 1000 windows, autocommands may add a window while we close
6483 * one. OK, so I'm paranoid... */
6484 while (++done < 1000)
6485 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006486 wp = tp->tp_firstwin;
6487 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006488
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006489 /* Autocommands may delete the tab page under our fingers and we may
6490 * fail to close a window with a modified buffer. */
6491 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006492 break;
6493 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006494
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006495 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006496 if (h != tabline_height())
6497 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006498}
6499
6500/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501 * ":only".
6502 */
6503 static void
6504ex_only(eap)
6505 exarg_T *eap;
6506{
6507# ifdef FEAT_GUI
6508 need_mouse_correct = TRUE;
6509# endif
6510 close_others(TRUE, eap->forceit);
6511}
6512
6513/*
6514 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006515 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006517 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006518ex_all(eap)
6519 exarg_T *eap;
6520{
6521 if (eap->addr_count == 0)
6522 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006523 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524}
6525#endif /* FEAT_WINDOWS */
6526
6527 static void
6528ex_hide(eap)
6529 exarg_T *eap;
6530{
6531 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6532 eap->errmsg = e_invarg;
6533 else
6534 {
6535 /* ":hide" or ":hide | cmd": hide current window */
6536 eap->nextcmd = check_nextcmd(eap->arg);
6537#ifdef FEAT_WINDOWS
6538 if (!eap->skip)
6539 {
6540# ifdef FEAT_GUI
6541 need_mouse_correct = TRUE;
6542# endif
6543 win_close(curwin, FALSE); /* don't free buffer */
6544 }
6545#endif
6546 }
6547}
6548
6549/*
6550 * ":stop" and ":suspend": Suspend Vim.
6551 */
6552 static void
6553ex_stop(eap)
6554 exarg_T *eap;
6555{
6556 /*
6557 * Disallow suspending for "rvim".
6558 */
6559 if (!check_restricted()
6560#ifdef WIN3264
6561 /*
6562 * Check if external commands are allowed now.
6563 */
6564 && can_end_termcap_mode(TRUE)
6565#endif
6566 )
6567 {
6568 if (!eap->forceit)
6569 autowrite_all();
6570 windgoto((int)Rows - 1, 0);
6571 out_char('\n');
6572 out_flush();
6573 stoptermcap();
6574 out_flush(); /* needed for SUN to restore xterm buffer */
6575#ifdef FEAT_TITLE
6576 mch_restore_title(3); /* restore window titles */
6577#endif
6578 ui_suspend(); /* call machine specific function */
6579#ifdef FEAT_TITLE
6580 maketitle();
6581 resettitle(); /* force updating the title */
6582#endif
6583 starttermcap();
6584 scroll_start(); /* scroll screen before redrawing */
6585 redraw_later_clear();
6586 shell_resized(); /* may have resized window */
6587 }
6588}
6589
6590/*
6591 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6592 */
6593 static void
6594ex_exit(eap)
6595 exarg_T *eap;
6596{
6597#ifdef FEAT_CMDWIN
6598 if (cmdwin_type != 0)
6599 {
6600 cmdwin_result = Ctrl_C;
6601 return;
6602 }
6603#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006604 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006605 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006606 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006607 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006608 return;
6609 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006610#ifdef FEAT_AUTOCMD
6611 if (curbuf_locked())
6612 return;
6613#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614
6615 /*
6616 * if more files or windows we won't exit
6617 */
6618 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6619 exiting = TRUE;
6620 if ( ((eap->cmdidx == CMD_wq
6621 || curbufIsChanged())
6622 && do_write(eap) == FAIL)
6623 || check_more(TRUE, eap->forceit) == FAIL
6624 || (only_one_window() && check_changed_any(eap->forceit)))
6625 {
6626 not_exiting();
6627 }
6628 else
6629 {
6630#ifdef FEAT_WINDOWS
6631 if (only_one_window()) /* quit last window, exit Vim */
6632#endif
6633 getout(0);
6634#ifdef FEAT_WINDOWS
6635# ifdef FEAT_GUI
6636 need_mouse_correct = TRUE;
6637# endif
6638 /* quit current window, may free buffer */
6639 win_close(curwin, !P_HID(curwin->w_buffer));
6640#endif
6641 }
6642}
6643
6644/*
6645 * ":print", ":list", ":number".
6646 */
6647 static void
6648ex_print(eap)
6649 exarg_T *eap;
6650{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006651 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6652 EMSG(_(e_emptybuf));
6653 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006655 for ( ;!got_int; ui_breakcheck())
6656 {
6657 print_line(eap->line1,
6658 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6659 || (eap->flags & EXFLAG_NR)),
6660 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6661 if (++eap->line1 > eap->line2)
6662 break;
6663 out_flush(); /* show one line at a time */
6664 }
6665 setpcmark();
6666 /* put cursor at last line */
6667 curwin->w_cursor.lnum = eap->line2;
6668 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669 }
6670
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672}
6673
6674#ifdef FEAT_BYTEOFF
6675 static void
6676ex_goto(eap)
6677 exarg_T *eap;
6678{
6679 goto_byte(eap->line2);
6680}
6681#endif
6682
6683/*
6684 * ":shell".
6685 */
6686/*ARGSUSED*/
6687 static void
6688ex_shell(eap)
6689 exarg_T *eap;
6690{
6691 do_shell(NULL, 0);
6692}
6693
6694#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6695 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006696 || defined(FEAT_GUI_MSWIN) \
6697 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006698 || defined(PROTO)
6699
6700/*
6701 * Handle a file drop. The code is here because a drop is *nearly* like an
6702 * :args command, but not quite (we have a list of exact filenames, so we
6703 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6704 * code is very similar to :args and hence needs access to a lot of the static
6705 * functions in this file.
6706 *
6707 * The list should be allocated using alloc(), as should each item in the
6708 * list. This function takes over responsibility for freeing the list.
6709 *
Bram Moolenaar81870892007-11-11 18:17:28 +00006710 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00006711 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6712 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6713 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6714 * file functionality is (currently) not in EMX this is not presently a
6715 * problem.
6716 */
6717 void
6718handle_drop(filec, filev, split)
6719 int filec; /* the number of files dropped */
6720 char_u **filev; /* the list of files dropped */
6721 int split; /* force splitting the window */
6722{
6723 exarg_T ea;
6724 int save_msg_scroll = msg_scroll;
6725
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006726 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006727 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006729#ifdef FEAT_AUTOCMD
6730 if (curbuf_locked())
6731 return;
6732#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00006733 /* When the screen is being updated we should not change buffers and
6734 * windows structures, it may cause freed memory to be used. */
6735 if (updating_screen)
6736 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006737
6738 /* Check whether the current buffer is changed. If so, we will need
6739 * to split the current window or data could be lost.
6740 * We don't need to check if the 'hidden' option is set, as in this
6741 * case the buffer won't be lost.
6742 */
6743 if (!P_HID(curbuf) && !split)
6744 {
6745 ++emsg_off;
6746 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6747 --emsg_off;
6748 }
6749 if (split)
6750 {
6751# ifdef FEAT_WINDOWS
6752 if (win_split(0, 0) == FAIL)
6753 return;
6754# ifdef FEAT_SCROLLBIND
6755 curwin->w_p_scb = FALSE;
6756# endif
6757
6758 /* When splitting the window, create a new alist. Otherwise the
6759 * existing one is overwritten. */
6760 alist_unlink(curwin->w_alist);
6761 alist_new();
6762# else
6763 return; /* can't split, always fail */
6764# endif
6765 }
6766
6767 /*
6768 * Set up the new argument list.
6769 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006770 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006771
6772 /*
6773 * Move to the first file.
6774 */
6775 /* Fake up a minimal "next" command for do_argfile() */
6776 vim_memset(&ea, 0, sizeof(ea));
6777 ea.cmd = (char_u *)"next";
6778 do_argfile(&ea, 0);
6779
6780 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6781 * mode that is not needed here. */
6782 need_start_insertmode = FALSE;
6783
6784 /* Restore msg_scroll, otherwise a following command may cause scrolling
6785 * unexpectedly. The screen will be redrawn by the caller, thus
6786 * msg_scroll being set by displaying a message is irrelevant. */
6787 msg_scroll = save_msg_scroll;
6788}
6789#endif
6790
Bram Moolenaar071d4272004-06-13 20:20:40 +00006791/*
6792 * Clear an argument list: free all file names and reset it to zero entries.
6793 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006794 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006795alist_clear(al)
6796 alist_T *al;
6797{
6798 while (--al->al_ga.ga_len >= 0)
6799 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6800 ga_clear(&al->al_ga);
6801}
6802
6803/*
6804 * Init an argument list.
6805 */
6806 void
6807alist_init(al)
6808 alist_T *al;
6809{
6810 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6811}
6812
6813#if defined(FEAT_WINDOWS) || defined(PROTO)
6814
6815/*
6816 * Remove a reference from an argument list.
6817 * Ignored when the argument list is the global one.
6818 * If the argument list is no longer used by any window, free it.
6819 */
6820 void
6821alist_unlink(al)
6822 alist_T *al;
6823{
6824 if (al != &global_alist && --al->al_refcount <= 0)
6825 {
6826 alist_clear(al);
6827 vim_free(al);
6828 }
6829}
6830
6831# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6832/*
6833 * Create a new argument list and use it for the current window.
6834 */
6835 void
6836alist_new()
6837{
6838 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6839 if (curwin->w_alist == NULL)
6840 {
6841 curwin->w_alist = &global_alist;
6842 ++global_alist.al_refcount;
6843 }
6844 else
6845 {
6846 curwin->w_alist->al_refcount = 1;
6847 alist_init(curwin->w_alist);
6848 }
6849}
6850# endif
6851#endif
6852
6853#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6854/*
6855 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006856 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6857 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006858 */
6859 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006860alist_expand(fnum_list, fnum_len)
6861 int *fnum_list;
6862 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006863{
6864 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006865 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866 char_u **new_arg_files;
6867 int new_arg_file_count;
6868 char_u *save_p_su = p_su;
6869 int i;
6870
6871 /* Don't use 'suffixes' here. This should work like the shell did the
6872 * expansion. Also, the vimrc file isn't read yet, thus the user
6873 * can't set the options. */
6874 p_su = empty_option;
6875 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6876 if (old_arg_files != NULL)
6877 {
6878 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006879 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6880 old_arg_count = GARGCOUNT;
6881 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006882 &new_arg_file_count, &new_arg_files,
6883 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6884 && new_arg_file_count > 0)
6885 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006886 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6887 TRUE, fnum_list, fnum_len);
6888 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006889 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890 }
6891 p_su = save_p_su;
6892}
6893#endif
6894
6895/*
6896 * Set the argument list for the current window.
6897 * Takes over the allocated files[] and the allocated fnames in it.
6898 */
6899 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006900alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006901 alist_T *al;
6902 int count;
6903 char_u **files;
6904 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006905 int *fnum_list;
6906 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907{
6908 int i;
6909
6910 alist_clear(al);
6911 if (ga_grow(&al->al_ga, count) == OK)
6912 {
6913 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006914 {
6915 if (got_int)
6916 {
6917 /* When adding many buffers this can take a long time. Allow
6918 * interrupting here. */
6919 while (i < count)
6920 vim_free(files[i++]);
6921 break;
6922 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006923
6924 /* May set buffer name of a buffer previously used for the
6925 * argument list, so that it's re-used by alist_add. */
6926 if (fnum_list != NULL && i < fnum_len)
6927 buf_set_name(fnum_list[i], files[i]);
6928
Bram Moolenaar071d4272004-06-13 20:20:40 +00006929 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006930 ui_breakcheck();
6931 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932 vim_free(files);
6933 }
6934 else
6935 FreeWild(count, files);
6936#ifdef FEAT_WINDOWS
6937 if (al == &global_alist)
6938#endif
6939 arg_had_last = FALSE;
6940}
6941
6942/*
6943 * Add file "fname" to argument list "al".
6944 * "fname" must have been allocated and "al" must have been checked for room.
6945 */
6946 void
6947alist_add(al, fname, set_fnum)
6948 alist_T *al;
6949 char_u *fname;
6950 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6951{
6952 if (fname == NULL) /* don't add NULL file names */
6953 return;
6954#ifdef BACKSLASH_IN_FILENAME
6955 slash_adjust(fname);
6956#endif
6957 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6958 if (set_fnum > 0)
6959 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6960 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6961 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962}
6963
6964#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6965/*
6966 * Adjust slashes in file names. Called after 'shellslash' was set.
6967 */
6968 void
6969alist_slash_adjust()
6970{
6971 int i;
6972# ifdef FEAT_WINDOWS
6973 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006974 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975# endif
6976
6977 for (i = 0; i < GARGCOUNT; ++i)
6978 if (GARGLIST[i].ae_fname != NULL)
6979 slash_adjust(GARGLIST[i].ae_fname);
6980# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006981 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006982 if (wp->w_alist != &global_alist)
6983 for (i = 0; i < WARGCOUNT(wp); ++i)
6984 if (WARGLIST(wp)[i].ae_fname != NULL)
6985 slash_adjust(WARGLIST(wp)[i].ae_fname);
6986# endif
6987}
6988#endif
6989
6990/*
6991 * ":preserve".
6992 */
6993/*ARGSUSED*/
6994 static void
6995ex_preserve(eap)
6996 exarg_T *eap;
6997{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006998 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 ml_preserve(curbuf, TRUE);
7000}
7001
7002/*
7003 * ":recover".
7004 */
7005 static void
7006ex_recover(eap)
7007 exarg_T *eap;
7008{
7009 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7010 recoverymode = TRUE;
7011 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
7012 && (*eap->arg == NUL
7013 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7014 ml_recover();
7015 recoverymode = FALSE;
7016}
7017
7018/*
7019 * Command modifier used in a wrong way.
7020 */
7021 static void
7022ex_wrongmodifier(eap)
7023 exarg_T *eap;
7024{
7025 eap->errmsg = e_invcmd;
7026}
7027
7028#ifdef FEAT_WINDOWS
7029/*
7030 * :sview [+command] file split window with new file, read-only
7031 * :split [[+command] file] split window with current or new file
7032 * :vsplit [[+command] file] split window vertically with current or new file
7033 * :new [[+command] file] split window with no or new file
7034 * :vnew [[+command] file] split vertically window with no or new file
7035 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007036 *
7037 * :tabedit open new Tab page with empty window
7038 * :tabedit [+command] file open new Tab page and edit "file"
7039 * :tabnew [[+command] file] just like :tabedit
7040 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041 */
7042 void
7043ex_splitview(eap)
7044 exarg_T *eap;
7045{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007046 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007047# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007048 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007049# endif
7050# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007052# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007054# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007055 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7056 {
7057 ex_ni(eap);
7058 return;
7059 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007060# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007062# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007064# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007066# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007067 /* A ":split" in the quickfix window works like ":new". Don't want two
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007068 * quickfix windows. But it's OK when doing ":tab split". */
7069 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 {
7071 if (eap->cmdidx == CMD_split)
7072 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007073# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074 if (eap->cmdidx == CMD_vsplit)
7075 eap->cmdidx = CMD_vnew;
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# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007080# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007081 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 {
7083 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7084 FNAME_MESS, TRUE, curbuf->b_ffname);
7085 if (fname == NULL)
7086 goto theend;
7087 eap->arg = fname;
7088 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007089# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007091# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007093# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007094 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007095# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007096 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007097# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007098 && eap->cmdidx != CMD_new)
7099 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00007100# ifdef FEAT_AUTOCMD
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007101 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00007102# ifdef FEAT_GUI
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007103 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00007104# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007105 au_has_group((char_u *)"FileExplorer"))
7106 {
7107 /* No browsing supported but we do have the file explorer:
7108 * Edit the directory. */
7109 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7110 eap->arg = (char_u *)".";
7111 }
7112 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00007113# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007114 {
7115 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007117 if (fname == NULL)
7118 goto theend;
7119 eap->arg = fname;
7120 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007121 }
7122 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007123# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007125 /*
7126 * Either open new tab page or split the window.
7127 */
7128 if (eap->cmdidx == CMD_tabedit
7129 || eap->cmdidx == CMD_tabfind
7130 || eap->cmdidx == CMD_tabnew)
7131 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007132 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7133 : eap->addr_count == 0 ? 0
7134 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007135 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00007136 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007137
7138 /* set the alternate buffer for the window we came from */
7139 if (curwin != old_curwin
7140 && win_valid(old_curwin)
7141 && old_curwin->w_buffer != curbuf
7142 && !cmdmod.keepalt)
7143 old_curwin->w_alt_fnum = curbuf->b_fnum;
7144 }
7145 }
7146 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7148 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007149# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 /* Reset 'scrollbind' when editing another file, but keep it when
7151 * doing ":split" without arguments. */
7152 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007153# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007155# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 )
7157 curwin->w_p_scb = FALSE;
7158 else
7159 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007160# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 do_exedit(eap, old_curwin);
7162 }
7163
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007164# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007166# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007167
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007168# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169theend:
7170 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007171# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007172}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007173
7174/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007175 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007176 */
7177 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007178tabpage_new()
7179{
7180 exarg_T ea;
7181
7182 vim_memset(&ea, 0, sizeof(ea));
7183 ea.cmdidx = CMD_tabnew;
7184 ea.cmd = (char_u *)"tabn";
7185 ea.arg = (char_u *)"";
7186 ex_splitview(&ea);
7187}
7188
7189/*
7190 * :tabnext command
7191 */
7192 static void
7193ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007194 exarg_T *eap;
7195{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007196 switch (eap->cmdidx)
7197 {
7198 case CMD_tabfirst:
7199 case CMD_tabrewind:
7200 goto_tabpage(1);
7201 break;
7202 case CMD_tablast:
7203 goto_tabpage(9999);
7204 break;
7205 case CMD_tabprevious:
7206 case CMD_tabNext:
7207 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7208 break;
7209 default: /* CMD_tabnext */
7210 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7211 break;
7212 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007213}
7214
7215/*
7216 * :tabmove command
7217 */
7218 static void
7219ex_tabmove(eap)
7220 exarg_T *eap;
7221{
7222 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007223}
7224
7225/*
7226 * :tabs command: List tabs and their contents.
7227 */
7228/*ARGSUSED*/
7229 static void
7230ex_tabs(eap)
7231 exarg_T *eap;
7232{
7233 tabpage_T *tp;
7234 win_T *wp;
7235 int tabcount = 1;
7236
7237 msg_start();
7238 msg_scroll = TRUE;
7239 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7240 {
7241 msg_putchar('\n');
7242 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7243 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7244 out_flush(); /* output one line at a time */
7245 ui_breakcheck();
7246
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007247 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007248 wp = firstwin;
7249 else
7250 wp = tp->tp_firstwin;
7251 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7252 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007253 msg_putchar('\n');
7254 msg_putchar(wp == curwin ? '>' : ' ');
7255 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007256 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7257 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007258 if (buf_spname(wp->w_buffer) != NULL)
7259 STRCPY(IObuff, buf_spname(wp->w_buffer));
7260 else
7261 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7262 IObuff, IOSIZE, TRUE);
7263 msg_outtrans(IObuff);
7264 out_flush(); /* output one line at a time */
7265 ui_breakcheck();
7266 }
7267 }
7268}
7269
7270#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007271
7272/*
7273 * ":mode": Set screen mode.
7274 * If no argument given, just get the screen size and redraw.
7275 */
7276 static void
7277ex_mode(eap)
7278 exarg_T *eap;
7279{
7280 if (*eap->arg == NUL)
7281 shell_resized();
7282 else
7283 mch_screenmode(eap->arg);
7284}
7285
7286#ifdef FEAT_WINDOWS
7287/*
7288 * ":resize".
7289 * set, increment or decrement current window height
7290 */
7291 static void
7292ex_resize(eap)
7293 exarg_T *eap;
7294{
7295 int n;
7296 win_T *wp = curwin;
7297
7298 if (eap->addr_count > 0)
7299 {
7300 n = eap->line2;
7301 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7302 ;
7303 }
7304
7305#ifdef FEAT_GUI
7306 need_mouse_correct = TRUE;
7307#endif
7308 n = atol((char *)eap->arg);
7309#ifdef FEAT_VERTSPLIT
7310 if (cmdmod.split & WSP_VERT)
7311 {
7312 if (*eap->arg == '-' || *eap->arg == '+')
7313 n += W_WIDTH(curwin);
7314 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7315 n = 9999;
7316 win_setwidth_win((int)n, wp);
7317 }
7318 else
7319#endif
7320 {
7321 if (*eap->arg == '-' || *eap->arg == '+')
7322 n += curwin->w_height;
7323 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7324 n = 9999;
7325 win_setheight_win((int)n, wp);
7326 }
7327}
7328#endif
7329
7330/*
7331 * ":find [+command] <file>" command.
7332 */
7333 static void
7334ex_find(eap)
7335 exarg_T *eap;
7336{
7337#ifdef FEAT_SEARCHPATH
7338 char_u *fname;
7339 int count;
7340
7341 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7342 TRUE, curbuf->b_ffname);
7343 if (eap->addr_count > 0)
7344 {
7345 /* Repeat finding the file "count" times. This matters when it
7346 * appears several times in the path. */
7347 count = eap->line2;
7348 while (fname != NULL && --count > 0)
7349 {
7350 vim_free(fname);
7351 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7352 FALSE, curbuf->b_ffname);
7353 }
7354 }
7355
7356 if (fname != NULL)
7357 {
7358 eap->arg = fname;
7359#endif
7360 do_exedit(eap, NULL);
7361#ifdef FEAT_SEARCHPATH
7362 vim_free(fname);
7363 }
7364#endif
7365}
7366
7367/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007368 * ":open" simulation: for now just work like ":visual".
7369 */
7370 static void
7371ex_open(eap)
7372 exarg_T *eap;
7373{
7374 regmatch_T regmatch;
7375 char_u *p;
7376
7377 curwin->w_cursor.lnum = eap->line2;
7378 beginline(BL_SOL | BL_FIX);
7379 if (*eap->arg == '/')
7380 {
7381 /* ":open /pattern/": put cursor in column found with pattern */
7382 ++eap->arg;
7383 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7384 *p = NUL;
7385 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7386 if (regmatch.regprog != NULL)
7387 {
7388 regmatch.rm_ic = p_ic;
7389 p = ml_get_curline();
7390 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007391 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007392 else
7393 EMSG(_(e_nomatch));
7394 vim_free(regmatch.regprog);
7395 }
7396 /* Move to the NUL, ignore any other arguments. */
7397 eap->arg += STRLEN(eap->arg);
7398 }
7399 check_cursor();
7400
7401 eap->cmdidx = CMD_visual;
7402 do_exedit(eap, NULL);
7403}
7404
7405/*
7406 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407 */
7408 static void
7409ex_edit(eap)
7410 exarg_T *eap;
7411{
7412 do_exedit(eap, NULL);
7413}
7414
7415/*
7416 * ":edit <file>" command and alikes.
7417 */
7418/*ARGSUSED*/
7419 void
7420do_exedit(eap, old_curwin)
7421 exarg_T *eap;
7422 win_T *old_curwin; /* curwin before doing a split or NULL */
7423{
7424 int n;
7425#ifdef FEAT_WINDOWS
7426 int need_hide;
7427#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007428 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007429
7430 /*
7431 * ":vi" command ends Ex mode.
7432 */
7433 if (exmode_active && (eap->cmdidx == CMD_visual
7434 || eap->cmdidx == CMD_view))
7435 {
7436 exmode_active = FALSE;
7437 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007438 {
7439 /* Special case: ":global/pat/visual\NLvi-commands" */
7440 if (global_busy)
7441 {
7442 int rd = RedrawingDisabled;
7443 int nwr = no_wait_return;
7444 int ms = msg_scroll;
7445#ifdef FEAT_GUI
7446 int he = hold_gui_events;
7447#endif
7448
7449 if (eap->nextcmd != NULL)
7450 {
7451 stuffReadbuff(eap->nextcmd);
7452 eap->nextcmd = NULL;
7453 }
7454
7455 if (exmode_was != EXMODE_VIM)
7456 settmode(TMODE_RAW);
7457 RedrawingDisabled = 0;
7458 no_wait_return = 0;
7459 need_wait_return = FALSE;
7460 msg_scroll = 0;
7461#ifdef FEAT_GUI
7462 hold_gui_events = 0;
7463#endif
7464 must_redraw = CLEAR;
7465
7466 main_loop(FALSE, TRUE);
7467
7468 RedrawingDisabled = rd;
7469 no_wait_return = nwr;
7470 msg_scroll = ms;
7471#ifdef FEAT_GUI
7472 hold_gui_events = he;
7473#endif
7474 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007475 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007476 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007477 }
7478
7479 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007480 || eap->cmdidx == CMD_tabnew
7481 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482#ifdef FEAT_VERTSPLIT
7483 || eap->cmdidx == CMD_vnew
7484#endif
7485 ) && *eap->arg == NUL)
7486 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007487 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007488 setpcmark();
7489 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7490 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7491 }
7492 else if ((eap->cmdidx != CMD_split
7493#ifdef FEAT_VERTSPLIT
7494 && eap->cmdidx != CMD_vsplit
7495#endif
7496 )
7497 || *eap->arg != NUL
7498#ifdef FEAT_BROWSE
7499 || cmdmod.browse
7500#endif
7501 )
7502 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007503#ifdef FEAT_AUTOCMD
7504 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7505 * can bring us here, others are stopped earlier. */
7506 if (*eap->arg != NUL && curbuf_locked())
7507 return;
7508#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007509 n = readonlymode;
7510 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7511 readonlymode = TRUE;
7512 else if (eap->cmdidx == CMD_enew)
7513 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7514 empty buffer */
7515 setpcmark();
7516 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7517 NULL, eap,
7518 /* ":edit" goes to first line if Vi compatible */
7519 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7520 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7521 ? ECMD_ONE : eap->do_ecmd_lnum,
7522 (P_HID(curbuf) ? ECMD_HIDE : 0)
7523 + (eap->forceit ? ECMD_FORCEIT : 0)
7524#ifdef FEAT_LISTCMDS
7525 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7526#endif
7527 ) == FAIL)
7528 {
7529 /* Editing the file failed. If the window was split, close it. */
7530#ifdef FEAT_WINDOWS
7531 if (old_curwin != NULL)
7532 {
7533 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7534 if (!need_hide || P_HID(curbuf))
7535 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007536# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7537 cleanup_T cs;
7538
7539 /* Reset the error/interrupt/exception state here so that
7540 * aborting() returns FALSE when closing a window. */
7541 enter_cleanup(&cs);
7542# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543# ifdef FEAT_GUI
7544 need_mouse_correct = TRUE;
7545# endif
7546 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007547
7548# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7549 /* Restore the error/interrupt/exception state if not
7550 * discarded by a new aborting error, interrupt, or
7551 * uncaught exception. */
7552 leave_cleanup(&cs);
7553# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007554 }
7555 }
7556#endif
7557 }
7558 else if (readonlymode && curbuf->b_nwindows == 1)
7559 {
7560 /* When editing an already visited buffer, 'readonly' won't be set
7561 * but the previous value is kept. With ":view" and ":sview" we
7562 * want the file to be readonly, except when another window is
7563 * editing the same buffer. */
7564 curbuf->b_p_ro = TRUE;
7565 }
7566 readonlymode = n;
7567 }
7568 else
7569 {
7570 if (eap->do_ecmd_cmd != NULL)
7571 do_cmdline_cmd(eap->do_ecmd_cmd);
7572#ifdef FEAT_TITLE
7573 n = curwin->w_arg_idx_invalid;
7574#endif
7575 check_arg_idx(curwin);
7576#ifdef FEAT_TITLE
7577 if (n != curwin->w_arg_idx_invalid)
7578 maketitle();
7579#endif
7580 }
7581
7582#ifdef FEAT_WINDOWS
7583 /*
7584 * if ":split file" worked, set alternate file name in old window to new
7585 * file
7586 */
7587 if (old_curwin != NULL
7588 && *eap->arg != NUL
7589 && curwin != old_curwin
7590 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007591 && old_curwin->w_buffer != curbuf
7592 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007593 old_curwin->w_alt_fnum = curbuf->b_fnum;
7594#endif
7595
7596 ex_no_reprint = TRUE;
7597}
7598
7599#ifndef FEAT_GUI
7600/*
7601 * ":gui" and ":gvim" when there is no GUI.
7602 */
7603 static void
7604ex_nogui(eap)
7605 exarg_T *eap;
7606{
7607 eap->errmsg = e_nogvim;
7608}
7609#endif
7610
7611#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7612 static void
7613ex_tearoff(eap)
7614 exarg_T *eap;
7615{
7616 gui_make_tearoff(eap->arg);
7617}
7618#endif
7619
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007620#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621 static void
7622ex_popup(eap)
7623 exarg_T *eap;
7624{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007625 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007626}
7627#endif
7628
7629/*ARGSUSED*/
7630 static void
7631ex_swapname(eap)
7632 exarg_T *eap;
7633{
7634 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7635 MSG(_("No swap file"));
7636 else
7637 msg(curbuf->b_ml.ml_mfp->mf_fname);
7638}
7639
7640/*
7641 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7642 * offset.
7643 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7644 */
7645/*ARGSUSED*/
7646 static void
7647ex_syncbind(eap)
7648 exarg_T *eap;
7649{
7650#ifdef FEAT_SCROLLBIND
7651 win_T *wp;
7652 long topline;
7653 long y;
7654 linenr_T old_linenr = curwin->w_cursor.lnum;
7655
7656 setpcmark();
7657
7658 /*
7659 * determine max topline
7660 */
7661 if (curwin->w_p_scb)
7662 {
7663 topline = curwin->w_topline;
7664 for (wp = firstwin; wp; wp = wp->w_next)
7665 {
7666 if (wp->w_p_scb && wp->w_buffer)
7667 {
7668 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7669 if (topline > y)
7670 topline = y;
7671 }
7672 }
7673 if (topline < 1)
7674 topline = 1;
7675 }
7676 else
7677 {
7678 topline = 1;
7679 }
7680
7681
7682 /*
7683 * set all scrollbind windows to the same topline
7684 */
7685 wp = curwin;
7686 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7687 {
7688 if (curwin->w_p_scb)
7689 {
7690 y = topline - curwin->w_topline;
7691 if (y > 0)
7692 scrollup(y, TRUE);
7693 else
7694 scrolldown(-y, TRUE);
7695 curwin->w_scbind_pos = topline;
7696 redraw_later(VALID);
7697 cursor_correct();
7698#ifdef FEAT_WINDOWS
7699 curwin->w_redr_status = TRUE;
7700#endif
7701 }
7702 }
7703 curwin = wp;
7704 if (curwin->w_p_scb)
7705 {
7706 did_syncbind = TRUE;
7707 checkpcmark();
7708 if (old_linenr != curwin->w_cursor.lnum)
7709 {
7710 char_u ctrl_o[2];
7711
7712 ctrl_o[0] = Ctrl_O;
7713 ctrl_o[1] = 0;
7714 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7715 }
7716 }
7717#endif
7718}
7719
7720
7721 static void
7722ex_read(eap)
7723 exarg_T *eap;
7724{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007725 int i;
7726 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7727 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007728
7729 if (eap->usefilter) /* :r!cmd */
7730 do_bang(1, eap, FALSE, FALSE, TRUE);
7731 else
7732 {
7733 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7734 return;
7735
7736#ifdef FEAT_BROWSE
7737 if (cmdmod.browse)
7738 {
7739 char_u *browseFile;
7740
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007741 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007742 NULL, NULL, NULL, curbuf);
7743 if (browseFile != NULL)
7744 {
7745 i = readfile(browseFile, NULL,
7746 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7747 vim_free(browseFile);
7748 }
7749 else
7750 i = OK;
7751 }
7752 else
7753#endif
7754 if (*eap->arg == NUL)
7755 {
7756 if (check_fname() == FAIL) /* check for no file name */
7757 return;
7758 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7759 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7760 }
7761 else
7762 {
7763 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7764 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7765 i = readfile(eap->arg, NULL,
7766 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7767
7768 }
7769 if (i == FAIL)
7770 {
7771#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7772 if (!aborting())
7773#endif
7774 EMSG2(_(e_notopen), eap->arg);
7775 }
7776 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007777 {
7778 if (empty && exmode_active)
7779 {
7780 /* Delete the empty line that remains. Historically ex does
7781 * this but vi doesn't. */
7782 if (eap->line2 == 0)
7783 lnum = curbuf->b_ml.ml_line_count;
7784 else
7785 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007786 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007787 {
7788 ml_delete(lnum, FALSE);
7789 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007790 if (curwin->w_cursor.lnum > 1
7791 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007792 --curwin->w_cursor.lnum;
7793 }
7794 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007795 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007796 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007797 }
7798}
7799
Bram Moolenaarea408852005-06-25 22:49:46 +00007800static char_u *prev_dir = NULL;
7801
7802#if defined(EXITFREE) || defined(PROTO)
7803 void
7804free_cd_dir()
7805{
7806 vim_free(prev_dir);
Bram Moolenaara0174af2008-01-02 20:08:25 +00007807 prev_dir = NULL;
Bram Moolenaarea408852005-06-25 22:49:46 +00007808}
7809#endif
7810
7811
Bram Moolenaar071d4272004-06-13 20:20:40 +00007812/*
7813 * ":cd", ":lcd", ":chdir" and ":lchdir".
7814 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00007815 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007816ex_cd(eap)
7817 exarg_T *eap;
7818{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007819 char_u *new_dir;
7820 char_u *tofree;
7821
7822 new_dir = eap->arg;
7823#if !defined(UNIX) && !defined(VMS)
7824 /* for non-UNIX ":cd" means: print current directory */
7825 if (*new_dir == NUL)
7826 ex_pwd(NULL);
7827 else
7828#endif
7829 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007830 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7831 && !eap->forceit)
7832 {
Bram Moolenaar81870892007-11-11 18:17:28 +00007833 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00007834 return;
7835 }
7836
Bram Moolenaar071d4272004-06-13 20:20:40 +00007837 /* ":cd -": Change to previous directory */
7838 if (STRCMP(new_dir, "-") == 0)
7839 {
7840 if (prev_dir == NULL)
7841 {
7842 EMSG(_("E186: No previous directory"));
7843 return;
7844 }
7845 new_dir = prev_dir;
7846 }
7847
7848 /* Save current directory for next ":cd -" */
7849 tofree = prev_dir;
7850 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7851 prev_dir = vim_strsave(NameBuff);
7852 else
7853 prev_dir = NULL;
7854
7855#if defined(UNIX) || defined(VMS)
7856 /* for UNIX ":cd" means: go to home directory */
7857 if (*new_dir == NUL)
7858 {
7859 /* use NameBuff for home directory name */
7860# ifdef VMS
7861 char_u *p;
7862
7863 p = mch_getenv((char_u *)"SYS$LOGIN");
7864 if (p == NULL || *p == NUL) /* empty is the same as not set */
7865 NameBuff[0] = NUL;
7866 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007867 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007868# else
7869 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7870# endif
7871 new_dir = NameBuff;
7872 }
7873#endif
7874 if (new_dir == NULL || vim_chdir(new_dir))
7875 EMSG(_(e_failed));
7876 else
7877 {
7878 vim_free(curwin->w_localdir);
7879 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7880 {
7881 /* If still in global directory, need to remember current
7882 * directory as global directory. */
7883 if (globaldir == NULL && prev_dir != NULL)
7884 globaldir = vim_strsave(prev_dir);
7885 /* Remember this local directory for the window. */
7886 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7887 curwin->w_localdir = vim_strsave(NameBuff);
7888 }
7889 else
7890 {
7891 /* We are now in the global directory, no need to remember its
7892 * name. */
7893 vim_free(globaldir);
7894 globaldir = NULL;
7895 curwin->w_localdir = NULL;
7896 }
7897
7898 shorten_fnames(TRUE);
7899
7900 /* Echo the new current directory if the command was typed. */
7901 if (KeyTyped)
7902 ex_pwd(eap);
7903 }
7904 vim_free(tofree);
7905 }
7906}
7907
7908/*
7909 * ":pwd".
7910 */
7911/*ARGSUSED*/
7912 static void
7913ex_pwd(eap)
7914 exarg_T *eap;
7915{
7916 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7917 {
7918#ifdef BACKSLASH_IN_FILENAME
7919 slash_adjust(NameBuff);
7920#endif
7921 msg(NameBuff);
7922 }
7923 else
7924 EMSG(_("E187: Unknown"));
7925}
7926
7927/*
7928 * ":=".
7929 */
7930 static void
7931ex_equal(eap)
7932 exarg_T *eap;
7933{
7934 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007935 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007936}
7937
7938 static void
7939ex_sleep(eap)
7940 exarg_T *eap;
7941{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007942 int n;
7943 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007944
7945 if (cursor_valid())
7946 {
7947 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7948 if (n >= 0)
7949 windgoto((int)n, curwin->w_wcol);
7950 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007951
7952 len = eap->line2;
7953 switch (*eap->arg)
7954 {
7955 case 'm': break;
7956 case NUL: len *= 1000L; break;
7957 default: EMSG2(_(e_invarg2), eap->arg); return;
7958 }
7959 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007960}
7961
7962/*
7963 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7964 */
7965 void
7966do_sleep(msec)
7967 long msec;
7968{
7969 long done;
7970
7971 cursor_on();
7972 out_flush();
7973 for (done = 0; !got_int && done < msec; done += 1000L)
7974 {
7975 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7976 ui_breakcheck();
7977 }
7978}
7979
7980 static void
7981do_exmap(eap, isabbrev)
7982 exarg_T *eap;
7983 int isabbrev;
7984{
7985 int mode;
7986 char_u *cmdp;
7987
7988 cmdp = eap->cmd;
7989 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7990
7991 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7992 eap->arg, mode, isabbrev))
7993 {
7994 case 1: EMSG(_(e_invarg));
7995 break;
7996 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7997 break;
7998 }
7999}
8000
8001/*
8002 * ":winsize" command (obsolete).
8003 */
8004 static void
8005ex_winsize(eap)
8006 exarg_T *eap;
8007{
8008 int w, h;
8009 char_u *arg = eap->arg;
8010 char_u *p;
8011
8012 w = getdigits(&arg);
8013 arg = skipwhite(arg);
8014 p = arg;
8015 h = getdigits(&arg);
8016 if (*p != NUL && *arg == NUL)
8017 set_shellsize(w, h, TRUE);
8018 else
8019 EMSG(_("E465: :winsize requires two number arguments"));
8020}
8021
8022#ifdef FEAT_WINDOWS
8023 static void
8024ex_wincmd(eap)
8025 exarg_T *eap;
8026{
8027 int xchar = NUL;
8028 char_u *p;
8029
8030 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8031 {
8032 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8033 if (eap->arg[1] == NUL)
8034 {
8035 EMSG(_(e_invarg));
8036 return;
8037 }
8038 xchar = eap->arg[1];
8039 p = eap->arg + 2;
8040 }
8041 else
8042 p = eap->arg + 1;
8043
8044 eap->nextcmd = check_nextcmd(p);
8045 p = skipwhite(p);
8046 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8047 EMSG(_(e_invarg));
8048 else
8049 {
8050 /* Pass flags on for ":vertical wincmd ]". */
8051 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008052 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008053 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8054 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008055 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008056 }
8057}
8058#endif
8059
Bram Moolenaar843ee412004-06-30 16:16:41 +00008060#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008061/*
8062 * ":winpos".
8063 */
8064 static void
8065ex_winpos(eap)
8066 exarg_T *eap;
8067{
8068 int x, y;
8069 char_u *arg = eap->arg;
8070 char_u *p;
8071
8072 if (*arg == NUL)
8073 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008074# if defined(FEAT_GUI) || defined(MSWIN)
8075# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008077# else
8078 if (mch_get_winpos(&x, &y) != FAIL)
8079# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008080 {
8081 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8082 msg(IObuff);
8083 }
8084 else
8085# endif
8086 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8087 }
8088 else
8089 {
8090 x = getdigits(&arg);
8091 arg = skipwhite(arg);
8092 p = arg;
8093 y = getdigits(&arg);
8094 if (*p == NUL || *arg != NUL)
8095 {
8096 EMSG(_("E466: :winpos requires two number arguments"));
8097 return;
8098 }
8099# ifdef FEAT_GUI
8100 if (gui.in_use)
8101 gui_mch_set_winpos(x, y);
8102 else if (gui.starting)
8103 {
8104 /* Remember the coordinates for when the window is opened. */
8105 gui_win_x = x;
8106 gui_win_y = y;
8107 }
8108# ifdef HAVE_TGETENT
8109 else
8110# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008111# else
8112# ifdef MSWIN
8113 mch_set_winpos(x, y);
8114# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008115# endif
8116# ifdef HAVE_TGETENT
8117 if (*T_CWP)
8118 term_set_winpos(x, y);
8119# endif
8120 }
8121}
8122#endif
8123
8124/*
8125 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8126 */
8127 static void
8128ex_operators(eap)
8129 exarg_T *eap;
8130{
8131 oparg_T oa;
8132
8133 clear_oparg(&oa);
8134 oa.regname = eap->regname;
8135 oa.start.lnum = eap->line1;
8136 oa.end.lnum = eap->line2;
8137 oa.line_count = eap->line2 - eap->line1 + 1;
8138 oa.motion_type = MLINE;
8139#ifdef FEAT_VIRTUALEDIT
8140 virtual_op = FALSE;
8141#endif
8142 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8143 {
8144 setpcmark();
8145 curwin->w_cursor.lnum = eap->line1;
8146 beginline(BL_SOL | BL_FIX);
8147 }
8148
8149 switch (eap->cmdidx)
8150 {
8151 case CMD_delete:
8152 oa.op_type = OP_DELETE;
8153 op_delete(&oa);
8154 break;
8155
8156 case CMD_yank:
8157 oa.op_type = OP_YANK;
8158 (void)op_yank(&oa, FALSE, TRUE);
8159 break;
8160
8161 default: /* CMD_rshift or CMD_lshift */
8162 if ((eap->cmdidx == CMD_rshift)
8163#ifdef FEAT_RIGHTLEFT
8164 ^ curwin->w_p_rl
8165#endif
8166 )
8167 oa.op_type = OP_RSHIFT;
8168 else
8169 oa.op_type = OP_LSHIFT;
8170 op_shift(&oa, FALSE, eap->amount);
8171 break;
8172 }
8173#ifdef FEAT_VIRTUALEDIT
8174 virtual_op = MAYBE;
8175#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008176 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008177}
8178
8179/*
8180 * ":put".
8181 */
8182 static void
8183ex_put(eap)
8184 exarg_T *eap;
8185{
8186 /* ":0put" works like ":1put!". */
8187 if (eap->line2 == 0)
8188 {
8189 eap->line2 = 1;
8190 eap->forceit = TRUE;
8191 }
8192 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008193 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8194 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008195}
8196
8197/*
8198 * Handle ":copy" and ":move".
8199 */
8200 static void
8201ex_copymove(eap)
8202 exarg_T *eap;
8203{
8204 long n;
8205
8206 n = get_address(&eap->arg, FALSE, FALSE);
8207 if (eap->arg == NULL) /* error detected */
8208 {
8209 eap->nextcmd = NULL;
8210 return;
8211 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008212 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008213
8214 /*
8215 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8216 */
8217 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8218 {
8219 EMSG(_(e_invaddr));
8220 return;
8221 }
8222
8223 if (eap->cmdidx == CMD_move)
8224 {
8225 if (do_move(eap->line1, eap->line2, n) == FAIL)
8226 return;
8227 }
8228 else
8229 ex_copy(eap->line1, eap->line2, n);
8230 u_clearline();
8231 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008232 ex_may_print(eap);
8233}
8234
8235/*
8236 * Print the current line if flags were given to the Ex command.
8237 */
8238 static void
8239ex_may_print(eap)
8240 exarg_T *eap;
8241{
8242 if (eap->flags != 0)
8243 {
8244 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8245 (eap->flags & EXFLAG_LIST));
8246 ex_no_reprint = TRUE;
8247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008248}
8249
8250/*
8251 * ":smagic" and ":snomagic".
8252 */
8253 static void
8254ex_submagic(eap)
8255 exarg_T *eap;
8256{
8257 int magic_save = p_magic;
8258
8259 p_magic = (eap->cmdidx == CMD_smagic);
8260 do_sub(eap);
8261 p_magic = magic_save;
8262}
8263
8264/*
8265 * ":join".
8266 */
8267 static void
8268ex_join(eap)
8269 exarg_T *eap;
8270{
8271 curwin->w_cursor.lnum = eap->line1;
8272 if (eap->line1 == eap->line2)
8273 {
8274 if (eap->addr_count >= 2) /* :2,2join does nothing */
8275 return;
8276 if (eap->line2 == curbuf->b_ml.ml_line_count)
8277 {
8278 beep_flush();
8279 return;
8280 }
8281 ++eap->line2;
8282 }
8283 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8284 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008285 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008286}
8287
8288/*
8289 * ":[addr]@r" or ":[addr]*r": execute register
8290 */
8291 static void
8292ex_at(eap)
8293 exarg_T *eap;
8294{
8295 int c;
8296
8297 curwin->w_cursor.lnum = eap->line2;
8298
8299#ifdef USE_ON_FLY_SCROLL
8300 dont_scroll = TRUE; /* disallow scrolling here */
8301#endif
8302
8303 /* get the register name. No name means to use the previous one */
8304 c = *eap->arg;
8305 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8306 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008307 /* Put the register in the typeahead buffer with the "silent" flag. */
8308 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8309 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008310 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008311 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008312 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008313 else
8314 {
8315 int save_efr = exec_from_reg;
8316
8317 exec_from_reg = TRUE;
8318
8319 /*
8320 * Execute from the typeahead buffer.
8321 * Originally this didn't check for the typeahead buffer to be empty,
8322 * thus could read more Ex commands from stdin. It's not clear why,
8323 * it is certainly unexpected.
8324 */
8325 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8326 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8327
8328 exec_from_reg = save_efr;
8329 }
8330}
8331
8332/*
8333 * ":!".
8334 */
8335 static void
8336ex_bang(eap)
8337 exarg_T *eap;
8338{
8339 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8340}
8341
8342/*
8343 * ":undo".
8344 */
8345/*ARGSUSED*/
8346 static void
8347ex_undo(eap)
8348 exarg_T *eap;
8349{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008350 if (eap->addr_count == 1) /* :undo 123 */
8351 undo_time(eap->line2, FALSE, TRUE);
8352 else
8353 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008354}
8355
8356/*
8357 * ":redo".
8358 */
8359/*ARGSUSED*/
8360 static void
8361ex_redo(eap)
8362 exarg_T *eap;
8363{
8364 u_redo(1);
8365}
8366
8367/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008368 * ":earlier" and ":later".
8369 */
8370/*ARGSUSED*/
8371 static void
8372ex_later(eap)
8373 exarg_T *eap;
8374{
8375 long count = 0;
8376 int sec = FALSE;
8377 char_u *p = eap->arg;
8378
8379 if (*p == NUL)
8380 count = 1;
8381 else if (isdigit(*p))
8382 {
8383 count = getdigits(&p);
8384 switch (*p)
8385 {
8386 case 's': ++p; sec = TRUE; break;
8387 case 'm': ++p; sec = TRUE; count *= 60; break;
8388 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8389 }
8390 }
8391
8392 if (*p != NUL)
8393 EMSG2(_(e_invarg2), eap->arg);
8394 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008395 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008396}
8397
8398/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008399 * ":redir": start/stop redirection.
8400 */
8401 static void
8402ex_redir(eap)
8403 exarg_T *eap;
8404{
8405 char *mode;
8406 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008407 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008408
8409 if (STRICMP(eap->arg, "END") == 0)
8410 close_redir();
8411 else
8412 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008413 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008414 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008415 ++arg;
8416 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008417 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008418 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008419 mode = "a";
8420 }
8421 else
8422 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008423 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008424
8425 close_redir();
8426
8427 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008428 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008429 if (fname == NULL)
8430 return;
8431#ifdef FEAT_BROWSE
8432 if (cmdmod.browse)
8433 {
8434 char_u *browseFile;
8435
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008436 browseFile = do_browse(BROWSE_SAVE,
8437 (char_u *)_("Save Redirection"),
8438 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008439 if (browseFile == NULL)
8440 return; /* operation cancelled */
8441 vim_free(fname);
8442 fname = browseFile;
8443 eap->forceit = TRUE; /* since dialog already asked */
8444 }
8445#endif
8446
8447 redir_fd = open_exfile(fname, eap->forceit, mode);
8448 vim_free(fname);
8449 }
8450#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008451 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008452 {
8453 /* redirect to a register a-z (resp. A-Z for appending) */
8454 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008455 ++arg;
8456 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008457# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008458 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008459 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008460# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008461 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008462 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008463 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008464 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00008465 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008466 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008467 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00008468 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008469 if (*arg == '>')
8470 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008471 /* Make register empty when not using @A-@Z and the
8472 * command is valid. */
8473 if (*arg == NUL && !isupper(redir_reg))
8474 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008475 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008476 }
8477 if (*arg != NUL)
8478 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008479 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008480 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008481 }
8482 }
8483 else if (*arg == '=' && arg[1] == '>')
8484 {
8485 int append;
8486
8487 /* redirect to a variable */
8488 close_redir();
8489 arg += 2;
8490
8491 if (*arg == '>')
8492 {
8493 ++arg;
8494 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008495 }
8496 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008497 append = FALSE;
8498
8499 if (var_redir_start(skipwhite(arg), append) == OK)
8500 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008501 }
8502#endif
8503
8504 /* TODO: redirect to a buffer */
8505
Bram Moolenaar071d4272004-06-13 20:20:40 +00008506 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008507 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008508 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008509
8510 /* Make sure redirection is not off. Can happen for cmdline completion
8511 * that indirectly invokes a command to catch its output. */
8512 if (redir_fd != NULL
8513#ifdef FEAT_EVAL
8514 || redir_reg || redir_vname
8515#endif
8516 )
8517 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008518}
8519
8520/*
8521 * ":redraw": force redraw
8522 */
8523 static void
8524ex_redraw(eap)
8525 exarg_T *eap;
8526{
8527 int r = RedrawingDisabled;
8528 int p = p_lz;
8529
8530 RedrawingDisabled = 0;
8531 p_lz = FALSE;
8532 update_topline();
8533 update_screen(eap->forceit ? CLEAR :
8534#ifdef FEAT_VISUAL
8535 VIsual_active ? INVERTED :
8536#endif
8537 0);
8538#ifdef FEAT_TITLE
8539 if (need_maketitle)
8540 maketitle();
8541#endif
8542 RedrawingDisabled = r;
8543 p_lz = p;
8544
8545 /* Reset msg_didout, so that a message that's there is overwritten. */
8546 msg_didout = FALSE;
8547 msg_col = 0;
8548
8549 out_flush();
8550}
8551
8552/*
8553 * ":redrawstatus": force redraw of status line(s)
8554 */
8555/*ARGSUSED*/
8556 static void
8557ex_redrawstatus(eap)
8558 exarg_T *eap;
8559{
8560#if defined(FEAT_WINDOWS)
8561 int r = RedrawingDisabled;
8562 int p = p_lz;
8563
8564 RedrawingDisabled = 0;
8565 p_lz = FALSE;
8566 if (eap->forceit)
8567 status_redraw_all();
8568 else
8569 status_redraw_curbuf();
8570 update_screen(
8571# ifdef FEAT_VISUAL
8572 VIsual_active ? INVERTED :
8573# endif
8574 0);
8575 RedrawingDisabled = r;
8576 p_lz = p;
8577 out_flush();
8578#endif
8579}
8580
8581 static void
8582close_redir()
8583{
8584 if (redir_fd != NULL)
8585 {
8586 fclose(redir_fd);
8587 redir_fd = NULL;
8588 }
8589#ifdef FEAT_EVAL
8590 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008591 if (redir_vname)
8592 {
8593 var_redir_stop();
8594 redir_vname = 0;
8595 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008596#endif
8597}
8598
8599#if defined(FEAT_SESSION) && defined(USE_CRNL)
8600# define MKSESSION_NL
8601static int mksession_nl = FALSE; /* use NL only in put_eol() */
8602#endif
8603
8604/*
8605 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8606 */
8607 static void
8608ex_mkrc(eap)
8609 exarg_T *eap;
8610{
8611 FILE *fd;
8612 int failed = FALSE;
8613 char_u *fname;
8614#ifdef FEAT_BROWSE
8615 char_u *browseFile = NULL;
8616#endif
8617#ifdef FEAT_SESSION
8618 int view_session = FALSE;
8619 int using_vdir = FALSE; /* using 'viewdir'? */
8620 char_u *viewFile = NULL;
8621 unsigned *flagp;
8622#endif
8623
8624 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8625 {
8626#ifdef FEAT_SESSION
8627 view_session = TRUE;
8628#else
8629 ex_ni(eap);
8630 return;
8631#endif
8632 }
8633
8634#ifdef FEAT_SESSION
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008635 did_lcd = FALSE;
8636
Bram Moolenaar071d4272004-06-13 20:20:40 +00008637 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8638 if (eap->cmdidx == CMD_mkview
8639 && (*eap->arg == NUL
8640 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8641 {
8642 eap->forceit = TRUE;
8643 fname = get_view_file(*eap->arg);
8644 if (fname == NULL)
8645 return;
8646 viewFile = fname;
8647 using_vdir = TRUE;
8648 }
8649 else
8650#endif
8651 if (*eap->arg != NUL)
8652 fname = eap->arg;
8653 else if (eap->cmdidx == CMD_mkvimrc)
8654 fname = (char_u *)VIMRC_FILE;
8655#ifdef FEAT_SESSION
8656 else if (eap->cmdidx == CMD_mksession)
8657 fname = (char_u *)SESSION_FILE;
8658#endif
8659 else
8660 fname = (char_u *)EXRC_FILE;
8661
8662#ifdef FEAT_BROWSE
8663 if (cmdmod.browse)
8664 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008665 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008666# ifdef FEAT_SESSION
8667 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8668 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8669# endif
8670 (char_u *)_("Save Setup"),
8671 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8672 if (browseFile == NULL)
8673 goto theend;
8674 fname = browseFile;
8675 eap->forceit = TRUE; /* since dialog already asked */
8676 }
8677#endif
8678
8679#if defined(FEAT_SESSION) && defined(vim_mkdir)
8680 /* When using 'viewdir' may have to create the directory. */
8681 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008682 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008683#endif
8684
8685 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8686 if (fd != NULL)
8687 {
8688#ifdef FEAT_SESSION
8689 if (eap->cmdidx == CMD_mkview)
8690 flagp = &vop_flags;
8691 else
8692 flagp = &ssop_flags;
8693#endif
8694
8695#ifdef MKSESSION_NL
8696 /* "unix" in 'sessionoptions': use NL line separator */
8697 if (view_session && (*flagp & SSOP_UNIX))
8698 mksession_nl = TRUE;
8699#endif
8700
8701 /* Write the version command for :mkvimrc */
8702 if (eap->cmdidx == CMD_mkvimrc)
8703 (void)put_line(fd, "version 6.0");
8704
8705#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008706 if (eap->cmdidx == CMD_mksession)
8707 {
8708 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8709 failed = TRUE;
8710 }
8711
Bram Moolenaar071d4272004-06-13 20:20:40 +00008712 if (eap->cmdidx != CMD_mkview)
8713#endif
8714 {
8715 /* Write setting 'compatible' first, because it has side effects.
8716 * For that same reason only do it when needed. */
8717 if (p_cp)
8718 (void)put_line(fd, "if !&cp | set cp | endif");
8719 else
8720 (void)put_line(fd, "if &cp | set nocp | endif");
8721 }
8722
8723#ifdef FEAT_SESSION
8724 if (!view_session
8725 || (eap->cmdidx == CMD_mksession
8726 && (*flagp & SSOP_OPTIONS)))
8727#endif
8728 failed |= (makemap(fd, NULL) == FAIL
8729 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8730
8731#ifdef FEAT_SESSION
8732 if (!failed && view_session)
8733 {
8734 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8735 failed = TRUE;
8736 if (eap->cmdidx == CMD_mksession)
8737 {
8738 char_u dirnow[MAXPATHL]; /* current directory */
8739
8740 /*
8741 * Change to session file's dir.
8742 */
8743 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8744 || mch_chdir((char *)dirnow) != 0)
8745 *dirnow = NUL;
8746 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8747 {
8748 if (vim_chdirfile(fname) == OK)
8749 shorten_fnames(TRUE);
8750 }
8751 else if (*dirnow != NUL
8752 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8753 {
8754 (void)mch_chdir((char *)globaldir);
8755 shorten_fnames(TRUE);
8756 }
8757
8758 failed |= (makeopens(fd, dirnow) == FAIL);
8759
8760 /* restore original dir */
8761 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8762 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8763 {
8764 if (mch_chdir((char *)dirnow) != 0)
8765 EMSG(_(e_prev_dir));
8766 shorten_fnames(TRUE);
8767 }
8768 }
8769 else
8770 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00008771 failed |= (put_view(fd, curwin, !using_vdir, flagp,
8772 -1) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008773 }
8774 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8775 == FAIL)
8776 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008777 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8778 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008779 if (eap->cmdidx == CMD_mksession)
8780 {
8781 if (put_line(fd, "unlet SessionLoad") == FAIL)
8782 failed = TRUE;
8783 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008784 }
8785#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008786 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8787 failed = TRUE;
8788
Bram Moolenaar071d4272004-06-13 20:20:40 +00008789 failed |= fclose(fd);
8790
8791 if (failed)
8792 EMSG(_(e_write));
8793#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8794 else if (eap->cmdidx == CMD_mksession)
8795 {
8796 /* successful session write - set this_session var */
8797 char_u tbuf[MAXPATHL];
8798
8799 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8800 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8801 }
8802#endif
8803#ifdef MKSESSION_NL
8804 mksession_nl = FALSE;
8805#endif
8806 }
8807
8808#ifdef FEAT_BROWSE
8809theend:
8810 vim_free(browseFile);
8811#endif
8812#ifdef FEAT_SESSION
8813 vim_free(viewFile);
8814#endif
8815}
8816
Bram Moolenaardf177f62005-02-22 08:39:57 +00008817#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8818 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008819/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008820 int
8821vim_mkdir_emsg(name, prot)
8822 char_u *name;
8823 int prot;
8824{
8825 if (vim_mkdir(name, prot) != 0)
8826 {
8827 EMSG2(_("E739: Cannot create directory: %s"), name);
8828 return FAIL;
8829 }
8830 return OK;
8831}
8832#endif
8833
Bram Moolenaar071d4272004-06-13 20:20:40 +00008834/*
8835 * Open a file for writing for an Ex command, with some checks.
8836 * Return file descriptor, or NULL on failure.
8837 */
8838 FILE *
8839open_exfile(fname, forceit, mode)
8840 char_u *fname;
8841 int forceit;
8842 char *mode; /* "w" for create new file or "a" for append */
8843{
8844 FILE *fd;
8845
8846#ifdef UNIX
8847 /* with Unix it is possible to open a directory */
8848 if (mch_isdir(fname))
8849 {
8850 EMSG2(_(e_isadir2), fname);
8851 return NULL;
8852 }
8853#endif
8854 if (!forceit && *mode != 'a' && vim_fexists(fname))
8855 {
8856 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8857 return NULL;
8858 }
8859
8860 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8861 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8862
8863 return fd;
8864}
8865
8866/*
8867 * ":mark" and ":k".
8868 */
8869 static void
8870ex_mark(eap)
8871 exarg_T *eap;
8872{
8873 pos_T pos;
8874
8875 if (*eap->arg == NUL) /* No argument? */
8876 EMSG(_(e_argreq));
8877 else if (eap->arg[1] != NUL) /* more than one character? */
8878 EMSG(_(e_trailing));
8879 else
8880 {
8881 pos = curwin->w_cursor; /* save curwin->w_cursor */
8882 curwin->w_cursor.lnum = eap->line2;
8883 beginline(BL_WHITE | BL_FIX);
8884 if (setmark(*eap->arg) == FAIL) /* set mark */
8885 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8886 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8887 }
8888}
8889
8890/*
8891 * Update w_topline, w_leftcol and the cursor position.
8892 */
8893 void
8894update_topline_cursor()
8895{
8896 check_cursor(); /* put cursor on valid line */
8897 update_topline();
8898 if (!curwin->w_p_wrap)
8899 validate_cursor();
8900 update_curswant();
8901}
8902
8903#ifdef FEAT_EX_EXTRA
8904/*
8905 * ":normal[!] {commands}": Execute normal mode commands.
8906 */
8907 static void
8908ex_normal(eap)
8909 exarg_T *eap;
8910{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008911 int save_msg_scroll = msg_scroll;
8912 int save_restart_edit = restart_edit;
8913 int save_msg_didout = msg_didout;
8914 int save_State = State;
8915 tasave_T tabuf;
8916 int save_insertmode = p_im;
8917 int save_finish_op = finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +00008918 int save_opcount = opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008919#ifdef FEAT_MBYTE
8920 char_u *arg = NULL;
8921 int l;
8922 char_u *p;
8923#endif
8924
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008925 if (ex_normal_lock > 0)
8926 {
8927 EMSG(_(e_secure));
8928 return;
8929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008930 if (ex_normal_busy >= p_mmd)
8931 {
8932 EMSG(_("E192: Recursive use of :normal too deep"));
8933 return;
8934 }
8935 ++ex_normal_busy;
8936
8937 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8938 restart_edit = 0; /* don't go to Insert mode */
8939 p_im = FALSE; /* don't use 'insertmode' */
8940
8941#ifdef FEAT_MBYTE
8942 /*
8943 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8944 * this for the K_SPECIAL leading byte, otherwise special keys will not
8945 * work.
8946 */
8947 if (has_mbyte)
8948 {
8949 int len = 0;
8950
8951 /* Count the number of characters to be escaped. */
8952 for (p = eap->arg; *p != NUL; ++p)
8953 {
8954# ifdef FEAT_GUI
8955 if (*p == CSI) /* leadbyte CSI */
8956 len += 2;
8957# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008958 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008959 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8960# ifdef FEAT_GUI
8961 || *p == CSI
8962# endif
8963 )
8964 len += 2;
8965 }
8966 if (len > 0)
8967 {
8968 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8969 if (arg != NULL)
8970 {
8971 len = 0;
8972 for (p = eap->arg; *p != NUL; ++p)
8973 {
8974 arg[len++] = *p;
8975# ifdef FEAT_GUI
8976 if (*p == CSI)
8977 {
8978 arg[len++] = KS_EXTRA;
8979 arg[len++] = (int)KE_CSI;
8980 }
8981# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008982 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008983 {
8984 arg[len++] = *++p;
8985 if (*p == K_SPECIAL)
8986 {
8987 arg[len++] = KS_SPECIAL;
8988 arg[len++] = KE_FILLER;
8989 }
8990# ifdef FEAT_GUI
8991 else if (*p == CSI)
8992 {
8993 arg[len++] = KS_EXTRA;
8994 arg[len++] = (int)KE_CSI;
8995 }
8996# endif
8997 }
8998 arg[len] = NUL;
8999 }
9000 }
9001 }
9002 }
9003#endif
9004
9005 /*
9006 * Save the current typeahead. This is required to allow using ":normal"
9007 * from an event handler and makes sure we don't hang when the argument
9008 * ends with half a command.
9009 */
9010 save_typeahead(&tabuf);
9011 if (tabuf.typebuf_valid)
9012 {
9013 /*
9014 * Repeat the :normal command for each line in the range. When no
9015 * range given, execute it just once, without positioning the cursor
9016 * first.
9017 */
9018 do
9019 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009020 if (eap->addr_count != 0)
9021 {
9022 curwin->w_cursor.lnum = eap->line1++;
9023 curwin->w_cursor.col = 0;
9024 }
9025
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009026 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00009027#ifdef FEAT_MBYTE
9028 arg != NULL ? arg :
9029#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009030 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009031 }
9032 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9033 }
9034
9035 /* Might not return to the main loop when in an event handler. */
9036 update_topline_cursor();
9037
9038 /* Restore the previous typeahead. */
9039 restore_typeahead(&tabuf);
9040
9041 --ex_normal_busy;
9042 msg_scroll = save_msg_scroll;
9043 restart_edit = save_restart_edit;
9044 p_im = save_insertmode;
9045 finish_op = save_finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +00009046 opcount = save_opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009047 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9048
9049 /* Restore the state (needed when called from a function executed for
9050 * 'indentexpr'). */
9051 State = save_State;
9052#ifdef FEAT_MBYTE
9053 vim_free(arg);
9054#endif
9055}
9056
9057/*
Bram Moolenaar64969662005-12-14 21:59:55 +00009058 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00009059 */
9060 static void
9061ex_startinsert(eap)
9062 exarg_T *eap;
9063{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009064 if (eap->forceit)
9065 {
9066 coladvance((colnr_T)MAXCOL);
9067 curwin->w_curswant = MAXCOL;
9068 curwin->w_set_curswant = FALSE;
9069 }
9070
Bram Moolenaara40c5002005-01-09 21:16:21 +00009071 /* Ignore the command when already in Insert mode. Inserting an
9072 * expression register that invokes a function can do this. */
9073 if (State & INSERT)
9074 return;
9075
Bram Moolenaar64969662005-12-14 21:59:55 +00009076 if (eap->cmdidx == CMD_startinsert)
9077 restart_edit = 'a';
9078 else if (eap->cmdidx == CMD_startreplace)
9079 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009080 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009081 restart_edit = 'V';
9082
9083 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009084 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009085 if (eap->cmdidx == CMD_startinsert)
9086 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009087 curwin->w_curswant = 0; /* avoid MAXCOL */
9088 }
9089}
9090
9091/*
9092 * ":stopinsert"
9093 */
9094/*ARGSUSED*/
9095 static void
9096ex_stopinsert(eap)
9097 exarg_T *eap;
9098{
9099 restart_edit = 0;
9100 stop_insert_mode = TRUE;
9101}
9102#endif
9103
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009104#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9105/*
9106 * Execute normal mode command "cmd".
9107 * "remap" can be REMAP_NONE or REMAP_YES.
9108 */
9109 void
9110exec_normal_cmd(cmd, remap, silent)
9111 char_u *cmd;
9112 int remap;
9113 int silent;
9114{
9115 oparg_T oa;
9116
9117 /*
9118 * Stuff the argument into the typeahead buffer.
9119 * Execute normal_cmd() until there is no typeahead left.
9120 */
9121 clear_oparg(&oa);
9122 finish_op = FALSE;
9123 ins_typebuf(cmd, remap, 0, TRUE, silent);
9124 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9125 && !got_int)
9126 {
9127 update_topline_cursor();
9128 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9129 }
9130}
9131#endif
9132
Bram Moolenaar071d4272004-06-13 20:20:40 +00009133#ifdef FEAT_FIND_ID
9134 static void
9135ex_checkpath(eap)
9136 exarg_T *eap;
9137{
9138 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9139 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9140 (linenr_T)1, (linenr_T)MAXLNUM);
9141}
9142
9143#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9144/*
9145 * ":psearch"
9146 */
9147 static void
9148ex_psearch(eap)
9149 exarg_T *eap;
9150{
9151 g_do_tagpreview = p_pvh;
9152 ex_findpat(eap);
9153 g_do_tagpreview = 0;
9154}
9155#endif
9156
9157 static void
9158ex_findpat(eap)
9159 exarg_T *eap;
9160{
9161 int whole = TRUE;
9162 long n;
9163 char_u *p;
9164 int action;
9165
9166 switch (cmdnames[eap->cmdidx].cmd_name[2])
9167 {
9168 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9169 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9170 action = ACTION_GOTO;
9171 else
9172 action = ACTION_SHOW;
9173 break;
9174 case 'i': /* ":ilist" and ":dlist" */
9175 action = ACTION_SHOW_ALL;
9176 break;
9177 case 'u': /* ":ijump" and ":djump" */
9178 action = ACTION_GOTO;
9179 break;
9180 default: /* ":isplit" and ":dsplit" */
9181 action = ACTION_SPLIT;
9182 break;
9183 }
9184
9185 n = 1;
9186 if (vim_isdigit(*eap->arg)) /* get count */
9187 {
9188 n = getdigits(&eap->arg);
9189 eap->arg = skipwhite(eap->arg);
9190 }
9191 if (*eap->arg == '/') /* Match regexp, not just whole words */
9192 {
9193 whole = FALSE;
9194 ++eap->arg;
9195 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9196 if (*p)
9197 {
9198 *p++ = NUL;
9199 p = skipwhite(p);
9200
9201 /* Check for trailing illegal characters */
9202 if (!ends_excmd(*p))
9203 eap->errmsg = e_trailing;
9204 else
9205 eap->nextcmd = check_nextcmd(p);
9206 }
9207 }
9208 if (!eap->skip)
9209 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9210 whole, !eap->forceit,
9211 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9212 n, action, eap->line1, eap->line2);
9213}
9214#endif
9215
9216#ifdef FEAT_WINDOWS
9217
9218# ifdef FEAT_QUICKFIX
9219/*
9220 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9221 */
9222 static void
9223ex_ptag(eap)
9224 exarg_T *eap;
9225{
9226 g_do_tagpreview = p_pvh;
9227 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9228}
9229
9230/*
9231 * ":pedit"
9232 */
9233 static void
9234ex_pedit(eap)
9235 exarg_T *eap;
9236{
9237 win_T *curwin_save = curwin;
9238
9239 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009240 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009241 keep_help_flag = curwin_save->w_buffer->b_help;
9242 do_exedit(eap, NULL);
9243 keep_help_flag = FALSE;
9244 if (curwin != curwin_save && win_valid(curwin_save))
9245 {
9246 /* Return cursor to where we were */
9247 validate_cursor();
9248 redraw_later(VALID);
9249 win_enter(curwin_save, TRUE);
9250 }
9251 g_do_tagpreview = 0;
9252}
9253# endif
9254
9255/*
9256 * ":stag", ":stselect" and ":stjump".
9257 */
9258 static void
9259ex_stag(eap)
9260 exarg_T *eap;
9261{
9262 postponed_split = -1;
9263 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009264 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009265 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9266 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009267 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009268}
9269#endif
9270
9271/*
9272 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9273 */
9274 static void
9275ex_tag(eap)
9276 exarg_T *eap;
9277{
9278 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9279}
9280
9281 static void
9282ex_tag_cmd(eap, name)
9283 exarg_T *eap;
9284 char_u *name;
9285{
9286 int cmd;
9287
9288 switch (name[1])
9289 {
9290 case 'j': cmd = DT_JUMP; /* ":tjump" */
9291 break;
9292 case 's': cmd = DT_SELECT; /* ":tselect" */
9293 break;
9294 case 'p': cmd = DT_PREV; /* ":tprevious" */
9295 break;
9296 case 'N': cmd = DT_PREV; /* ":tNext" */
9297 break;
9298 case 'n': cmd = DT_NEXT; /* ":tnext" */
9299 break;
9300 case 'o': cmd = DT_POP; /* ":pop" */
9301 break;
9302 case 'f': /* ":tfirst" */
9303 case 'r': cmd = DT_FIRST; /* ":trewind" */
9304 break;
9305 case 'l': cmd = DT_LAST; /* ":tlast" */
9306 break;
9307 default: /* ":tag" */
9308#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +00009309 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009310 {
9311 do_cstag(eap);
9312 return;
9313 }
9314#endif
9315 cmd = DT_TAG;
9316 break;
9317 }
9318
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009319 if (name[0] == 'l')
9320 {
9321#ifndef FEAT_QUICKFIX
9322 ex_ni(eap);
9323 return;
9324#else
9325 cmd = DT_LTAG;
9326#endif
9327 }
9328
Bram Moolenaar071d4272004-06-13 20:20:40 +00009329 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9330 eap->forceit, TRUE);
9331}
9332
9333/*
Bram Moolenaar05bb9532008-07-04 09:44:11 +00009334 * Check "str" for starting with a special cmdline variable.
9335 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9336 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9337 */
9338 int
9339find_cmdline_var(src, usedlen)
9340 char_u *src;
9341 int *usedlen;
9342{
9343 int len;
9344 int i;
9345 static char *(spec_str[]) = {
9346 "%",
9347#define SPEC_PERC 0
9348 "#",
9349#define SPEC_HASH 1
9350 "<cword>", /* cursor word */
9351#define SPEC_CWORD 2
9352 "<cWORD>", /* cursor WORD */
9353#define SPEC_CCWORD 3
9354 "<cfile>", /* cursor path name */
9355#define SPEC_CFILE 4
9356 "<sfile>", /* ":so" file name */
9357#define SPEC_SFILE 5
9358#ifdef FEAT_AUTOCMD
9359 "<afile>", /* autocommand file name */
9360# define SPEC_AFILE 6
9361 "<abuf>", /* autocommand buffer number */
9362# define SPEC_ABUF 7
9363 "<amatch>", /* autocommand match name */
9364# define SPEC_AMATCH 8
9365#endif
9366#ifdef FEAT_CLIENTSERVER
9367 "<client>"
9368# define SPEC_CLIENT 9
9369#endif
9370 };
9371#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9372
9373 for (i = 0; i < SPEC_COUNT; ++i)
9374 {
9375 len = (int)STRLEN(spec_str[i]);
9376 if (STRNCMP(src, spec_str[i], len) == 0)
9377 {
9378 *usedlen = len;
9379 return i;
9380 }
9381 }
9382 return -1;
9383}
9384
9385/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009386 * Evaluate cmdline variables.
9387 *
9388 * change '%' to curbuf->b_ffname
9389 * '#' to curwin->w_altfile
9390 * '<cword>' to word under the cursor
9391 * '<cWORD>' to WORD under the cursor
9392 * '<cfile>' to path name under the cursor
9393 * '<sfile>' to sourced file name
9394 * '<afile>' to file name for autocommand
9395 * '<abuf>' to buffer number for autocommand
9396 * '<amatch>' to matching name for autocommand
9397 *
9398 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9399 * "" for error without a message) and NULL is returned.
9400 * Returns an allocated string if a valid match was found.
9401 * Returns NULL if no match was found. "usedlen" then still contains the
9402 * number of characters to skip.
9403 */
9404 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009405eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009406 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009407 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009408 int *usedlen; /* characters after src that are used */
9409 linenr_T *lnump; /* line number for :e command, or NULL */
9410 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009411 int *escaped; /* return value has escaped white space (can
9412 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009413{
9414 int i;
9415 char_u *s;
9416 char_u *result;
9417 char_u *resultbuf = NULL;
9418 int resultlen;
9419 buf_T *buf;
9420 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9421 int spec_idx;
9422#ifdef FEAT_MODIFY_FNAME
9423 int skip_mod = FALSE;
9424#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009425
9426#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9427 char_u strbuf[30];
9428#endif
9429
9430 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009431 if (escaped != NULL)
9432 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009433
9434 /*
9435 * Check if there is something to do.
9436 */
Bram Moolenaar05bb9532008-07-04 09:44:11 +00009437 spec_idx = find_cmdline_var(src, usedlen);
9438 if (spec_idx < 0) /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009439 {
9440 *usedlen = 1;
9441 return NULL;
9442 }
9443
9444 /*
9445 * Skip when preceded with a backslash "\%" and "\#".
9446 * Note: In "\\%" the % is also not recognized!
9447 */
9448 if (src > srcstart && src[-1] == '\\')
9449 {
9450 *usedlen = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +00009451 STRMOVE(src - 1, src); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009452 return NULL;
9453 }
9454
9455 /*
9456 * word or WORD under cursor
9457 */
9458 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9459 {
9460 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9461 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9462 if (resultlen == 0)
9463 {
9464 *errormsg = (char_u *)"";
9465 return NULL;
9466 }
9467 }
9468
9469 /*
9470 * '#': Alternate file name
9471 * '%': Current file name
9472 * File name under the cursor
9473 * File name for autocommand
9474 * and following modifiers
9475 */
9476 else
9477 {
9478 switch (spec_idx)
9479 {
9480 case SPEC_PERC: /* '%': current file */
9481 if (curbuf->b_fname == NULL)
9482 {
9483 result = (char_u *)"";
9484 valid = 0; /* Must have ":p:h" to be valid */
9485 }
9486 else
9487#ifdef RISCOS
9488 /* Always use the full path for RISC OS if possible. */
9489 result = curbuf->b_ffname;
9490 if (result == NULL)
9491 result = curbuf->b_fname;
9492#else
9493 result = curbuf->b_fname;
9494#endif
9495 break;
9496
9497 case SPEC_HASH: /* '#' or "#99": alternate file */
9498 if (src[1] == '#') /* "##": the argument list */
9499 {
9500 result = arg_all();
9501 resultbuf = result;
9502 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009503 if (escaped != NULL)
9504 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009505#ifdef FEAT_MODIFY_FNAME
9506 skip_mod = TRUE;
9507#endif
9508 break;
9509 }
9510 s = src + 1;
9511 i = (int)getdigits(&s);
9512 *usedlen = (int)(s - src); /* length of what we expand */
9513
9514 buf = buflist_findnr(i);
9515 if (buf == NULL)
9516 {
9517 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9518 return NULL;
9519 }
9520 if (lnump != NULL)
9521 *lnump = ECMD_LAST;
9522 if (buf->b_fname == NULL)
9523 {
9524 result = (char_u *)"";
9525 valid = 0; /* Must have ":p:h" to be valid */
9526 }
9527 else
9528 result = buf->b_fname;
9529 break;
9530
9531#ifdef FEAT_SEARCHPATH
9532 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009533 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009534 if (result == NULL)
9535 {
9536 *errormsg = (char_u *)"";
9537 return NULL;
9538 }
9539 resultbuf = result; /* remember allocated string */
9540 break;
9541#endif
9542
9543#ifdef FEAT_AUTOCMD
9544 case SPEC_AFILE: /* file name for autocommand */
9545 result = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009546 if (result != NULL && !autocmd_fname_full)
9547 {
9548 /* Still need to turn the fname into a full path. It is
9549 * postponed to avoid a delay when <afile> is not used. */
9550 autocmd_fname_full = TRUE;
9551 result = FullName_save(autocmd_fname, FALSE);
9552 vim_free(autocmd_fname);
9553 autocmd_fname = result;
9554 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009555 if (result == NULL)
9556 {
9557 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9558 return NULL;
9559 }
Bram Moolenaara0174af2008-01-02 20:08:25 +00009560 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009561 break;
9562
9563 case SPEC_ABUF: /* buffer number for autocommand */
9564 if (autocmd_bufnr <= 0)
9565 {
9566 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9567 return NULL;
9568 }
9569 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9570 result = strbuf;
9571 break;
9572
9573 case SPEC_AMATCH: /* match name for autocommand */
9574 result = autocmd_match;
9575 if (result == NULL)
9576 {
9577 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9578 return NULL;
9579 }
9580 break;
9581
9582#endif
9583 case SPEC_SFILE: /* file name for ":so" command */
9584 result = sourcing_name;
9585 if (result == NULL)
9586 {
9587 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9588 return NULL;
9589 }
9590 break;
9591#if defined(FEAT_CLIENTSERVER)
9592 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009593 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9594 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009595 result = strbuf;
9596 break;
9597#endif
9598 }
9599
9600 resultlen = (int)STRLEN(result); /* length of new string */
9601 if (src[*usedlen] == '<') /* remove the file name extension */
9602 {
9603 ++*usedlen;
9604#ifdef RISCOS
9605 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9606#else
9607 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9608#endif
9609 resultlen = (int)(s - result);
9610 }
9611#ifdef FEAT_MODIFY_FNAME
9612 else if (!skip_mod)
9613 {
9614 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9615 &resultlen);
9616 if (result == NULL)
9617 {
9618 *errormsg = (char_u *)"";
9619 return NULL;
9620 }
9621 }
9622#endif
9623 }
9624
9625 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9626 {
9627 if (valid != VALID_HEAD + VALID_PATH)
9628 /* xgettext:no-c-format */
9629 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9630 else
9631 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9632 result = NULL;
9633 }
9634 else
9635 result = vim_strnsave(result, resultlen);
9636 vim_free(resultbuf);
9637 return result;
9638}
9639
9640/*
9641 * Concatenate all files in the argument list, separated by spaces, and return
9642 * it in one allocated string.
9643 * Spaces and backslashes in the file names are escaped with a backslash.
9644 * Returns NULL when out of memory.
9645 */
9646 static char_u *
9647arg_all()
9648{
9649 int len;
9650 int idx;
9651 char_u *retval = NULL;
9652 char_u *p;
9653
9654 /*
9655 * Do this loop two times:
9656 * first time: compute the total length
9657 * second time: concatenate the names
9658 */
9659 for (;;)
9660 {
9661 len = 0;
9662 for (idx = 0; idx < ARGCOUNT; ++idx)
9663 {
9664 p = alist_name(&ARGLIST[idx]);
9665 if (p != NULL)
9666 {
9667 if (len > 0)
9668 {
9669 /* insert a space in between names */
9670 if (retval != NULL)
9671 retval[len] = ' ';
9672 ++len;
9673 }
9674 for ( ; *p != NUL; ++p)
9675 {
9676 if (*p == ' ' || *p == '\\')
9677 {
9678 /* insert a backslash */
9679 if (retval != NULL)
9680 retval[len] = '\\';
9681 ++len;
9682 }
9683 if (retval != NULL)
9684 retval[len] = *p;
9685 ++len;
9686 }
9687 }
9688 }
9689
9690 /* second time: break here */
9691 if (retval != NULL)
9692 {
9693 retval[len] = NUL;
9694 break;
9695 }
9696
9697 /* allocate memory */
9698 retval = alloc(len + 1);
9699 if (retval == NULL)
9700 break;
9701 }
9702
9703 return retval;
9704}
9705
9706#if defined(FEAT_AUTOCMD) || defined(PROTO)
9707/*
9708 * Expand the <sfile> string in "arg".
9709 *
9710 * Returns an allocated string, or NULL for any error.
9711 */
9712 char_u *
9713expand_sfile(arg)
9714 char_u *arg;
9715{
9716 char_u *errormsg;
9717 int len;
9718 char_u *result;
9719 char_u *newres;
9720 char_u *repl;
9721 int srclen;
9722 char_u *p;
9723
9724 result = vim_strsave(arg);
9725 if (result == NULL)
9726 return NULL;
9727
9728 for (p = result; *p; )
9729 {
9730 if (STRNCMP(p, "<sfile>", 7) != 0)
9731 ++p;
9732 else
9733 {
9734 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009735 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009736 if (errormsg != NULL)
9737 {
9738 if (*errormsg)
9739 emsg(errormsg);
9740 vim_free(result);
9741 return NULL;
9742 }
9743 if (repl == NULL) /* no match (cannot happen) */
9744 {
9745 p += srclen;
9746 continue;
9747 }
9748 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9749 newres = alloc(len);
9750 if (newres == NULL)
9751 {
9752 vim_free(repl);
9753 vim_free(result);
9754 return NULL;
9755 }
9756 mch_memmove(newres, result, (size_t)(p - result));
9757 STRCPY(newres + (p - result), repl);
9758 len = (int)STRLEN(newres);
9759 STRCAT(newres, p + srclen);
9760 vim_free(repl);
9761 vim_free(result);
9762 result = newres;
9763 p = newres + len; /* continue after the match */
9764 }
9765 }
9766
9767 return result;
9768}
9769#endif
9770
9771#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009772static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9773 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009774static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9775static frame_T *ses_skipframe __ARGS((frame_T *fr));
9776static int ses_do_frame __ARGS((frame_T *fr));
9777static int ses_do_win __ARGS((win_T *wp));
9778static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9779static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9780static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9781
9782/*
9783 * Write openfile commands for the current buffers to an .exrc file.
9784 * Return FAIL on error, OK otherwise.
9785 */
9786 static int
9787makeopens(fd, dirnow)
9788 FILE *fd;
9789 char_u *dirnow; /* Current directory name */
9790{
9791 buf_T *buf;
9792 int only_save_windows = TRUE;
9793 int nr;
9794 int cnr = 1;
9795 int restore_size = TRUE;
9796 win_T *wp;
9797 char_u *sname;
9798 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009799 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009800 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009801 frame_T *tab_topframe;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009802 int cur_arg_idx = 0;
Bram Moolenaar383c6f52008-01-04 15:01:07 +00009803 int next_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009804
9805 if (ssop_flags & SSOP_BUFFERS)
9806 only_save_windows = FALSE; /* Save ALL buffers */
9807
9808 /*
9809 * Begin by setting the this_session variable, and then other
9810 * sessionable variables.
9811 */
9812#ifdef FEAT_EVAL
9813 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9814 return FAIL;
9815 if (ssop_flags & SSOP_GLOBALS)
9816 if (store_session_globals(fd) == FAIL)
9817 return FAIL;
9818#endif
9819
9820 /*
9821 * Close all windows but one.
9822 */
9823 if (put_line(fd, "silent only") == FAIL)
9824 return FAIL;
9825
9826 /*
9827 * Now a :cd command to the session directory or the current directory
9828 */
9829 if (ssop_flags & SSOP_SESDIR)
9830 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009831 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9832 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009833 return FAIL;
9834 }
9835 else if (ssop_flags & SSOP_CURDIR)
9836 {
9837 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9838 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009839 || fputs("cd ", fd) < 0
9840 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9841 || put_eol(fd) == FAIL)
9842 {
9843 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009844 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009846 vim_free(sname);
9847 }
9848
9849 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009850 * If there is an empty, unnamed buffer we will wipe it out later.
9851 * Remember the buffer number.
9852 */
9853 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9854 return FAIL;
9855 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9856 return FAIL;
9857 if (put_line(fd, "endif") == FAIL)
9858 return FAIL;
9859
9860 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009861 * Now save the current files, current buffer first.
9862 */
9863 if (put_line(fd, "set shortmess=aoO") == FAIL)
9864 return FAIL;
9865
9866 /* Now put the other buffers into the buffer list */
9867 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9868 {
9869 if (!(only_save_windows && buf->b_nwindows == 0)
9870 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9871 && buf->b_fname != NULL
9872 && buf->b_p_bl)
9873 {
9874 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9875 : buf->b_wininfo->wi_fpos.lnum) < 0
9876 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9877 return FAIL;
9878 }
9879 }
9880
9881 /* the global argument list */
9882 if (ses_arglist(fd, "args", &global_alist.al_ga,
9883 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9884 return FAIL;
9885
9886 if (ssop_flags & SSOP_RESIZE)
9887 {
9888 /* Note: after the restore we still check it worked!*/
9889 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9890 || put_eol(fd) == FAIL)
9891 return FAIL;
9892 }
9893
9894#ifdef FEAT_GUI
9895 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9896 {
9897 int x, y;
9898
9899 if (gui_mch_get_winpos(&x, &y) == OK)
9900 {
9901 /* Note: after the restore we still check it worked!*/
9902 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9903 return FAIL;
9904 }
9905 }
9906#endif
9907
9908 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009909 * May repeat putting Windows for each tab, when "tabpages" is in
9910 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009911 * Don't use goto_tabpage(), it may change directory and trigger
9912 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009913 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009914 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009915 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009916 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009917 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009918 int need_tabnew = FALSE;
9919
Bram Moolenaar18144c82006-04-12 21:52:12 +00009920 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009921 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009922 tabpage_T *tp = find_tabpage(tabnr);
9923
9924 if (tp == NULL)
9925 break; /* done all tab pages */
9926 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009927 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009928 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009929 tab_topframe = topframe;
9930 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009931 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009932 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009933 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009934 tab_topframe = tp->tp_topframe;
9935 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009936 if (tabnr > 1)
9937 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009938 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009939
Bram Moolenaar18144c82006-04-12 21:52:12 +00009940 /*
9941 * Before creating the window layout, try loading one file. If this
9942 * is aborted we don't end up with a number of useless windows.
9943 * This may have side effects! (e.g., compressed or network file).
9944 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009945 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009946 {
9947 if (ses_do_win(wp)
9948 && wp->w_buffer->b_ffname != NULL
9949 && !wp->w_buffer->b_help
9950#ifdef FEAT_QUICKFIX
9951 && !bt_nofile(wp->w_buffer)
9952#endif
9953 )
9954 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009955 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009956 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9957 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009958 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009959 if (!wp->w_arg_idx_invalid)
9960 edited_win = wp;
9961 break;
9962 }
9963 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009964
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009965 /* If no file got edited create an empty tab page. */
9966 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9967 return FAIL;
9968
Bram Moolenaar18144c82006-04-12 21:52:12 +00009969 /*
9970 * Save current window layout.
9971 */
9972 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009973 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009974 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009975 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009976 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
9977 return FAIL;
9978 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
9979 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009980
Bram Moolenaar18144c82006-04-12 21:52:12 +00009981 /*
9982 * Check if window sizes can be restored (no windows omitted).
9983 * Remember the window number of the current window after restoring.
9984 */
9985 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009986 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009987 {
9988 if (ses_do_win(wp))
9989 ++nr;
9990 else
9991 restore_size = FALSE;
9992 if (curwin == wp)
9993 cnr = nr;
9994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009995
Bram Moolenaar18144c82006-04-12 21:52:12 +00009996 /* Go to the first window. */
9997 if (put_line(fd, "wincmd t") == FAIL)
9998 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009999
Bram Moolenaar18144c82006-04-12 21:52:12 +000010000 /*
10001 * If more than one window, see if sizes can be restored.
10002 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
10003 * resized when moving between windows.
10004 * Do this before restoring the view, so that the topline and the
10005 * cursor can be set. This is done again below.
10006 */
10007 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
10008 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010009 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010010 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010011
Bram Moolenaar18144c82006-04-12 21:52:12 +000010012 /*
10013 * Restore the view of the window (options, file, cursor, etc.).
10014 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010015 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010016 {
10017 if (!ses_do_win(wp))
10018 continue;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010019 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
10020 cur_arg_idx) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010021 return FAIL;
10022 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
10023 return FAIL;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010024 next_arg_idx = wp->w_arg_idx;
Bram Moolenaar18144c82006-04-12 21:52:12 +000010025 }
10026
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010027 /* The argument index in the first tab page is zero, need to set it in
10028 * each window. For further tab pages it's the window where we do
10029 * "tabedit". */
10030 cur_arg_idx = next_arg_idx;
10031
Bram Moolenaar18144c82006-04-12 21:52:12 +000010032 /*
10033 * Restore cursor to the current window if it's not the first one.
10034 */
10035 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
10036 || put_eol(fd) == FAIL))
10037 return FAIL;
10038
10039 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000010040 * Restore window sizes again after jumping around in windows, because
10041 * the current window has a minimum size while others may not.
10042 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010043 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010044 return FAIL;
10045
Bram Moolenaar18144c82006-04-12 21:52:12 +000010046 /* Don't continue in another tab page when doing only the current one
10047 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010048 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +000010049 break;
10050 }
10051
10052 if (ssop_flags & SSOP_TABPAGES)
10053 {
Bram Moolenaar18144c82006-04-12 21:52:12 +000010054 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
10055 || put_eol(fd) == FAIL)
10056 return FAIL;
10057 }
10058
Bram Moolenaar9c102382006-05-03 21:26:49 +000010059 /*
10060 * Wipe out an empty unnamed buffer we started in.
10061 */
10062 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
10063 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +000010064 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +000010065 return FAIL;
10066 if (put_line(fd, "endif") == FAIL)
10067 return FAIL;
10068 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
10069 return FAIL;
10070
10071 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10072 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10073 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10074 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010075
10076 /*
10077 * Lastly, execute the x.vim file if it exists.
10078 */
10079 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10080 || put_line(fd, "if file_readable(s:sx)") == FAIL
10081 || put_line(fd, " exe \"source \" . s:sx") == FAIL
10082 || put_line(fd, "endif") == FAIL)
10083 return FAIL;
10084
10085 return OK;
10086}
10087
10088 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010089ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010090 FILE *fd;
10091 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010092 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010093{
10094 int n = 0;
10095 win_T *wp;
10096
10097 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10098 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010099 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010100 {
10101 if (!ses_do_win(wp))
10102 continue;
10103 ++n;
10104
10105 /* restore height when not full height */
10106 if (wp->w_height + wp->w_status_height < topframe->fr_height
10107 && (fprintf(fd,
10108 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10109 n, (long)wp->w_height, Rows / 2, Rows) < 0
10110 || put_eol(fd) == FAIL))
10111 return FAIL;
10112
10113 /* restore width when not full width */
10114 if (wp->w_width < Columns && (fprintf(fd,
10115 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10116 n, (long)wp->w_width, Columns / 2, Columns) < 0
10117 || put_eol(fd) == FAIL))
10118 return FAIL;
10119 }
10120 }
10121 else
10122 {
10123 /* Just equalise window sizes */
10124 if (put_line(fd, "wincmd =") == FAIL)
10125 return FAIL;
10126 }
10127 return OK;
10128}
10129
10130/*
10131 * Write commands to "fd" to recursively create windows for frame "fr",
10132 * horizontally and vertically split.
10133 * After the commands the last window in the frame is the current window.
10134 * Returns FAIL when writing the commands to "fd" fails.
10135 */
10136 static int
10137ses_win_rec(fd, fr)
10138 FILE *fd;
10139 frame_T *fr;
10140{
10141 frame_T *frc;
10142 int count = 0;
10143
10144 if (fr->fr_layout != FR_LEAF)
10145 {
10146 /* Find first frame that's not skipped and then create a window for
10147 * each following one (first frame is already there). */
10148 frc = ses_skipframe(fr->fr_child);
10149 if (frc != NULL)
10150 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10151 {
10152 /* Make window as big as possible so that we have lots of room
10153 * to split. */
10154 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10155 || put_line(fd, fr->fr_layout == FR_COL
10156 ? "split" : "vsplit") == FAIL)
10157 return FAIL;
10158 ++count;
10159 }
10160
10161 /* Go back to the first window. */
10162 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10163 ? "%dwincmd k" : "%dwincmd h", count) < 0
10164 || put_eol(fd) == FAIL))
10165 return FAIL;
10166
10167 /* Recursively create frames/windows in each window of this column or
10168 * row. */
10169 frc = ses_skipframe(fr->fr_child);
10170 while (frc != NULL)
10171 {
10172 ses_win_rec(fd, frc);
10173 frc = ses_skipframe(frc->fr_next);
10174 /* Go to next window. */
10175 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10176 return FAIL;
10177 }
10178 }
10179 return OK;
10180}
10181
10182/*
10183 * Skip frames that don't contain windows we want to save in the Session.
10184 * Returns NULL when there none.
10185 */
10186 static frame_T *
10187ses_skipframe(fr)
10188 frame_T *fr;
10189{
10190 frame_T *frc;
10191
10192 for (frc = fr; frc != NULL; frc = frc->fr_next)
10193 if (ses_do_frame(frc))
10194 break;
10195 return frc;
10196}
10197
10198/*
10199 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10200 * the Session.
10201 */
10202 static int
10203ses_do_frame(fr)
10204 frame_T *fr;
10205{
10206 frame_T *frc;
10207
10208 if (fr->fr_layout == FR_LEAF)
10209 return ses_do_win(fr->fr_win);
10210 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10211 if (ses_do_frame(frc))
10212 return TRUE;
10213 return FALSE;
10214}
10215
10216/*
10217 * Return non-zero if window "wp" is to be stored in the Session.
10218 */
10219 static int
10220ses_do_win(wp)
10221 win_T *wp;
10222{
10223 if (wp->w_buffer->b_fname == NULL
10224#ifdef FEAT_QUICKFIX
10225 /* When 'buftype' is "nofile" can't restore the window contents. */
10226 || bt_nofile(wp->w_buffer)
10227#endif
10228 )
10229 return (ssop_flags & SSOP_BLANK);
10230 if (wp->w_buffer->b_help)
10231 return (ssop_flags & SSOP_HELP);
10232 return TRUE;
10233}
10234
10235/*
10236 * Write commands to "fd" to restore the view of a window.
10237 * Caller must make sure 'scrolloff' is zero.
10238 */
10239 static int
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010240put_view(fd, wp, add_edit, flagp, current_arg_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010241 FILE *fd;
10242 win_T *wp;
10243 int add_edit; /* add ":edit" command to view */
10244 unsigned *flagp; /* vop_flags or ssop_flags */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010245 int current_arg_idx; /* current argument index of the window, use
10246 * -1 if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010247{
10248 win_T *save_curwin;
10249 int f;
10250 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010251 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010252
10253 /* Always restore cursor position for ":mksession". For ":mkview" only
10254 * when 'viewoptions' contains "cursor". */
10255 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10256
10257 /*
10258 * Local argument list.
10259 */
10260 if (wp->w_alist == &global_alist)
10261 {
10262 if (put_line(fd, "argglobal") == FAIL)
10263 return FAIL;
10264 }
10265 else
10266 {
10267 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10268 flagp == &vop_flags
10269 || !(*flagp & SSOP_CURDIR)
10270 || wp->w_localdir != NULL, flagp) == FAIL)
10271 return FAIL;
10272 }
10273
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010274 /* Only when part of a session: restore the argument index. Some
10275 * arguments may have been deleted, check if the index is valid. */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010276 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx <= WARGCOUNT(wp)
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010277 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010278 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010279 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000010280 || put_eol(fd) == FAIL)
10281 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010282 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010283 }
10284
10285 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010286 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010287 {
10288 /*
10289 * Load the file.
10290 */
10291 if (wp->w_buffer->b_ffname != NULL
10292#ifdef FEAT_QUICKFIX
10293 && !bt_nofile(wp->w_buffer)
10294#endif
10295 )
10296 {
10297 /*
10298 * Editing a file in this buffer: use ":edit file".
10299 * This may have side effects! (e.g., compressed or network file).
10300 */
10301 if (fputs("edit ", fd) < 0
10302 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10303 return FAIL;
10304 }
10305 else
10306 {
10307 /* No file in this buffer, just make it empty. */
10308 if (put_line(fd, "enew") == FAIL)
10309 return FAIL;
10310#ifdef FEAT_QUICKFIX
10311 if (wp->w_buffer->b_ffname != NULL)
10312 {
10313 /* The buffer does have a name, but it's not a file name. */
10314 if (fputs("file ", fd) < 0
10315 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10316 return FAIL;
10317 }
10318#endif
10319 do_cursor = FALSE;
10320 }
10321 }
10322
10323 /*
10324 * Local mappings and abbreviations.
10325 */
10326 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10327 && makemap(fd, wp->w_buffer) == FAIL)
10328 return FAIL;
10329
10330 /*
10331 * Local options. Need to go to the window temporarily.
10332 * Store only local values when using ":mkview" and when ":mksession" is
10333 * used and 'sessionoptions' doesn't include "options".
10334 * Some folding options are always stored when "folds" is included,
10335 * otherwise the folds would not be restored correctly.
10336 */
10337 save_curwin = curwin;
10338 curwin = wp;
10339 curbuf = curwin->w_buffer;
10340 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10341 f = makeset(fd, OPT_LOCAL,
10342 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10343#ifdef FEAT_FOLDING
10344 else if (*flagp & SSOP_FOLDS)
10345 f = makefoldset(fd);
10346#endif
10347 else
10348 f = OK;
10349 curwin = save_curwin;
10350 curbuf = curwin->w_buffer;
10351 if (f == FAIL)
10352 return FAIL;
10353
10354#ifdef FEAT_FOLDING
10355 /*
10356 * Save Folds when 'buftype' is empty and for help files.
10357 */
10358 if ((*flagp & SSOP_FOLDS)
10359 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010360# ifdef FEAT_QUICKFIX
10361 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10362# endif
10363 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010364 {
10365 if (put_folds(fd, wp) == FAIL)
10366 return FAIL;
10367 }
10368#endif
10369
10370 /*
10371 * Set the cursor after creating folds, since that moves the cursor.
10372 */
10373 if (do_cursor)
10374 {
10375
10376 /* Restore the cursor line in the file and relatively in the
10377 * window. Don't use "G", it changes the jumplist. */
10378 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10379 (long)wp->w_cursor.lnum,
10380 (long)(wp->w_cursor.lnum - wp->w_topline),
10381 (long)wp->w_height / 2, (long)wp->w_height) < 0
10382 || put_eol(fd) == FAIL
10383 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10384 || put_line(fd, "exe s:l") == FAIL
10385 || put_line(fd, "normal! zt") == FAIL
10386 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10387 || put_eol(fd) == FAIL)
10388 return FAIL;
10389 /* Restore the cursor column and left offset when not wrapping. */
10390 if (wp->w_cursor.col == 0)
10391 {
10392 if (put_line(fd, "normal! 0") == FAIL)
10393 return FAIL;
10394 }
10395 else
10396 {
10397 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10398 {
10399 if (fprintf(fd,
10400 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10401 (long)wp->w_cursor.col,
10402 (long)(wp->w_cursor.col - wp->w_leftcol),
10403 (long)wp->w_width / 2, (long)wp->w_width) < 0
10404 || put_eol(fd) == FAIL
10405 || put_line(fd, "if s:c > 0") == FAIL
10406 || fprintf(fd,
10407 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10408 (long)wp->w_cursor.col) < 0
10409 || put_eol(fd) == FAIL
10410 || put_line(fd, "else") == FAIL
10411 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10412 || put_eol(fd) == FAIL
10413 || put_line(fd, "endif") == FAIL)
10414 return FAIL;
10415 }
10416 else
10417 {
10418 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10419 || put_eol(fd) == FAIL)
10420 return FAIL;
10421 }
10422 }
10423 }
10424
10425 /*
10426 * Local directory.
10427 */
10428 if (wp->w_localdir != NULL)
10429 {
10430 if (fputs("lcd ", fd) < 0
10431 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10432 || put_eol(fd) == FAIL)
10433 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010434 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010435 }
10436
10437 return OK;
10438}
10439
10440/*
10441 * Write an argument list to the session file.
10442 * Returns FAIL if writing fails.
10443 */
10444 static int
10445ses_arglist(fd, cmd, gap, fullname, flagp)
10446 FILE *fd;
10447 char *cmd;
10448 garray_T *gap;
10449 int fullname; /* TRUE: use full path name */
10450 unsigned *flagp;
10451{
10452 int i;
10453 char_u buf[MAXPATHL];
10454 char_u *s;
10455
10456 if (gap->ga_len == 0)
10457 return put_line(fd, "silent! argdel *");
10458 if (fputs(cmd, fd) < 0)
10459 return FAIL;
10460 for (i = 0; i < gap->ga_len; ++i)
10461 {
10462 /* NULL file names are skipped (only happens when out of memory). */
10463 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10464 if (s != NULL)
10465 {
10466 if (fullname)
10467 {
10468 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10469 s = buf;
10470 }
10471 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10472 return FAIL;
10473 }
10474 }
10475 return put_eol(fd);
10476}
10477
10478/*
10479 * Write a buffer name to the session file.
10480 * Also ends the line.
10481 * Returns FAIL if writing fails.
10482 */
10483 static int
10484ses_fname(fd, buf, flagp)
10485 FILE *fd;
10486 buf_T *buf;
10487 unsigned *flagp;
10488{
10489 char_u *name;
10490
10491 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010492 * the session file will be sourced.
10493 * Don't do this for ":mkview", we don't know the current directory.
10494 * Don't do this after ":lcd", we don't keep track of what the current
10495 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010496 if (buf->b_sfname != NULL
10497 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010498 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10499 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010500 name = buf->b_sfname;
10501 else
10502 name = buf->b_ffname;
10503 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10504 return FAIL;
10505 return OK;
10506}
10507
10508/*
10509 * Write a file name to the session file.
10510 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10511 * characters.
10512 * Returns FAIL if writing fails.
10513 */
10514 static int
10515ses_put_fname(fd, name, flagp)
10516 FILE *fd;
10517 char_u *name;
10518 unsigned *flagp;
10519{
10520 char_u *sname;
10521 int retval = OK;
10522 int c;
10523
10524 sname = home_replace_save(NULL, name);
10525 if (sname != NULL)
10526 name = sname;
10527 while (*name != NUL)
10528 {
10529#ifdef FEAT_MBYTE
10530 {
10531 int l;
10532
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010533 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010534 {
10535 /* copy a multibyte char */
10536 while (--l >= 0)
10537 {
10538 if (putc(*name, fd) != *name)
10539 retval = FAIL;
10540 ++name;
10541 }
10542 continue;
10543 }
10544 }
10545#endif
10546 c = *name++;
10547 if (c == '\\' && (*flagp & SSOP_SLASH))
10548 /* change a backslash to a forward slash */
10549 c = '/';
10550 else if ((vim_strchr(escape_chars, c) != NULL
10551#ifdef BACKSLASH_IN_FILENAME
10552 && c != '\\'
10553#endif
10554 ) || c == '#' || c == '%')
10555 {
10556 /* escape a special character with a backslash */
10557 if (putc('\\', fd) != '\\')
10558 retval = FAIL;
10559 }
10560 if (putc(c, fd) != c)
10561 retval = FAIL;
10562 }
10563 vim_free(sname);
10564 return retval;
10565}
10566
10567/*
10568 * ":loadview [nr]"
10569 */
10570 static void
10571ex_loadview(eap)
10572 exarg_T *eap;
10573{
10574 char_u *fname;
10575
10576 fname = get_view_file(*eap->arg);
10577 if (fname != NULL)
10578 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010579 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010580 vim_free(fname);
10581 }
10582}
10583
10584/*
10585 * Get the name of the view file for the current buffer.
10586 */
10587 static char_u *
10588get_view_file(c)
10589 int c;
10590{
10591 int len = 0;
10592 char_u *p, *s;
10593 char_u *retval;
10594 char_u *sname;
10595
10596 if (curbuf->b_ffname == NULL)
10597 {
10598 EMSG(_(e_noname));
10599 return NULL;
10600 }
10601 sname = home_replace_save(NULL, curbuf->b_ffname);
10602 if (sname == NULL)
10603 return NULL;
10604
10605 /*
10606 * We want a file name without separators, because we're not going to make
10607 * a directory.
10608 * "normal" path separator -> "=+"
10609 * "=" -> "=="
10610 * ":" path separator -> "=-"
10611 */
10612 for (p = sname; *p; ++p)
10613 if (*p == '=' || vim_ispathsep(*p))
10614 ++len;
10615 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10616 if (retval != NULL)
10617 {
10618 STRCPY(retval, p_vdir);
10619 add_pathsep(retval);
10620 s = retval + STRLEN(retval);
10621 for (p = sname; *p; ++p)
10622 {
10623 if (*p == '=')
10624 {
10625 *s++ = '=';
10626 *s++ = '=';
10627 }
10628 else if (vim_ispathsep(*p))
10629 {
10630 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010631#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010632 || defined(VMS)
10633 if (*p == ':')
10634 *s++ = '-';
10635 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010636#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010637 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010638 }
10639 else
10640 *s++ = *p;
10641 }
10642 *s++ = '=';
10643 *s++ = c;
10644 STRCPY(s, ".vim");
10645 }
10646
10647 vim_free(sname);
10648 return retval;
10649}
10650
10651#endif /* FEAT_SESSION */
10652
10653/*
10654 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10655 * Return FAIL for a write error.
10656 */
10657 int
10658put_eol(fd)
10659 FILE *fd;
10660{
10661 if (
10662#ifdef USE_CRNL
10663 (
10664# ifdef MKSESSION_NL
10665 !mksession_nl &&
10666# endif
10667 (putc('\r', fd) < 0)) ||
10668#endif
10669 (putc('\n', fd) < 0))
10670 return FAIL;
10671 return OK;
10672}
10673
10674/*
10675 * Write a line to "fd".
10676 * Return FAIL for a write error.
10677 */
10678 int
10679put_line(fd, s)
10680 FILE *fd;
10681 char *s;
10682{
10683 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10684 return FAIL;
10685 return OK;
10686}
10687
10688#ifdef FEAT_VIMINFO
10689/*
10690 * ":rviminfo" and ":wviminfo".
10691 */
10692 static void
10693ex_viminfo(eap)
10694 exarg_T *eap;
10695{
10696 char_u *save_viminfo;
10697
10698 save_viminfo = p_viminfo;
10699 if (*p_viminfo == NUL)
10700 p_viminfo = (char_u *)"'100";
10701 if (eap->cmdidx == CMD_rviminfo)
10702 {
10703 if (read_viminfo(eap->arg, TRUE, TRUE, eap->forceit) == FAIL)
10704 EMSG(_("E195: Cannot open viminfo file for reading"));
10705 }
10706 else
10707 write_viminfo(eap->arg, eap->forceit);
10708 p_viminfo = save_viminfo;
10709}
10710#endif
10711
10712#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010713/*
10714 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010715 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010716 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010717 void
10718dialog_msg(buff, format, fname)
10719 char_u *buff;
10720 char *format;
10721 char_u *fname;
10722{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010723 if (fname == NULL)
10724 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010725 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010726}
10727#endif
10728
10729/*
10730 * ":behave {mswin,xterm}"
10731 */
10732 static void
10733ex_behave(eap)
10734 exarg_T *eap;
10735{
10736 if (STRCMP(eap->arg, "mswin") == 0)
10737 {
10738 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10739 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10740 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10741 set_option_value((char_u *)"keymodel", 0L,
10742 (char_u *)"startsel,stopsel", 0);
10743 }
10744 else if (STRCMP(eap->arg, "xterm") == 0)
10745 {
10746 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10747 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10748 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10749 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10750 }
10751 else
10752 EMSG2(_(e_invarg2), eap->arg);
10753}
10754
10755#ifdef FEAT_AUTOCMD
10756static int filetype_detect = FALSE;
10757static int filetype_plugin = FALSE;
10758static int filetype_indent = FALSE;
10759
10760/*
10761 * ":filetype [plugin] [indent] {on,off,detect}"
10762 * on: Load the filetype.vim file to install autocommands for file types.
10763 * off: Load the ftoff.vim file to remove all autocommands for file types.
10764 * plugin on: load filetype.vim and ftplugin.vim
10765 * plugin off: load ftplugof.vim
10766 * indent on: load filetype.vim and indent.vim
10767 * indent off: load indoff.vim
10768 */
10769 static void
10770ex_filetype(eap)
10771 exarg_T *eap;
10772{
10773 char_u *arg = eap->arg;
10774 int plugin = FALSE;
10775 int indent = FALSE;
10776
10777 if (*eap->arg == NUL)
10778 {
10779 /* Print current status. */
10780 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10781 filetype_detect ? "ON" : "OFF",
10782 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10783 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10784 return;
10785 }
10786
10787 /* Accept "plugin" and "indent" in any order. */
10788 for (;;)
10789 {
10790 if (STRNCMP(arg, "plugin", 6) == 0)
10791 {
10792 plugin = TRUE;
10793 arg = skipwhite(arg + 6);
10794 continue;
10795 }
10796 if (STRNCMP(arg, "indent", 6) == 0)
10797 {
10798 indent = TRUE;
10799 arg = skipwhite(arg + 6);
10800 continue;
10801 }
10802 break;
10803 }
10804 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10805 {
10806 if (*arg == 'o' || !filetype_detect)
10807 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010808 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010809 filetype_detect = TRUE;
10810 if (plugin)
10811 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010812 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010813 filetype_plugin = TRUE;
10814 }
10815 if (indent)
10816 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010817 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010818 filetype_indent = TRUE;
10819 }
10820 }
10821 if (*arg == 'd')
10822 {
10823 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010824 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010825 }
10826 }
10827 else if (STRCMP(arg, "off") == 0)
10828 {
10829 if (plugin || indent)
10830 {
10831 if (plugin)
10832 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010833 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010834 filetype_plugin = FALSE;
10835 }
10836 if (indent)
10837 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010838 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010839 filetype_indent = FALSE;
10840 }
10841 }
10842 else
10843 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010844 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010845 filetype_detect = FALSE;
10846 }
10847 }
10848 else
10849 EMSG2(_(e_invarg2), arg);
10850}
10851
10852/*
10853 * ":setfiletype {name}"
10854 */
10855 static void
10856ex_setfiletype(eap)
10857 exarg_T *eap;
10858{
10859 if (!did_filetype)
10860 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10861}
10862#endif
10863
10864/*ARGSUSED*/
10865 static void
10866ex_digraphs(eap)
10867 exarg_T *eap;
10868{
10869#ifdef FEAT_DIGRAPHS
10870 if (*eap->arg != NUL)
10871 putdigraph(eap->arg);
10872 else
10873 listdigraphs();
10874#else
10875 EMSG(_("E196: No digraphs in this version"));
10876#endif
10877}
10878
10879 static void
10880ex_set(eap)
10881 exarg_T *eap;
10882{
10883 int flags = 0;
10884
10885 if (eap->cmdidx == CMD_setlocal)
10886 flags = OPT_LOCAL;
10887 else if (eap->cmdidx == CMD_setglobal)
10888 flags = OPT_GLOBAL;
10889#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10890 if (cmdmod.browse && flags == 0)
10891 ex_options(eap);
10892 else
10893#endif
10894 (void)do_set(eap->arg, flags);
10895}
10896
10897#ifdef FEAT_SEARCH_EXTRA
10898/*
10899 * ":nohlsearch"
10900 */
10901/*ARGSUSED*/
10902 static void
10903ex_nohlsearch(eap)
10904 exarg_T *eap;
10905{
10906 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010907 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010908}
10909
10910/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010911 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010912 * Sets nextcmd to the start of the next command, if any. Also called when
10913 * skipping commands to find the next command.
10914 */
10915 static void
10916ex_match(eap)
10917 exarg_T *eap;
10918{
10919 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000010920 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010921 char_u *end;
10922 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010923 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010924
10925 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010926 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010927 else
10928 {
10929 EMSG(e_invcmd);
10930 return;
10931 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010932
10933 /* First clear any old pattern. */
10934 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010935 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010936
10937 if (ends_excmd(*eap->arg))
10938 end = eap->arg;
10939 else if ((STRNICMP(eap->arg, "none", 4) == 0
10940 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10941 end = eap->arg + 4;
10942 else
10943 {
10944 p = skiptowhite(eap->arg);
10945 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010946 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010947 p = skipwhite(p);
10948 if (*p == NUL)
10949 {
10950 /* There must be two arguments. */
10951 EMSG2(_(e_invarg2), eap->arg);
10952 return;
10953 }
10954 end = skip_regexp(p + 1, *p, TRUE, NULL);
10955 if (!eap->skip)
10956 {
10957 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10958 {
10959 eap->errmsg = e_trailing;
10960 return;
10961 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010962 if (*end != *p)
10963 {
10964 EMSG2(_(e_invarg2), p);
10965 return;
10966 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010967
10968 c = *end;
10969 *end = NUL;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010970 match_add(curwin, g, p + 1, 10, id);
10971 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010972 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010973 }
10974 }
10975 eap->nextcmd = find_nextcmd(end);
10976}
10977#endif
10978
10979#ifdef FEAT_CRYPT
10980/*
10981 * ":X": Get crypt key
10982 */
10983/*ARGSUSED*/
10984 static void
10985ex_X(eap)
10986 exarg_T *eap;
10987{
10988 (void)get_crypt_key(TRUE, TRUE);
10989}
10990#endif
10991
10992#ifdef FEAT_FOLDING
10993 static void
10994ex_fold(eap)
10995 exarg_T *eap;
10996{
10997 if (foldManualAllowed(TRUE))
10998 foldCreate(eap->line1, eap->line2);
10999}
11000
11001 static void
11002ex_foldopen(eap)
11003 exarg_T *eap;
11004{
11005 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
11006 eap->forceit, FALSE);
11007}
11008
11009 static void
11010ex_folddo(eap)
11011 exarg_T *eap;
11012{
11013 linenr_T lnum;
11014
11015 /* First set the marks for all lines closed/open. */
11016 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
11017 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
11018 ml_setmarked(lnum);
11019
11020 /* Execute the command on the marked lines. */
11021 global_exe(eap->arg);
11022 ml_clearmarked(); /* clear rest of the marks */
11023}
11024#endif