blob: 8d21ee1ebffed04452110ff63cab4505f5a51cd9 [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
Bram Moolenaard812df62008-11-09 12:46:09 +0000367# define ex_oldfiles ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368#endif
369static char_u *arg_all __ARGS((void));
370#ifdef FEAT_SESSION
371static int makeopens __ARGS((FILE *fd, char_u *dirnow));
Bram Moolenaarf13be0d2008-01-02 14:13:10 +0000372static 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 +0000373static void ex_loadview __ARGS((exarg_T *eap));
374static char_u *get_view_file __ARGS((int c));
Bram Moolenaareeefcc72007-05-01 21:21:21 +0000375static int did_lcd; /* whether ":lcd" was produced for a session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376#else
377# define ex_loadview ex_ni
378#endif
379#ifndef FEAT_EVAL
380# define ex_compiler ex_ni
381#endif
382#ifdef FEAT_VIMINFO
383static void ex_viminfo __ARGS((exarg_T *eap));
384#else
385# define ex_viminfo ex_ni
386#endif
387static void ex_behave __ARGS((exarg_T *eap));
388#ifdef FEAT_AUTOCMD
389static void ex_filetype __ARGS((exarg_T *eap));
390static void ex_setfiletype __ARGS((exarg_T *eap));
391#else
392# define ex_filetype ex_ni
393# define ex_setfiletype ex_ni
394#endif
395#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000396# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397# define ex_diffpatch ex_ni
398# define ex_diffgetput ex_ni
399# define ex_diffsplit ex_ni
400# define ex_diffthis ex_ni
401# define ex_diffupdate ex_ni
402#endif
403static void ex_digraphs __ARGS((exarg_T *eap));
404static void ex_set __ARGS((exarg_T *eap));
405#if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
406# define ex_options ex_ni
407#endif
408#ifdef FEAT_SEARCH_EXTRA
409static void ex_nohlsearch __ARGS((exarg_T *eap));
410static void ex_match __ARGS((exarg_T *eap));
411#else
412# define ex_nohlsearch ex_ni
413# define ex_match ex_ni
414#endif
415#ifdef FEAT_CRYPT
416static void ex_X __ARGS((exarg_T *eap));
417#else
418# define ex_X ex_ni
419#endif
420#ifdef FEAT_FOLDING
421static void ex_fold __ARGS((exarg_T *eap));
422static void ex_foldopen __ARGS((exarg_T *eap));
423static void ex_folddo __ARGS((exarg_T *eap));
424#else
425# define ex_fold ex_ni
426# define ex_foldopen ex_ni
427# define ex_folddo ex_ni
428#endif
429#if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
430 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
431# define ex_language ex_ni
432#endif
433#ifndef FEAT_SIGNS
434# define ex_sign ex_ni
435#endif
436#ifndef FEAT_SUN_WORKSHOP
437# define ex_wsverb ex_ni
438#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000439#ifndef FEAT_NETBEANS_INTG
440# define ex_nbkey ex_ni
441#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442
443#ifndef FEAT_EVAL
444# define ex_debug ex_ni
445# define ex_breakadd ex_ni
446# define ex_debuggreedy ex_ni
447# define ex_breakdel ex_ni
448# define ex_breaklist ex_ni
449#endif
450
451#ifndef FEAT_CMDHIST
452# define ex_history ex_ni
453#endif
454#ifndef FEAT_JUMPLIST
455# define ex_jumps ex_ni
456# define ex_changes ex_ni
457#endif
458
Bram Moolenaar05159a02005-02-26 23:04:13 +0000459#ifndef FEAT_PROFILE
460# define ex_profile ex_ni
461#endif
462
Bram Moolenaar071d4272004-06-13 20:20:40 +0000463/*
464 * Declare cmdnames[].
465 */
466#define DO_DECLARE_EXCMD
467#include "ex_cmds.h"
468
469/*
470 * Table used to quickly search for a command, based on its first character.
471 */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +0000472static cmdidx_T cmdidxs[27] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473{
474 CMD_append,
475 CMD_buffer,
476 CMD_change,
477 CMD_delete,
478 CMD_edit,
479 CMD_file,
480 CMD_global,
481 CMD_help,
482 CMD_insert,
483 CMD_join,
484 CMD_k,
485 CMD_list,
486 CMD_move,
487 CMD_next,
488 CMD_open,
489 CMD_print,
490 CMD_quit,
491 CMD_read,
492 CMD_substitute,
493 CMD_t,
494 CMD_undo,
495 CMD_vglobal,
496 CMD_write,
497 CMD_xit,
498 CMD_yank,
499 CMD_z,
500 CMD_bang
501};
502
503static char_u dollar_command[2] = {'$', 0};
504
505
506#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000507/* Struct for storing a line inside a while/for loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508typedef struct
509{
510 char_u *line; /* command line */
511 linenr_T lnum; /* sourcing_lnum of the line */
512} wcmd_T;
513
514/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000515 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000517 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000519struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520{
521 garray_T *lines_gap; /* growarray with line info */
522 int current_line; /* last read line from growarray */
523 int repeating; /* TRUE when looping a second time */
524 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
525 char_u *(*getline) __ARGS((int, void *, int));
526 void *cookie;
527};
528
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000529static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
530static int store_loop_line __ARGS((garray_T *gap, char_u *line));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531static void free_cmdlines __ARGS((garray_T *gap));
Bram Moolenaared203462004-06-16 11:19:22 +0000532
533/* Struct to save a few things while debugging. Used in do_cmdline() only. */
534struct dbg_stuff
535{
536 int trylevel;
537 int force_abort;
538 except_T *caught_stack;
539 char_u *vv_exception;
540 char_u *vv_throwpoint;
541 int did_emsg;
542 int got_int;
543 int did_throw;
544 int need_rethrow;
545 int check_cstack;
546 except_T *current_exception;
547};
548
549static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
550static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
551
552 static void
553save_dbg_stuff(dsp)
554 struct dbg_stuff *dsp;
555{
556 dsp->trylevel = trylevel; trylevel = 0;
557 dsp->force_abort = force_abort; force_abort = FALSE;
558 dsp->caught_stack = caught_stack; caught_stack = NULL;
559 dsp->vv_exception = v_exception(NULL);
560 dsp->vv_throwpoint = v_throwpoint(NULL);
561
562 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
563 dsp->did_emsg = did_emsg; did_emsg = FALSE;
564 dsp->got_int = got_int; got_int = FALSE;
565 dsp->did_throw = did_throw; did_throw = FALSE;
566 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
567 dsp->check_cstack = check_cstack; check_cstack = FALSE;
568 dsp->current_exception = current_exception; current_exception = NULL;
569}
570
571 static void
572restore_dbg_stuff(dsp)
573 struct dbg_stuff *dsp;
574{
575 suppress_errthrow = FALSE;
576 trylevel = dsp->trylevel;
577 force_abort = dsp->force_abort;
578 caught_stack = dsp->caught_stack;
579 (void)v_exception(dsp->vv_exception);
580 (void)v_throwpoint(dsp->vv_throwpoint);
581 did_emsg = dsp->did_emsg;
582 got_int = dsp->got_int;
583 did_throw = dsp->did_throw;
584 need_rethrow = dsp->need_rethrow;
585 check_cstack = dsp->check_cstack;
586 current_exception = dsp->current_exception;
587}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588#endif
589
590
591/*
592 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
593 * command is given.
594 */
595 void
596do_exmode(improved)
597 int improved; /* TRUE for "improved Ex" mode */
598{
599 int save_msg_scroll;
600 int prev_msg_row;
601 linenr_T prev_line;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000602 int changedtick;
603
604 if (improved)
605 exmode_active = EXMODE_VIM;
606 else
607 exmode_active = EXMODE_NORMAL;
608 State = NORMAL;
609
610 /* When using ":global /pat/ visual" and then "Q" we return to continue
611 * the :global command. */
612 if (global_busy)
613 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614
615 save_msg_scroll = msg_scroll;
616 ++RedrawingDisabled; /* don't redisplay the window */
617 ++no_wait_return; /* don't wait for return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618#ifdef FEAT_GUI
619 /* Ignore scrollbar and mouse events in Ex mode */
620 ++hold_gui_events;
621#endif
622#ifdef FEAT_SNIFF
623 want_sniff_request = 0; /* No K_SNIFF wanted */
624#endif
625
626 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
627 while (exmode_active)
628 {
Bram Moolenaar7c626922005-02-07 22:01:03 +0000629#ifdef FEAT_EX_EXTRA
630 /* Check for a ":normal" command and no more characters left. */
631 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
632 {
633 exmode_active = FALSE;
634 break;
635 }
636#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637 msg_scroll = TRUE;
638 need_wait_return = FALSE;
639 ex_pressedreturn = FALSE;
640 ex_no_reprint = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000641 changedtick = curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 prev_msg_row = msg_row;
643 prev_line = curwin->w_cursor.lnum;
644#ifdef FEAT_SNIFF
645 ProcessSniffRequests();
646#endif
647 if (improved)
648 {
649 cmdline_row = msg_row;
650 do_cmdline(NULL, getexline, NULL, 0);
651 }
652 else
653 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
654 lines_left = Rows - 1;
655
Bram Moolenaardf177f62005-02-22 08:39:57 +0000656 if ((prev_line != curwin->w_cursor.lnum
657 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000659 if (curbuf->b_ml.ml_flags & ML_EMPTY)
660 EMSG(_(e_emptybuf));
661 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000663 if (ex_pressedreturn)
664 {
665 /* go up one line, to overwrite the ":<CR>" line, so the
Bram Moolenaar81870892007-11-11 18:17:28 +0000666 * output doesn't contain empty lines. */
Bram Moolenaardf177f62005-02-22 08:39:57 +0000667 msg_row = prev_msg_row;
668 if (prev_msg_row == Rows - 1)
669 msg_row--;
670 }
671 msg_col = 0;
672 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
673 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 }
Bram Moolenaardf177f62005-02-22 08:39:57 +0000676 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
677 {
678 if (curbuf->b_ml.ml_flags & ML_EMPTY)
679 EMSG(_(e_emptybuf));
680 else
681 EMSG(_("E501: At end-of-file"));
682 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 }
684
685#ifdef FEAT_GUI
686 --hold_gui_events;
687#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 --RedrawingDisabled;
689 --no_wait_return;
690 update_screen(CLEAR);
691 need_wait_return = FALSE;
692 msg_scroll = save_msg_scroll;
693}
694
695/*
696 * Execute a simple command line. Used for translated commands like "*".
697 */
698 int
699do_cmdline_cmd(cmd)
700 char_u *cmd;
701{
702 return do_cmdline(cmd, NULL, NULL,
703 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
704}
705
706/*
707 * do_cmdline(): execute one Ex command line
708 *
709 * 1. Execute "cmdline" when it is not NULL.
710 * If "cmdline" is NULL, or more lines are needed, getline() is used.
711 * 2. Split up in parts separated with '|'.
712 *
713 * This function can be called recursively!
714 *
715 * flags:
716 * DOCMD_VERBOSE - The command will be included in the error message.
717 * DOCMD_NOWAIT - Don't call wait_return() and friends.
718 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
719 * DOCMD_KEYTYPED - Don't reset KeyTyped.
720 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
721 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
722 *
723 * return FAIL if cmdline could not be executed, OK otherwise
724 */
725 int
726do_cmdline(cmdline, getline, cookie, flags)
727 char_u *cmdline;
728 char_u *(*getline) __ARGS((int, void *, int));
729 void *cookie; /* argument for getline() */
730 int flags;
731{
732 char_u *next_cmdline; /* next cmd to execute */
733 char_u *cmdline_copy = NULL; /* copy of cmd line */
734 int used_getline = FALSE; /* used "getline" to obtain command */
735 static int recursive = 0; /* recursive depth */
736 int msg_didout_before_start = 0;
737 int count = 0; /* line number count */
738 int did_inc = FALSE; /* incremented RedrawingDisabled */
739 int retval = OK;
740#ifdef FEAT_EVAL
741 struct condstack cstack; /* conditional stack */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000742 garray_T lines_ga; /* keep lines for ":while"/":for" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 int current_line = 0; /* active line in lines_ga */
744 char_u *fname = NULL; /* function or script name */
745 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
746 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
Bram Moolenaared203462004-06-16 11:19:22 +0000747 struct dbg_stuff debug_saved; /* saved things for debug mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 int initial_trylevel;
749 struct msglist **saved_msg_list = NULL;
750 struct msglist *private_msg_list;
751
752 /* "getline" and "cookie" passed to do_one_cmd() */
753 char_u *(*cmd_getline) __ARGS((int, void *, int));
754 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000755 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000757 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758#else
759# define cmd_getline getline
760# define cmd_cookie cookie
761#endif
762 static int call_depth = 0; /* recursiveness */
763
764#ifdef FEAT_EVAL
765 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
766 * location for storing error messages to be converted to an exception.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000767 * This ensures that the do_errthrow() call in do_one_cmd() does not
768 * combine the messages stored by an earlier invocation of do_one_cmd()
769 * with the command name of the later one. This would happen when
770 * BufWritePost autocommands are executed after a write error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 saved_msg_list = msg_list;
772 msg_list = &private_msg_list;
773 private_msg_list = NULL;
774#endif
775
776 /* It's possible to create an endless loop with ":execute", catch that
777 * here. The value of 200 allows nested function calls, ":source", etc. */
778 if (call_depth == 200)
779 {
780 EMSG(_("E169: Command too recursive"));
781#ifdef FEAT_EVAL
782 /* When converting to an exception, we do not include the command name
783 * since this is not an error of the specific command. */
784 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
785 msg_list = saved_msg_list;
786#endif
787 return FAIL;
788 }
789 ++call_depth;
790
791#ifdef FEAT_EVAL
792 cstack.cs_idx = -1;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000793 cstack.cs_looplevel = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 cstack.cs_trylevel = 0;
795 cstack.cs_emsg_silent_list = NULL;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000796 cstack.cs_lflags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
798
799 real_cookie = getline_cookie(getline, cookie);
800
801 /* Inside a function use a higher nesting level. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000802 getline_is_func = getline_equal(getline, cookie, get_func_line);
803 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 ++ex_nesting_level;
805
806 /* Get the function or script name and the address where the next breakpoint
807 * line and the debug tick for a function or script are stored. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000808 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 {
810 fname = func_name(real_cookie);
811 breakpoint = func_breakpoint(real_cookie);
812 dbg_tick = func_dbg_tick(real_cookie);
813 }
814 else if (getline_equal(getline, cookie, getsourceline))
815 {
816 fname = sourcing_name;
817 breakpoint = source_breakpoint(real_cookie);
818 dbg_tick = source_dbg_tick(real_cookie);
819 }
820
821 /*
822 * Initialize "force_abort" and "suppress_errthrow" at the top level.
823 */
824 if (!recursive)
825 {
826 force_abort = FALSE;
827 suppress_errthrow = FALSE;
828 }
829
830 /*
831 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000832 * exception handling (used when debugging). Otherwise clear it to avoid
833 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000835 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000836 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000837 else
838 memset(&debug_saved, 0, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839
840 initial_trylevel = trylevel;
841
842 /*
843 * "did_throw" will be set to TRUE when an exception is being thrown.
844 */
845 did_throw = FALSE;
846#endif
847 /*
848 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000849 * cancel the whole command line, and any if/endif or loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850 * If force_abort is set, we cancel everything.
851 */
852 did_emsg = FALSE;
853
854 /*
855 * KeyTyped is only set when calling vgetc(). Reset it here when not
856 * calling vgetc() (sourced command lines).
857 */
858 if (!(flags & DOCMD_KEYTYPED) && !getline_equal(getline, cookie, getexline))
859 KeyTyped = FALSE;
860
861 /*
862 * Continue executing command lines:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000863 * - when inside an ":if", ":while" or ":for"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 * - for multiple commands on one line, separated with '|'
865 * - when repeating until there are no more lines (for ":source")
866 */
867 next_cmdline = cmdline;
868 do
869 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000870#ifdef FEAT_EVAL
871 getline_is_func = getline_equal(getline, cookie, get_func_line);
872#endif
873
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000874 /* stop skipping cmds for an error msg after all endif/while/for */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 if (next_cmdline == NULL
876#ifdef FEAT_EVAL
877 && !force_abort
878 && cstack.cs_idx < 0
Bram Moolenaar05159a02005-02-26 23:04:13 +0000879 && !(getline_is_func && func_has_abort(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880#endif
881 )
882 did_emsg = FALSE;
883
884 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000885 * 1. If repeating a line in a loop, get a line from lines_ga.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 * 2. If no line given: Get an allocated line with getline().
887 * 3. If a line is given: Make a copy, so we can mess with it.
888 */
889
890#ifdef FEAT_EVAL
891 /* 1. If repeating, get a previous line from lines_ga. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000892 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 {
894 /* Each '|' separated command is stored separately in lines_ga, to
895 * be able to jump to it. Don't use next_cmdline now. */
896 vim_free(cmdline_copy);
897 cmdline_copy = NULL;
898
899 /* Check if a function has returned or, unless it has an unclosed
900 * try conditional, aborted. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000901 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000903# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000904 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000905 func_line_end(real_cookie);
906# endif
907 if (func_has_ended(real_cookie))
908 {
909 retval = FAIL;
910 break;
911 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000913#ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000914 else if (do_profiling == PROF_YES
Bram Moolenaar05159a02005-02-26 23:04:13 +0000915 && getline_equal(getline, cookie, getsourceline))
916 script_line_end();
917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918
919 /* Check if a sourced file hit a ":finish" command. */
920 if (source_finished(getline, cookie))
921 {
922 retval = FAIL;
923 break;
924 }
925
926 /* If breakpoints have been added/deleted need to check for it. */
927 if (breakpoint != NULL && dbg_tick != NULL
928 && *dbg_tick != debug_tick)
929 {
930 *breakpoint = dbg_find_breakpoint(
931 getline_equal(getline, cookie, getsourceline),
932 fname, sourcing_lnum);
933 *dbg_tick = debug_tick;
934 }
935
936 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
937 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
938
939 /* Did we encounter a breakpoint? */
940 if (breakpoint != NULL && *breakpoint != 0
941 && *breakpoint <= sourcing_lnum)
942 {
943 dbg_breakpoint(fname, sourcing_lnum);
944 /* Find next breakpoint. */
945 *breakpoint = dbg_find_breakpoint(
946 getline_equal(getline, cookie, getsourceline),
947 fname, sourcing_lnum);
948 *dbg_tick = debug_tick;
949 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000950# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000951 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000952 {
953 if (getline_is_func)
954 func_line_start(real_cookie);
955 else if (getline_equal(getline, cookie, getsourceline))
956 script_line_start();
957 }
958# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959 }
960
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000961 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000963 /* Inside a while/for loop we need to store the lines and use them
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 * again. Pass a different "getline" function to do_one_cmd()
965 * below, so that it stores lines in or reads them from
966 * "lines_ga". Makes it possible to define a function inside a
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000967 * while/for loop. */
968 cmd_getline = get_loop_line;
969 cmd_cookie = (void *)&cmd_loop_cookie;
970 cmd_loop_cookie.lines_gap = &lines_ga;
971 cmd_loop_cookie.current_line = current_line;
972 cmd_loop_cookie.getline = getline;
973 cmd_loop_cookie.cookie = cookie;
974 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 }
976 else
977 {
978 cmd_getline = getline;
979 cmd_cookie = cookie;
980 }
981#endif
982
983 /* 2. If no line given, get an allocated line with getline(). */
984 if (next_cmdline == NULL)
985 {
986 /*
987 * Need to set msg_didout for the first line after an ":if",
988 * otherwise the ":if" will be overwritten.
989 */
990 if (count == 1 && getline_equal(getline, cookie, getexline))
991 msg_didout = TRUE;
992 if (getline == NULL || (next_cmdline = getline(':', cookie,
993#ifdef FEAT_EVAL
994 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
995#else
996 0
997#endif
998 )) == NULL)
999 {
1000 /* Don't call wait_return for aborted command line. The NULL
1001 * returned for the end of a sourced file or executed function
1002 * doesn't do this. */
1003 if (KeyTyped && !(flags & DOCMD_REPEAT))
1004 need_wait_return = FALSE;
1005 retval = FAIL;
1006 break;
1007 }
1008 used_getline = TRUE;
1009
1010 /*
1011 * Keep the first typed line. Clear it when more lines are typed.
1012 */
1013 if (flags & DOCMD_KEEPLINE)
1014 {
1015 vim_free(repeat_cmdline);
1016 if (count == 0)
1017 repeat_cmdline = vim_strsave(next_cmdline);
1018 else
1019 repeat_cmdline = NULL;
1020 }
1021 }
1022
1023 /* 3. Make a copy of the command so we can mess with it. */
1024 else if (cmdline_copy == NULL)
1025 {
1026 next_cmdline = vim_strsave(next_cmdline);
1027 if (next_cmdline == NULL)
1028 {
1029 EMSG(_(e_outofmem));
1030 retval = FAIL;
1031 break;
1032 }
1033 }
1034 cmdline_copy = next_cmdline;
1035
1036#ifdef FEAT_EVAL
1037 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001038 * Save the current line when inside a ":while" or ":for", and when
1039 * the command looks like a ":while" or ":for", because we may need it
1040 * later. When there is a '|' and another command, it is stored
1041 * separately, because we need to be able to jump back to it from an
1042 * :endwhile/:endfor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001044 if (current_line == lines_ga.ga_len
1045 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001047 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 {
1049 retval = FAIL;
1050 break;
1051 }
1052 }
1053 did_endif = FALSE;
1054#endif
1055
1056 if (count++ == 0)
1057 {
1058 /*
1059 * All output from the commands is put below each other, without
1060 * waiting for a return. Don't do this when executing commands
1061 * from a script or when being called recursive (e.g. for ":e
1062 * +command file").
1063 */
1064 if (!(flags & DOCMD_NOWAIT) && !recursive)
1065 {
1066 msg_didout_before_start = msg_didout;
1067 msg_didany = FALSE; /* no output yet */
1068 msg_start();
1069 msg_scroll = TRUE; /* put messages below each other */
1070 ++no_wait_return; /* dont wait for return until finished */
1071 ++RedrawingDisabled;
1072 did_inc = TRUE;
1073 }
1074 }
1075
1076 if (p_verbose >= 15 && sourcing_name != NULL)
1077 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 ++no_wait_return;
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001079 verbose_enter_scroll();
1080
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 smsg((char_u *)_("line %ld: %s"),
1082 (long)sourcing_lnum, cmdline_copy);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001083 if (msg_silent == 0)
1084 msg_puts((char_u *)"\n"); /* don't overwrite this */
1085
1086 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 --no_wait_return;
1088 }
1089
1090 /*
1091 * 2. Execute one '|' separated command.
1092 * do_one_cmd() will return NULL if there is no trailing '|'.
1093 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1094 */
1095 ++recursive;
1096 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1097#ifdef FEAT_EVAL
1098 &cstack,
1099#endif
1100 cmd_getline, cmd_cookie);
1101 --recursive;
1102
1103#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001104 if (cmd_cookie == (void *)&cmd_loop_cookie)
1105 /* Use "current_line" from "cmd_loop_cookie", it may have been
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 * incremented when defining a function. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001107 current_line = cmd_loop_cookie.current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108#endif
1109
1110 if (next_cmdline == NULL)
1111 {
1112 vim_free(cmdline_copy);
1113 cmdline_copy = NULL;
1114#ifdef FEAT_CMDHIST
1115 /*
1116 * If the command was typed, remember it for the ':' register.
1117 * Do this AFTER executing the command to make :@: work.
1118 */
1119 if (getline_equal(getline, cookie, getexline)
1120 && new_last_cmdline != NULL)
1121 {
1122 vim_free(last_cmdline);
1123 last_cmdline = new_last_cmdline;
1124 new_last_cmdline = NULL;
1125 }
1126#endif
1127 }
1128 else
1129 {
1130 /* need to copy the command after the '|' to cmdline_copy, for the
1131 * next do_one_cmd() */
Bram Moolenaara7241f52008-06-24 20:39:31 +00001132 STRMOVE(cmdline_copy, next_cmdline);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 next_cmdline = cmdline_copy;
1134 }
1135
1136
1137#ifdef FEAT_EVAL
1138 /* reset did_emsg for a function that is not aborted by an error */
1139 if (did_emsg && !force_abort
1140 && getline_equal(getline, cookie, get_func_line)
1141 && !func_has_abort(real_cookie))
1142 did_emsg = FALSE;
1143
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001144 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 {
1146 ++current_line;
1147
1148 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001149 * An ":endwhile", ":endfor" and ":continue" is handled here.
1150 * If we were executing commands, jump back to the ":while" or
1151 * ":for".
1152 * If we were not executing commands, decrement cs_looplevel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001154 if (cstack.cs_lflags & (CSL_HAD_CONT | CSL_HAD_ENDLOOP))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001156 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001158 /* Jump back to the matching ":while" or ":for". Be careful
1159 * not to use a cs_line[] from an entry that isn't a ":while"
1160 * or ":for": It would make "current_line" invalid and can
1161 * cause a crash. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 if (!did_emsg && !got_int && !did_throw
1163 && cstack.cs_idx >= 0
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001164 && (cstack.cs_flags[cstack.cs_idx]
1165 & (CSF_WHILE | CSF_FOR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 && cstack.cs_line[cstack.cs_idx] >= 0
1167 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1168 {
1169 current_line = cstack.cs_line[cstack.cs_idx];
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001170 /* remember we jumped there */
1171 cstack.cs_lflags |= CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 line_breakcheck(); /* check if CTRL-C typed */
1173
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001174 /* Check for the next breakpoint at or after the ":while"
1175 * or ":for". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176 if (breakpoint != NULL)
1177 {
1178 *breakpoint = dbg_find_breakpoint(
1179 getline_equal(getline, cookie, getsourceline),
1180 fname,
1181 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1182 *dbg_tick = debug_tick;
1183 }
1184 }
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001185 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001187 /* can only get here with ":endwhile" or ":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 if (cstack.cs_idx >= 0)
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001189 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1190 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 }
1192 }
1193
1194 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001195 * For a ":while" or ":for" we need to remember the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001197 else if (cstack.cs_lflags & CSL_HAD_LOOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001199 cstack.cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1201 }
1202 }
1203
1204 /*
1205 * When not inside any ":while" loop, clear remembered lines.
1206 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001207 if (cstack.cs_looplevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 {
1209 if (lines_ga.ga_len > 0)
1210 {
1211 sourcing_lnum =
1212 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1213 free_cmdlines(&lines_ga);
1214 }
1215 current_line = 0;
1216 }
1217
1218 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001219 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1220 * being restored at the ":endtry". Reset them here and set the
1221 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1222 * This includes the case where a missing ":endif", ":endwhile" or
1223 * ":endfor" was detected by the ":finally" itself.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001225 if (cstack.cs_lflags & CSL_HAD_FINA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001227 cstack.cs_lflags &= ~CSL_HAD_FINA;
1228 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1229 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 did_throw ? (void *)current_exception : NULL);
1231 did_emsg = got_int = did_throw = FALSE;
1232 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1233 }
1234
1235 /* Update global "trylevel" for recursive calls to do_cmdline() from
1236 * within this loop. */
1237 trylevel = initial_trylevel + cstack.cs_trylevel;
1238
1239 /*
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001240 * If the outermost try conditional (across function calls and sourced
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 * files) is aborted because of an error, an interrupt, or an uncaught
1242 * exception, cancel everything. If it is left normally, reset
1243 * force_abort to get the non-EH compatible abortion behavior for
1244 * the rest of the script.
1245 */
1246 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1247 force_abort = FALSE;
1248
1249 /* Convert an interrupt to an exception if appropriate. */
1250 (void)do_intthrow(&cstack);
1251#endif /* FEAT_EVAL */
1252
1253 }
1254 /*
1255 * Continue executing command lines when:
1256 * - no CTRL-C typed, no aborting error, no exception thrown or try
1257 * conditionals need to be checked for executing finally clauses or
1258 * catching an interrupt exception
1259 * - didn't get an error message or lines are not typed
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001260 * - there is a command after '|', inside a :if, :while, :for or :try, or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261 * looping for ":source" command or function call.
1262 */
1263 while (!((got_int
1264#ifdef FEAT_EVAL
1265 || (did_emsg && force_abort) || did_throw
1266#endif
1267 )
1268#ifdef FEAT_EVAL
1269 && cstack.cs_trylevel == 0
1270#endif
1271 )
1272 && !(did_emsg && used_getline
1273 && (getline_equal(getline, cookie, getexmodeline)
1274 || getline_equal(getline, cookie, getexline)))
1275 && (next_cmdline != NULL
1276#ifdef FEAT_EVAL
1277 || cstack.cs_idx >= 0
1278#endif
1279 || (flags & DOCMD_REPEAT)));
1280
1281 vim_free(cmdline_copy);
1282#ifdef FEAT_EVAL
1283 free_cmdlines(&lines_ga);
1284 ga_clear(&lines_ga);
1285
1286 if (cstack.cs_idx >= 0)
1287 {
1288 /*
1289 * If a sourced file or executed function ran to its end, report the
1290 * unclosed conditional.
1291 */
1292 if (!got_int && !did_throw
1293 && ((getline_equal(getline, cookie, getsourceline)
1294 && !source_finished(getline, cookie))
1295 || (getline_equal(getline, cookie, get_func_line)
1296 && !func_has_ended(real_cookie))))
1297 {
1298 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1299 EMSG(_(e_endtry));
1300 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1301 EMSG(_(e_endwhile));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001302 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1303 EMSG(_(e_endfor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 else
1305 EMSG(_(e_endif));
1306 }
1307
1308 /*
1309 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1310 * ":endtry" in a sourced file or executed function. If the try
1311 * conditional is in its finally clause, ignore anything pending.
1312 * If it is in a catch clause, finish the caught exception.
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001313 * Also cleanup any "cs_forinfo" structures.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 */
1315 do
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001316 {
1317 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1318
Bram Moolenaar89e5d682005-01-17 22:06:23 +00001319 if (idx >= 0)
1320 --idx; /* remove try block not in its finally clause */
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001321 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1322 &cstack.cs_looplevel);
1323 }
1324 while (cstack.cs_idx >= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 trylevel = initial_trylevel;
1326 }
1327
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001328 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1329 * lack was reported above and the error message is to be converted to an
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 * exception, do this now after rewinding the cstack. */
1331 do_errthrow(&cstack, getline_equal(getline, cookie, get_func_line)
1332 ? (char_u *)"endfunction" : (char_u *)NULL);
1333
1334 if (trylevel == 0)
1335 {
1336 /*
1337 * When an exception is being thrown out of the outermost try
1338 * conditional, discard the uncaught exception, disable the conversion
1339 * of interrupts or errors to exceptions, and ensure that no more
1340 * commands are executed.
1341 */
1342 if (did_throw)
1343 {
1344 void *p = NULL;
1345 char_u *saved_sourcing_name;
1346 int saved_sourcing_lnum;
1347 struct msglist *messages = NULL, *next;
1348
1349 /*
1350 * If the uncaught exception is a user exception, report it as an
1351 * error. If it is an error exception, display the saved error
1352 * message now. For an interrupt exception, do nothing; the
1353 * interrupt message is given elsewhere.
1354 */
1355 switch (current_exception->type)
1356 {
1357 case ET_USER:
Bram Moolenaar9c13b352005-05-19 20:53:52 +00001358 vim_snprintf((char *)IObuff, IOSIZE,
1359 _("E605: Exception not caught: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 current_exception->value);
1361 p = vim_strsave(IObuff);
1362 break;
1363 case ET_ERROR:
1364 messages = current_exception->messages;
1365 current_exception->messages = NULL;
1366 break;
1367 case ET_INTERRUPT:
1368 break;
1369 default:
1370 p = vim_strsave((char_u *)_(e_internal));
1371 }
1372
1373 saved_sourcing_name = sourcing_name;
1374 saved_sourcing_lnum = sourcing_lnum;
1375 sourcing_name = current_exception->throw_name;
1376 sourcing_lnum = current_exception->throw_lnum;
1377 current_exception->throw_name = NULL;
1378
1379 discard_current_exception(); /* uses IObuff if 'verbose' */
1380 suppress_errthrow = TRUE;
1381 force_abort = TRUE;
1382
1383 if (messages != NULL)
1384 {
1385 do
1386 {
1387 next = messages->next;
1388 emsg(messages->msg);
1389 vim_free(messages->msg);
1390 vim_free(messages);
1391 messages = next;
1392 }
1393 while (messages != NULL);
1394 }
1395 else if (p != NULL)
1396 {
1397 emsg(p);
1398 vim_free(p);
1399 }
1400 vim_free(sourcing_name);
1401 sourcing_name = saved_sourcing_name;
1402 sourcing_lnum = saved_sourcing_lnum;
1403 }
1404
1405 /*
1406 * On an interrupt or an aborting error not converted to an exception,
1407 * disable the conversion of errors to exceptions. (Interrupts are not
1408 * converted any more, here.) This enables also the interrupt message
1409 * when force_abort is set and did_emsg unset in case of an interrupt
1410 * from a finally clause after an error.
1411 */
1412 else if (got_int || (did_emsg && force_abort))
1413 suppress_errthrow = TRUE;
1414 }
1415
1416 /*
1417 * The current cstack will be freed when do_cmdline() returns. An uncaught
1418 * exception will have to be rethrown in the previous cstack. If a function
1419 * has just returned or a script file was just finished and the previous
1420 * cstack belongs to the same function or, respectively, script file, it
1421 * will have to be checked for finally clauses to be executed due to the
1422 * ":return" or ":finish". This is done in do_one_cmd().
1423 */
1424 if (did_throw)
1425 need_rethrow = TRUE;
1426 if ((getline_equal(getline, cookie, getsourceline)
1427 && ex_nesting_level > source_level(real_cookie))
1428 || (getline_equal(getline, cookie, get_func_line)
1429 && ex_nesting_level > func_level(real_cookie) + 1))
1430 {
1431 if (!did_throw)
1432 check_cstack = TRUE;
1433 }
1434 else
1435 {
1436 /* When leaving a function, reduce nesting level. */
1437 if (getline_equal(getline, cookie, get_func_line))
1438 --ex_nesting_level;
1439 /*
1440 * Go to debug mode when returning from a function in which we are
1441 * single-stepping.
1442 */
1443 if ((getline_equal(getline, cookie, getsourceline)
1444 || getline_equal(getline, cookie, get_func_line))
1445 && ex_nesting_level + 1 <= debug_break_level)
1446 do_debug(getline_equal(getline, cookie, getsourceline)
1447 ? (char_u *)_("End of sourced file")
1448 : (char_u *)_("End of function"));
1449 }
1450
1451 /*
1452 * Restore the exception environment (done after returning from the
1453 * debugger).
1454 */
1455 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +00001456 restore_dbg_stuff(&debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001457
1458 msg_list = saved_msg_list;
1459#endif /* FEAT_EVAL */
1460
1461 /*
1462 * If there was too much output to fit on the command line, ask the user to
1463 * hit return before redrawing the screen. With the ":global" command we do
1464 * this only once after the command is finished.
1465 */
1466 if (did_inc)
1467 {
1468 --RedrawingDisabled;
1469 --no_wait_return;
1470 msg_scroll = FALSE;
1471
1472 /*
1473 * When just finished an ":if"-":else" which was typed, no need to
1474 * wait for hit-return. Also for an error situation.
1475 */
1476 if (retval == FAIL
1477#ifdef FEAT_EVAL
1478 || (did_endif && KeyTyped && !did_emsg)
1479#endif
1480 )
1481 {
1482 need_wait_return = FALSE;
1483 msg_didany = FALSE; /* don't wait when restarting edit */
1484 }
1485 else if (need_wait_return)
1486 {
1487 /*
1488 * The msg_start() above clears msg_didout. The wait_return we do
1489 * here should not overwrite the command that may be shown before
1490 * doing that.
1491 */
1492 msg_didout |= msg_didout_before_start;
1493 wait_return(FALSE);
1494 }
1495 }
1496
1497#ifndef FEAT_EVAL
1498 /*
1499 * Reset if_level, in case a sourced script file contains more ":if" than
1500 * ":endif" (could be ":if x | foo | endif").
1501 */
1502 if_level = 0;
1503#endif
1504
1505 --call_depth;
1506 return retval;
1507}
1508
1509#ifdef FEAT_EVAL
1510/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001511 * Obtain a line when inside a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001512 */
1513 static char_u *
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001514get_loop_line(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 int c;
1516 void *cookie;
1517 int indent;
1518{
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001519 struct loop_cookie *cp = (struct loop_cookie *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 wcmd_T *wp;
1521 char_u *line;
1522
1523 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1524 {
1525 if (cp->repeating)
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001526 return NULL; /* trying to read past ":endwhile"/":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001528 /* First time inside the ":while"/":for": get line normally. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 if (cp->getline == NULL)
1530 line = getcmdline(c, 0L, indent);
1531 else
1532 line = cp->getline(c, cp->cookie, indent);
Bram Moolenaard68071d2006-05-02 22:08:30 +00001533 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001534 ++cp->current_line;
1535
1536 return line;
1537 }
1538
1539 KeyTyped = FALSE;
1540 ++cp->current_line;
1541 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1542 sourcing_lnum = wp->lnum;
1543 return vim_strsave(wp->line);
1544}
1545
1546/*
1547 * Store a line in "gap" so that a ":while" loop can execute it again.
1548 */
1549 static int
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001550store_loop_line(gap, line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551 garray_T *gap;
1552 char_u *line;
1553{
1554 if (ga_grow(gap, 1) == FAIL)
1555 return FAIL;
1556 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1557 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1558 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 return OK;
1560}
1561
1562/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001563 * Free the lines stored for a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 */
1565 static void
1566free_cmdlines(gap)
1567 garray_T *gap;
1568{
1569 while (gap->ga_len > 0)
1570 {
1571 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1572 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 }
1574}
1575#endif
1576
1577/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001578 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1579 * "func". * Otherwise return TRUE when "fgetline" equals "func".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 */
1581/*ARGSUSED*/
1582 int
Bram Moolenaar89d40322006-08-29 15:30:07 +00001583getline_equal(fgetline, cookie, func)
1584 char_u *(*fgetline) __ARGS((int, void *, int));
1585 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 char_u *(*func) __ARGS((int, void *, int));
1587{
1588#ifdef FEAT_EVAL
1589 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001590 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591
Bram Moolenaar89d40322006-08-29 15:30:07 +00001592 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001593 * function that's originally used to obtain the lines. This may be
1594 * nested several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001595 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001596 cp = (struct loop_cookie *)cookie;
1597 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 {
1599 gp = cp->getline;
1600 cp = cp->cookie;
1601 }
1602 return gp == func;
1603#else
Bram Moolenaar89d40322006-08-29 15:30:07 +00001604 return fgetline == func;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605#endif
1606}
1607
1608#if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1609/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001610 * If "fgetline" is get_loop_line(), return the cookie used by the original
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 * getline function. Otherwise return "cookie".
1612 */
1613/*ARGSUSED*/
1614 void *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001615getline_cookie(fgetline, cookie)
1616 char_u *(*fgetline) __ARGS((int, void *, int));
1617 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618{
1619# ifdef FEAT_EVAL
1620 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001621 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622
Bram Moolenaar89d40322006-08-29 15:30:07 +00001623 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaarc1762cc2007-05-10 16:56:30 +00001624 * cookie that's originally used to obtain the lines. This may be nested
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 * several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001626 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001627 cp = (struct loop_cookie *)cookie;
1628 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 {
1630 gp = cp->getline;
1631 cp = cp->cookie;
1632 }
1633 return cp;
1634# else
1635 return cookie;
1636# endif
1637}
1638#endif
1639
1640/*
1641 * Execute one Ex command.
1642 *
1643 * If 'sourcing' is TRUE, the command will be included in the error message.
1644 *
1645 * 1. skip comment lines and leading space
1646 * 2. handle command modifiers
1647 * 3. parse range
1648 * 4. parse command
1649 * 5. parse arguments
1650 * 6. switch on command name
1651 *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001652 * Note: "fgetline" can be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 *
1654 * This function may be called recursively!
1655 */
1656#if (_MSC_VER == 1200)
1657/*
Bram Moolenaared203462004-06-16 11:19:22 +00001658 * Avoid optimisation bug in VC++ version 6.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659 */
Bram Moolenaar281bdce2005-01-25 21:53:18 +00001660 #pragma optimize( "g", off )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661#endif
1662 static char_u *
1663do_one_cmd(cmdlinep, sourcing,
1664#ifdef FEAT_EVAL
1665 cstack,
1666#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001667 fgetline, cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 char_u **cmdlinep;
1669 int sourcing;
1670#ifdef FEAT_EVAL
1671 struct condstack *cstack;
1672#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001673 char_u *(*fgetline) __ARGS((int, void *, int));
1674 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675{
1676 char_u *p;
1677 linenr_T lnum;
1678 long n;
1679 char_u *errormsg = NULL; /* error message */
1680 exarg_T ea; /* Ex command arguments */
1681 long verbose_save = -1;
1682 int save_msg_scroll = 0;
1683 int did_silent = 0;
1684 int did_esilent = 0;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001685#ifdef HAVE_SANDBOX
1686 int did_sandbox = FALSE;
1687#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 cmdmod_T save_cmdmod;
1689 int ni; /* set when Not Implemented */
1690
1691 vim_memset(&ea, 0, sizeof(ea));
1692 ea.line1 = 1;
1693 ea.line2 = 1;
1694#ifdef FEAT_EVAL
1695 ++ex_nesting_level;
1696#endif
1697
1698 /* when not editing the last file :q has to be typed twice */
1699 if (quitmore
1700#ifdef FEAT_EVAL
1701 /* avoid that a function call in 'statusline' does this */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001702 && !getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703#endif
1704 )
1705 --quitmore;
1706
1707 /*
1708 * Reset browse, confirm, etc.. They are restored when returning, for
1709 * recursive calls.
1710 */
1711 save_cmdmod = cmdmod;
1712 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1713
Bram Moolenaarcbb37ad2006-08-16 15:04:21 +00001714 /* "#!anything" is handled like a comment. */
1715 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1716 goto doend;
1717
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718 /*
1719 * Repeat until no more command modifiers are found.
1720 */
1721 ea.cmd = *cmdlinep;
1722 for (;;)
1723 {
1724/*
1725 * 1. skip comment lines and leading white space and colons
1726 */
1727 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1728 ++ea.cmd;
1729
1730 /* in ex mode, an empty line works like :+ */
1731 if (*ea.cmd == NUL && exmode_active
Bram Moolenaar89d40322006-08-29 15:30:07 +00001732 && (getline_equal(fgetline, cookie, getexmodeline)
1733 || getline_equal(fgetline, cookie, getexline))
Bram Moolenaardf177f62005-02-22 08:39:57 +00001734 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 {
1736 ea.cmd = (char_u *)"+";
1737 ex_pressedreturn = TRUE;
1738 }
1739
1740 /* ignore comment and empty lines */
Bram Moolenaarf998c042007-11-20 11:31:26 +00001741 if (*ea.cmd == '"')
1742 goto doend;
1743 if (*ea.cmd == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001744 {
1745 ex_pressedreturn = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00001747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748
1749/*
1750 * 2. handle command modifiers.
1751 */
1752 p = ea.cmd;
1753 if (VIM_ISDIGIT(*ea.cmd))
1754 p = skipwhite(skipdigits(ea.cmd));
1755 switch (*p)
1756 {
1757 /* When adding an entry, also modify cmd_exists(). */
1758 case 'a': if (!checkforcmd(&ea.cmd, "aboveleft", 3))
1759 break;
1760#ifdef FEAT_WINDOWS
1761 cmdmod.split |= WSP_ABOVE;
1762#endif
1763 continue;
1764
1765 case 'b': if (checkforcmd(&ea.cmd, "belowright", 3))
1766 {
1767#ifdef FEAT_WINDOWS
1768 cmdmod.split |= WSP_BELOW;
1769#endif
1770 continue;
1771 }
1772 if (checkforcmd(&ea.cmd, "browse", 3))
1773 {
Bram Moolenaard812df62008-11-09 12:46:09 +00001774#ifdef FEAT_BROWSE_CMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 cmdmod.browse = TRUE;
1776#endif
1777 continue;
1778 }
1779 if (!checkforcmd(&ea.cmd, "botright", 2))
1780 break;
1781#ifdef FEAT_WINDOWS
1782 cmdmod.split |= WSP_BOT;
1783#endif
1784 continue;
1785
1786 case 'c': if (!checkforcmd(&ea.cmd, "confirm", 4))
1787 break;
1788#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
1789 cmdmod.confirm = TRUE;
1790#endif
1791 continue;
1792
1793 case 'k': if (checkforcmd(&ea.cmd, "keepmarks", 3))
1794 {
1795 cmdmod.keepmarks = TRUE;
1796 continue;
1797 }
Bram Moolenaard4755bb2004-09-02 19:12:26 +00001798 if (checkforcmd(&ea.cmd, "keepalt", 5))
1799 {
1800 cmdmod.keepalt = TRUE;
1801 continue;
1802 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 if (!checkforcmd(&ea.cmd, "keepjumps", 5))
1804 break;
1805 cmdmod.keepjumps = TRUE;
1806 continue;
1807
1808 /* ":hide" and ":hide | cmd" are not modifiers */
1809 case 'h': if (p != ea.cmd || !checkforcmd(&p, "hide", 3)
1810 || *p == NUL || ends_excmd(*p))
1811 break;
1812 ea.cmd = p;
1813 cmdmod.hide = TRUE;
1814 continue;
1815
1816 case 'l': if (checkforcmd(&ea.cmd, "lockmarks", 3))
1817 {
1818 cmdmod.lockmarks = TRUE;
1819 continue;
1820 }
1821
1822 if (!checkforcmd(&ea.cmd, "leftabove", 5))
1823 break;
1824#ifdef FEAT_WINDOWS
1825 cmdmod.split |= WSP_ABOVE;
1826#endif
1827 continue;
1828
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001829 case 'n': if (!checkforcmd(&ea.cmd, "noautocmd", 3))
1830 break;
1831#ifdef FEAT_AUTOCMD
1832 if (cmdmod.save_ei == NULL)
1833 {
Bram Moolenaarf193fff2006-04-27 00:02:13 +00001834 /* Set 'eventignore' to "all". Restore the
1835 * existing option value later. */
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001836 cmdmod.save_ei = vim_strsave(p_ei);
1837 set_string_option_direct((char_u *)"ei", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00001838 (char_u *)"all", OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00001839 }
1840#endif
1841 continue;
1842
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 case 'r': if (!checkforcmd(&ea.cmd, "rightbelow", 6))
1844 break;
1845#ifdef FEAT_WINDOWS
1846 cmdmod.split |= WSP_BELOW;
1847#endif
1848 continue;
1849
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001850 case 's': if (checkforcmd(&ea.cmd, "sandbox", 3))
1851 {
1852#ifdef HAVE_SANDBOX
1853 if (!did_sandbox)
1854 ++sandbox;
1855 did_sandbox = TRUE;
1856#endif
1857 continue;
1858 }
1859 if (!checkforcmd(&ea.cmd, "silent", 3))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 break;
1861 ++did_silent;
1862 ++msg_silent;
1863 save_msg_scroll = msg_scroll;
1864 if (*ea.cmd == '!' && !vim_iswhite(ea.cmd[-1]))
1865 {
1866 /* ":silent!", but not "silent !cmd" */
1867 ea.cmd = skipwhite(ea.cmd + 1);
1868 ++emsg_silent;
1869 ++did_esilent;
1870 }
1871 continue;
1872
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001873 case 't': if (checkforcmd(&p, "tab", 3))
1874 {
1875#ifdef FEAT_WINDOWS
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001876 if (vim_isdigit(*ea.cmd))
1877 cmdmod.tab = atoi((char *)ea.cmd) + 1;
1878 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +00001879 cmdmod.tab = tabpage_index(curtab) + 1;
Bram Moolenaar80a94a52006-02-23 21:26:58 +00001880 ea.cmd = p;
1881#endif
1882 continue;
1883 }
1884 if (!checkforcmd(&ea.cmd, "topleft", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 break;
1886#ifdef FEAT_WINDOWS
1887 cmdmod.split |= WSP_TOP;
1888#endif
1889 continue;
1890
1891 case 'v': if (checkforcmd(&ea.cmd, "vertical", 4))
1892 {
1893#ifdef FEAT_VERTSPLIT
1894 cmdmod.split |= WSP_VERT;
1895#endif
1896 continue;
1897 }
1898 if (!checkforcmd(&p, "verbose", 4))
1899 break;
1900 if (verbose_save < 0)
1901 verbose_save = p_verbose;
Bram Moolenaared203462004-06-16 11:19:22 +00001902 if (vim_isdigit(*ea.cmd))
1903 p_verbose = atoi((char *)ea.cmd);
1904 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 p_verbose = 1;
1906 ea.cmd = p;
1907 continue;
1908 }
1909 break;
1910 }
1911
1912#ifdef FEAT_EVAL
1913 ea.skip = did_emsg || got_int || did_throw || (cstack->cs_idx >= 0
1914 && !(cstack->cs_flags[cstack->cs_idx] & CSF_ACTIVE));
1915#else
1916 ea.skip = (if_level > 0);
1917#endif
1918
1919#ifdef FEAT_EVAL
Bram Moolenaar05159a02005-02-26 23:04:13 +00001920# ifdef FEAT_PROFILE
1921 /* Count this line for profiling if ea.skip is FALSE. */
Bram Moolenaar371d5402006-03-20 21:47:49 +00001922 if (do_profiling == PROF_YES && !ea.skip)
Bram Moolenaar05159a02005-02-26 23:04:13 +00001923 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001924 if (getline_equal(fgetline, cookie, get_func_line))
1925 func_line_exec(getline_cookie(fgetline, cookie));
1926 else if (getline_equal(fgetline, cookie, getsourceline))
Bram Moolenaar05159a02005-02-26 23:04:13 +00001927 script_line_exec();
1928 }
1929#endif
1930
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 /* May go to debug mode. If this happens and the ">quit" debug command is
1932 * used, throw an interrupt exception and skip the next command. */
1933 dbg_check_breakpoint(&ea);
1934 if (!ea.skip && got_int)
1935 {
1936 ea.skip = TRUE;
1937 (void)do_intthrow(cstack);
1938 }
1939#endif
1940
1941/*
1942 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
1943 *
1944 * where 'addr' is:
1945 *
1946 * % (entire file)
1947 * $ [+-NUM]
1948 * 'x [+-NUM] (where x denotes a currently defined mark)
1949 * . [+-NUM]
1950 * [+-NUM]..
1951 * NUM
1952 *
1953 * The ea.cmd pointer is updated to point to the first character following the
1954 * range spec. If an initial address is found, but no second, the upper bound
1955 * is equal to the lower.
1956 */
1957
1958 /* repeat for all ',' or ';' separated addresses */
1959 for (;;)
1960 {
1961 ea.line1 = ea.line2;
1962 ea.line2 = curwin->w_cursor.lnum; /* default is current line number */
1963 ea.cmd = skipwhite(ea.cmd);
1964 lnum = get_address(&ea.cmd, ea.skip, ea.addr_count == 0);
1965 if (ea.cmd == NULL) /* error detected */
1966 goto doend;
1967 if (lnum == MAXLNUM)
1968 {
1969 if (*ea.cmd == '%') /* '%' - all lines */
1970 {
1971 ++ea.cmd;
1972 ea.line1 = 1;
1973 ea.line2 = curbuf->b_ml.ml_line_count;
1974 ++ea.addr_count;
1975 }
1976 /* '*' - visual area */
1977 else if (*ea.cmd == '*' && vim_strchr(p_cpo, CPO_STAR) == NULL)
1978 {
1979 pos_T *fp;
1980
1981 ++ea.cmd;
1982 if (!ea.skip)
1983 {
1984 fp = getmark('<', FALSE);
1985 if (check_mark(fp) == FAIL)
1986 goto doend;
1987 ea.line1 = fp->lnum;
1988 fp = getmark('>', FALSE);
1989 if (check_mark(fp) == FAIL)
1990 goto doend;
1991 ea.line2 = fp->lnum;
1992 ++ea.addr_count;
1993 }
1994 }
1995 }
1996 else
1997 ea.line2 = lnum;
1998 ea.addr_count++;
1999
2000 if (*ea.cmd == ';')
2001 {
2002 if (!ea.skip)
2003 curwin->w_cursor.lnum = ea.line2;
2004 }
2005 else if (*ea.cmd != ',')
2006 break;
2007 ++ea.cmd;
2008 }
2009
2010 /* One address given: set start and end lines */
2011 if (ea.addr_count == 1)
2012 {
2013 ea.line1 = ea.line2;
2014 /* ... but only implicit: really no address given */
2015 if (lnum == MAXLNUM)
2016 ea.addr_count = 0;
2017 }
2018
2019 /* Don't leave the cursor on an illegal line (caused by ';') */
2020 check_cursor_lnum();
2021
2022/*
2023 * 4. parse command
2024 */
2025
2026 /*
2027 * Skip ':' and any white space
2028 */
2029 ea.cmd = skipwhite(ea.cmd);
2030 while (*ea.cmd == ':')
2031 ea.cmd = skipwhite(ea.cmd + 1);
2032
2033 /*
2034 * If we got a line, but no command, then go to the line.
2035 * If we find a '|' or '\n' we set ea.nextcmd.
2036 */
2037 if (*ea.cmd == NUL || *ea.cmd == '"' ||
2038 (ea.nextcmd = check_nextcmd(ea.cmd)) != NULL)
2039 {
2040 /*
2041 * strange vi behaviour:
2042 * ":3" jumps to line 3
2043 * ":3|..." prints line 3
2044 * ":|" prints current line
2045 */
2046 if (ea.skip) /* skip this if inside :if */
2047 goto doend;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002048 if (*ea.cmd == '|' || (exmode_active && ea.line1 != ea.line2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 {
2050 ea.cmdidx = CMD_print;
2051 ea.argt = RANGE+COUNT+TRLBAR;
2052 if ((errormsg = invalid_range(&ea)) == NULL)
2053 {
2054 correct_range(&ea);
2055 ex_print(&ea);
2056 }
2057 }
2058 else if (ea.addr_count != 0)
2059 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002060 if (ea.line2 > curbuf->b_ml.ml_line_count)
2061 {
2062 /* With '-' in 'cpoptions' a line number past the file is an
2063 * error, otherwise put it at the end of the file. */
2064 if (vim_strchr(p_cpo, CPO_MINUS) != NULL)
2065 ea.line2 = -1;
2066 else
2067 ea.line2 = curbuf->b_ml.ml_line_count;
2068 }
2069
2070 if (ea.line2 < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00002071 errormsg = (char_u *)_(e_invrange);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072 else
2073 {
2074 if (ea.line2 == 0)
2075 curwin->w_cursor.lnum = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 else
2077 curwin->w_cursor.lnum = ea.line2;
2078 beginline(BL_SOL | BL_FIX);
2079 }
2080 }
2081 goto doend;
2082 }
2083
2084 /* Find the command and let "p" point to after it. */
2085 p = find_command(&ea, NULL);
2086
2087#ifdef FEAT_USR_CMDS
2088 if (p == NULL)
2089 {
2090 if (!ea.skip)
2091 errormsg = (char_u *)_("E464: Ambiguous use of user-defined command");
2092 goto doend;
2093 }
2094 /* Check for wrong commands. */
2095 if (*p == '!' && ea.cmd[1] == 0151 && ea.cmd[0] == 78)
2096 {
2097 errormsg = uc_fun_cmd();
2098 goto doend;
2099 }
2100#endif
2101 if (ea.cmdidx == CMD_SIZE)
2102 {
2103 if (!ea.skip)
2104 {
2105 STRCPY(IObuff, _("E492: Not an editor command"));
2106 if (!sourcing)
2107 {
2108 STRCAT(IObuff, ": ");
2109 STRNCAT(IObuff, *cmdlinep, 40);
2110 }
2111 errormsg = IObuff;
2112 }
2113 goto doend;
2114 }
2115
2116 ni = (
2117#ifdef FEAT_USR_CMDS
2118 !USER_CMDIDX(ea.cmdidx) &&
2119#endif
Bram Moolenaar3ebc1e52007-07-05 07:54:17 +00002120 (cmdnames[ea.cmdidx].cmd_func == ex_ni
Bram Moolenaar7bb75552007-07-16 18:39:49 +00002121#ifdef HAVE_EX_SCRIPT_NI
2122 || cmdnames[ea.cmdidx].cmd_func == ex_script_ni
2123#endif
2124 ));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125
2126#ifndef FEAT_EVAL
2127 /*
2128 * When the expression evaluation is disabled, recognize the ":if" and
2129 * ":endif" commands and ignore everything in between it.
2130 */
2131 if (ea.cmdidx == CMD_if)
2132 ++if_level;
2133 if (if_level)
2134 {
2135 if (ea.cmdidx == CMD_endif)
2136 --if_level;
2137 goto doend;
2138 }
2139
2140#endif
2141
Bram Moolenaar196b3b02008-06-20 16:51:41 +00002142 /* forced commands */
2143 if (*p == '!' && ea.cmdidx != CMD_substitute
2144 && ea.cmdidx != CMD_smagic && ea.cmdidx != CMD_snomagic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 {
2146 ++p;
2147 ea.forceit = TRUE;
2148 }
2149 else
2150 ea.forceit = FALSE;
2151
2152/*
2153 * 5. parse arguments
2154 */
2155#ifdef FEAT_USR_CMDS
2156 if (!USER_CMDIDX(ea.cmdidx))
2157#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002158 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159
2160 if (!ea.skip)
2161 {
2162#ifdef HAVE_SANDBOX
2163 if (sandbox != 0 && !(ea.argt & SBOXOK))
2164 {
2165 /* Command not allowed in sandbox. */
2166 errormsg = (char_u *)_(e_sandbox);
2167 goto doend;
2168 }
2169#endif
2170 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2171 {
2172 /* Command not allowed in non-'modifiable' buffer */
2173 errormsg = (char_u *)_(e_modifiable);
2174 goto doend;
2175 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002176
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002177 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002178# ifdef FEAT_USR_CMDS
2179 && !USER_CMDIDX(ea.cmdidx)
2180# endif
2181 )
2182 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002183 /* Command not allowed when editing the command line. */
2184#ifdef FEAT_CMDWIN
2185 if (cmdwin_type != 0)
2186 errormsg = (char_u *)_(e_cmdwin);
2187 else
2188#endif
2189 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 goto doend;
2191 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002192#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002193 /* Disallow editing another buffer when "curbuf_lock" is set.
2194 * Do allow ":edit" (check for argument later).
2195 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002196 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002197 && ea.cmdidx != CMD_edit
2198 && ea.cmdidx != CMD_checktime
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002199# ifdef FEAT_USR_CMDS
2200 && !USER_CMDIDX(ea.cmdidx)
2201# endif
2202 && curbuf_locked())
2203 goto doend;
2204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205
2206 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2207 {
2208 /* no range allowed */
2209 errormsg = (char_u *)_(e_norange);
2210 goto doend;
2211 }
2212 }
2213
2214 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2215 {
2216 errormsg = (char_u *)_(e_nobang);
2217 goto doend;
2218 }
2219
2220 /*
2221 * Don't complain about the range if it is not used
2222 * (could happen if line_count is accidentally set to 0).
2223 */
2224 if (!ea.skip && !ni)
2225 {
2226 /*
2227 * If the range is backwards, ask for confirmation and, if given, swap
2228 * ea.line1 & ea.line2 so it's forwards again.
2229 * When global command is busy, don't ask, will fail below.
2230 */
2231 if (!global_busy && ea.line1 > ea.line2)
2232 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002233 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002235 if (sourcing || exmode_active)
2236 {
2237 errormsg = (char_u *)_("E493: Backwards range given");
2238 goto doend;
2239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 if (ask_yesno((char_u *)
2241 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002242 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 }
2244 lnum = ea.line1;
2245 ea.line1 = ea.line2;
2246 ea.line2 = lnum;
2247 }
2248 if ((errormsg = invalid_range(&ea)) != NULL)
2249 goto doend;
2250 }
2251
2252 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2253 ea.line2 = 1;
2254
2255 correct_range(&ea);
2256
2257#ifdef FEAT_FOLDING
2258 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2259 {
2260 /* Put the first line at the start of a closed fold, put the last line
2261 * at the end of a closed fold. */
2262 (void)hasFolding(ea.line1, &ea.line1, NULL);
2263 (void)hasFolding(ea.line2, NULL, &ea.line2);
2264 }
2265#endif
2266
2267#ifdef FEAT_QUICKFIX
2268 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002269 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 * option here, so things like % get expanded.
2271 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002272 p = replace_makeprg(&ea, p, cmdlinep);
2273 if (p == NULL)
2274 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275#endif
2276
2277 /*
2278 * Skip to start of argument.
2279 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2280 */
2281 if (ea.cmdidx == CMD_bang)
2282 ea.arg = p;
2283 else
2284 ea.arg = skipwhite(p);
2285
2286 /*
2287 * Check for "++opt=val" argument.
2288 * Must be first, allow ":w ++enc=utf8 !cmd"
2289 */
2290 if (ea.argt & ARGOPT)
2291 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2292 if (getargopt(&ea) == FAIL && !ni)
2293 {
2294 errormsg = (char_u *)_(e_invarg);
2295 goto doend;
2296 }
2297
2298 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2299 {
2300 if (*ea.arg == '>') /* append */
2301 {
2302 if (*++ea.arg != '>') /* typed wrong */
2303 {
2304 errormsg = (char_u *)_("E494: Use w or w>>");
2305 goto doend;
2306 }
2307 ea.arg = skipwhite(ea.arg + 1);
2308 ea.append = TRUE;
2309 }
2310 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2311 {
2312 ++ea.arg;
2313 ea.usefilter = TRUE;
2314 }
2315 }
2316
2317 if (ea.cmdidx == CMD_read)
2318 {
2319 if (ea.forceit)
2320 {
2321 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2322 ea.forceit = FALSE;
2323 }
2324 else if (*ea.arg == '!') /* :r !filter */
2325 {
2326 ++ea.arg;
2327 ea.usefilter = TRUE;
2328 }
2329 }
2330
2331 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2332 {
2333 ea.amount = 1;
2334 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2335 {
2336 ++ea.arg;
2337 ++ea.amount;
2338 }
2339 ea.arg = skipwhite(ea.arg);
2340 }
2341
2342 /*
2343 * Check for "+command" argument, before checking for next command.
2344 * Don't do this for ":read !cmd" and ":write !cmd".
2345 */
2346 if ((ea.argt & EDITCMD) && !ea.usefilter)
2347 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2348
2349 /*
2350 * Check for '|' to separate commands and '"' to start comments.
2351 * Don't do this for ":read !cmd" and ":write !cmd".
2352 */
2353 if ((ea.argt & TRLBAR) && !ea.usefilter)
2354 separate_nextcmd(&ea);
2355
2356 /*
2357 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002358 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2359 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002360 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002361 else if (ea.cmdidx == CMD_bang
2362 || ea.cmdidx == CMD_global
2363 || ea.cmdidx == CMD_vglobal
2364 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 {
2366 for (p = ea.arg; *p; ++p)
2367 {
2368 /* Remove one backslash before a newline, so that it's possible to
2369 * pass a newline to the shell and also a newline that is preceded
2370 * with a backslash. This makes it impossible to end a shell
2371 * command in a backslash, but that doesn't appear useful.
2372 * Halving the number of backslashes is incompatible with previous
2373 * versions. */
2374 if (*p == '\\' && p[1] == '\n')
Bram Moolenaara7241f52008-06-24 20:39:31 +00002375 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 else if (*p == '\n')
2377 {
2378 ea.nextcmd = p + 1;
2379 *p = NUL;
2380 break;
2381 }
2382 }
2383 }
2384
2385 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2386 {
2387 ea.line1 = 1;
2388 ea.line2 = curbuf->b_ml.ml_line_count;
2389 }
2390
2391 /* accept numbered register only when no count allowed (:put) */
2392 if ( (ea.argt & REGSTR)
2393 && *ea.arg != NUL
2394#ifdef FEAT_USR_CMDS
2395 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2396 && USER_CMDIDX(ea.cmdidx)))
2397 /* Do not allow register = for user commands */
2398 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2399#else
2400 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2401#endif
2402 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2403 {
2404 ea.regname = *ea.arg++;
2405#ifdef FEAT_EVAL
2406 /* for '=' register: accept the rest of the line as an expression */
2407 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2408 {
2409 set_expr_line(vim_strsave(ea.arg));
2410 ea.arg += STRLEN(ea.arg);
2411 }
2412#endif
2413 ea.arg = skipwhite(ea.arg);
2414 }
2415
2416 /*
2417 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2418 * count, it's a buffer name.
2419 */
2420 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2421 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2422 || vim_iswhite(*p)))
2423 {
2424 n = getdigits(&ea.arg);
2425 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002426 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427 {
2428 errormsg = (char_u *)_(e_zerocount);
2429 goto doend;
2430 }
2431 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2432 {
2433 ea.line2 = n;
2434 if (ea.addr_count == 0)
2435 ea.addr_count = 1;
2436 }
2437 else
2438 {
2439 ea.line1 = ea.line2;
2440 ea.line2 += n - 1;
2441 ++ea.addr_count;
2442 /*
2443 * Be vi compatible: no error message for out of range.
2444 */
2445 if (ea.line2 > curbuf->b_ml.ml_line_count)
2446 ea.line2 = curbuf->b_ml.ml_line_count;
2447 }
2448 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002449
2450 /*
2451 * Check for flags: 'l', 'p' and '#'.
2452 */
2453 if (ea.argt & EXFLAGS)
2454 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002456 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002457 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002458 {
2459 errormsg = (char_u *)_(e_trailing);
2460 goto doend;
2461 }
2462
2463 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2464 {
2465 errormsg = (char_u *)_(e_argreq);
2466 goto doend;
2467 }
2468
2469#ifdef FEAT_EVAL
2470 /*
2471 * Skip the command when it's not going to be executed.
2472 * The commands like :if, :endif, etc. always need to be executed.
2473 * Also make an exception for commands that handle a trailing command
2474 * themselves.
2475 */
2476 if (ea.skip)
2477 {
2478 switch (ea.cmdidx)
2479 {
2480 /* commands that need evaluation */
2481 case CMD_while:
2482 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002483 case CMD_for:
2484 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 case CMD_if:
2486 case CMD_elseif:
2487 case CMD_else:
2488 case CMD_endif:
2489 case CMD_try:
2490 case CMD_catch:
2491 case CMD_finally:
2492 case CMD_endtry:
2493 case CMD_function:
2494 break;
2495
2496 /* Commands that handle '|' themselves. Check: A command should
2497 * either have the TRLBAR flag, appear in this list or appear in
2498 * the list at ":help :bar". */
2499 case CMD_aboveleft:
2500 case CMD_and:
2501 case CMD_belowright:
2502 case CMD_botright:
2503 case CMD_browse:
2504 case CMD_call:
2505 case CMD_confirm:
2506 case CMD_delfunction:
2507 case CMD_djump:
2508 case CMD_dlist:
2509 case CMD_dsearch:
2510 case CMD_dsplit:
2511 case CMD_echo:
2512 case CMD_echoerr:
2513 case CMD_echomsg:
2514 case CMD_echon:
2515 case CMD_execute:
2516 case CMD_help:
2517 case CMD_hide:
2518 case CMD_ijump:
2519 case CMD_ilist:
2520 case CMD_isearch:
2521 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002522 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 case CMD_keepjumps:
2524 case CMD_keepmarks:
2525 case CMD_leftabove:
2526 case CMD_let:
2527 case CMD_lockmarks:
2528 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002529 case CMD_mzscheme:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 case CMD_perl:
2531 case CMD_psearch:
2532 case CMD_python:
2533 case CMD_return:
2534 case CMD_rightbelow:
2535 case CMD_ruby:
2536 case CMD_silent:
2537 case CMD_smagic:
2538 case CMD_snomagic:
2539 case CMD_substitute:
2540 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002541 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 case CMD_tcl:
2543 case CMD_throw:
2544 case CMD_tilde:
2545 case CMD_topleft:
2546 case CMD_unlet:
2547 case CMD_verbose:
2548 case CMD_vertical:
2549 break;
2550
2551 default: goto doend;
2552 }
2553 }
2554#endif
2555
2556 if (ea.argt & XFILE)
2557 {
2558 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2559 goto doend;
2560 }
2561
2562#ifdef FEAT_LISTCMDS
2563 /*
2564 * Accept buffer name. Cannot be used at the same time with a buffer
2565 * number. Don't do this for a user command.
2566 */
2567 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2568# ifdef FEAT_USR_CMDS
2569 && !USER_CMDIDX(ea.cmdidx)
2570# endif
2571 )
2572 {
2573 /*
2574 * :bdelete, :bwipeout and :bunload take several arguments, separated
2575 * by spaces: find next space (skipping over escaped characters).
2576 * The others take one argument: ignore trailing spaces.
2577 */
2578 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2579 || ea.cmdidx == CMD_bunload)
2580 p = skiptowhite_esc(ea.arg);
2581 else
2582 {
2583 p = ea.arg + STRLEN(ea.arg);
2584 while (p > ea.arg && vim_iswhite(p[-1]))
2585 --p;
2586 }
2587 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2588 if (ea.line2 < 0) /* failed */
2589 goto doend;
2590 ea.addr_count = 1;
2591 ea.arg = skipwhite(p);
2592 }
2593#endif
2594
2595/*
2596 * 6. switch on command name
2597 *
2598 * The "ea" structure holds the arguments that can be used.
2599 */
2600 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002601 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 ea.cookie = cookie;
2603#ifdef FEAT_EVAL
2604 ea.cstack = cstack;
2605#endif
2606
2607#ifdef FEAT_USR_CMDS
2608 if (USER_CMDIDX(ea.cmdidx))
2609 {
2610 /*
2611 * Execute a user-defined command.
2612 */
2613 do_ucmd(&ea);
2614 }
2615 else
2616#endif
2617 {
2618 /*
2619 * Call the function to execute the command.
2620 */
2621 ea.errmsg = NULL;
2622 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2623 if (ea.errmsg != NULL)
2624 errormsg = (char_u *)_(ea.errmsg);
2625 }
2626
2627#ifdef FEAT_EVAL
2628 /*
2629 * If the command just executed called do_cmdline(), any throw or ":return"
2630 * or ":finish" encountered there must also check the cstack of the still
2631 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2632 * exception, or reanimate a returned function or finished script file and
2633 * return or finish it again.
2634 */
2635 if (need_rethrow)
2636 do_throw(cstack);
2637 else if (check_cstack)
2638 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002639 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002641 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 && current_func_returned())
2643 do_return(&ea, TRUE, FALSE, NULL);
2644 }
2645 need_rethrow = check_cstack = FALSE;
2646#endif
2647
2648doend:
2649 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2650 curwin->w_cursor.lnum = 1;
2651
2652 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2653 {
2654 if (sourcing)
2655 {
2656 if (errormsg != IObuff)
2657 {
2658 STRCPY(IObuff, errormsg);
2659 errormsg = IObuff;
2660 }
2661 STRCAT(errormsg, ": ");
Bram Moolenaar6c964832007-12-09 18:38:35 +00002662 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002663 }
2664 emsg(errormsg);
2665 }
2666#ifdef FEAT_EVAL
2667 do_errthrow(cstack,
2668 (ea.cmdidx != CMD_SIZE
2669# ifdef FEAT_USR_CMDS
2670 && !USER_CMDIDX(ea.cmdidx)
2671# endif
2672 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2673#endif
2674
2675 if (verbose_save >= 0)
2676 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002677#ifdef FEAT_AUTOCMD
2678 if (cmdmod.save_ei != NULL)
2679 {
2680 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002681 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2682 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002683 free_string_option(cmdmod.save_ei);
2684 }
2685#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002686
2687 cmdmod = save_cmdmod;
2688
2689 if (did_silent > 0)
2690 {
2691 /* messages could be enabled for a serious error, need to check if the
2692 * counters don't become negative */
2693 msg_silent -= did_silent;
2694 if (msg_silent < 0)
2695 msg_silent = 0;
2696 emsg_silent -= did_esilent;
2697 if (emsg_silent < 0)
2698 emsg_silent = 0;
2699 /* Restore msg_scroll, it's set by file I/O commands, even when no
2700 * message is actually displayed. */
2701 msg_scroll = save_msg_scroll;
2702 }
2703
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002704#ifdef HAVE_SANDBOX
2705 if (did_sandbox)
2706 --sandbox;
2707#endif
2708
Bram Moolenaar071d4272004-06-13 20:20:40 +00002709 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2710 ea.nextcmd = NULL;
2711
2712#ifdef FEAT_EVAL
2713 --ex_nesting_level;
2714#endif
2715
2716 return ea.nextcmd;
2717}
2718#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00002719 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720#endif
2721
2722/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002723 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 * If there is a match advance "pp" to the argument and return TRUE.
2725 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002726 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002728 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 char *cmd; /* name of command */
2730 int len; /* required length */
2731{
2732 int i;
2733
2734 for (i = 0; cmd[i] != NUL; ++i)
2735 if (cmd[i] != (*pp)[i])
2736 break;
2737 if (i >= len && !isalpha((*pp)[i]))
2738 {
2739 *pp = skipwhite(*pp + i);
2740 return TRUE;
2741 }
2742 return FALSE;
2743}
2744
2745/*
2746 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002747 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002748 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002749 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 * Returns NULL for an ambiguous user command.
2751 */
2752/*ARGSUSED*/
2753 static char_u *
2754find_command(eap, full)
2755 exarg_T *eap;
2756 int *full;
2757{
2758 int len;
2759 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002760 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761
2762 /*
2763 * Isolate the command and search for it in the command table.
Bram Moolenaar81870892007-11-11 18:17:28 +00002764 * Exceptions:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 * - the 'k' command can directly be followed by any character.
2766 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2767 * but :sre[wind] is another command, as are :scrip[tnames],
2768 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00002769 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770 */
2771 p = eap->cmd;
2772 if (*p == 'k')
2773 {
2774 eap->cmdidx = CMD_k;
2775 ++p;
2776 }
2777 else if (p[0] == 's'
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002778 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2779 && p[3] != 'i' && p[4] != 'p')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 || p[1] == 'g'
2781 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2782 || p[1] == 'I'
2783 || (p[1] == 'r' && p[2] != 'e')))
2784 {
2785 eap->cmdidx = CMD_substitute;
2786 ++p;
2787 }
2788 else
2789 {
2790 while (ASCII_ISALPHA(*p))
2791 ++p;
2792 /* check for non-alpha command */
2793 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2794 ++p;
2795 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00002796 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2797 {
2798 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2799 * :delete with the 'l' flag. Same for 'p'. */
2800 for (i = 0; i < len; ++i)
2801 if (eap->cmd[i] != "delete"[i])
2802 break;
2803 if (i == len - 1)
2804 {
2805 --len;
2806 if (p[-1] == 'l')
2807 eap->flags |= EXFLAG_LIST;
2808 else
2809 eap->flags |= EXFLAG_PRINT;
2810 }
2811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002812
2813 if (ASCII_ISLOWER(*eap->cmd))
2814 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2815 else
2816 eap->cmdidx = cmdidxs[26];
2817
2818 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2819 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2820 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2821 (size_t)len) == 0)
2822 {
2823#ifdef FEAT_EVAL
2824 if (full != NULL
2825 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2826 *full = TRUE;
2827#endif
2828 break;
2829 }
2830
2831#ifdef FEAT_USR_CMDS
2832 /* Look for a user defined command as a last resort */
2833 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2834 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002835 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 while (ASCII_ISALNUM(*p))
2837 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002838 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002839 }
2840#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002841 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 eap->cmdidx = CMD_SIZE;
2843 }
2844
2845 return p;
2846}
2847
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002848#ifdef FEAT_USR_CMDS
2849/*
2850 * Search for a user command that matches "eap->cmd".
2851 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2852 * Return a pointer to just after the command.
2853 * Return NULL if there is no matching command.
2854 */
2855 static char_u *
2856find_ucmd(eap, p, full, xp, compl)
2857 exarg_T *eap;
2858 char_u *p; /* end of the command (possibly including count) */
2859 int *full; /* set to TRUE for a full match */
2860 expand_T *xp; /* used for completion, NULL otherwise */
2861 int *compl; /* completion flags or NULL */
2862{
2863 int len = (int)(p - eap->cmd);
2864 int j, k, matchlen = 0;
2865 ucmd_T *uc;
2866 int found = FALSE;
2867 int possible = FALSE;
2868 char_u *cp, *np; /* Point into typed cmd and test name */
2869 garray_T *gap;
2870 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2871 only full match global is accepted. */
2872
2873 /*
2874 * Look for buffer-local user commands first, then global ones.
2875 */
2876 gap = &curbuf->b_ucmds;
2877 for (;;)
2878 {
2879 for (j = 0; j < gap->ga_len; ++j)
2880 {
2881 uc = USER_CMD_GA(gap, j);
2882 cp = eap->cmd;
2883 np = uc->uc_name;
2884 k = 0;
2885 while (k < len && *np != NUL && *cp++ == *np++)
2886 k++;
2887 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2888 {
2889 /* If finding a second match, the command is ambiguous. But
2890 * not if a buffer-local command wasn't a full match and a
2891 * global command is a full match. */
2892 if (k == len && found && *np != NUL)
2893 {
2894 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002895 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002896 amb_local = TRUE;
2897 }
2898
2899 if (!found || (k == len && *np == NUL))
2900 {
2901 /* If we matched up to a digit, then there could
2902 * be another command including the digit that we
2903 * should use instead.
2904 */
2905 if (k == len)
2906 found = TRUE;
2907 else
2908 possible = TRUE;
2909
2910 if (gap == &ucmds)
2911 eap->cmdidx = CMD_USER;
2912 else
2913 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002914 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002915 eap->useridx = j;
2916
2917# ifdef FEAT_CMDL_COMPL
2918 if (compl != NULL)
2919 *compl = uc->uc_compl;
2920# ifdef FEAT_EVAL
2921 if (xp != NULL)
2922 {
2923 xp->xp_arg = uc->uc_compl_arg;
2924 xp->xp_scriptID = uc->uc_scriptID;
2925 }
2926# endif
2927# endif
2928 /* Do not search for further abbreviations
2929 * if this is an exact match. */
2930 matchlen = k;
2931 if (k == len && *np == NUL)
2932 {
2933 if (full != NULL)
2934 *full = TRUE;
2935 amb_local = FALSE;
2936 break;
2937 }
2938 }
2939 }
2940 }
2941
2942 /* Stop if we found a full match or searched all. */
2943 if (j < gap->ga_len || gap == &ucmds)
2944 break;
2945 gap = &ucmds;
2946 }
2947
2948 /* Only found ambiguous matches. */
2949 if (amb_local)
2950 {
2951 if (xp != NULL)
2952 xp->xp_context = EXPAND_UNSUCCESSFUL;
2953 return NULL;
2954 }
2955
2956 /* The match we found may be followed immediately by a number. Move "p"
2957 * back to point to it. */
2958 if (found || possible)
2959 return p + (matchlen - len);
2960 return p;
2961}
2962#endif
2963
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaared53fb92007-11-24 20:50:24 +00002965static struct cmdmod
2966{
2967 char *name;
2968 int minlen;
2969 int has_count; /* :123verbose :3tab */
2970} cmdmods[] = {
2971 {"aboveleft", 3, FALSE},
2972 {"belowright", 3, FALSE},
2973 {"botright", 2, FALSE},
2974 {"browse", 3, FALSE},
2975 {"confirm", 4, FALSE},
2976 {"hide", 3, FALSE},
2977 {"keepalt", 5, FALSE},
2978 {"keepjumps", 5, FALSE},
2979 {"keepmarks", 3, FALSE},
2980 {"leftabove", 5, FALSE},
2981 {"lockmarks", 3, FALSE},
Bram Moolenaarca9f9582008-09-18 10:44:28 +00002982 {"noautocmd", 3, FALSE},
Bram Moolenaared53fb92007-11-24 20:50:24 +00002983 {"rightbelow", 6, FALSE},
2984 {"sandbox", 3, FALSE},
2985 {"silent", 3, FALSE},
2986 {"tab", 3, TRUE},
2987 {"topleft", 2, FALSE},
2988 {"verbose", 4, TRUE},
2989 {"vertical", 4, FALSE},
2990};
2991
2992/*
2993 * Return length of a command modifier (including optional count).
2994 * Return zero when it's not a modifier.
2995 */
2996 int
2997modifier_len(cmd)
2998 char_u *cmd;
2999{
3000 int i, j;
3001 char_u *p = cmd;
3002
3003 if (VIM_ISDIGIT(*cmd))
3004 p = skipwhite(skipdigits(cmd));
3005 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3006 {
3007 for (j = 0; p[j] != NUL; ++j)
3008 if (p[j] != cmdmods[i].name[j])
3009 break;
3010 if (!isalpha(p[j]) && j >= cmdmods[i].minlen
3011 && (p == cmd || cmdmods[i].has_count))
Bram Moolenaarcb4cef22008-03-16 15:04:34 +00003012 return j + (int)(p - cmd);
Bram Moolenaared53fb92007-11-24 20:50:24 +00003013 }
3014 return 0;
3015}
3016
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017/*
3018 * Return > 0 if an Ex command "name" exists.
3019 * Return 2 if there is an exact match.
3020 * Return 3 if there is an ambiguous match.
3021 */
3022 int
3023cmd_exists(name)
3024 char_u *name;
3025{
3026 exarg_T ea;
3027 int full = FALSE;
3028 int i;
3029 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003030 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031
3032 /* Check command modifiers. */
3033 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3034 {
3035 for (j = 0; name[j] != NUL; ++j)
3036 if (name[j] != cmdmods[i].name[j])
3037 break;
3038 if (name[j] == NUL && j >= cmdmods[i].minlen)
3039 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3040 }
3041
Bram Moolenaara9587612006-05-04 21:47:50 +00003042 /* Check built-in commands and user defined commands.
3043 * For ":2match" and ":3match" we need to skip the number. */
3044 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003046 p = find_command(&ea, &full);
3047 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003049 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3050 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003051 if (*skipwhite(p) != NUL)
3052 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3054}
3055#endif
3056
3057/*
3058 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3059 * we don't need/want deleted. Maybe this could be done better if we didn't
3060 * repeat all this stuff. The only problem is that they may not stay
3061 * perfectly compatible with each other, but then the command line syntax
3062 * probably won't change that much -- webb.
3063 */
3064 char_u *
3065set_one_cmd_context(xp, buff)
3066 expand_T *xp;
3067 char_u *buff; /* buffer for command string */
3068{
3069 char_u *p;
3070 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003071 int len = 0;
3072 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3074 int compl = EXPAND_NOTHING;
3075#endif
3076#ifdef FEAT_CMDL_COMPL
3077 int delim;
3078#endif
3079 int forceit = FALSE;
3080 int usefilter = FALSE; /* filter instead of file name */
3081
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003082 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 xp->xp_pattern = buff;
3084 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003085 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086
3087/*
3088 * 2. skip comment lines and leading space, colons or bars
3089 */
3090 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3091 ;
3092 xp->xp_pattern = cmd;
3093
3094 if (*cmd == NUL)
3095 return NULL;
3096 if (*cmd == '"') /* ignore comment lines */
3097 {
3098 xp->xp_context = EXPAND_NOTHING;
3099 return NULL;
3100 }
3101
3102/*
3103 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3104 */
3105 cmd = skip_range(cmd, &xp->xp_context);
3106
3107/*
3108 * 4. parse command
3109 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110 xp->xp_pattern = cmd;
3111 if (*cmd == NUL)
3112 return NULL;
3113 if (*cmd == '"')
3114 {
3115 xp->xp_context = EXPAND_NOTHING;
3116 return NULL;
3117 }
3118
3119 if (*cmd == '|' || *cmd == '\n')
3120 return cmd + 1; /* There's another command */
3121
3122 /*
3123 * Isolate the command and search for it in the command table.
3124 * Exceptions:
3125 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003126 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3128 */
3129 if (*cmd == 'k' && cmd[1] != 'e')
3130 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003131 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003132 p = cmd + 1;
3133 }
3134 else
3135 {
3136 p = cmd;
3137 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3138 ++p;
3139 /* check for non-alpha command */
3140 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3141 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003142 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003144 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 {
3146 xp->xp_context = EXPAND_UNSUCCESSFUL;
3147 return NULL;
3148 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003149 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3150 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3151 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152 break;
3153
3154#ifdef FEAT_USR_CMDS
3155 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3156 {
3157 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3158 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003159 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 }
3161#endif
3162 }
3163
3164 /*
3165 * If the cursor is touching the command, and it ends in an alpha-numeric
3166 * character, complete the command name.
3167 */
3168 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3169 return NULL;
3170
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003171 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 {
3173 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3174 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003175 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 p = cmd + 1;
3177 }
3178#ifdef FEAT_USR_CMDS
3179 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3180 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003181 ea.cmd = cmd;
3182 p = find_ucmd(&ea, p, NULL, xp,
3183# if defined(FEAT_CMDL_COMPL)
3184 &compl
3185# else
3186 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003188 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003189 if (p == NULL)
3190 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 }
3192#endif
3193 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003194 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 {
3196 /* Not still touching the command and it was an illegal one */
3197 xp->xp_context = EXPAND_UNSUCCESSFUL;
3198 return NULL;
3199 }
3200
3201 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3202
3203 if (*p == '!') /* forced commands */
3204 {
3205 forceit = TRUE;
3206 ++p;
3207 }
3208
3209/*
3210 * 5. parse arguments
3211 */
3212#ifdef FEAT_USR_CMDS
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003213 if (!USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003214#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003215 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216
3217 arg = skipwhite(p);
3218
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003219 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 {
3221 if (*arg == '>') /* append */
3222 {
3223 if (*++arg == '>')
3224 ++arg;
3225 arg = skipwhite(arg);
3226 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003227 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003228 {
3229 ++arg;
3230 usefilter = TRUE;
3231 }
3232 }
3233
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003234 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003235 {
3236 usefilter = forceit; /* :r! filter if forced */
3237 if (*arg == '!') /* :r !filter */
3238 {
3239 ++arg;
3240 usefilter = TRUE;
3241 }
3242 }
3243
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003244 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 {
3246 while (*arg == *cmd) /* allow any number of '>' or '<' */
3247 ++arg;
3248 arg = skipwhite(arg);
3249 }
3250
3251 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003252 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 {
3254 /* Check if we're in the +command */
3255 p = arg + 1;
3256 arg = skip_cmd_arg(arg, FALSE);
3257
3258 /* Still touching the command after '+'? */
3259 if (*arg == NUL)
3260 return p;
3261
3262 /* Skip space(s) after +command to get to the real argument */
3263 arg = skipwhite(arg);
3264 }
3265
3266 /*
3267 * Check for '|' to separate commands and '"' to start comments.
3268 * Don't do this for ":read !cmd" and ":write !cmd".
3269 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003270 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 {
3272 p = arg;
3273 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003274 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 p += 2;
3276 while (*p)
3277 {
3278 if (*p == Ctrl_V)
3279 {
3280 if (p[1] != NUL)
3281 ++p;
3282 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003283 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 || *p == '|' || *p == '\n')
3285 {
3286 if (*(p - 1) != '\\')
3287 {
3288 if (*p == '|' || *p == '\n')
3289 return p + 1;
3290 return NULL; /* It's a comment */
3291 }
3292 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003293 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 }
3295 }
3296
3297 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003298 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003299 vim_strchr((char_u *)"|\"", *arg) == NULL)
3300 return NULL;
3301
3302 /* Find start of last argument (argument just before cursor): */
3303 p = buff + STRLEN(buff);
3304 while (p != arg && *p != ' ' && *p != TAB)
3305 p--;
3306 if (*p == ' ' || *p == TAB)
3307 p++;
3308 xp->xp_pattern = p;
3309
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003310 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003312 int c;
3313 int in_quote = FALSE;
3314 char_u *bow = NULL; /* Beginning of word */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315
3316 /*
3317 * Allow spaces within back-quotes to count as part of the argument
3318 * being expanded.
3319 */
3320 xp->xp_pattern = skipwhite(arg);
Bram Moolenaar6529c102007-08-18 15:47:34 +00003321 p = xp->xp_pattern;
3322 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 {
Bram Moolenaar6529c102007-08-18 15:47:34 +00003324#ifdef FEAT_MBYTE
3325 if (has_mbyte)
3326 c = mb_ptr2char(p);
3327 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328#endif
Bram Moolenaar6529c102007-08-18 15:47:34 +00003329 c = *p;
3330 if (c == '\\' && p[1] != NUL)
3331 ++p;
3332 else if (c == '`')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 {
3334 if (!in_quote)
3335 {
3336 xp->xp_pattern = p;
3337 bow = p + 1;
3338 }
3339 in_quote = !in_quote;
3340 }
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003341 /* An argument can contain just about everything, except
3342 * characters that end the command and white space. */
3343 else if (c == '|' || c == '\n' || c == '"' || (vim_iswhite(c)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003344#ifdef SPACE_IN_FILENAME
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003345 && (!(ea.argt & NOSPC) || usefilter)
Bram Moolenaar6529c102007-08-18 15:47:34 +00003346#endif
Bram Moolenaar332fa0c2008-01-13 16:12:10 +00003347 ))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003348 {
Bram Moolenaarcf5a5b82008-02-26 20:30:12 +00003349 len = 0; /* avoid getting stuck when space is in 'isfname' */
Bram Moolenaar6529c102007-08-18 15:47:34 +00003350 while (*p != NUL)
3351 {
3352#ifdef FEAT_MBYTE
3353 if (has_mbyte)
3354 c = mb_ptr2char(p);
3355 else
3356#endif
3357 c = *p;
Bram Moolenaardd87969c2007-08-21 13:07:12 +00003358 if (c == '`' || vim_isfilec_or_wc(c))
Bram Moolenaar6529c102007-08-18 15:47:34 +00003359 break;
3360#ifdef FEAT_MBYTE
3361 if (has_mbyte)
3362 len = (*mb_ptr2len)(p);
3363 else
3364#endif
3365 len = 1;
3366 mb_ptr_adv(p);
3367 }
3368 if (in_quote)
3369 bow = p;
3370 else
3371 xp->xp_pattern = p;
3372 p -= len;
3373 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003374 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375 }
3376
3377 /*
3378 * If we are still inside the quotes, and we passed a space, just
3379 * expand from there.
3380 */
3381 if (bow != NULL && in_quote)
3382 xp->xp_pattern = bow;
3383 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003384
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003385#ifndef BACKSLASH_IN_FILENAME
3386 /* For a shell command more chars need to be escaped. */
3387 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003388 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003389 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003390
3391 /* When still after the command name expand executables. */
3392 if (xp->xp_pattern == skipwhite(arg))
Bram Moolenaar5c5b0942007-05-06 12:07:59 +00003393 xp->xp_context = EXPAND_SHELLCMD;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003394 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003395#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396
3397 /* Check for environment variable */
3398 if (*xp->xp_pattern == '$'
3399#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3400 || *xp->xp_pattern == '%'
3401#endif
3402 )
3403 {
3404 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3405 if (!vim_isIDc(*p))
3406 break;
3407 if (*p == NUL)
3408 {
3409 xp->xp_context = EXPAND_ENV_VARS;
3410 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003411#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3412 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003413 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003414 compl = EXPAND_ENV_VARS;
3415#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 }
3417 }
3418 }
3419
3420/*
3421 * 6. switch on command name
3422 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003423 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 {
3425 case CMD_cd:
3426 case CMD_chdir:
3427 case CMD_lcd:
3428 case CMD_lchdir:
3429 if (xp->xp_context == EXPAND_FILES)
3430 xp->xp_context = EXPAND_DIRECTORIES;
3431 break;
3432 case CMD_help:
3433 xp->xp_context = EXPAND_HELP;
3434 xp->xp_pattern = arg;
3435 break;
3436
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003437 /* Command modifiers: return the argument.
3438 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003440 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 case CMD_belowright:
3442 case CMD_botright:
3443 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003444 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003446 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447 case CMD_folddoclosed:
3448 case CMD_folddoopen:
3449 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003450 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 case CMD_keepjumps:
3452 case CMD_keepmarks:
3453 case CMD_leftabove:
3454 case CMD_lockmarks:
3455 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003456 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003457 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003458 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459 case CMD_topleft:
3460 case CMD_verbose:
3461 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003462 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 return arg;
3464
Bram Moolenaar4f688582007-07-24 12:34:30 +00003465#ifdef FEAT_CMDL_COMPL
3466# ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 case CMD_match:
3468 if (*arg == NUL || !ends_excmd(*arg))
3469 {
Bram Moolenaar4f688582007-07-24 12:34:30 +00003470 /* also complete "None" */
3471 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 arg = skipwhite(skiptowhite(arg));
3473 if (*arg != NUL)
3474 {
3475 xp->xp_context = EXPAND_NOTHING;
3476 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3477 }
3478 }
3479 return find_nextcmd(arg);
Bram Moolenaar4f688582007-07-24 12:34:30 +00003480# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482/*
3483 * All completion for the +cmdline_compl feature goes here.
3484 */
3485
3486# ifdef FEAT_USR_CMDS
3487 case CMD_command:
3488 /* Check for attributes */
3489 while (*arg == '-')
3490 {
3491 arg++; /* Skip "-" */
3492 p = skiptowhite(arg);
3493 if (*p == NUL)
3494 {
3495 /* Cursor is still in the attribute */
3496 p = vim_strchr(arg, '=');
3497 if (p == NULL)
3498 {
3499 /* No "=", so complete attribute names */
3500 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3501 xp->xp_pattern = arg;
3502 return NULL;
3503 }
3504
3505 /* For the -complete and -nargs attributes, we complete
3506 * their arguments as well.
3507 */
3508 if (STRNICMP(arg, "complete", p - arg) == 0)
3509 {
3510 xp->xp_context = EXPAND_USER_COMPLETE;
3511 xp->xp_pattern = p + 1;
3512 return NULL;
3513 }
3514 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3515 {
3516 xp->xp_context = EXPAND_USER_NARGS;
3517 xp->xp_pattern = p + 1;
3518 return NULL;
3519 }
3520 return NULL;
3521 }
3522 arg = skipwhite(p);
3523 }
3524
3525 /* After the attributes comes the new command name */
3526 p = skiptowhite(arg);
3527 if (*p == NUL)
3528 {
3529 xp->xp_context = EXPAND_USER_COMMANDS;
3530 xp->xp_pattern = arg;
3531 break;
3532 }
3533
3534 /* And finally comes a normal command */
3535 return skipwhite(p);
3536
3537 case CMD_delcommand:
3538 xp->xp_context = EXPAND_USER_COMMANDS;
3539 xp->xp_pattern = arg;
3540 break;
3541# endif
3542
3543 case CMD_global:
3544 case CMD_vglobal:
3545 delim = *arg; /* get the delimiter */
3546 if (delim)
3547 ++arg; /* skip delimiter if there is one */
3548
3549 while (arg[0] != NUL && arg[0] != delim)
3550 {
3551 if (arg[0] == '\\' && arg[1] != NUL)
3552 ++arg;
3553 ++arg;
3554 }
3555 if (arg[0] != NUL)
3556 return arg + 1;
3557 break;
3558 case CMD_and:
3559 case CMD_substitute:
3560 delim = *arg;
3561 if (delim)
3562 {
3563 /* skip "from" part */
3564 ++arg;
3565 arg = skip_regexp(arg, delim, p_magic, NULL);
3566 }
3567 /* skip "to" part */
3568 while (arg[0] != NUL && arg[0] != delim)
3569 {
3570 if (arg[0] == '\\' && arg[1] != NUL)
3571 ++arg;
3572 ++arg;
3573 }
3574 if (arg[0] != NUL) /* skip delimiter */
3575 ++arg;
3576 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3577 ++arg;
3578 if (arg[0] != NUL)
3579 return arg;
3580 break;
3581 case CMD_isearch:
3582 case CMD_dsearch:
3583 case CMD_ilist:
3584 case CMD_dlist:
3585 case CMD_ijump:
3586 case CMD_psearch:
3587 case CMD_djump:
3588 case CMD_isplit:
3589 case CMD_dsplit:
3590 arg = skipwhite(skipdigits(arg)); /* skip count */
3591 if (*arg == '/') /* Match regexp, not just whole words */
3592 {
3593 for (++arg; *arg && *arg != '/'; arg++)
3594 if (*arg == '\\' && arg[1] != NUL)
3595 arg++;
3596 if (*arg)
3597 {
3598 arg = skipwhite(arg + 1);
3599
3600 /* Check for trailing illegal characters */
3601 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3602 xp->xp_context = EXPAND_NOTHING;
3603 else
3604 return arg;
3605 }
3606 }
3607 break;
3608#ifdef FEAT_AUTOCMD
3609 case CMD_autocmd:
3610 return set_context_in_autocmd(xp, arg, FALSE);
3611
3612 case CMD_doautocmd:
Bram Moolenaar73a9d7b2008-11-06 16:16:44 +00003613 case CMD_doautoall:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 return set_context_in_autocmd(xp, arg, TRUE);
3615#endif
3616 case CMD_set:
3617 set_context_in_set_cmd(xp, arg, 0);
3618 break;
3619 case CMD_setglobal:
3620 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3621 break;
3622 case CMD_setlocal:
3623 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3624 break;
3625 case CMD_tag:
3626 case CMD_stag:
3627 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003628 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 case CMD_tselect:
3630 case CMD_stselect:
3631 case CMD_ptselect:
3632 case CMD_tjump:
3633 case CMD_stjump:
3634 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003635 if (*p_wop != NUL)
3636 xp->xp_context = EXPAND_TAGS_LISTFILES;
3637 else
3638 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003639 xp->xp_pattern = arg;
3640 break;
3641 case CMD_augroup:
3642 xp->xp_context = EXPAND_AUGROUP;
3643 xp->xp_pattern = arg;
3644 break;
3645#ifdef FEAT_SYN_HL
3646 case CMD_syntax:
3647 set_context_in_syntax_cmd(xp, arg);
3648 break;
3649#endif
3650#ifdef FEAT_EVAL
3651 case CMD_let:
3652 case CMD_if:
3653 case CMD_elseif:
3654 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003655 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003656 case CMD_echo:
3657 case CMD_echon:
3658 case CMD_execute:
3659 case CMD_echomsg:
3660 case CMD_echoerr:
3661 case CMD_call:
3662 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003663 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 break;
3665
3666 case CMD_unlet:
3667 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3668 arg = xp->xp_pattern + 1;
3669 xp->xp_context = EXPAND_USER_VARS;
3670 xp->xp_pattern = arg;
3671 break;
3672
3673 case CMD_function:
3674 case CMD_delfunction:
3675 xp->xp_context = EXPAND_USER_FUNC;
3676 xp->xp_pattern = arg;
3677 break;
3678
3679 case CMD_echohl:
Bram Moolenaar4f688582007-07-24 12:34:30 +00003680 set_context_in_echohl_cmd(xp, arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 break;
3682#endif
3683 case CMD_highlight:
3684 set_context_in_highlight_cmd(xp, arg);
3685 break;
3686#ifdef FEAT_LISTCMDS
3687 case CMD_bdelete:
3688 case CMD_bwipeout:
3689 case CMD_bunload:
3690 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3691 arg = xp->xp_pattern + 1;
3692 /*FALLTHROUGH*/
3693 case CMD_buffer:
3694 case CMD_sbuffer:
3695 case CMD_checktime:
3696 xp->xp_context = EXPAND_BUFFERS;
3697 xp->xp_pattern = arg;
3698 break;
3699#endif
3700#ifdef FEAT_USR_CMDS
3701 case CMD_USER:
3702 case CMD_USER_BUF:
3703 if (compl != EXPAND_NOTHING)
3704 {
3705 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003706 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 {
3708# ifdef FEAT_MENU
3709 if (compl == EXPAND_MENUS)
3710 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3711# endif
3712 if (compl == EXPAND_COMMANDS)
3713 return arg;
3714 if (compl == EXPAND_MAPPINGS)
3715 return set_context_in_map_cmd(xp, (char_u *)"map",
3716 arg, forceit, FALSE, FALSE, CMD_map);
3717 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3718 arg = xp->xp_pattern + 1;
3719 xp->xp_pattern = arg;
3720 }
3721 xp->xp_context = compl;
3722 }
3723 break;
3724#endif
3725 case CMD_map: case CMD_noremap:
3726 case CMD_nmap: case CMD_nnoremap:
3727 case CMD_vmap: case CMD_vnoremap:
3728 case CMD_omap: case CMD_onoremap:
3729 case CMD_imap: case CMD_inoremap:
3730 case CMD_cmap: case CMD_cnoremap:
3731 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003732 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 case CMD_unmap:
3734 case CMD_nunmap:
3735 case CMD_vunmap:
3736 case CMD_ounmap:
3737 case CMD_iunmap:
3738 case CMD_cunmap:
3739 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003740 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 case CMD_abbreviate: case CMD_noreabbrev:
3742 case CMD_cabbrev: case CMD_cnoreabbrev:
3743 case CMD_iabbrev: case CMD_inoreabbrev:
3744 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003745 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 case CMD_unabbreviate:
3747 case CMD_cunabbrev:
3748 case CMD_iunabbrev:
3749 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003750 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751#ifdef FEAT_MENU
3752 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3753 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3754 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3755 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3756 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3757 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3758 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3759 case CMD_tmenu: case CMD_tunmenu:
3760 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3761 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3762#endif
3763
3764 case CMD_colorscheme:
3765 xp->xp_context = EXPAND_COLORS;
3766 xp->xp_pattern = arg;
3767 break;
3768
3769 case CMD_compiler:
3770 xp->xp_context = EXPAND_COMPILER;
3771 xp->xp_pattern = arg;
3772 break;
3773
3774#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3775 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3776 case CMD_language:
3777 if (*skiptowhite(arg) == NUL)
3778 {
3779 xp->xp_context = EXPAND_LANGUAGE;
3780 xp->xp_pattern = arg;
3781 }
3782 else
3783 xp->xp_context = EXPAND_NOTHING;
3784 break;
3785#endif
3786
3787#endif /* FEAT_CMDL_COMPL */
3788
3789 default:
3790 break;
3791 }
3792 return NULL;
3793}
3794
3795/*
3796 * skip a range specifier of the form: addr [,addr] [;addr] ..
3797 *
3798 * Backslashed delimiters after / or ? will be skipped, and commands will
3799 * not be expanded between /'s and ?'s or after "'".
3800 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003801 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 * Returns the "cmd" pointer advanced to beyond the range.
3803 */
3804 char_u *
3805skip_range(cmd, ctx)
3806 char_u *cmd;
3807 int *ctx; /* pointer to xp_context or NULL */
3808{
3809 int delim;
3810
Bram Moolenaardf177f62005-02-22 08:39:57 +00003811 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 {
3813 if (*cmd == '\'')
3814 {
3815 if (*++cmd == NUL && ctx != NULL)
3816 *ctx = EXPAND_NOTHING;
3817 }
3818 else if (*cmd == '/' || *cmd == '?')
3819 {
3820 delim = *cmd++;
3821 while (*cmd != NUL && *cmd != delim)
3822 if (*cmd++ == '\\' && *cmd != NUL)
3823 ++cmd;
3824 if (*cmd == NUL && ctx != NULL)
3825 *ctx = EXPAND_NOTHING;
3826 }
3827 if (*cmd != NUL)
3828 ++cmd;
3829 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003830
3831 /* Skip ":" and white space. */
3832 while (*cmd == ':')
3833 cmd = skipwhite(cmd + 1);
3834
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 return cmd;
3836}
3837
3838/*
3839 * get a single EX address
3840 *
3841 * Set ptr to the next character after the part that was interpreted.
3842 * Set ptr to NULL when an error is encountered.
3843 *
3844 * Return MAXLNUM when no Ex address was found.
3845 */
3846 static linenr_T
3847get_address(ptr, skip, to_other_file)
3848 char_u **ptr;
3849 int skip; /* only skip the address, don't use it */
3850 int to_other_file; /* flag: may jump to other file */
3851{
3852 int c;
3853 int i;
3854 long n;
3855 char_u *cmd;
3856 pos_T pos;
3857 pos_T *fp;
3858 linenr_T lnum;
3859
3860 cmd = skipwhite(*ptr);
3861 lnum = MAXLNUM;
3862 do
3863 {
3864 switch (*cmd)
3865 {
3866 case '.': /* '.' - Cursor position */
3867 ++cmd;
3868 lnum = curwin->w_cursor.lnum;
3869 break;
3870
3871 case '$': /* '$' - last line */
3872 ++cmd;
3873 lnum = curbuf->b_ml.ml_line_count;
3874 break;
3875
3876 case '\'': /* ''' - mark */
3877 if (*++cmd == NUL)
3878 {
3879 cmd = NULL;
3880 goto error;
3881 }
3882 if (skip)
3883 ++cmd;
3884 else
3885 {
3886 /* Only accept a mark in another file when it is
3887 * used by itself: ":'M". */
3888 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3889 ++cmd;
3890 if (fp == (pos_T *)-1)
3891 /* Jumped to another file. */
3892 lnum = curwin->w_cursor.lnum;
3893 else
3894 {
3895 if (check_mark(fp) == FAIL)
3896 {
3897 cmd = NULL;
3898 goto error;
3899 }
3900 lnum = fp->lnum;
3901 }
3902 }
3903 break;
3904
3905 case '/':
3906 case '?': /* '/' or '?' - search */
3907 c = *cmd++;
3908 if (skip) /* skip "/pat/" */
3909 {
3910 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3911 if (*cmd == c)
3912 ++cmd;
3913 }
3914 else
3915 {
3916 pos = curwin->w_cursor; /* save curwin->w_cursor */
3917 /*
3918 * When '/' or '?' follows another address, start
3919 * from there.
3920 */
3921 if (lnum != MAXLNUM)
3922 curwin->w_cursor.lnum = lnum;
3923 /*
3924 * Start a forward search at the end of the line.
3925 * Start a backward search at the start of the line.
3926 * This makes sure we never match in the current
3927 * line, and can match anywhere in the
3928 * next/previous line.
3929 */
3930 if (c == '/')
3931 curwin->w_cursor.col = MAXCOL;
3932 else
3933 curwin->w_cursor.col = 0;
3934 searchcmdlen = 0;
3935 if (!do_search(NULL, c, cmd, 1L,
Bram Moolenaaraad86642008-03-10 20:34:59 +00003936 SEARCH_HIS | SEARCH_MSG, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 {
3938 curwin->w_cursor = pos;
3939 cmd = NULL;
3940 goto error;
3941 }
3942 lnum = curwin->w_cursor.lnum;
3943 curwin->w_cursor = pos;
3944 /* adjust command string pointer */
3945 cmd += searchcmdlen;
3946 }
3947 break;
3948
3949 case '\\': /* "\?", "\/" or "\&", repeat search */
3950 ++cmd;
3951 if (*cmd == '&')
3952 i = RE_SUBST;
3953 else if (*cmd == '?' || *cmd == '/')
3954 i = RE_SEARCH;
3955 else
3956 {
3957 EMSG(_(e_backslash));
3958 cmd = NULL;
3959 goto error;
3960 }
3961
3962 if (!skip)
3963 {
3964 /*
3965 * When search follows another address, start from
3966 * there.
3967 */
3968 if (lnum != MAXLNUM)
3969 pos.lnum = lnum;
3970 else
3971 pos.lnum = curwin->w_cursor.lnum;
3972
3973 /*
3974 * Start the search just like for the above
3975 * do_search().
3976 */
3977 if (*cmd != '?')
3978 pos.col = MAXCOL;
3979 else
3980 pos.col = 0;
3981 if (searchit(curwin, curbuf, &pos,
3982 *cmd == '?' ? BACKWARD : FORWARD,
Bram Moolenaaraad86642008-03-10 20:34:59 +00003983 (char_u *)"", 1L, SEARCH_MSG,
Bram Moolenaar76929292008-01-06 19:07:36 +00003984 i, (linenr_T)0, NULL) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 lnum = pos.lnum;
3986 else
3987 {
3988 cmd = NULL;
3989 goto error;
3990 }
3991 }
3992 ++cmd;
3993 break;
3994
3995 default:
3996 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3997 lnum = getdigits(&cmd);
3998 }
3999
4000 for (;;)
4001 {
4002 cmd = skipwhite(cmd);
4003 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
4004 break;
4005
4006 if (lnum == MAXLNUM)
4007 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
4008 if (VIM_ISDIGIT(*cmd))
4009 i = '+'; /* "number" is same as "+number" */
4010 else
4011 i = *cmd++;
4012 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
4013 n = 1;
4014 else
4015 n = getdigits(&cmd);
4016 if (i == '-')
4017 lnum -= n;
4018 else
4019 lnum += n;
4020 }
4021 } while (*cmd == '/' || *cmd == '?');
4022
4023error:
4024 *ptr = cmd;
4025 return lnum;
4026}
4027
4028/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004029 * Get flags from an Ex command argument.
4030 */
4031 static void
4032get_flags(eap)
4033 exarg_T *eap;
4034{
4035 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
4036 {
4037 if (*eap->arg == 'l')
4038 eap->flags |= EXFLAG_LIST;
4039 else if (*eap->arg == 'p')
4040 eap->flags |= EXFLAG_PRINT;
4041 else
4042 eap->flags |= EXFLAG_NR;
4043 eap->arg = skipwhite(eap->arg + 1);
4044 }
4045}
4046
4047/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004048 * Function called for command which is Not Implemented. NI!
4049 */
4050 void
4051ex_ni(eap)
4052 exarg_T *eap;
4053{
4054 if (!eap->skip)
4055 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
4056}
4057
Bram Moolenaar7bb75552007-07-16 18:39:49 +00004058#ifdef HAVE_EX_SCRIPT_NI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059/*
4060 * Function called for script command which is Not Implemented. NI!
4061 * Skips over ":perl <<EOF" constructs.
4062 */
4063 static void
4064ex_script_ni(eap)
4065 exarg_T *eap;
4066{
4067 if (!eap->skip)
4068 ex_ni(eap);
4069 else
4070 vim_free(script_get(eap, eap->arg));
4071}
4072#endif
4073
4074/*
4075 * Check range in Ex command for validity.
4076 * Return NULL when valid, error message when invalid.
4077 */
4078 static char_u *
4079invalid_range(eap)
4080 exarg_T *eap;
4081{
4082 if ( eap->line1 < 0
4083 || eap->line2 < 0
4084 || eap->line1 > eap->line2
4085 || ((eap->argt & RANGE)
4086 && !(eap->argt & NOTADR)
4087 && eap->line2 > curbuf->b_ml.ml_line_count
4088#ifdef FEAT_DIFF
4089 + (eap->cmdidx == CMD_diffget)
4090#endif
4091 ))
4092 return (char_u *)_(e_invrange);
4093 return NULL;
4094}
4095
4096/*
4097 * Correct the range for zero line number, if required.
4098 */
4099 static void
4100correct_range(eap)
4101 exarg_T *eap;
4102{
4103 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4104 {
4105 if (eap->line1 == 0)
4106 eap->line1 = 1;
4107 if (eap->line2 == 0)
4108 eap->line2 = 1;
4109 }
4110}
4111
Bram Moolenaar748bf032005-02-02 23:04:36 +00004112#ifdef FEAT_QUICKFIX
4113static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4114
4115/*
4116 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4117 * pattern. Otherwise return eap->arg.
4118 */
4119 static char_u *
4120skip_grep_pat(eap)
4121 exarg_T *eap;
4122{
4123 char_u *p = eap->arg;
4124
Bram Moolenaara37420f2006-02-04 22:37:47 +00004125 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4126 || eap->cmdidx == CMD_vimgrepadd
4127 || eap->cmdidx == CMD_lvimgrepadd
4128 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004129 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004130 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004131 if (p == NULL)
4132 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004133 }
4134 return p;
4135}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004136
4137/*
4138 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4139 * in the command line, so that things like % get expanded.
4140 */
4141 static char_u *
4142replace_makeprg(eap, p, cmdlinep)
4143 exarg_T *eap;
4144 char_u *p;
4145 char_u **cmdlinep;
4146{
4147 char_u *new_cmdline;
4148 char_u *program;
4149 char_u *pos;
4150 char_u *ptr;
4151 int len;
4152 int i;
4153
4154 /*
4155 * Don't do it when ":vimgrep" is used for ":grep".
4156 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004157 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4158 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4159 || eap->cmdidx == CMD_grepadd
4160 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004161 && !grep_internal(eap->cmdidx))
4162 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004163 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4164 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004165 {
4166 if (*curbuf->b_p_gp == NUL)
4167 program = p_gp;
4168 else
4169 program = curbuf->b_p_gp;
4170 }
4171 else
4172 {
4173 if (*curbuf->b_p_mp == NUL)
4174 program = p_mp;
4175 else
4176 program = curbuf->b_p_mp;
4177 }
4178
4179 p = skipwhite(p);
4180
4181 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4182 {
4183 /* replace $* by given arguments */
4184 i = 1;
4185 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4186 ++i;
4187 len = (int)STRLEN(p);
4188 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4189 if (new_cmdline == NULL)
4190 return NULL; /* out of memory */
4191 ptr = new_cmdline;
4192 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4193 {
4194 i = (int)(pos - program);
4195 STRNCPY(ptr, program, i);
4196 STRCPY(ptr += i, p);
4197 ptr += len;
4198 program = pos + 2;
4199 }
4200 STRCPY(ptr, program);
4201 }
4202 else
4203 {
4204 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4205 if (new_cmdline == NULL)
4206 return NULL; /* out of memory */
4207 STRCPY(new_cmdline, program);
4208 STRCAT(new_cmdline, " ");
4209 STRCAT(new_cmdline, p);
4210 }
4211 msg_make(p);
4212
4213 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4214 vim_free(*cmdlinep);
4215 *cmdlinep = new_cmdline;
4216 p = new_cmdline;
4217 }
4218 return p;
4219}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004220#endif
4221
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222/*
4223 * Expand file name in Ex command argument.
4224 * Return FAIL for failure, OK otherwise.
4225 */
4226 int
4227expand_filename(eap, cmdlinep, errormsgp)
4228 exarg_T *eap;
4229 char_u **cmdlinep;
4230 char_u **errormsgp;
4231{
4232 int has_wildcards; /* need to expand wildcards */
4233 char_u *repl;
4234 int srclen;
4235 char_u *p;
4236 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004237 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238
Bram Moolenaar748bf032005-02-02 23:04:36 +00004239#ifdef FEAT_QUICKFIX
4240 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4241 p = skip_grep_pat(eap);
4242#else
4243 p = eap->arg;
4244#endif
4245
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 /*
4247 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4248 * the file name contains a wildcard it should not cause expanding.
4249 * (it will be expanded anyway if there is a wildcard before replacing).
4250 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004251 has_wildcards = mch_has_wildcard(p);
4252 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004254#ifdef FEAT_EVAL
4255 /* Skip over `=expr`, wildcards in it are not expanded. */
4256 if (p[0] == '`' && p[1] == '=')
4257 {
4258 p += 2;
4259 (void)skip_expr(&p);
4260 if (*p == '`')
4261 ++p;
4262 continue;
4263 }
4264#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 /*
4266 * Quick check if this cannot be the start of a special string.
4267 * Also removes backslash before '%', '#' and '<'.
4268 */
4269 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4270 {
4271 ++p;
4272 continue;
4273 }
4274
4275 /*
4276 * Try to find a match at this position.
4277 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004278 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4279 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 if (*errormsgp != NULL) /* error detected */
4281 return FAIL;
4282 if (repl == NULL) /* no match found */
4283 {
4284 p += srclen;
4285 continue;
4286 }
4287
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004288 /* Wildcards won't be expanded below, the replacement is taken
4289 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4290 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4291 {
4292 char_u *l = repl;
4293
4294 repl = expand_env_save(repl);
4295 vim_free(l);
4296 }
4297
Bram Moolenaar63b92542007-03-27 14:57:09 +00004298 /* Need to escape white space et al. with a backslash.
4299 * Don't do this for:
4300 * - replacement that already has been escaped: "##"
4301 * - shell commands (may have to use quotes instead).
4302 * - non-unix systems when there is a single argument (spaces don't
4303 * separate arguments then).
4304 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004306 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 && eap->cmdidx != CMD_bang
4308 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004309 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004311 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004313 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314#ifndef UNIX
4315 && !(eap->argt & NOSPC)
4316#endif
4317 )
4318 {
4319 char_u *l;
4320#ifdef BACKSLASH_IN_FILENAME
4321 /* Don't escape a backslash here, because rem_backslash() doesn't
4322 * remove it later. */
4323 static char_u *nobslash = (char_u *)" \t\"|";
4324# define ESCAPE_CHARS nobslash
4325#else
4326# define ESCAPE_CHARS escape_chars
4327#endif
4328
4329 for (l = repl; *l; ++l)
4330 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4331 {
4332 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4333 if (l != NULL)
4334 {
4335 vim_free(repl);
4336 repl = l;
4337 }
4338 break;
4339 }
4340 }
4341
4342 /* For a shell command a '!' must be escaped. */
4343 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004344 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 {
4346 char_u *l;
4347
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004348 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 if (l != NULL)
4350 {
4351 vim_free(repl);
4352 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004353 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 if (strstr((char *)p_sh, "sh") != NULL)
4355 {
4356 l = vim_strsave_escaped(repl, (char_u *)"!");
4357 if (l != NULL)
4358 {
4359 vim_free(repl);
4360 repl = l;
4361 }
4362 }
4363 }
4364 }
4365
4366 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4367 vim_free(repl);
4368 if (p == NULL)
4369 return FAIL;
4370 }
4371
4372 /*
4373 * One file argument: Expand wildcards.
4374 * Don't do this with ":r !command" or ":w !command".
4375 */
4376 if ((eap->argt & NOSPC) && !eap->usefilter)
4377 {
4378 /*
4379 * May do this twice:
4380 * 1. Replace environment variables.
4381 * 2. Replace any other wildcards, remove backslashes.
4382 */
4383 for (n = 1; n <= 2; ++n)
4384 {
4385 if (n == 2)
4386 {
4387#ifdef UNIX
4388 /*
4389 * Only for Unix we check for more than one file name.
4390 * For other systems spaces are considered to be part
4391 * of the file name.
4392 * Only check here if there is no wildcard, otherwise
4393 * ExpandOne() will check for errors. This allows
4394 * ":e `ls ve*.c`" on Unix.
4395 */
4396 if (!has_wildcards)
4397 for (p = eap->arg; *p; ++p)
4398 {
4399 /* skip escaped characters */
4400 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4401 ++p;
4402 else if (vim_iswhite(*p))
4403 {
4404 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4405 return FAIL;
4406 }
4407 }
4408#endif
4409
4410 /*
4411 * Halve the number of backslashes (this is Vi compatible).
4412 * For Unix and OS/2, when wildcards are expanded, this is
4413 * done by ExpandOne() below.
4414 */
4415#if defined(UNIX) || defined(OS2)
4416 if (!has_wildcards)
4417#endif
4418 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 }
4420
4421 if (has_wildcards)
4422 {
4423 if (n == 1)
4424 {
4425 /*
4426 * First loop: May expand environment variables. This
4427 * can be done much faster with expand_env() than with
4428 * something else (e.g., calling a shell).
4429 * After expanding environment variables, check again
4430 * if there are still wildcards present.
4431 */
4432 if (vim_strchr(eap->arg, '$') != NULL
4433 || vim_strchr(eap->arg, '~') != NULL)
4434 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004435 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
Bram Moolenaar9f0545d2007-09-26 20:36:32 +00004436 TRUE, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 has_wildcards = mch_has_wildcard(NameBuff);
4438 p = NameBuff;
4439 }
4440 else
4441 p = NULL;
4442 }
4443 else /* n == 2 */
4444 {
4445 expand_T xpc;
4446
4447 ExpandInit(&xpc);
4448 xpc.xp_context = EXPAND_FILES;
4449 p = ExpandOne(&xpc, eap->arg, NULL,
4450 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4451 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 if (p == NULL)
4453 return FAIL;
4454 }
4455 if (p != NULL)
4456 {
4457 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4458 p, cmdlinep);
4459 if (n == 2) /* p came from ExpandOne() */
4460 vim_free(p);
4461 }
4462 }
4463 }
4464 }
4465 return OK;
4466}
4467
4468/*
4469 * Replace part of the command line, keeping eap->cmd, eap->arg and
4470 * eap->nextcmd correct.
4471 * "src" points to the part that is to be replaced, of length "srclen".
4472 * "repl" is the replacement string.
4473 * Returns a pointer to the character after the replaced string.
4474 * Returns NULL for failure.
4475 */
4476 static char_u *
4477repl_cmdline(eap, src, srclen, repl, cmdlinep)
4478 exarg_T *eap;
4479 char_u *src;
4480 int srclen;
4481 char_u *repl;
4482 char_u **cmdlinep;
4483{
4484 int len;
4485 int i;
4486 char_u *new_cmdline;
4487
4488 /*
4489 * The new command line is build in new_cmdline[].
4490 * First allocate it.
4491 * Careful: a "+cmd" argument may have been NUL terminated.
4492 */
4493 len = (int)STRLEN(repl);
4494 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004495 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4497 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4498 return NULL; /* out of memory! */
4499
4500 /*
4501 * Copy the stuff before the expanded part.
4502 * Copy the expanded stuff.
4503 * Copy what came after the expanded part.
4504 * Copy the next commands, if there are any.
4505 */
4506 i = (int)(src - *cmdlinep); /* length of part before match */
4507 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004508
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 mch_memmove(new_cmdline + i, repl, (size_t)len);
4510 i += len; /* remember the end of the string */
4511 STRCPY(new_cmdline + i, src + srclen);
4512 src = new_cmdline + i; /* remember where to continue */
4513
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004514 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 {
4516 i = (int)STRLEN(new_cmdline) + 1;
4517 STRCPY(new_cmdline + i, eap->nextcmd);
4518 eap->nextcmd = new_cmdline + i;
4519 }
4520 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4521 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4522 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4523 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4524 vim_free(*cmdlinep);
4525 *cmdlinep = new_cmdline;
4526
4527 return src;
4528}
4529
4530/*
4531 * Check for '|' to separate commands and '"' to start comments.
4532 */
4533 void
4534separate_nextcmd(eap)
4535 exarg_T *eap;
4536{
4537 char_u *p;
4538
Bram Moolenaar86b68352004-12-27 21:59:20 +00004539#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004540 p = skip_grep_pat(eap);
4541#else
4542 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004543#endif
4544
4545 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546 {
4547 if (*p == Ctrl_V)
4548 {
4549 if (eap->argt & (USECTRLV | XFILE))
4550 ++p; /* skip CTRL-V and next char */
4551 else
Bram Moolenaarb0db5692007-08-14 20:54:49 +00004552 /* remove CTRL-V and skip next char */
Bram Moolenaara7241f52008-06-24 20:39:31 +00004553 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554 if (*p == NUL) /* stop at NUL after CTRL-V */
4555 break;
4556 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004557
4558#ifdef FEAT_EVAL
4559 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004560 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004561 {
4562 p += 2;
4563 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004564 }
4565#endif
4566
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 /* Check for '"': start of comment or '|': next command */
4568 /* :@" and :*" do not start a comment!
4569 * :redir @" doesn't either. */
4570 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4571 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4572 || p != eap->arg)
4573 && (eap->cmdidx != CMD_redir
4574 || p != eap->arg + 1 || p[-1] != '@'))
4575 || *p == '|' || *p == '\n')
4576 {
4577 /*
4578 * We remove the '\' before the '|', unless USECTRLV is used
4579 * AND 'b' is present in 'cpoptions'.
4580 */
4581 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4582 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4583 {
Bram Moolenaara7241f52008-06-24 20:39:31 +00004584 STRMOVE(p - 1, p); /* remove the '\' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 --p;
4586 }
4587 else
4588 {
4589 eap->nextcmd = check_nextcmd(p);
4590 *p = NUL;
4591 break;
4592 }
4593 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004595
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4597 del_trailing_spaces(eap->arg);
4598}
4599
4600/*
4601 * get + command from ex argument
4602 */
4603 static char_u *
4604getargcmd(argp)
4605 char_u **argp;
4606{
4607 char_u *arg = *argp;
4608 char_u *command = NULL;
4609
4610 if (*arg == '+') /* +[command] */
4611 {
4612 ++arg;
4613 if (vim_isspace(*arg))
4614 command = dollar_command;
4615 else
4616 {
4617 command = arg;
4618 arg = skip_cmd_arg(command, TRUE);
4619 if (*arg != NUL)
4620 *arg++ = NUL; /* terminate command with NUL */
4621 }
4622
4623 arg = skipwhite(arg); /* skip over spaces */
4624 *argp = arg;
4625 }
4626 return command;
4627}
4628
4629/*
4630 * Find end of "+command" argument. Skip over "\ " and "\\".
4631 */
4632 static char_u *
4633skip_cmd_arg(p, rembs)
4634 char_u *p;
4635 int rembs; /* TRUE to halve the number of backslashes */
4636{
4637 while (*p && !vim_isspace(*p))
4638 {
4639 if (*p == '\\' && p[1] != NUL)
4640 {
4641 if (rembs)
Bram Moolenaara7241f52008-06-24 20:39:31 +00004642 STRMOVE(p, p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 else
4644 ++p;
4645 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004646 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 }
4648 return p;
4649}
4650
4651/*
4652 * Get "++opt=arg" argument.
4653 * Return FAIL or OK.
4654 */
4655 static int
4656getargopt(eap)
4657 exarg_T *eap;
4658{
4659 char_u *arg = eap->arg + 2;
4660 int *pp = NULL;
4661#ifdef FEAT_MBYTE
4662 char_u *p;
4663#endif
4664
4665 /* ":edit ++[no]bin[ary] file" */
4666 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4667 {
4668 if (*arg == 'n')
4669 {
4670 arg += 2;
4671 eap->force_bin = FORCE_NOBIN;
4672 }
4673 else
4674 eap->force_bin = FORCE_BIN;
4675 if (!checkforcmd(&arg, "binary", 3))
4676 return FAIL;
4677 eap->arg = skipwhite(arg);
4678 return OK;
4679 }
4680
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004681 /* ":read ++edit file" */
4682 if (STRNCMP(arg, "edit", 4) == 0)
4683 {
4684 eap->read_edit = TRUE;
4685 eap->arg = skipwhite(arg + 4);
4686 return OK;
4687 }
4688
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 if (STRNCMP(arg, "ff", 2) == 0)
4690 {
4691 arg += 2;
4692 pp = &eap->force_ff;
4693 }
4694 else if (STRNCMP(arg, "fileformat", 10) == 0)
4695 {
4696 arg += 10;
4697 pp = &eap->force_ff;
4698 }
4699#ifdef FEAT_MBYTE
4700 else if (STRNCMP(arg, "enc", 3) == 0)
4701 {
4702 arg += 3;
4703 pp = &eap->force_enc;
4704 }
4705 else if (STRNCMP(arg, "encoding", 8) == 0)
4706 {
4707 arg += 8;
4708 pp = &eap->force_enc;
4709 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004710 else if (STRNCMP(arg, "bad", 3) == 0)
4711 {
4712 arg += 3;
4713 pp = &eap->bad_char;
4714 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715#endif
4716
4717 if (pp == NULL || *arg != '=')
4718 return FAIL;
4719
4720 ++arg;
4721 *pp = (int)(arg - eap->cmd);
4722 arg = skip_cmd_arg(arg, FALSE);
4723 eap->arg = skipwhite(arg);
4724 *arg = NUL;
4725
4726#ifdef FEAT_MBYTE
4727 if (pp == &eap->force_ff)
4728 {
4729#endif
4730 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4731 return FAIL;
4732#ifdef FEAT_MBYTE
4733 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004734 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 {
4736 /* Make 'fileencoding' lower case. */
4737 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4738 *p = TOLOWER_ASC(*p);
4739 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004740 else
4741 {
4742 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4743 * "drop". */
4744 p = eap->cmd + eap->bad_char;
4745 if (STRICMP(p, "keep") == 0)
4746 eap->bad_char = BAD_KEEP;
4747 else if (STRICMP(p, "drop") == 0)
4748 eap->bad_char = BAD_DROP;
4749 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4750 eap->bad_char = *p;
4751 else
4752 return FAIL;
4753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754#endif
4755
4756 return OK;
4757}
4758
4759/*
4760 * ":abbreviate" and friends.
4761 */
4762 static void
4763ex_abbreviate(eap)
4764 exarg_T *eap;
4765{
4766 do_exmap(eap, TRUE); /* almost the same as mapping */
4767}
4768
4769/*
4770 * ":map" and friends.
4771 */
4772 static void
4773ex_map(eap)
4774 exarg_T *eap;
4775{
4776 /*
4777 * If we are sourcing .exrc or .vimrc in current directory we
4778 * print the mappings for security reasons.
4779 */
4780 if (secure)
4781 {
4782 secure = 2;
4783 msg_outtrans(eap->cmd);
4784 msg_putchar('\n');
4785 }
4786 do_exmap(eap, FALSE);
4787}
4788
4789/*
4790 * ":unmap" and friends.
4791 */
4792 static void
4793ex_unmap(eap)
4794 exarg_T *eap;
4795{
4796 do_exmap(eap, FALSE);
4797}
4798
4799/*
4800 * ":mapclear" and friends.
4801 */
4802 static void
4803ex_mapclear(eap)
4804 exarg_T *eap;
4805{
4806 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4807}
4808
4809/*
4810 * ":abclear" and friends.
4811 */
4812 static void
4813ex_abclear(eap)
4814 exarg_T *eap;
4815{
4816 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4817}
4818
4819#ifdef FEAT_AUTOCMD
4820 static void
4821ex_autocmd(eap)
4822 exarg_T *eap;
4823{
4824 /*
4825 * Disallow auto commands from .exrc and .vimrc in current
4826 * directory for security reasons.
4827 */
4828 if (secure)
4829 {
4830 secure = 2;
4831 eap->errmsg = e_curdir;
4832 }
4833 else if (eap->cmdidx == CMD_autocmd)
4834 do_autocmd(eap->arg, eap->forceit);
4835 else
4836 do_augroup(eap->arg, eap->forceit);
4837}
4838
4839/*
4840 * ":doautocmd": Apply the automatic commands to the current buffer.
4841 */
4842 static void
4843ex_doautocmd(eap)
4844 exarg_T *eap;
4845{
4846 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004847 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004848}
4849#endif
4850
4851#ifdef FEAT_LISTCMDS
4852/*
4853 * :[N]bunload[!] [N] [bufname] unload buffer
4854 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4855 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4856 */
4857 static void
4858ex_bunload(eap)
4859 exarg_T *eap;
4860{
4861 eap->errmsg = do_bufdel(
4862 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4863 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4864 : DOBUF_UNLOAD, eap->arg,
4865 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4866}
4867
4868/*
4869 * :[N]buffer [N] to buffer N
4870 * :[N]sbuffer [N] to buffer N
4871 */
4872 static void
4873ex_buffer(eap)
4874 exarg_T *eap;
4875{
4876 if (*eap->arg)
4877 eap->errmsg = e_trailing;
4878 else
4879 {
4880 if (eap->addr_count == 0) /* default is current buffer */
4881 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4882 else
4883 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4884 }
4885}
4886
4887/*
4888 * :[N]bmodified [N] to next mod. buffer
4889 * :[N]sbmodified [N] to next mod. buffer
4890 */
4891 static void
4892ex_bmodified(eap)
4893 exarg_T *eap;
4894{
4895 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4896}
4897
4898/*
4899 * :[N]bnext [N] to next buffer
4900 * :[N]sbnext [N] split and to next buffer
4901 */
4902 static void
4903ex_bnext(eap)
4904 exarg_T *eap;
4905{
4906 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4907}
4908
4909/*
4910 * :[N]bNext [N] to previous buffer
4911 * :[N]bprevious [N] to previous buffer
4912 * :[N]sbNext [N] split and to previous buffer
4913 * :[N]sbprevious [N] split and to previous buffer
4914 */
4915 static void
4916ex_bprevious(eap)
4917 exarg_T *eap;
4918{
4919 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4920}
4921
4922/*
4923 * :brewind to first buffer
4924 * :bfirst to first buffer
4925 * :sbrewind split and to first buffer
4926 * :sbfirst split and to first buffer
4927 */
4928 static void
4929ex_brewind(eap)
4930 exarg_T *eap;
4931{
4932 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4933}
4934
4935/*
4936 * :blast to last buffer
4937 * :sblast split and to last buffer
4938 */
4939 static void
4940ex_blast(eap)
4941 exarg_T *eap;
4942{
4943 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4944}
4945#endif
4946
4947 int
4948ends_excmd(c)
4949 int c;
4950{
4951 return (c == NUL || c == '|' || c == '"' || c == '\n');
4952}
4953
4954#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4955 || defined(PROTO)
4956/*
4957 * Return the next command, after the first '|' or '\n'.
4958 * Return NULL if not found.
4959 */
4960 char_u *
4961find_nextcmd(p)
4962 char_u *p;
4963{
4964 while (*p != '|' && *p != '\n')
4965 {
4966 if (*p == NUL)
4967 return NULL;
4968 ++p;
4969 }
4970 return (p + 1);
4971}
4972#endif
4973
4974/*
4975 * Check if *p is a separator between Ex commands.
4976 * Return NULL if it isn't, (p + 1) if it is.
4977 */
4978 char_u *
4979check_nextcmd(p)
4980 char_u *p;
4981{
4982 p = skipwhite(p);
4983 if (*p == '|' || *p == '\n')
4984 return (p + 1);
4985 else
4986 return NULL;
4987}
4988
4989/*
4990 * - if there are more files to edit
4991 * - and this is the last window
4992 * - and forceit not used
4993 * - and not repeated twice on a row
4994 * return FAIL and give error message if 'message' TRUE
4995 * return OK otherwise
4996 */
4997 static int
4998check_more(message, forceit)
4999 int message; /* when FALSE check only, no messages */
5000 int forceit;
5001{
5002 int n = ARGCOUNT - curwin->w_arg_idx - 1;
5003
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005004 if (!forceit && only_one_window()
5005 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 {
5007 if (message)
5008 {
5009#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
5010 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
5011 {
5012 char_u buff[IOSIZE];
5013
5014 if (n == 1)
5015 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
5016 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00005017 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 _("%d more files to edit. Quit anyway?"), n);
5019 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
5020 return OK;
5021 return FAIL;
5022 }
5023#endif
5024 if (n == 1)
5025 EMSG(_("E173: 1 more file to edit"));
5026 else
5027 EMSGN(_("E173: %ld more files to edit"), n);
5028 quitmore = 2; /* next try to quit is allowed */
5029 }
5030 return FAIL;
5031 }
5032 return OK;
5033}
5034
5035#ifdef FEAT_CMDL_COMPL
5036/*
5037 * Function given to ExpandGeneric() to obtain the list of command names.
5038 */
5039/*ARGSUSED*/
5040 char_u *
5041get_command_name(xp, idx)
5042 expand_T *xp;
5043 int idx;
5044{
5045 if (idx >= (int)CMD_SIZE)
5046# ifdef FEAT_USR_CMDS
5047 return get_user_command_name(idx);
5048# else
5049 return NULL;
5050# endif
5051 return cmdnames[idx].cmd_name;
5052}
5053#endif
5054
5055#if defined(FEAT_USR_CMDS) || defined(PROTO)
5056static 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));
5057static void uc_list __ARGS((char_u *name, size_t name_len));
5058static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5059static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5060static 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));
5061
5062 static int
5063uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5064 char_u *name;
5065 size_t name_len;
5066 char_u *rep;
5067 long argt;
5068 long def;
5069 int flags;
5070 int compl;
5071 char_u *compl_arg;
5072 int force;
5073{
5074 ucmd_T *cmd = NULL;
5075 char_u *p;
5076 int i;
5077 int cmp = 1;
5078 char_u *rep_buf = NULL;
5079 garray_T *gap;
5080
Bram Moolenaar9c102382006-05-03 21:26:49 +00005081 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 if (rep_buf == NULL)
5083 {
5084 /* Can't replace termcodes - try using the string as is */
5085 rep_buf = vim_strsave(rep);
5086
5087 /* Give up if out of memory */
5088 if (rep_buf == NULL)
5089 return FAIL;
5090 }
5091
5092 /* get address of growarray: global or in curbuf */
5093 if (flags & UC_BUFFER)
5094 {
5095 gap = &curbuf->b_ucmds;
5096 if (gap->ga_itemsize == 0)
5097 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5098 }
5099 else
5100 gap = &ucmds;
5101
5102 /* Search for the command in the already defined commands. */
5103 for (i = 0; i < gap->ga_len; ++i)
5104 {
5105 size_t len;
5106
5107 cmd = USER_CMD_GA(gap, i);
5108 len = STRLEN(cmd->uc_name);
5109 cmp = STRNCMP(name, cmd->uc_name, name_len);
5110 if (cmp == 0)
5111 {
5112 if (name_len < len)
5113 cmp = -1;
5114 else if (name_len > len)
5115 cmp = 1;
5116 }
5117
5118 if (cmp == 0)
5119 {
5120 if (!force)
5121 {
5122 EMSG(_("E174: Command already exists: add ! to replace it"));
5123 goto fail;
5124 }
5125
5126 vim_free(cmd->uc_rep);
5127 cmd->uc_rep = 0;
5128 break;
5129 }
5130
5131 /* Stop as soon as we pass the name to add */
5132 if (cmp < 0)
5133 break;
5134 }
5135
5136 /* Extend the array unless we're replacing an existing command */
5137 if (cmp != 0)
5138 {
5139 if (ga_grow(gap, 1) != OK)
5140 goto fail;
5141 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5142 goto fail;
5143
5144 cmd = USER_CMD_GA(gap, i);
5145 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5146
5147 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148
5149 cmd->uc_name = p;
5150 }
5151
5152 cmd->uc_rep = rep_buf;
5153 cmd->uc_argt = argt;
5154 cmd->uc_def = def;
5155 cmd->uc_compl = compl;
5156#ifdef FEAT_EVAL
5157 cmd->uc_scriptID = current_SID;
5158# ifdef FEAT_CMDL_COMPL
5159 cmd->uc_compl_arg = compl_arg;
5160# endif
5161#endif
5162
5163 return OK;
5164
5165fail:
5166 vim_free(rep_buf);
5167#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5168 vim_free(compl_arg);
5169#endif
5170 return FAIL;
5171}
5172
5173/*
5174 * List of names for completion for ":command" with the EXPAND_ flag.
5175 * Must be alphabetical for completion.
5176 */
5177static struct
5178{
5179 int expand;
5180 char *name;
5181} command_complete[] =
5182{
5183 {EXPAND_AUGROUP, "augroup"},
5184 {EXPAND_BUFFERS, "buffer"},
5185 {EXPAND_COMMANDS, "command"},
5186#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5187 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005188 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189#endif
5190 {EXPAND_DIRECTORIES, "dir"},
5191 {EXPAND_ENV_VARS, "environment"},
5192 {EXPAND_EVENTS, "event"},
5193 {EXPAND_EXPRESSION, "expression"},
5194 {EXPAND_FILES, "file"},
5195 {EXPAND_FUNCTIONS, "function"},
5196 {EXPAND_HELP, "help"},
5197 {EXPAND_HIGHLIGHT, "highlight"},
5198 {EXPAND_MAPPINGS, "mapping"},
5199 {EXPAND_MENUS, "menu"},
5200 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005201 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 {EXPAND_TAGS, "tag"},
5203 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5204 {EXPAND_USER_VARS, "var"},
5205 {0, NULL}
5206};
5207
5208 static void
5209uc_list(name, name_len)
5210 char_u *name;
5211 size_t name_len;
5212{
5213 int i, j;
5214 int found = FALSE;
5215 ucmd_T *cmd;
5216 int len;
5217 long a;
5218 garray_T *gap;
5219
5220 gap = &curbuf->b_ucmds;
5221 for (;;)
5222 {
5223 for (i = 0; i < gap->ga_len; ++i)
5224 {
5225 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005226 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005227
5228 /* Skip commands which don't match the requested prefix */
5229 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5230 continue;
5231
5232 /* Put out the title first time */
5233 if (!found)
5234 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5235 found = TRUE;
5236 msg_putchar('\n');
5237 if (got_int)
5238 break;
5239
5240 /* Special cases */
5241 msg_putchar(a & BANG ? '!' : ' ');
5242 msg_putchar(a & REGSTR ? '"' : ' ');
5243 msg_putchar(gap != &ucmds ? 'b' : ' ');
5244 msg_putchar(' ');
5245
5246 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5247 len = (int)STRLEN(cmd->uc_name) + 4;
5248
5249 do {
5250 msg_putchar(' ');
5251 ++len;
5252 } while (len < 16);
5253
5254 len = 0;
5255
5256 /* Arguments */
5257 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5258 {
5259 case 0: IObuff[len++] = '0'; break;
5260 case (EXTRA): IObuff[len++] = '*'; break;
5261 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5262 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5263 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5264 }
5265
5266 do {
5267 IObuff[len++] = ' ';
5268 } while (len < 5);
5269
5270 /* Range */
5271 if (a & (RANGE|COUNT))
5272 {
5273 if (a & COUNT)
5274 {
5275 /* -count=N */
5276 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5277 len += (int)STRLEN(IObuff + len);
5278 }
5279 else if (a & DFLALL)
5280 IObuff[len++] = '%';
5281 else if (cmd->uc_def >= 0)
5282 {
5283 /* -range=N */
5284 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5285 len += (int)STRLEN(IObuff + len);
5286 }
5287 else
5288 IObuff[len++] = '.';
5289 }
5290
5291 do {
5292 IObuff[len++] = ' ';
5293 } while (len < 11);
5294
5295 /* Completion */
5296 for (j = 0; command_complete[j].expand != 0; ++j)
5297 if (command_complete[j].expand == cmd->uc_compl)
5298 {
5299 STRCPY(IObuff + len, command_complete[j].name);
5300 len += (int)STRLEN(IObuff + len);
5301 break;
5302 }
5303
5304 do {
5305 IObuff[len++] = ' ';
5306 } while (len < 21);
5307
5308 IObuff[len] = '\0';
5309 msg_outtrans(IObuff);
5310
5311 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005312#ifdef FEAT_EVAL
5313 if (p_verbose > 0)
5314 last_set_msg(cmd->uc_scriptID);
5315#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 out_flush();
5317 ui_breakcheck();
5318 if (got_int)
5319 break;
5320 }
5321 if (gap == &ucmds || i < gap->ga_len)
5322 break;
5323 gap = &ucmds;
5324 }
5325
5326 if (!found)
5327 MSG(_("No user-defined commands found"));
5328}
5329
5330 static char_u *
5331uc_fun_cmd()
5332{
5333 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5334 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5335 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5336 0xb9, 0x7f, 0};
5337 int i;
5338
5339 for (i = 0; fcmd[i]; ++i)
5340 IObuff[i] = fcmd[i] - 0x40;
5341 IObuff[i] = 0;
5342 return IObuff;
5343}
5344
5345 static int
5346uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5347 char_u *attr;
5348 size_t len;
5349 long *argt;
5350 long *def;
5351 int *flags;
5352 int *compl;
5353 char_u **compl_arg;
5354{
5355 char_u *p;
5356
5357 if (len == 0)
5358 {
5359 EMSG(_("E175: No attribute specified"));
5360 return FAIL;
5361 }
5362
5363 /* First, try the simple attributes (no arguments) */
5364 if (STRNICMP(attr, "bang", len) == 0)
5365 *argt |= BANG;
5366 else if (STRNICMP(attr, "buffer", len) == 0)
5367 *flags |= UC_BUFFER;
5368 else if (STRNICMP(attr, "register", len) == 0)
5369 *argt |= REGSTR;
5370 else if (STRNICMP(attr, "bar", len) == 0)
5371 *argt |= TRLBAR;
5372 else
5373 {
5374 int i;
5375 char_u *val = NULL;
5376 size_t vallen = 0;
5377 size_t attrlen = len;
5378
5379 /* Look for the attribute name - which is the part before any '=' */
5380 for (i = 0; i < (int)len; ++i)
5381 {
5382 if (attr[i] == '=')
5383 {
5384 val = &attr[i + 1];
5385 vallen = len - i - 1;
5386 attrlen = i;
5387 break;
5388 }
5389 }
5390
5391 if (STRNICMP(attr, "nargs", attrlen) == 0)
5392 {
5393 if (vallen == 1)
5394 {
5395 if (*val == '0')
5396 /* Do nothing - this is the default */;
5397 else if (*val == '1')
5398 *argt |= (EXTRA | NOSPC | NEEDARG);
5399 else if (*val == '*')
5400 *argt |= EXTRA;
5401 else if (*val == '?')
5402 *argt |= (EXTRA | NOSPC);
5403 else if (*val == '+')
5404 *argt |= (EXTRA | NEEDARG);
5405 else
5406 goto wrong_nargs;
5407 }
5408 else
5409 {
5410wrong_nargs:
5411 EMSG(_("E176: Invalid number of arguments"));
5412 return FAIL;
5413 }
5414 }
5415 else if (STRNICMP(attr, "range", attrlen) == 0)
5416 {
5417 *argt |= RANGE;
5418 if (vallen == 1 && *val == '%')
5419 *argt |= DFLALL;
5420 else if (val != NULL)
5421 {
5422 p = val;
5423 if (*def >= 0)
5424 {
5425two_count:
5426 EMSG(_("E177: Count cannot be specified twice"));
5427 return FAIL;
5428 }
5429
5430 *def = getdigits(&p);
5431 *argt |= (ZEROR | NOTADR);
5432
5433 if (p != val + vallen || vallen == 0)
5434 {
5435invalid_count:
5436 EMSG(_("E178: Invalid default value for count"));
5437 return FAIL;
5438 }
5439 }
5440 }
5441 else if (STRNICMP(attr, "count", attrlen) == 0)
5442 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005443 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005444
5445 if (val != NULL)
5446 {
5447 p = val;
5448 if (*def >= 0)
5449 goto two_count;
5450
5451 *def = getdigits(&p);
5452
5453 if (p != val + vallen)
5454 goto invalid_count;
5455 }
5456
5457 if (*def < 0)
5458 *def = 0;
5459 }
5460 else if (STRNICMP(attr, "complete", attrlen) == 0)
5461 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005462 if (val == NULL)
5463 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005464 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005465 return FAIL;
5466 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005468 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5469 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005470 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 }
5472 else
5473 {
5474 char_u ch = attr[len];
5475 attr[len] = '\0';
5476 EMSG2(_("E181: Invalid attribute: %s"), attr);
5477 attr[len] = ch;
5478 return FAIL;
5479 }
5480 }
5481
5482 return OK;
5483}
5484
5485 static void
5486ex_command(eap)
5487 exarg_T *eap;
5488{
5489 char_u *name;
5490 char_u *end;
5491 char_u *p;
5492 long argt = 0;
5493 long def = -1;
5494 int flags = 0;
5495 int compl = EXPAND_NOTHING;
5496 char_u *compl_arg = NULL;
5497 int has_attr = (eap->arg[0] == '-');
5498
5499 p = eap->arg;
5500
5501 /* Check for attributes */
5502 while (*p == '-')
5503 {
5504 ++p;
5505 end = skiptowhite(p);
5506 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5507 == FAIL)
5508 return;
5509 p = skipwhite(end);
5510 }
5511
5512 /* Get the name (if any) and skip to the following argument */
5513 name = p;
5514 if (ASCII_ISALPHA(*p))
5515 while (ASCII_ISALNUM(*p))
5516 ++p;
5517 if (!ends_excmd(*p) && !vim_iswhite(*p))
5518 {
5519 EMSG(_("E182: Invalid command name"));
5520 return;
5521 }
5522 end = p;
5523
5524 /* If there is nothing after the name, and no attributes were specified,
5525 * we are listing commands
5526 */
5527 p = skipwhite(end);
5528 if (!has_attr && ends_excmd(*p))
5529 {
5530 uc_list(name, end - name);
5531 }
5532 else if (!ASCII_ISUPPER(*name))
5533 {
5534 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5535 return;
5536 }
5537 else
5538 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5539 eap->forceit);
5540}
5541
5542/*
5543 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 * Clear all user commands, global and for current buffer.
5545 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005546/*ARGSUSED*/
5547 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548ex_comclear(eap)
5549 exarg_T *eap;
5550{
5551 uc_clear(&ucmds);
5552 uc_clear(&curbuf->b_ucmds);
5553}
5554
5555/*
5556 * Clear all user commands for "gap".
5557 */
5558 void
5559uc_clear(gap)
5560 garray_T *gap;
5561{
5562 int i;
5563 ucmd_T *cmd;
5564
5565 for (i = 0; i < gap->ga_len; ++i)
5566 {
5567 cmd = USER_CMD_GA(gap, i);
5568 vim_free(cmd->uc_name);
5569 vim_free(cmd->uc_rep);
5570# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5571 vim_free(cmd->uc_compl_arg);
5572# endif
5573 }
5574 ga_clear(gap);
5575}
5576
5577 static void
5578ex_delcommand(eap)
5579 exarg_T *eap;
5580{
5581 int i = 0;
5582 ucmd_T *cmd = NULL;
5583 int cmp = -1;
5584 garray_T *gap;
5585
5586 gap = &curbuf->b_ucmds;
5587 for (;;)
5588 {
5589 for (i = 0; i < gap->ga_len; ++i)
5590 {
5591 cmd = USER_CMD_GA(gap, i);
5592 cmp = STRCMP(eap->arg, cmd->uc_name);
5593 if (cmp <= 0)
5594 break;
5595 }
5596 if (gap == &ucmds || cmp == 0)
5597 break;
5598 gap = &ucmds;
5599 }
5600
5601 if (cmp != 0)
5602 {
5603 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5604 return;
5605 }
5606
5607 vim_free(cmd->uc_name);
5608 vim_free(cmd->uc_rep);
5609# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5610 vim_free(cmd->uc_compl_arg);
5611# endif
5612
5613 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614
5615 if (i < gap->ga_len)
5616 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5617}
5618
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005619/*
5620 * split and quote args for <f-args>
5621 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 static char_u *
5623uc_split_args(arg, lenp)
5624 char_u *arg;
5625 size_t *lenp;
5626{
5627 char_u *buf;
5628 char_u *p;
5629 char_u *q;
5630 int len;
5631
5632 /* Precalculate length */
5633 p = arg;
5634 len = 2; /* Initial and final quotes */
5635
5636 while (*p)
5637 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005638 if (p[0] == '\\' && p[1] == '\\')
5639 {
5640 len += 2;
5641 p += 2;
5642 }
5643 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644 {
5645 len += 1;
5646 p += 2;
5647 }
5648 else if (*p == '\\' || *p == '"')
5649 {
5650 len += 2;
5651 p += 1;
5652 }
5653 else if (vim_iswhite(*p))
5654 {
5655 p = skipwhite(p);
5656 if (*p == NUL)
5657 break;
5658 len += 3; /* "," */
5659 }
5660 else
5661 {
5662 ++len;
5663 ++p;
5664 }
5665 }
5666
5667 buf = alloc(len + 1);
5668 if (buf == NULL)
5669 {
5670 *lenp = 0;
5671 return buf;
5672 }
5673
5674 p = arg;
5675 q = buf;
5676 *q++ = '"';
5677 while (*p)
5678 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005679 if (p[0] == '\\' && p[1] == '\\')
5680 {
5681 *q++ = '\\';
5682 *q++ = '\\';
5683 p += 2;
5684 }
5685 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686 {
5687 *q++ = p[1];
5688 p += 2;
5689 }
5690 else if (*p == '\\' || *p == '"')
5691 {
5692 *q++ = '\\';
5693 *q++ = *p++;
5694 }
5695 else if (vim_iswhite(*p))
5696 {
5697 p = skipwhite(p);
5698 if (*p == NUL)
5699 break;
5700 *q++ = '"';
5701 *q++ = ',';
5702 *q++ = '"';
5703 }
5704 else
5705 {
5706 *q++ = *p++;
5707 }
5708 }
5709 *q++ = '"';
5710 *q = 0;
5711
5712 *lenp = len;
5713 return buf;
5714}
5715
5716/*
5717 * Check for a <> code in a user command.
5718 * "code" points to the '<'. "len" the length of the <> (inclusive).
5719 * "buf" is where the result is to be added.
5720 * "split_buf" points to a buffer used for splitting, caller should free it.
5721 * "split_len" is the length of what "split_buf" contains.
5722 * Returns the length of the replacement, which has been added to "buf".
5723 * Returns -1 if there was no match, and only the "<" has been copied.
5724 */
5725 static size_t
5726uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5727 char_u *code;
5728 size_t len;
5729 char_u *buf;
5730 ucmd_T *cmd; /* the user command we're expanding */
5731 exarg_T *eap; /* ex arguments */
5732 char_u **split_buf;
5733 size_t *split_len;
5734{
5735 size_t result = 0;
5736 char_u *p = code + 1;
5737 size_t l = len - 2;
5738 int quote = 0;
5739 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5740 ct_LT, ct_NONE } type = ct_NONE;
5741
5742 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5743 {
5744 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5745 p += 2;
5746 l -= 2;
5747 }
5748
Bram Moolenaar371d5402006-03-20 21:47:49 +00005749 ++l;
5750 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005752 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005754 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005756 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005758 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005760 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005762 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005764 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 type = ct_REGISTER;
5766
5767 switch (type)
5768 {
5769 case ct_ARGS:
5770 /* Simple case first */
5771 if (*eap->arg == NUL)
5772 {
5773 if (quote == 1)
5774 {
5775 result = 2;
5776 if (buf != NULL)
5777 STRCPY(buf, "''");
5778 }
5779 else
5780 result = 0;
5781 break;
5782 }
5783
5784 /* When specified there is a single argument don't split it.
5785 * Works for ":Cmd %" when % is "a b c". */
5786 if ((eap->argt & NOSPC) && quote == 2)
5787 quote = 1;
5788
5789 switch (quote)
5790 {
5791 case 0: /* No quoting, no splitting */
5792 result = STRLEN(eap->arg);
5793 if (buf != NULL)
5794 STRCPY(buf, eap->arg);
5795 break;
5796 case 1: /* Quote, but don't split */
5797 result = STRLEN(eap->arg) + 2;
5798 for (p = eap->arg; *p; ++p)
5799 {
5800 if (*p == '\\' || *p == '"')
5801 ++result;
5802 }
5803
5804 if (buf != NULL)
5805 {
5806 *buf++ = '"';
5807 for (p = eap->arg; *p; ++p)
5808 {
5809 if (*p == '\\' || *p == '"')
5810 *buf++ = '\\';
5811 *buf++ = *p;
5812 }
5813 *buf = '"';
5814 }
5815
5816 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005817 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 /* This is hard, so only do it once, and cache the result */
5819 if (*split_buf == NULL)
5820 *split_buf = uc_split_args(eap->arg, split_len);
5821
5822 result = *split_len;
5823 if (buf != NULL && result != 0)
5824 STRCPY(buf, *split_buf);
5825
5826 break;
5827 }
5828 break;
5829
5830 case ct_BANG:
5831 result = eap->forceit ? 1 : 0;
5832 if (quote)
5833 result += 2;
5834 if (buf != NULL)
5835 {
5836 if (quote)
5837 *buf++ = '"';
5838 if (eap->forceit)
5839 *buf++ = '!';
5840 if (quote)
5841 *buf = '"';
5842 }
5843 break;
5844
5845 case ct_LINE1:
5846 case ct_LINE2:
5847 case ct_COUNT:
5848 {
5849 char num_buf[20];
5850 long num = (type == ct_LINE1) ? eap->line1 :
5851 (type == ct_LINE2) ? eap->line2 :
5852 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5853 size_t num_len;
5854
5855 sprintf(num_buf, "%ld", num);
5856 num_len = STRLEN(num_buf);
5857 result = num_len;
5858
5859 if (quote)
5860 result += 2;
5861
5862 if (buf != NULL)
5863 {
5864 if (quote)
5865 *buf++ = '"';
5866 STRCPY(buf, num_buf);
5867 buf += num_len;
5868 if (quote)
5869 *buf = '"';
5870 }
5871
5872 break;
5873 }
5874
5875 case ct_REGISTER:
5876 result = eap->regname ? 1 : 0;
5877 if (quote)
5878 result += 2;
5879 if (buf != NULL)
5880 {
5881 if (quote)
5882 *buf++ = '\'';
5883 if (eap->regname)
5884 *buf++ = eap->regname;
5885 if (quote)
5886 *buf = '\'';
5887 }
5888 break;
5889
5890 case ct_LT:
5891 result = 1;
5892 if (buf != NULL)
5893 *buf = '<';
5894 break;
5895
5896 default:
5897 /* Not recognized: just copy the '<' and return -1. */
5898 result = (size_t)-1;
5899 if (buf != NULL)
5900 *buf = '<';
5901 break;
5902 }
5903
5904 return result;
5905}
5906
5907 static void
5908do_ucmd(eap)
5909 exarg_T *eap;
5910{
5911 char_u *buf;
5912 char_u *p;
5913 char_u *q;
5914
5915 char_u *start;
5916 char_u *end;
5917 size_t len, totlen;
5918
5919 size_t split_len = 0;
5920 char_u *split_buf = NULL;
5921 ucmd_T *cmd;
5922#ifdef FEAT_EVAL
5923 scid_T save_current_SID = current_SID;
5924#endif
5925
5926 if (eap->cmdidx == CMD_USER)
5927 cmd = USER_CMD(eap->useridx);
5928 else
5929 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5930
5931 /*
5932 * Replace <> in the command by the arguments.
5933 */
5934 buf = NULL;
5935 for (;;)
5936 {
5937 p = cmd->uc_rep;
5938 q = buf;
5939 totlen = 0;
5940 while ((start = vim_strchr(p, '<')) != NULL
5941 && (end = vim_strchr(start + 1, '>')) != NULL)
5942 {
5943 /* Include the '>' */
5944 ++end;
5945
5946 /* Take everything up to the '<' */
5947 len = start - p;
5948 if (buf == NULL)
5949 totlen += len;
5950 else
5951 {
5952 mch_memmove(q, p, len);
5953 q += len;
5954 }
5955
5956 len = uc_check_code(start, end - start, q, cmd, eap,
5957 &split_buf, &split_len);
5958 if (len == (size_t)-1)
5959 {
5960 /* no match, continue after '<' */
5961 p = start + 1;
5962 len = 1;
5963 }
5964 else
5965 p = end;
5966 if (buf == NULL)
5967 totlen += len;
5968 else
5969 q += len;
5970 }
5971 if (buf != NULL) /* second time here, finished */
5972 {
5973 STRCPY(q, p);
5974 break;
5975 }
5976
5977 totlen += STRLEN(p); /* Add on the trailing characters */
5978 buf = alloc((unsigned)(totlen + 1));
5979 if (buf == NULL)
5980 {
5981 vim_free(split_buf);
5982 return;
5983 }
5984 }
5985
5986#ifdef FEAT_EVAL
5987 current_SID = cmd->uc_scriptID;
5988#endif
5989 (void)do_cmdline(buf, eap->getline, eap->cookie,
5990 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5991#ifdef FEAT_EVAL
5992 current_SID = save_current_SID;
5993#endif
5994 vim_free(buf);
5995 vim_free(split_buf);
5996}
5997
5998# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5999 static char_u *
6000get_user_command_name(idx)
6001 int idx;
6002{
6003 return get_user_commands(NULL, idx - (int)CMD_SIZE);
6004}
6005
6006/*
6007 * Function given to ExpandGeneric() to obtain the list of user command names.
6008 */
6009/*ARGSUSED*/
6010 char_u *
6011get_user_commands(xp, idx)
6012 expand_T *xp;
6013 int idx;
6014{
6015 if (idx < curbuf->b_ucmds.ga_len)
6016 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
6017 idx -= curbuf->b_ucmds.ga_len;
6018 if (idx < ucmds.ga_len)
6019 return USER_CMD(idx)->uc_name;
6020 return NULL;
6021}
6022
6023/*
6024 * Function given to ExpandGeneric() to obtain the list of user command
6025 * attributes.
6026 */
6027/*ARGSUSED*/
6028 char_u *
6029get_user_cmd_flags(xp, idx)
6030 expand_T *xp;
6031 int idx;
6032{
6033 static char *user_cmd_flags[] =
6034 {"bang", "bar", "buffer", "complete", "count",
6035 "nargs", "range", "register"};
6036
6037 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
6038 return NULL;
6039 return (char_u *)user_cmd_flags[idx];
6040}
6041
6042/*
6043 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
6044 */
6045/*ARGSUSED*/
6046 char_u *
6047get_user_cmd_nargs(xp, idx)
6048 expand_T *xp;
6049 int idx;
6050{
6051 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
6052
6053 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
6054 return NULL;
6055 return (char_u *)user_cmd_nargs[idx];
6056}
6057
6058/*
6059 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6060 */
6061/*ARGSUSED*/
6062 char_u *
6063get_user_cmd_complete(xp, idx)
6064 expand_T *xp;
6065 int idx;
6066{
6067 return (char_u *)command_complete[idx].name;
6068}
6069# endif /* FEAT_CMDL_COMPL */
6070
6071#endif /* FEAT_USR_CMDS */
6072
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006073#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6074/*
6075 * Parse a completion argument "value[vallen]".
6076 * The detected completion goes in "*complp", argument type in "*argt".
6077 * When there is an argument, for function and user defined completion, it's
6078 * copied to allocated memory and stored in "*compl_arg".
6079 * Returns FAIL if something is wrong.
6080 */
6081 int
6082parse_compl_arg(value, vallen, complp, argt, compl_arg)
6083 char_u *value;
6084 int vallen;
6085 int *complp;
6086 long *argt;
6087 char_u **compl_arg;
6088{
6089 char_u *arg = NULL;
6090 size_t arglen = 0;
6091 int i;
6092 int valend = vallen;
6093
6094 /* Look for any argument part - which is the part after any ',' */
6095 for (i = 0; i < vallen; ++i)
6096 {
6097 if (value[i] == ',')
6098 {
6099 arg = &value[i + 1];
6100 arglen = vallen - i - 1;
6101 valend = i;
6102 break;
6103 }
6104 }
6105
6106 for (i = 0; command_complete[i].expand != 0; ++i)
6107 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006108 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006109 && STRNCMP(value, command_complete[i].name, valend) == 0)
6110 {
6111 *complp = command_complete[i].expand;
6112 if (command_complete[i].expand == EXPAND_BUFFERS)
6113 *argt |= BUFNAME;
6114 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6115 || command_complete[i].expand == EXPAND_FILES)
6116 *argt |= XFILE;
6117 break;
6118 }
6119 }
6120
6121 if (command_complete[i].expand == 0)
6122 {
6123 EMSG2(_("E180: Invalid complete value: %s"), value);
6124 return FAIL;
6125 }
6126
6127# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6128 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6129 && arg != NULL)
6130# else
6131 if (arg != NULL)
6132# endif
6133 {
6134 EMSG(_("E468: Completion argument only allowed for custom completion"));
6135 return FAIL;
6136 }
6137
6138# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6139 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6140 && arg == NULL)
6141 {
6142 EMSG(_("E467: Custom completion requires a function argument"));
6143 return FAIL;
6144 }
6145
6146 if (arg != NULL)
6147 *compl_arg = vim_strnsave(arg, (int)arglen);
6148# endif
6149 return OK;
6150}
6151#endif
6152
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 static void
6154ex_colorscheme(eap)
6155 exarg_T *eap;
6156{
6157 if (load_colors(eap->arg) == FAIL)
6158 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6159}
6160
6161 static void
6162ex_highlight(eap)
6163 exarg_T *eap;
6164{
6165 if (*eap->arg == NUL && eap->cmd[2] == '!')
6166 MSG(_("Greetings, Vim user!"));
6167 do_highlight(eap->arg, eap->forceit, FALSE);
6168}
6169
6170
6171/*
6172 * Call this function if we thought we were going to exit, but we won't
6173 * (because of an error). May need to restore the terminal mode.
6174 */
6175 void
6176not_exiting()
6177{
6178 exiting = FALSE;
6179 settmode(TMODE_RAW);
6180}
6181
6182/*
6183 * ":quit": quit current window, quit Vim if closed the last window.
6184 */
6185 static void
6186ex_quit(eap)
6187 exarg_T *eap;
6188{
6189#ifdef FEAT_CMDWIN
6190 if (cmdwin_type != 0)
6191 {
6192 cmdwin_result = Ctrl_C;
6193 return;
6194 }
6195#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006196 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006197 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006198 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006199 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006200 return;
6201 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006202#ifdef FEAT_AUTOCMD
6203 if (curbuf_locked())
6204 return;
6205#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206
6207#ifdef FEAT_NETBEANS_INTG
6208 netbeansForcedQuit = eap->forceit;
6209#endif
6210
6211 /*
6212 * If there are more files or windows we won't exit.
6213 */
6214 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6215 exiting = TRUE;
6216 if ((!P_HID(curbuf)
6217 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6218 || check_more(TRUE, eap->forceit) == FAIL
6219 || (only_one_window() && check_changed_any(eap->forceit)))
6220 {
6221 not_exiting();
6222 }
6223 else
6224 {
6225#ifdef FEAT_WINDOWS
6226 if (only_one_window()) /* quit last window */
6227#endif
6228 getout(0);
6229#ifdef FEAT_WINDOWS
6230# ifdef FEAT_GUI
6231 need_mouse_correct = TRUE;
6232# endif
6233 /* close window; may free buffer */
6234 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6235#endif
6236 }
6237}
6238
6239/*
6240 * ":cquit".
6241 */
6242/*ARGSUSED*/
6243 static void
6244ex_cquit(eap)
6245 exarg_T *eap;
6246{
6247 getout(1); /* this does not always pass on the exit code to the Manx
6248 compiler. why? */
6249}
6250
6251/*
6252 * ":qall": try to quit all windows
6253 */
6254 static void
6255ex_quit_all(eap)
6256 exarg_T *eap;
6257{
6258# ifdef FEAT_CMDWIN
6259 if (cmdwin_type != 0)
6260 {
6261 if (eap->forceit)
6262 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6263 else
6264 cmdwin_result = K_XF2;
6265 return;
6266 }
6267# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006268
6269 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006270 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006271 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006272 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006273 return;
6274 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006275#ifdef FEAT_AUTOCMD
6276 if (curbuf_locked())
6277 return;
6278#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006279
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 exiting = TRUE;
6281 if (eap->forceit || !check_changed_any(FALSE))
6282 getout(0);
6283 not_exiting();
6284}
6285
Bram Moolenaard9967712006-03-11 21:18:15 +00006286#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287/*
6288 * ":close": close current window, unless it is the last one
6289 */
6290 static void
6291ex_close(eap)
6292 exarg_T *eap;
6293{
6294# ifdef FEAT_CMDWIN
6295 if (cmdwin_type != 0)
6296 cmdwin_result = K_IGNORE;
6297 else
6298# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006299 if (!text_locked()
6300#ifdef FEAT_AUTOCMD
6301 && !curbuf_locked()
6302#endif
6303 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006304 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305}
6306
Bram Moolenaard9967712006-03-11 21:18:15 +00006307# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006308/*
6309 * ":pclose": Close any preview window.
6310 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006312ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006314{
6315 win_T *win;
6316
6317 for (win = firstwin; win != NULL; win = win->w_next)
6318 if (win->w_p_pvw)
6319 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006320 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006321 break;
6322 }
6323}
Bram Moolenaard9967712006-03-11 21:18:15 +00006324# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006325
Bram Moolenaarf740b292006-02-16 22:11:02 +00006326/*
6327 * Close window "win" and take care of handling closing the last window for a
6328 * modified buffer.
6329 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006330 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006331ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006332 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006333 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006334 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335{
6336 int need_hide;
6337 buf_T *buf = win->w_buffer;
6338
6339 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006340 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006342# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006343 if ((p_confirm || cmdmod.confirm) && p_write)
6344 {
6345 dialog_changed(buf, FALSE);
6346 if (buf_valid(buf) && bufIsChanged(buf))
6347 return;
6348 need_hide = FALSE;
6349 }
6350 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006351# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352 {
6353 EMSG(_(e_nowrtmsg));
6354 return;
6355 }
6356 }
6357
Bram Moolenaard9967712006-03-11 21:18:15 +00006358# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006360# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006361
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006363 if (tp == NULL)
6364 win_close(win, !need_hide && !P_HID(buf));
6365 else
6366 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367}
6368
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006370 * ":tabclose": close current tab page, unless it is the last one.
6371 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372 */
6373 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006374ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006375 exarg_T *eap;
6376{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006377 tabpage_T *tp;
6378
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006379# ifdef FEAT_CMDWIN
6380 if (cmdwin_type != 0)
6381 cmdwin_result = K_IGNORE;
6382 else
6383# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006384 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006385 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006386 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006388 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006389 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006390 tp = find_tabpage((int)eap->line2);
6391 if (tp == NULL)
6392 {
6393 beep_flush();
6394 return;
6395 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006396 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006397 {
6398 tabpage_close_other(tp, eap->forceit);
6399 return;
6400 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006401 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006402 if (!text_locked()
6403#ifdef FEAT_AUTOCMD
6404 && !curbuf_locked()
6405#endif
6406 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006407 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006409}
6410
6411/*
6412 * ":tabonly": close all tab pages except the current one
6413 */
6414 static void
6415ex_tabonly(eap)
6416 exarg_T *eap;
6417{
6418 tabpage_T *tp;
6419 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006420
6421# ifdef FEAT_CMDWIN
6422 if (cmdwin_type != 0)
6423 cmdwin_result = K_IGNORE;
6424 else
6425# endif
6426 if (first_tabpage->tp_next == NULL)
6427 MSG(_("Already only one tab page"));
6428 else
6429 {
6430 /* Repeat this up to a 1000 times, because autocommands may mess
6431 * up the lists. */
6432 for (done = 0; done < 1000; ++done)
6433 {
6434 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6435 if (tp->tp_topframe != topframe)
6436 {
6437 tabpage_close_other(tp, eap->forceit);
6438 /* if we failed to close it quit */
6439 if (valid_tabpage(tp))
6440 done = 1000;
6441 /* start over, "tp" is now invalid */
6442 break;
6443 }
6444 if (first_tabpage->tp_next == NULL)
6445 break;
6446 }
6447 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006448}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449
6450/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006451 * Close the current tab page.
6452 */
6453 void
6454tabpage_close(forceit)
6455 int forceit;
6456{
6457 /* First close all the windows but the current one. If that worked then
6458 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006459 if (lastwin != firstwin)
6460 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006461 if (lastwin == firstwin)
6462 ex_win_close(forceit, curwin, NULL);
6463# ifdef FEAT_GUI
6464 need_mouse_correct = TRUE;
6465# endif
6466}
6467
6468/*
6469 * Close tab page "tp", which is not the current tab page.
6470 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006471 * Also takes care of the tab pages line disappearing when closing the
6472 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006473 */
6474 void
6475tabpage_close_other(tp, forceit)
6476 tabpage_T *tp;
6477 int forceit;
6478{
6479 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006480 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006481 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006482
6483 /* Limit to 1000 windows, autocommands may add a window while we close
6484 * one. OK, so I'm paranoid... */
6485 while (++done < 1000)
6486 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006487 wp = tp->tp_firstwin;
6488 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006489
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006490 /* Autocommands may delete the tab page under our fingers and we may
6491 * fail to close a window with a modified buffer. */
6492 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006493 break;
6494 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006495
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006496 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006497 if (h != tabline_height())
6498 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006499}
6500
6501/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502 * ":only".
6503 */
6504 static void
6505ex_only(eap)
6506 exarg_T *eap;
6507{
6508# ifdef FEAT_GUI
6509 need_mouse_correct = TRUE;
6510# endif
6511 close_others(TRUE, eap->forceit);
6512}
6513
6514/*
6515 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006516 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006517 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006518 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519ex_all(eap)
6520 exarg_T *eap;
6521{
6522 if (eap->addr_count == 0)
6523 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006524 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006525}
6526#endif /* FEAT_WINDOWS */
6527
6528 static void
6529ex_hide(eap)
6530 exarg_T *eap;
6531{
6532 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6533 eap->errmsg = e_invarg;
6534 else
6535 {
6536 /* ":hide" or ":hide | cmd": hide current window */
6537 eap->nextcmd = check_nextcmd(eap->arg);
6538#ifdef FEAT_WINDOWS
6539 if (!eap->skip)
6540 {
6541# ifdef FEAT_GUI
6542 need_mouse_correct = TRUE;
6543# endif
6544 win_close(curwin, FALSE); /* don't free buffer */
6545 }
6546#endif
6547 }
6548}
6549
6550/*
6551 * ":stop" and ":suspend": Suspend Vim.
6552 */
6553 static void
6554ex_stop(eap)
6555 exarg_T *eap;
6556{
6557 /*
6558 * Disallow suspending for "rvim".
6559 */
6560 if (!check_restricted()
6561#ifdef WIN3264
6562 /*
6563 * Check if external commands are allowed now.
6564 */
6565 && can_end_termcap_mode(TRUE)
6566#endif
6567 )
6568 {
6569 if (!eap->forceit)
6570 autowrite_all();
6571 windgoto((int)Rows - 1, 0);
6572 out_char('\n');
6573 out_flush();
6574 stoptermcap();
6575 out_flush(); /* needed for SUN to restore xterm buffer */
6576#ifdef FEAT_TITLE
6577 mch_restore_title(3); /* restore window titles */
6578#endif
6579 ui_suspend(); /* call machine specific function */
6580#ifdef FEAT_TITLE
6581 maketitle();
6582 resettitle(); /* force updating the title */
6583#endif
6584 starttermcap();
6585 scroll_start(); /* scroll screen before redrawing */
6586 redraw_later_clear();
6587 shell_resized(); /* may have resized window */
6588 }
6589}
6590
6591/*
6592 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6593 */
6594 static void
6595ex_exit(eap)
6596 exarg_T *eap;
6597{
6598#ifdef FEAT_CMDWIN
6599 if (cmdwin_type != 0)
6600 {
6601 cmdwin_result = Ctrl_C;
6602 return;
6603 }
6604#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006605 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006606 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006607 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006608 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006609 return;
6610 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006611#ifdef FEAT_AUTOCMD
6612 if (curbuf_locked())
6613 return;
6614#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615
6616 /*
6617 * if more files or windows we won't exit
6618 */
6619 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6620 exiting = TRUE;
6621 if ( ((eap->cmdidx == CMD_wq
6622 || curbufIsChanged())
6623 && do_write(eap) == FAIL)
6624 || check_more(TRUE, eap->forceit) == FAIL
6625 || (only_one_window() && check_changed_any(eap->forceit)))
6626 {
6627 not_exiting();
6628 }
6629 else
6630 {
6631#ifdef FEAT_WINDOWS
6632 if (only_one_window()) /* quit last window, exit Vim */
6633#endif
6634 getout(0);
6635#ifdef FEAT_WINDOWS
6636# ifdef FEAT_GUI
6637 need_mouse_correct = TRUE;
6638# endif
6639 /* quit current window, may free buffer */
6640 win_close(curwin, !P_HID(curwin->w_buffer));
6641#endif
6642 }
6643}
6644
6645/*
6646 * ":print", ":list", ":number".
6647 */
6648 static void
6649ex_print(eap)
6650 exarg_T *eap;
6651{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006652 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6653 EMSG(_(e_emptybuf));
6654 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006656 for ( ;!got_int; ui_breakcheck())
6657 {
6658 print_line(eap->line1,
6659 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6660 || (eap->flags & EXFLAG_NR)),
6661 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6662 if (++eap->line1 > eap->line2)
6663 break;
6664 out_flush(); /* show one line at a time */
6665 }
6666 setpcmark();
6667 /* put cursor at last line */
6668 curwin->w_cursor.lnum = eap->line2;
6669 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670 }
6671
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006673}
6674
6675#ifdef FEAT_BYTEOFF
6676 static void
6677ex_goto(eap)
6678 exarg_T *eap;
6679{
6680 goto_byte(eap->line2);
6681}
6682#endif
6683
6684/*
6685 * ":shell".
6686 */
6687/*ARGSUSED*/
6688 static void
6689ex_shell(eap)
6690 exarg_T *eap;
6691{
6692 do_shell(NULL, 0);
6693}
6694
6695#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6696 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006697 || defined(FEAT_GUI_MSWIN) \
6698 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 || defined(PROTO)
6700
6701/*
6702 * Handle a file drop. The code is here because a drop is *nearly* like an
6703 * :args command, but not quite (we have a list of exact filenames, so we
6704 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6705 * code is very similar to :args and hence needs access to a lot of the static
6706 * functions in this file.
6707 *
6708 * The list should be allocated using alloc(), as should each item in the
6709 * list. This function takes over responsibility for freeing the list.
6710 *
Bram Moolenaar81870892007-11-11 18:17:28 +00006711 * XXX The list is made into the argument list. This is freed using
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6713 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6714 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6715 * file functionality is (currently) not in EMX this is not presently a
6716 * problem.
6717 */
6718 void
6719handle_drop(filec, filev, split)
6720 int filec; /* the number of files dropped */
6721 char_u **filev; /* the list of files dropped */
6722 int split; /* force splitting the window */
6723{
6724 exarg_T ea;
6725 int save_msg_scroll = msg_scroll;
6726
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006727 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006728 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006730#ifdef FEAT_AUTOCMD
6731 if (curbuf_locked())
6732 return;
6733#endif
Bram Moolenaarc236c162008-07-13 17:41:49 +00006734 /* When the screen is being updated we should not change buffers and
6735 * windows structures, it may cause freed memory to be used. */
6736 if (updating_screen)
6737 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738
6739 /* Check whether the current buffer is changed. If so, we will need
6740 * to split the current window or data could be lost.
6741 * We don't need to check if the 'hidden' option is set, as in this
6742 * case the buffer won't be lost.
6743 */
6744 if (!P_HID(curbuf) && !split)
6745 {
6746 ++emsg_off;
6747 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6748 --emsg_off;
6749 }
6750 if (split)
6751 {
6752# ifdef FEAT_WINDOWS
6753 if (win_split(0, 0) == FAIL)
6754 return;
6755# ifdef FEAT_SCROLLBIND
6756 curwin->w_p_scb = FALSE;
6757# endif
6758
6759 /* When splitting the window, create a new alist. Otherwise the
6760 * existing one is overwritten. */
6761 alist_unlink(curwin->w_alist);
6762 alist_new();
6763# else
6764 return; /* can't split, always fail */
6765# endif
6766 }
6767
6768 /*
6769 * Set up the new argument list.
6770 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006771 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772
6773 /*
6774 * Move to the first file.
6775 */
6776 /* Fake up a minimal "next" command for do_argfile() */
6777 vim_memset(&ea, 0, sizeof(ea));
6778 ea.cmd = (char_u *)"next";
6779 do_argfile(&ea, 0);
6780
6781 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6782 * mode that is not needed here. */
6783 need_start_insertmode = FALSE;
6784
6785 /* Restore msg_scroll, otherwise a following command may cause scrolling
6786 * unexpectedly. The screen will be redrawn by the caller, thus
6787 * msg_scroll being set by displaying a message is irrelevant. */
6788 msg_scroll = save_msg_scroll;
6789}
6790#endif
6791
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792/*
6793 * Clear an argument list: free all file names and reset it to zero entries.
6794 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006795 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796alist_clear(al)
6797 alist_T *al;
6798{
6799 while (--al->al_ga.ga_len >= 0)
6800 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6801 ga_clear(&al->al_ga);
6802}
6803
6804/*
6805 * Init an argument list.
6806 */
6807 void
6808alist_init(al)
6809 alist_T *al;
6810{
6811 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6812}
6813
6814#if defined(FEAT_WINDOWS) || defined(PROTO)
6815
6816/*
6817 * Remove a reference from an argument list.
6818 * Ignored when the argument list is the global one.
6819 * If the argument list is no longer used by any window, free it.
6820 */
6821 void
6822alist_unlink(al)
6823 alist_T *al;
6824{
6825 if (al != &global_alist && --al->al_refcount <= 0)
6826 {
6827 alist_clear(al);
6828 vim_free(al);
6829 }
6830}
6831
6832# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6833/*
6834 * Create a new argument list and use it for the current window.
6835 */
6836 void
6837alist_new()
6838{
6839 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6840 if (curwin->w_alist == NULL)
6841 {
6842 curwin->w_alist = &global_alist;
6843 ++global_alist.al_refcount;
6844 }
6845 else
6846 {
6847 curwin->w_alist->al_refcount = 1;
6848 alist_init(curwin->w_alist);
6849 }
6850}
6851# endif
6852#endif
6853
6854#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6855/*
6856 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006857 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6858 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859 */
6860 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006861alist_expand(fnum_list, fnum_len)
6862 int *fnum_list;
6863 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864{
6865 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006866 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867 char_u **new_arg_files;
6868 int new_arg_file_count;
6869 char_u *save_p_su = p_su;
6870 int i;
6871
6872 /* Don't use 'suffixes' here. This should work like the shell did the
6873 * expansion. Also, the vimrc file isn't read yet, thus the user
6874 * can't set the options. */
6875 p_su = empty_option;
6876 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6877 if (old_arg_files != NULL)
6878 {
6879 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006880 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6881 old_arg_count = GARGCOUNT;
6882 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883 &new_arg_file_count, &new_arg_files,
6884 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6885 && new_arg_file_count > 0)
6886 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006887 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6888 TRUE, fnum_list, fnum_len);
6889 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891 }
6892 p_su = save_p_su;
6893}
6894#endif
6895
6896/*
6897 * Set the argument list for the current window.
6898 * Takes over the allocated files[] and the allocated fnames in it.
6899 */
6900 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006901alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006902 alist_T *al;
6903 int count;
6904 char_u **files;
6905 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006906 int *fnum_list;
6907 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908{
6909 int i;
6910
6911 alist_clear(al);
6912 if (ga_grow(&al->al_ga, count) == OK)
6913 {
6914 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006915 {
6916 if (got_int)
6917 {
6918 /* When adding many buffers this can take a long time. Allow
6919 * interrupting here. */
6920 while (i < count)
6921 vim_free(files[i++]);
6922 break;
6923 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006924
6925 /* May set buffer name of a buffer previously used for the
6926 * argument list, so that it's re-used by alist_add. */
6927 if (fnum_list != NULL && i < fnum_len)
6928 buf_set_name(fnum_list[i], files[i]);
6929
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006931 ui_breakcheck();
6932 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006933 vim_free(files);
6934 }
6935 else
6936 FreeWild(count, files);
6937#ifdef FEAT_WINDOWS
6938 if (al == &global_alist)
6939#endif
6940 arg_had_last = FALSE;
6941}
6942
6943/*
6944 * Add file "fname" to argument list "al".
6945 * "fname" must have been allocated and "al" must have been checked for room.
6946 */
6947 void
6948alist_add(al, fname, set_fnum)
6949 alist_T *al;
6950 char_u *fname;
6951 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6952{
6953 if (fname == NULL) /* don't add NULL file names */
6954 return;
6955#ifdef BACKSLASH_IN_FILENAME
6956 slash_adjust(fname);
6957#endif
6958 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6959 if (set_fnum > 0)
6960 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6961 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6962 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963}
6964
6965#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6966/*
6967 * Adjust slashes in file names. Called after 'shellslash' was set.
6968 */
6969 void
6970alist_slash_adjust()
6971{
6972 int i;
6973# ifdef FEAT_WINDOWS
6974 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006975 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006976# endif
6977
6978 for (i = 0; i < GARGCOUNT; ++i)
6979 if (GARGLIST[i].ae_fname != NULL)
6980 slash_adjust(GARGLIST[i].ae_fname);
6981# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006982 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006983 if (wp->w_alist != &global_alist)
6984 for (i = 0; i < WARGCOUNT(wp); ++i)
6985 if (WARGLIST(wp)[i].ae_fname != NULL)
6986 slash_adjust(WARGLIST(wp)[i].ae_fname);
6987# endif
6988}
6989#endif
6990
6991/*
6992 * ":preserve".
6993 */
6994/*ARGSUSED*/
6995 static void
6996ex_preserve(eap)
6997 exarg_T *eap;
6998{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006999 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000 ml_preserve(curbuf, TRUE);
7001}
7002
7003/*
7004 * ":recover".
7005 */
7006 static void
7007ex_recover(eap)
7008 exarg_T *eap;
7009{
7010 /* Set recoverymode right away to avoid the ATTENTION prompt. */
7011 recoverymode = TRUE;
7012 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
7013 && (*eap->arg == NUL
7014 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
7015 ml_recover();
7016 recoverymode = FALSE;
7017}
7018
7019/*
7020 * Command modifier used in a wrong way.
7021 */
7022 static void
7023ex_wrongmodifier(eap)
7024 exarg_T *eap;
7025{
7026 eap->errmsg = e_invcmd;
7027}
7028
7029#ifdef FEAT_WINDOWS
7030/*
7031 * :sview [+command] file split window with new file, read-only
7032 * :split [[+command] file] split window with current or new file
7033 * :vsplit [[+command] file] split window vertically with current or new file
7034 * :new [[+command] file] split window with no or new file
7035 * :vnew [[+command] file] split vertically window with no or new file
7036 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007037 *
7038 * :tabedit open new Tab page with empty window
7039 * :tabedit [+command] file open new Tab page and edit "file"
7040 * :tabnew [[+command] file] just like :tabedit
7041 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007042 */
7043 void
7044ex_splitview(eap)
7045 exarg_T *eap;
7046{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007047 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007048# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007050# endif
7051# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007053# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007055# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
7057 {
7058 ex_ni(eap);
7059 return;
7060 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007061# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007062
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007063# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007065# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007067# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007068 /* A ":split" in the quickfix window works like ":new". Don't want two
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007069 * quickfix windows. But it's OK when doing ":tab split". */
7070 if (bt_quickfix(curbuf) && cmdmod.tab == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007071 {
7072 if (eap->cmdidx == CMD_split)
7073 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007074# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007075 if (eap->cmdidx == CMD_vsplit)
7076 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007077# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007079# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007081# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007082 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007083 {
7084 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7085 FNAME_MESS, TRUE, curbuf->b_ffname);
7086 if (fname == NULL)
7087 goto theend;
7088 eap->arg = fname;
7089 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007090# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007092# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007094# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007096# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007098# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007099 && eap->cmdidx != CMD_new)
7100 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00007101# ifdef FEAT_AUTOCMD
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007102 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00007103# ifdef FEAT_GUI
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007104 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00007105# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007106 au_has_group((char_u *)"FileExplorer"))
7107 {
7108 /* No browsing supported but we do have the file explorer:
7109 * Edit the directory. */
7110 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7111 eap->arg = (char_u *)".";
7112 }
7113 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00007114# endif
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007115 {
7116 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007118 if (fname == NULL)
7119 goto theend;
7120 eap->arg = fname;
7121 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007122 }
7123 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007124# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007125
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007126 /*
7127 * Either open new tab page or split the window.
7128 */
7129 if (eap->cmdidx == CMD_tabedit
7130 || eap->cmdidx == CMD_tabfind
7131 || eap->cmdidx == CMD_tabnew)
7132 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007133 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7134 : eap->addr_count == 0 ? 0
7135 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007136 {
Bram Moolenaard2b66012008-01-09 19:30:36 +00007137 do_exedit(eap, old_curwin);
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007138
7139 /* set the alternate buffer for the window we came from */
7140 if (curwin != old_curwin
7141 && win_valid(old_curwin)
7142 && old_curwin->w_buffer != curbuf
7143 && !cmdmod.keepalt)
7144 old_curwin->w_alt_fnum = curbuf->b_fnum;
7145 }
7146 }
7147 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7149 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007150# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007151 /* Reset 'scrollbind' when editing another file, but keep it when
7152 * doing ":split" without arguments. */
7153 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007154# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007156# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007157 )
7158 curwin->w_p_scb = FALSE;
7159 else
7160 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007161# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162 do_exedit(eap, old_curwin);
7163 }
7164
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007165# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007167# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007168
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007169# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007170theend:
7171 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007172# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007174
7175/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007176 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007177 */
7178 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007179tabpage_new()
7180{
7181 exarg_T ea;
7182
7183 vim_memset(&ea, 0, sizeof(ea));
7184 ea.cmdidx = CMD_tabnew;
7185 ea.cmd = (char_u *)"tabn";
7186 ea.arg = (char_u *)"";
7187 ex_splitview(&ea);
7188}
7189
7190/*
7191 * :tabnext command
7192 */
7193 static void
7194ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007195 exarg_T *eap;
7196{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007197 switch (eap->cmdidx)
7198 {
7199 case CMD_tabfirst:
7200 case CMD_tabrewind:
7201 goto_tabpage(1);
7202 break;
7203 case CMD_tablast:
7204 goto_tabpage(9999);
7205 break;
7206 case CMD_tabprevious:
7207 case CMD_tabNext:
7208 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7209 break;
7210 default: /* CMD_tabnext */
7211 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7212 break;
7213 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007214}
7215
7216/*
7217 * :tabmove command
7218 */
7219 static void
7220ex_tabmove(eap)
7221 exarg_T *eap;
7222{
7223 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007224}
7225
7226/*
7227 * :tabs command: List tabs and their contents.
7228 */
7229/*ARGSUSED*/
7230 static void
7231ex_tabs(eap)
7232 exarg_T *eap;
7233{
7234 tabpage_T *tp;
7235 win_T *wp;
7236 int tabcount = 1;
7237
7238 msg_start();
7239 msg_scroll = TRUE;
7240 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7241 {
7242 msg_putchar('\n');
7243 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7244 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7245 out_flush(); /* output one line at a time */
7246 ui_breakcheck();
7247
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007248 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007249 wp = firstwin;
7250 else
7251 wp = tp->tp_firstwin;
7252 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7253 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007254 msg_putchar('\n');
7255 msg_putchar(wp == curwin ? '>' : ' ');
7256 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007257 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7258 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007259 if (buf_spname(wp->w_buffer) != NULL)
7260 STRCPY(IObuff, buf_spname(wp->w_buffer));
7261 else
7262 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7263 IObuff, IOSIZE, TRUE);
7264 msg_outtrans(IObuff);
7265 out_flush(); /* output one line at a time */
7266 ui_breakcheck();
7267 }
7268 }
7269}
7270
7271#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272
7273/*
7274 * ":mode": Set screen mode.
7275 * If no argument given, just get the screen size and redraw.
7276 */
7277 static void
7278ex_mode(eap)
7279 exarg_T *eap;
7280{
7281 if (*eap->arg == NUL)
7282 shell_resized();
7283 else
7284 mch_screenmode(eap->arg);
7285}
7286
7287#ifdef FEAT_WINDOWS
7288/*
7289 * ":resize".
7290 * set, increment or decrement current window height
7291 */
7292 static void
7293ex_resize(eap)
7294 exarg_T *eap;
7295{
7296 int n;
7297 win_T *wp = curwin;
7298
7299 if (eap->addr_count > 0)
7300 {
7301 n = eap->line2;
7302 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7303 ;
7304 }
7305
7306#ifdef FEAT_GUI
7307 need_mouse_correct = TRUE;
7308#endif
7309 n = atol((char *)eap->arg);
7310#ifdef FEAT_VERTSPLIT
7311 if (cmdmod.split & WSP_VERT)
7312 {
7313 if (*eap->arg == '-' || *eap->arg == '+')
7314 n += W_WIDTH(curwin);
7315 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7316 n = 9999;
7317 win_setwidth_win((int)n, wp);
7318 }
7319 else
7320#endif
7321 {
7322 if (*eap->arg == '-' || *eap->arg == '+')
7323 n += curwin->w_height;
7324 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7325 n = 9999;
7326 win_setheight_win((int)n, wp);
7327 }
7328}
7329#endif
7330
7331/*
7332 * ":find [+command] <file>" command.
7333 */
7334 static void
7335ex_find(eap)
7336 exarg_T *eap;
7337{
7338#ifdef FEAT_SEARCHPATH
7339 char_u *fname;
7340 int count;
7341
7342 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7343 TRUE, curbuf->b_ffname);
7344 if (eap->addr_count > 0)
7345 {
7346 /* Repeat finding the file "count" times. This matters when it
7347 * appears several times in the path. */
7348 count = eap->line2;
7349 while (fname != NULL && --count > 0)
7350 {
7351 vim_free(fname);
7352 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7353 FALSE, curbuf->b_ffname);
7354 }
7355 }
7356
7357 if (fname != NULL)
7358 {
7359 eap->arg = fname;
7360#endif
7361 do_exedit(eap, NULL);
7362#ifdef FEAT_SEARCHPATH
7363 vim_free(fname);
7364 }
7365#endif
7366}
7367
7368/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007369 * ":open" simulation: for now just work like ":visual".
7370 */
7371 static void
7372ex_open(eap)
7373 exarg_T *eap;
7374{
7375 regmatch_T regmatch;
7376 char_u *p;
7377
7378 curwin->w_cursor.lnum = eap->line2;
7379 beginline(BL_SOL | BL_FIX);
7380 if (*eap->arg == '/')
7381 {
7382 /* ":open /pattern/": put cursor in column found with pattern */
7383 ++eap->arg;
7384 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7385 *p = NUL;
7386 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7387 if (regmatch.regprog != NULL)
7388 {
7389 regmatch.rm_ic = p_ic;
7390 p = ml_get_curline();
7391 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007392 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007393 else
7394 EMSG(_(e_nomatch));
7395 vim_free(regmatch.regprog);
7396 }
7397 /* Move to the NUL, ignore any other arguments. */
7398 eap->arg += STRLEN(eap->arg);
7399 }
7400 check_cursor();
7401
7402 eap->cmdidx = CMD_visual;
7403 do_exedit(eap, NULL);
7404}
7405
7406/*
7407 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007408 */
7409 static void
7410ex_edit(eap)
7411 exarg_T *eap;
7412{
7413 do_exedit(eap, NULL);
7414}
7415
7416/*
7417 * ":edit <file>" command and alikes.
7418 */
7419/*ARGSUSED*/
7420 void
7421do_exedit(eap, old_curwin)
7422 exarg_T *eap;
7423 win_T *old_curwin; /* curwin before doing a split or NULL */
7424{
7425 int n;
7426#ifdef FEAT_WINDOWS
7427 int need_hide;
7428#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007429 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430
7431 /*
7432 * ":vi" command ends Ex mode.
7433 */
7434 if (exmode_active && (eap->cmdidx == CMD_visual
7435 || eap->cmdidx == CMD_view))
7436 {
7437 exmode_active = FALSE;
7438 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007439 {
7440 /* Special case: ":global/pat/visual\NLvi-commands" */
7441 if (global_busy)
7442 {
7443 int rd = RedrawingDisabled;
7444 int nwr = no_wait_return;
7445 int ms = msg_scroll;
7446#ifdef FEAT_GUI
7447 int he = hold_gui_events;
7448#endif
7449
7450 if (eap->nextcmd != NULL)
7451 {
7452 stuffReadbuff(eap->nextcmd);
7453 eap->nextcmd = NULL;
7454 }
7455
7456 if (exmode_was != EXMODE_VIM)
7457 settmode(TMODE_RAW);
7458 RedrawingDisabled = 0;
7459 no_wait_return = 0;
7460 need_wait_return = FALSE;
7461 msg_scroll = 0;
7462#ifdef FEAT_GUI
7463 hold_gui_events = 0;
7464#endif
7465 must_redraw = CLEAR;
7466
7467 main_loop(FALSE, TRUE);
7468
7469 RedrawingDisabled = rd;
7470 no_wait_return = nwr;
7471 msg_scroll = ms;
7472#ifdef FEAT_GUI
7473 hold_gui_events = he;
7474#endif
7475 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007476 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007477 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007478 }
7479
7480 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007481 || eap->cmdidx == CMD_tabnew
7482 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007483#ifdef FEAT_VERTSPLIT
7484 || eap->cmdidx == CMD_vnew
7485#endif
7486 ) && *eap->arg == NUL)
7487 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007488 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007489 setpcmark();
7490 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7491 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7492 }
7493 else if ((eap->cmdidx != CMD_split
7494#ifdef FEAT_VERTSPLIT
7495 && eap->cmdidx != CMD_vsplit
7496#endif
7497 )
7498 || *eap->arg != NUL
7499#ifdef FEAT_BROWSE
7500 || cmdmod.browse
7501#endif
7502 )
7503 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007504#ifdef FEAT_AUTOCMD
7505 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7506 * can bring us here, others are stopped earlier. */
7507 if (*eap->arg != NUL && curbuf_locked())
7508 return;
7509#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510 n = readonlymode;
7511 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7512 readonlymode = TRUE;
7513 else if (eap->cmdidx == CMD_enew)
7514 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7515 empty buffer */
7516 setpcmark();
7517 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7518 NULL, eap,
7519 /* ":edit" goes to first line if Vi compatible */
7520 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7521 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7522 ? ECMD_ONE : eap->do_ecmd_lnum,
7523 (P_HID(curbuf) ? ECMD_HIDE : 0)
7524 + (eap->forceit ? ECMD_FORCEIT : 0)
7525#ifdef FEAT_LISTCMDS
7526 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7527#endif
7528 ) == FAIL)
7529 {
7530 /* Editing the file failed. If the window was split, close it. */
7531#ifdef FEAT_WINDOWS
7532 if (old_curwin != NULL)
7533 {
7534 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7535 if (!need_hide || P_HID(curbuf))
7536 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007537# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7538 cleanup_T cs;
7539
7540 /* Reset the error/interrupt/exception state here so that
7541 * aborting() returns FALSE when closing a window. */
7542 enter_cleanup(&cs);
7543# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007544# ifdef FEAT_GUI
7545 need_mouse_correct = TRUE;
7546# endif
7547 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007548
7549# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7550 /* Restore the error/interrupt/exception state if not
7551 * discarded by a new aborting error, interrupt, or
7552 * uncaught exception. */
7553 leave_cleanup(&cs);
7554# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007555 }
7556 }
7557#endif
7558 }
7559 else if (readonlymode && curbuf->b_nwindows == 1)
7560 {
7561 /* When editing an already visited buffer, 'readonly' won't be set
7562 * but the previous value is kept. With ":view" and ":sview" we
7563 * want the file to be readonly, except when another window is
7564 * editing the same buffer. */
7565 curbuf->b_p_ro = TRUE;
7566 }
7567 readonlymode = n;
7568 }
7569 else
7570 {
7571 if (eap->do_ecmd_cmd != NULL)
7572 do_cmdline_cmd(eap->do_ecmd_cmd);
7573#ifdef FEAT_TITLE
7574 n = curwin->w_arg_idx_invalid;
7575#endif
7576 check_arg_idx(curwin);
7577#ifdef FEAT_TITLE
7578 if (n != curwin->w_arg_idx_invalid)
7579 maketitle();
7580#endif
7581 }
7582
7583#ifdef FEAT_WINDOWS
7584 /*
7585 * if ":split file" worked, set alternate file name in old window to new
7586 * file
7587 */
7588 if (old_curwin != NULL
7589 && *eap->arg != NUL
7590 && curwin != old_curwin
7591 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007592 && old_curwin->w_buffer != curbuf
7593 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007594 old_curwin->w_alt_fnum = curbuf->b_fnum;
7595#endif
7596
7597 ex_no_reprint = TRUE;
7598}
7599
7600#ifndef FEAT_GUI
7601/*
7602 * ":gui" and ":gvim" when there is no GUI.
7603 */
7604 static void
7605ex_nogui(eap)
7606 exarg_T *eap;
7607{
7608 eap->errmsg = e_nogvim;
7609}
7610#endif
7611
7612#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7613 static void
7614ex_tearoff(eap)
7615 exarg_T *eap;
7616{
7617 gui_make_tearoff(eap->arg);
7618}
7619#endif
7620
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007621#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007622 static void
7623ex_popup(eap)
7624 exarg_T *eap;
7625{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007626 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007627}
7628#endif
7629
7630/*ARGSUSED*/
7631 static void
7632ex_swapname(eap)
7633 exarg_T *eap;
7634{
7635 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7636 MSG(_("No swap file"));
7637 else
7638 msg(curbuf->b_ml.ml_mfp->mf_fname);
7639}
7640
7641/*
7642 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7643 * offset.
7644 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7645 */
7646/*ARGSUSED*/
7647 static void
7648ex_syncbind(eap)
7649 exarg_T *eap;
7650{
7651#ifdef FEAT_SCROLLBIND
7652 win_T *wp;
7653 long topline;
7654 long y;
7655 linenr_T old_linenr = curwin->w_cursor.lnum;
7656
7657 setpcmark();
7658
7659 /*
7660 * determine max topline
7661 */
7662 if (curwin->w_p_scb)
7663 {
7664 topline = curwin->w_topline;
7665 for (wp = firstwin; wp; wp = wp->w_next)
7666 {
7667 if (wp->w_p_scb && wp->w_buffer)
7668 {
7669 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7670 if (topline > y)
7671 topline = y;
7672 }
7673 }
7674 if (topline < 1)
7675 topline = 1;
7676 }
7677 else
7678 {
7679 topline = 1;
7680 }
7681
7682
7683 /*
7684 * set all scrollbind windows to the same topline
7685 */
7686 wp = curwin;
7687 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7688 {
7689 if (curwin->w_p_scb)
7690 {
7691 y = topline - curwin->w_topline;
7692 if (y > 0)
7693 scrollup(y, TRUE);
7694 else
7695 scrolldown(-y, TRUE);
7696 curwin->w_scbind_pos = topline;
7697 redraw_later(VALID);
7698 cursor_correct();
7699#ifdef FEAT_WINDOWS
7700 curwin->w_redr_status = TRUE;
7701#endif
7702 }
7703 }
7704 curwin = wp;
7705 if (curwin->w_p_scb)
7706 {
7707 did_syncbind = TRUE;
7708 checkpcmark();
7709 if (old_linenr != curwin->w_cursor.lnum)
7710 {
7711 char_u ctrl_o[2];
7712
7713 ctrl_o[0] = Ctrl_O;
7714 ctrl_o[1] = 0;
7715 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7716 }
7717 }
7718#endif
7719}
7720
7721
7722 static void
7723ex_read(eap)
7724 exarg_T *eap;
7725{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007726 int i;
7727 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7728 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007729
7730 if (eap->usefilter) /* :r!cmd */
7731 do_bang(1, eap, FALSE, FALSE, TRUE);
7732 else
7733 {
7734 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7735 return;
7736
7737#ifdef FEAT_BROWSE
7738 if (cmdmod.browse)
7739 {
7740 char_u *browseFile;
7741
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007742 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007743 NULL, NULL, NULL, curbuf);
7744 if (browseFile != NULL)
7745 {
7746 i = readfile(browseFile, NULL,
7747 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7748 vim_free(browseFile);
7749 }
7750 else
7751 i = OK;
7752 }
7753 else
7754#endif
7755 if (*eap->arg == NUL)
7756 {
7757 if (check_fname() == FAIL) /* check for no file name */
7758 return;
7759 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7760 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7761 }
7762 else
7763 {
7764 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7765 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7766 i = readfile(eap->arg, NULL,
7767 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7768
7769 }
7770 if (i == FAIL)
7771 {
7772#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7773 if (!aborting())
7774#endif
7775 EMSG2(_(e_notopen), eap->arg);
7776 }
7777 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007778 {
7779 if (empty && exmode_active)
7780 {
7781 /* Delete the empty line that remains. Historically ex does
7782 * this but vi doesn't. */
7783 if (eap->line2 == 0)
7784 lnum = curbuf->b_ml.ml_line_count;
7785 else
7786 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007787 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007788 {
7789 ml_delete(lnum, FALSE);
7790 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007791 if (curwin->w_cursor.lnum > 1
7792 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007793 --curwin->w_cursor.lnum;
7794 }
7795 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007796 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007797 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007798 }
7799}
7800
Bram Moolenaarea408852005-06-25 22:49:46 +00007801static char_u *prev_dir = NULL;
7802
7803#if defined(EXITFREE) || defined(PROTO)
7804 void
7805free_cd_dir()
7806{
7807 vim_free(prev_dir);
Bram Moolenaara0174af2008-01-02 20:08:25 +00007808 prev_dir = NULL;
Bram Moolenaarea408852005-06-25 22:49:46 +00007809}
7810#endif
7811
7812
Bram Moolenaar071d4272004-06-13 20:20:40 +00007813/*
7814 * ":cd", ":lcd", ":chdir" and ":lchdir".
7815 */
Bram Moolenaard089d9b2007-09-30 12:02:55 +00007816 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00007817ex_cd(eap)
7818 exarg_T *eap;
7819{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820 char_u *new_dir;
7821 char_u *tofree;
7822
7823 new_dir = eap->arg;
7824#if !defined(UNIX) && !defined(VMS)
7825 /* for non-UNIX ":cd" means: print current directory */
7826 if (*new_dir == NUL)
7827 ex_pwd(NULL);
7828 else
7829#endif
7830 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007831 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7832 && !eap->forceit)
7833 {
Bram Moolenaar81870892007-11-11 18:17:28 +00007834 EMSG(_("E747: Cannot change directory, buffer is modified (add ! to override)"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00007835 return;
7836 }
7837
Bram Moolenaar071d4272004-06-13 20:20:40 +00007838 /* ":cd -": Change to previous directory */
7839 if (STRCMP(new_dir, "-") == 0)
7840 {
7841 if (prev_dir == NULL)
7842 {
7843 EMSG(_("E186: No previous directory"));
7844 return;
7845 }
7846 new_dir = prev_dir;
7847 }
7848
7849 /* Save current directory for next ":cd -" */
7850 tofree = prev_dir;
7851 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7852 prev_dir = vim_strsave(NameBuff);
7853 else
7854 prev_dir = NULL;
7855
7856#if defined(UNIX) || defined(VMS)
7857 /* for UNIX ":cd" means: go to home directory */
7858 if (*new_dir == NUL)
7859 {
7860 /* use NameBuff for home directory name */
7861# ifdef VMS
7862 char_u *p;
7863
7864 p = mch_getenv((char_u *)"SYS$LOGIN");
7865 if (p == NULL || *p == NUL) /* empty is the same as not set */
7866 NameBuff[0] = NUL;
7867 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007868 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007869# else
7870 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7871# endif
7872 new_dir = NameBuff;
7873 }
7874#endif
7875 if (new_dir == NULL || vim_chdir(new_dir))
7876 EMSG(_(e_failed));
7877 else
7878 {
7879 vim_free(curwin->w_localdir);
7880 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7881 {
7882 /* If still in global directory, need to remember current
7883 * directory as global directory. */
7884 if (globaldir == NULL && prev_dir != NULL)
7885 globaldir = vim_strsave(prev_dir);
7886 /* Remember this local directory for the window. */
7887 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7888 curwin->w_localdir = vim_strsave(NameBuff);
7889 }
7890 else
7891 {
7892 /* We are now in the global directory, no need to remember its
7893 * name. */
7894 vim_free(globaldir);
7895 globaldir = NULL;
7896 curwin->w_localdir = NULL;
7897 }
7898
7899 shorten_fnames(TRUE);
7900
7901 /* Echo the new current directory if the command was typed. */
7902 if (KeyTyped)
7903 ex_pwd(eap);
7904 }
7905 vim_free(tofree);
7906 }
7907}
7908
7909/*
7910 * ":pwd".
7911 */
7912/*ARGSUSED*/
7913 static void
7914ex_pwd(eap)
7915 exarg_T *eap;
7916{
7917 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7918 {
7919#ifdef BACKSLASH_IN_FILENAME
7920 slash_adjust(NameBuff);
7921#endif
7922 msg(NameBuff);
7923 }
7924 else
7925 EMSG(_("E187: Unknown"));
7926}
7927
7928/*
7929 * ":=".
7930 */
7931 static void
7932ex_equal(eap)
7933 exarg_T *eap;
7934{
7935 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007936 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007937}
7938
7939 static void
7940ex_sleep(eap)
7941 exarg_T *eap;
7942{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007943 int n;
7944 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007945
7946 if (cursor_valid())
7947 {
7948 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7949 if (n >= 0)
7950 windgoto((int)n, curwin->w_wcol);
7951 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007952
7953 len = eap->line2;
7954 switch (*eap->arg)
7955 {
7956 case 'm': break;
7957 case NUL: len *= 1000L; break;
7958 default: EMSG2(_(e_invarg2), eap->arg); return;
7959 }
7960 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007961}
7962
7963/*
7964 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7965 */
7966 void
7967do_sleep(msec)
7968 long msec;
7969{
7970 long done;
7971
7972 cursor_on();
7973 out_flush();
7974 for (done = 0; !got_int && done < msec; done += 1000L)
7975 {
7976 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7977 ui_breakcheck();
7978 }
7979}
7980
7981 static void
7982do_exmap(eap, isabbrev)
7983 exarg_T *eap;
7984 int isabbrev;
7985{
7986 int mode;
7987 char_u *cmdp;
7988
7989 cmdp = eap->cmd;
7990 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7991
7992 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7993 eap->arg, mode, isabbrev))
7994 {
7995 case 1: EMSG(_(e_invarg));
7996 break;
7997 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7998 break;
7999 }
8000}
8001
8002/*
8003 * ":winsize" command (obsolete).
8004 */
8005 static void
8006ex_winsize(eap)
8007 exarg_T *eap;
8008{
8009 int w, h;
8010 char_u *arg = eap->arg;
8011 char_u *p;
8012
8013 w = getdigits(&arg);
8014 arg = skipwhite(arg);
8015 p = arg;
8016 h = getdigits(&arg);
8017 if (*p != NUL && *arg == NUL)
8018 set_shellsize(w, h, TRUE);
8019 else
8020 EMSG(_("E465: :winsize requires two number arguments"));
8021}
8022
8023#ifdef FEAT_WINDOWS
8024 static void
8025ex_wincmd(eap)
8026 exarg_T *eap;
8027{
8028 int xchar = NUL;
8029 char_u *p;
8030
8031 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
8032 {
8033 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
8034 if (eap->arg[1] == NUL)
8035 {
8036 EMSG(_(e_invarg));
8037 return;
8038 }
8039 xchar = eap->arg[1];
8040 p = eap->arg + 2;
8041 }
8042 else
8043 p = eap->arg + 1;
8044
8045 eap->nextcmd = check_nextcmd(p);
8046 p = skipwhite(p);
8047 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
8048 EMSG(_(e_invarg));
8049 else
8050 {
8051 /* Pass flags on for ":vertical wincmd ]". */
8052 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008053 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008054 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
8055 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00008056 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008057 }
8058}
8059#endif
8060
Bram Moolenaar843ee412004-06-30 16:16:41 +00008061#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008062/*
8063 * ":winpos".
8064 */
8065 static void
8066ex_winpos(eap)
8067 exarg_T *eap;
8068{
8069 int x, y;
8070 char_u *arg = eap->arg;
8071 char_u *p;
8072
8073 if (*arg == NUL)
8074 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008075# if defined(FEAT_GUI) || defined(MSWIN)
8076# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008077 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008078# else
8079 if (mch_get_winpos(&x, &y) != FAIL)
8080# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008081 {
8082 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8083 msg(IObuff);
8084 }
8085 else
8086# endif
8087 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8088 }
8089 else
8090 {
8091 x = getdigits(&arg);
8092 arg = skipwhite(arg);
8093 p = arg;
8094 y = getdigits(&arg);
8095 if (*p == NUL || *arg != NUL)
8096 {
8097 EMSG(_("E466: :winpos requires two number arguments"));
8098 return;
8099 }
8100# ifdef FEAT_GUI
8101 if (gui.in_use)
8102 gui_mch_set_winpos(x, y);
8103 else if (gui.starting)
8104 {
8105 /* Remember the coordinates for when the window is opened. */
8106 gui_win_x = x;
8107 gui_win_y = y;
8108 }
8109# ifdef HAVE_TGETENT
8110 else
8111# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008112# else
8113# ifdef MSWIN
8114 mch_set_winpos(x, y);
8115# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008116# endif
8117# ifdef HAVE_TGETENT
8118 if (*T_CWP)
8119 term_set_winpos(x, y);
8120# endif
8121 }
8122}
8123#endif
8124
8125/*
8126 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8127 */
8128 static void
8129ex_operators(eap)
8130 exarg_T *eap;
8131{
8132 oparg_T oa;
8133
8134 clear_oparg(&oa);
8135 oa.regname = eap->regname;
8136 oa.start.lnum = eap->line1;
8137 oa.end.lnum = eap->line2;
8138 oa.line_count = eap->line2 - eap->line1 + 1;
8139 oa.motion_type = MLINE;
8140#ifdef FEAT_VIRTUALEDIT
8141 virtual_op = FALSE;
8142#endif
8143 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8144 {
8145 setpcmark();
8146 curwin->w_cursor.lnum = eap->line1;
8147 beginline(BL_SOL | BL_FIX);
8148 }
8149
8150 switch (eap->cmdidx)
8151 {
8152 case CMD_delete:
8153 oa.op_type = OP_DELETE;
8154 op_delete(&oa);
8155 break;
8156
8157 case CMD_yank:
8158 oa.op_type = OP_YANK;
8159 (void)op_yank(&oa, FALSE, TRUE);
8160 break;
8161
8162 default: /* CMD_rshift or CMD_lshift */
8163 if ((eap->cmdidx == CMD_rshift)
8164#ifdef FEAT_RIGHTLEFT
8165 ^ curwin->w_p_rl
8166#endif
8167 )
8168 oa.op_type = OP_RSHIFT;
8169 else
8170 oa.op_type = OP_LSHIFT;
8171 op_shift(&oa, FALSE, eap->amount);
8172 break;
8173 }
8174#ifdef FEAT_VIRTUALEDIT
8175 virtual_op = MAYBE;
8176#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008177 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008178}
8179
8180/*
8181 * ":put".
8182 */
8183 static void
8184ex_put(eap)
8185 exarg_T *eap;
8186{
8187 /* ":0put" works like ":1put!". */
8188 if (eap->line2 == 0)
8189 {
8190 eap->line2 = 1;
8191 eap->forceit = TRUE;
8192 }
8193 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008194 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8195 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008196}
8197
8198/*
8199 * Handle ":copy" and ":move".
8200 */
8201 static void
8202ex_copymove(eap)
8203 exarg_T *eap;
8204{
8205 long n;
8206
8207 n = get_address(&eap->arg, FALSE, FALSE);
8208 if (eap->arg == NULL) /* error detected */
8209 {
8210 eap->nextcmd = NULL;
8211 return;
8212 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008213 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008214
8215 /*
8216 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8217 */
8218 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8219 {
8220 EMSG(_(e_invaddr));
8221 return;
8222 }
8223
8224 if (eap->cmdidx == CMD_move)
8225 {
8226 if (do_move(eap->line1, eap->line2, n) == FAIL)
8227 return;
8228 }
8229 else
8230 ex_copy(eap->line1, eap->line2, n);
8231 u_clearline();
8232 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008233 ex_may_print(eap);
8234}
8235
8236/*
8237 * Print the current line if flags were given to the Ex command.
8238 */
8239 static void
8240ex_may_print(eap)
8241 exarg_T *eap;
8242{
8243 if (eap->flags != 0)
8244 {
8245 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8246 (eap->flags & EXFLAG_LIST));
8247 ex_no_reprint = TRUE;
8248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008249}
8250
8251/*
8252 * ":smagic" and ":snomagic".
8253 */
8254 static void
8255ex_submagic(eap)
8256 exarg_T *eap;
8257{
8258 int magic_save = p_magic;
8259
8260 p_magic = (eap->cmdidx == CMD_smagic);
8261 do_sub(eap);
8262 p_magic = magic_save;
8263}
8264
8265/*
8266 * ":join".
8267 */
8268 static void
8269ex_join(eap)
8270 exarg_T *eap;
8271{
8272 curwin->w_cursor.lnum = eap->line1;
8273 if (eap->line1 == eap->line2)
8274 {
8275 if (eap->addr_count >= 2) /* :2,2join does nothing */
8276 return;
8277 if (eap->line2 == curbuf->b_ml.ml_line_count)
8278 {
8279 beep_flush();
8280 return;
8281 }
8282 ++eap->line2;
8283 }
8284 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8285 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008286 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008287}
8288
8289/*
8290 * ":[addr]@r" or ":[addr]*r": execute register
8291 */
8292 static void
8293ex_at(eap)
8294 exarg_T *eap;
8295{
8296 int c;
8297
8298 curwin->w_cursor.lnum = eap->line2;
8299
8300#ifdef USE_ON_FLY_SCROLL
8301 dont_scroll = TRUE; /* disallow scrolling here */
8302#endif
8303
8304 /* get the register name. No name means to use the previous one */
8305 c = *eap->arg;
8306 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8307 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008308 /* Put the register in the typeahead buffer with the "silent" flag. */
8309 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8310 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008311 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008312 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008313 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008314 else
8315 {
8316 int save_efr = exec_from_reg;
8317
8318 exec_from_reg = TRUE;
8319
8320 /*
8321 * Execute from the typeahead buffer.
8322 * Originally this didn't check for the typeahead buffer to be empty,
8323 * thus could read more Ex commands from stdin. It's not clear why,
8324 * it is certainly unexpected.
8325 */
8326 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8327 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8328
8329 exec_from_reg = save_efr;
8330 }
8331}
8332
8333/*
8334 * ":!".
8335 */
8336 static void
8337ex_bang(eap)
8338 exarg_T *eap;
8339{
8340 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8341}
8342
8343/*
8344 * ":undo".
8345 */
8346/*ARGSUSED*/
8347 static void
8348ex_undo(eap)
8349 exarg_T *eap;
8350{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008351 if (eap->addr_count == 1) /* :undo 123 */
8352 undo_time(eap->line2, FALSE, TRUE);
8353 else
8354 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008355}
8356
8357/*
8358 * ":redo".
8359 */
8360/*ARGSUSED*/
8361 static void
8362ex_redo(eap)
8363 exarg_T *eap;
8364{
8365 u_redo(1);
8366}
8367
8368/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008369 * ":earlier" and ":later".
8370 */
8371/*ARGSUSED*/
8372 static void
8373ex_later(eap)
8374 exarg_T *eap;
8375{
8376 long count = 0;
8377 int sec = FALSE;
8378 char_u *p = eap->arg;
8379
8380 if (*p == NUL)
8381 count = 1;
8382 else if (isdigit(*p))
8383 {
8384 count = getdigits(&p);
8385 switch (*p)
8386 {
8387 case 's': ++p; sec = TRUE; break;
8388 case 'm': ++p; sec = TRUE; count *= 60; break;
8389 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8390 }
8391 }
8392
8393 if (*p != NUL)
8394 EMSG2(_(e_invarg2), eap->arg);
8395 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008396 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008397}
8398
8399/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008400 * ":redir": start/stop redirection.
8401 */
8402 static void
8403ex_redir(eap)
8404 exarg_T *eap;
8405{
8406 char *mode;
8407 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008408 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008409
8410 if (STRICMP(eap->arg, "END") == 0)
8411 close_redir();
8412 else
8413 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008414 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008415 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008416 ++arg;
8417 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008418 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008419 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008420 mode = "a";
8421 }
8422 else
8423 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008424 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008425
8426 close_redir();
8427
8428 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008429 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008430 if (fname == NULL)
8431 return;
8432#ifdef FEAT_BROWSE
8433 if (cmdmod.browse)
8434 {
8435 char_u *browseFile;
8436
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008437 browseFile = do_browse(BROWSE_SAVE,
8438 (char_u *)_("Save Redirection"),
8439 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008440 if (browseFile == NULL)
8441 return; /* operation cancelled */
8442 vim_free(fname);
8443 fname = browseFile;
8444 eap->forceit = TRUE; /* since dialog already asked */
8445 }
8446#endif
8447
8448 redir_fd = open_exfile(fname, eap->forceit, mode);
8449 vim_free(fname);
8450 }
8451#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008452 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008453 {
8454 /* redirect to a register a-z (resp. A-Z for appending) */
8455 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008456 ++arg;
8457 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008458# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008459 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008460 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008461# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008462 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008463 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008464 redir_reg = *arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008465 if (*arg == '>' && arg[1] == '>') /* append */
Bram Moolenaard9d30582005-05-18 22:10:28 +00008466 arg += 2;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008467 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008468 {
Bram Moolenaarc188b882007-10-19 14:20:54 +00008469 /* Can use both "@a" and "@a>". */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008470 if (*arg == '>')
8471 arg++;
Bram Moolenaarc188b882007-10-19 14:20:54 +00008472 /* Make register empty when not using @A-@Z and the
8473 * command is valid. */
8474 if (*arg == NUL && !isupper(redir_reg))
8475 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008476 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008477 }
8478 if (*arg != NUL)
8479 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008480 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008481 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008482 }
8483 }
8484 else if (*arg == '=' && arg[1] == '>')
8485 {
8486 int append;
8487
8488 /* redirect to a variable */
8489 close_redir();
8490 arg += 2;
8491
8492 if (*arg == '>')
8493 {
8494 ++arg;
8495 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008496 }
8497 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008498 append = FALSE;
8499
8500 if (var_redir_start(skipwhite(arg), append) == OK)
8501 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008502 }
8503#endif
8504
8505 /* TODO: redirect to a buffer */
8506
Bram Moolenaar071d4272004-06-13 20:20:40 +00008507 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008508 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008509 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008510
8511 /* Make sure redirection is not off. Can happen for cmdline completion
8512 * that indirectly invokes a command to catch its output. */
8513 if (redir_fd != NULL
8514#ifdef FEAT_EVAL
8515 || redir_reg || redir_vname
8516#endif
8517 )
8518 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008519}
8520
8521/*
8522 * ":redraw": force redraw
8523 */
8524 static void
8525ex_redraw(eap)
8526 exarg_T *eap;
8527{
8528 int r = RedrawingDisabled;
8529 int p = p_lz;
8530
8531 RedrawingDisabled = 0;
8532 p_lz = FALSE;
8533 update_topline();
8534 update_screen(eap->forceit ? CLEAR :
8535#ifdef FEAT_VISUAL
8536 VIsual_active ? INVERTED :
8537#endif
8538 0);
8539#ifdef FEAT_TITLE
8540 if (need_maketitle)
8541 maketitle();
8542#endif
8543 RedrawingDisabled = r;
8544 p_lz = p;
8545
8546 /* Reset msg_didout, so that a message that's there is overwritten. */
8547 msg_didout = FALSE;
8548 msg_col = 0;
8549
8550 out_flush();
8551}
8552
8553/*
8554 * ":redrawstatus": force redraw of status line(s)
8555 */
8556/*ARGSUSED*/
8557 static void
8558ex_redrawstatus(eap)
8559 exarg_T *eap;
8560{
8561#if defined(FEAT_WINDOWS)
8562 int r = RedrawingDisabled;
8563 int p = p_lz;
8564
8565 RedrawingDisabled = 0;
8566 p_lz = FALSE;
8567 if (eap->forceit)
8568 status_redraw_all();
8569 else
8570 status_redraw_curbuf();
8571 update_screen(
8572# ifdef FEAT_VISUAL
8573 VIsual_active ? INVERTED :
8574# endif
8575 0);
8576 RedrawingDisabled = r;
8577 p_lz = p;
8578 out_flush();
8579#endif
8580}
8581
8582 static void
8583close_redir()
8584{
8585 if (redir_fd != NULL)
8586 {
8587 fclose(redir_fd);
8588 redir_fd = NULL;
8589 }
8590#ifdef FEAT_EVAL
8591 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008592 if (redir_vname)
8593 {
8594 var_redir_stop();
8595 redir_vname = 0;
8596 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008597#endif
8598}
8599
8600#if defined(FEAT_SESSION) && defined(USE_CRNL)
8601# define MKSESSION_NL
8602static int mksession_nl = FALSE; /* use NL only in put_eol() */
8603#endif
8604
8605/*
8606 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8607 */
8608 static void
8609ex_mkrc(eap)
8610 exarg_T *eap;
8611{
8612 FILE *fd;
8613 int failed = FALSE;
8614 char_u *fname;
8615#ifdef FEAT_BROWSE
8616 char_u *browseFile = NULL;
8617#endif
8618#ifdef FEAT_SESSION
8619 int view_session = FALSE;
8620 int using_vdir = FALSE; /* using 'viewdir'? */
8621 char_u *viewFile = NULL;
8622 unsigned *flagp;
8623#endif
8624
8625 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8626 {
8627#ifdef FEAT_SESSION
8628 view_session = TRUE;
8629#else
8630 ex_ni(eap);
8631 return;
8632#endif
8633 }
8634
8635#ifdef FEAT_SESSION
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008636 did_lcd = FALSE;
8637
Bram Moolenaar071d4272004-06-13 20:20:40 +00008638 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8639 if (eap->cmdidx == CMD_mkview
8640 && (*eap->arg == NUL
8641 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8642 {
8643 eap->forceit = TRUE;
8644 fname = get_view_file(*eap->arg);
8645 if (fname == NULL)
8646 return;
8647 viewFile = fname;
8648 using_vdir = TRUE;
8649 }
8650 else
8651#endif
8652 if (*eap->arg != NUL)
8653 fname = eap->arg;
8654 else if (eap->cmdidx == CMD_mkvimrc)
8655 fname = (char_u *)VIMRC_FILE;
8656#ifdef FEAT_SESSION
8657 else if (eap->cmdidx == CMD_mksession)
8658 fname = (char_u *)SESSION_FILE;
8659#endif
8660 else
8661 fname = (char_u *)EXRC_FILE;
8662
8663#ifdef FEAT_BROWSE
8664 if (cmdmod.browse)
8665 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008666 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008667# ifdef FEAT_SESSION
8668 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8669 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8670# endif
8671 (char_u *)_("Save Setup"),
8672 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8673 if (browseFile == NULL)
8674 goto theend;
8675 fname = browseFile;
8676 eap->forceit = TRUE; /* since dialog already asked */
8677 }
8678#endif
8679
8680#if defined(FEAT_SESSION) && defined(vim_mkdir)
8681 /* When using 'viewdir' may have to create the directory. */
8682 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008683 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008684#endif
8685
8686 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8687 if (fd != NULL)
8688 {
8689#ifdef FEAT_SESSION
8690 if (eap->cmdidx == CMD_mkview)
8691 flagp = &vop_flags;
8692 else
8693 flagp = &ssop_flags;
8694#endif
8695
8696#ifdef MKSESSION_NL
8697 /* "unix" in 'sessionoptions': use NL line separator */
8698 if (view_session && (*flagp & SSOP_UNIX))
8699 mksession_nl = TRUE;
8700#endif
8701
8702 /* Write the version command for :mkvimrc */
8703 if (eap->cmdidx == CMD_mkvimrc)
8704 (void)put_line(fd, "version 6.0");
8705
8706#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008707 if (eap->cmdidx == CMD_mksession)
8708 {
8709 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8710 failed = TRUE;
8711 }
8712
Bram Moolenaar071d4272004-06-13 20:20:40 +00008713 if (eap->cmdidx != CMD_mkview)
8714#endif
8715 {
8716 /* Write setting 'compatible' first, because it has side effects.
8717 * For that same reason only do it when needed. */
8718 if (p_cp)
8719 (void)put_line(fd, "if !&cp | set cp | endif");
8720 else
8721 (void)put_line(fd, "if &cp | set nocp | endif");
8722 }
8723
8724#ifdef FEAT_SESSION
8725 if (!view_session
8726 || (eap->cmdidx == CMD_mksession
8727 && (*flagp & SSOP_OPTIONS)))
8728#endif
8729 failed |= (makemap(fd, NULL) == FAIL
8730 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8731
8732#ifdef FEAT_SESSION
8733 if (!failed && view_session)
8734 {
8735 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8736 failed = TRUE;
8737 if (eap->cmdidx == CMD_mksession)
8738 {
8739 char_u dirnow[MAXPATHL]; /* current directory */
8740
8741 /*
8742 * Change to session file's dir.
8743 */
8744 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8745 || mch_chdir((char *)dirnow) != 0)
8746 *dirnow = NUL;
8747 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8748 {
8749 if (vim_chdirfile(fname) == OK)
8750 shorten_fnames(TRUE);
8751 }
8752 else if (*dirnow != NUL
8753 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8754 {
8755 (void)mch_chdir((char *)globaldir);
8756 shorten_fnames(TRUE);
8757 }
8758
8759 failed |= (makeopens(fd, dirnow) == FAIL);
8760
8761 /* restore original dir */
8762 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8763 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8764 {
8765 if (mch_chdir((char *)dirnow) != 0)
8766 EMSG(_(e_prev_dir));
8767 shorten_fnames(TRUE);
8768 }
8769 }
8770 else
8771 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00008772 failed |= (put_view(fd, curwin, !using_vdir, flagp,
8773 -1) == FAIL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008774 }
8775 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8776 == FAIL)
8777 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008778 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8779 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008780 if (eap->cmdidx == CMD_mksession)
8781 {
8782 if (put_line(fd, "unlet SessionLoad") == FAIL)
8783 failed = TRUE;
8784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008785 }
8786#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008787 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8788 failed = TRUE;
8789
Bram Moolenaar071d4272004-06-13 20:20:40 +00008790 failed |= fclose(fd);
8791
8792 if (failed)
8793 EMSG(_(e_write));
8794#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8795 else if (eap->cmdidx == CMD_mksession)
8796 {
8797 /* successful session write - set this_session var */
8798 char_u tbuf[MAXPATHL];
8799
8800 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8801 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8802 }
8803#endif
8804#ifdef MKSESSION_NL
8805 mksession_nl = FALSE;
8806#endif
8807 }
8808
8809#ifdef FEAT_BROWSE
8810theend:
8811 vim_free(browseFile);
8812#endif
8813#ifdef FEAT_SESSION
8814 vim_free(viewFile);
8815#endif
8816}
8817
Bram Moolenaardf177f62005-02-22 08:39:57 +00008818#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8819 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008820/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008821 int
8822vim_mkdir_emsg(name, prot)
8823 char_u *name;
8824 int prot;
8825{
8826 if (vim_mkdir(name, prot) != 0)
8827 {
8828 EMSG2(_("E739: Cannot create directory: %s"), name);
8829 return FAIL;
8830 }
8831 return OK;
8832}
8833#endif
8834
Bram Moolenaar071d4272004-06-13 20:20:40 +00008835/*
8836 * Open a file for writing for an Ex command, with some checks.
8837 * Return file descriptor, or NULL on failure.
8838 */
8839 FILE *
8840open_exfile(fname, forceit, mode)
8841 char_u *fname;
8842 int forceit;
8843 char *mode; /* "w" for create new file or "a" for append */
8844{
8845 FILE *fd;
8846
8847#ifdef UNIX
8848 /* with Unix it is possible to open a directory */
8849 if (mch_isdir(fname))
8850 {
8851 EMSG2(_(e_isadir2), fname);
8852 return NULL;
8853 }
8854#endif
8855 if (!forceit && *mode != 'a' && vim_fexists(fname))
8856 {
8857 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8858 return NULL;
8859 }
8860
8861 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8862 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8863
8864 return fd;
8865}
8866
8867/*
8868 * ":mark" and ":k".
8869 */
8870 static void
8871ex_mark(eap)
8872 exarg_T *eap;
8873{
8874 pos_T pos;
8875
8876 if (*eap->arg == NUL) /* No argument? */
8877 EMSG(_(e_argreq));
8878 else if (eap->arg[1] != NUL) /* more than one character? */
8879 EMSG(_(e_trailing));
8880 else
8881 {
8882 pos = curwin->w_cursor; /* save curwin->w_cursor */
8883 curwin->w_cursor.lnum = eap->line2;
8884 beginline(BL_WHITE | BL_FIX);
8885 if (setmark(*eap->arg) == FAIL) /* set mark */
8886 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8887 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8888 }
8889}
8890
8891/*
8892 * Update w_topline, w_leftcol and the cursor position.
8893 */
8894 void
8895update_topline_cursor()
8896{
8897 check_cursor(); /* put cursor on valid line */
8898 update_topline();
8899 if (!curwin->w_p_wrap)
8900 validate_cursor();
8901 update_curswant();
8902}
8903
8904#ifdef FEAT_EX_EXTRA
8905/*
8906 * ":normal[!] {commands}": Execute normal mode commands.
8907 */
8908 static void
8909ex_normal(eap)
8910 exarg_T *eap;
8911{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008912 int save_msg_scroll = msg_scroll;
8913 int save_restart_edit = restart_edit;
8914 int save_msg_didout = msg_didout;
8915 int save_State = State;
8916 tasave_T tabuf;
8917 int save_insertmode = p_im;
8918 int save_finish_op = finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +00008919 int save_opcount = opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008920#ifdef FEAT_MBYTE
8921 char_u *arg = NULL;
8922 int l;
8923 char_u *p;
8924#endif
8925
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008926 if (ex_normal_lock > 0)
8927 {
8928 EMSG(_(e_secure));
8929 return;
8930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008931 if (ex_normal_busy >= p_mmd)
8932 {
8933 EMSG(_("E192: Recursive use of :normal too deep"));
8934 return;
8935 }
8936 ++ex_normal_busy;
8937
8938 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8939 restart_edit = 0; /* don't go to Insert mode */
8940 p_im = FALSE; /* don't use 'insertmode' */
8941
8942#ifdef FEAT_MBYTE
8943 /*
8944 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8945 * this for the K_SPECIAL leading byte, otherwise special keys will not
8946 * work.
8947 */
8948 if (has_mbyte)
8949 {
8950 int len = 0;
8951
8952 /* Count the number of characters to be escaped. */
8953 for (p = eap->arg; *p != NUL; ++p)
8954 {
8955# ifdef FEAT_GUI
8956 if (*p == CSI) /* leadbyte CSI */
8957 len += 2;
8958# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008959 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008960 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8961# ifdef FEAT_GUI
8962 || *p == CSI
8963# endif
8964 )
8965 len += 2;
8966 }
8967 if (len > 0)
8968 {
8969 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8970 if (arg != NULL)
8971 {
8972 len = 0;
8973 for (p = eap->arg; *p != NUL; ++p)
8974 {
8975 arg[len++] = *p;
8976# ifdef FEAT_GUI
8977 if (*p == CSI)
8978 {
8979 arg[len++] = KS_EXTRA;
8980 arg[len++] = (int)KE_CSI;
8981 }
8982# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008983 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008984 {
8985 arg[len++] = *++p;
8986 if (*p == K_SPECIAL)
8987 {
8988 arg[len++] = KS_SPECIAL;
8989 arg[len++] = KE_FILLER;
8990 }
8991# ifdef FEAT_GUI
8992 else if (*p == CSI)
8993 {
8994 arg[len++] = KS_EXTRA;
8995 arg[len++] = (int)KE_CSI;
8996 }
8997# endif
8998 }
8999 arg[len] = NUL;
9000 }
9001 }
9002 }
9003 }
9004#endif
9005
9006 /*
9007 * Save the current typeahead. This is required to allow using ":normal"
9008 * from an event handler and makes sure we don't hang when the argument
9009 * ends with half a command.
9010 */
9011 save_typeahead(&tabuf);
9012 if (tabuf.typebuf_valid)
9013 {
9014 /*
9015 * Repeat the :normal command for each line in the range. When no
9016 * range given, execute it just once, without positioning the cursor
9017 * first.
9018 */
9019 do
9020 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009021 if (eap->addr_count != 0)
9022 {
9023 curwin->w_cursor.lnum = eap->line1++;
9024 curwin->w_cursor.col = 0;
9025 }
9026
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009027 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00009028#ifdef FEAT_MBYTE
9029 arg != NULL ? arg :
9030#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009031 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009032 }
9033 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
9034 }
9035
9036 /* Might not return to the main loop when in an event handler. */
9037 update_topline_cursor();
9038
9039 /* Restore the previous typeahead. */
9040 restore_typeahead(&tabuf);
9041
9042 --ex_normal_busy;
9043 msg_scroll = save_msg_scroll;
9044 restart_edit = save_restart_edit;
9045 p_im = save_insertmode;
9046 finish_op = save_finish_op;
Bram Moolenaar38084112008-07-26 14:05:07 +00009047 opcount = save_opcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009048 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
9049
9050 /* Restore the state (needed when called from a function executed for
9051 * 'indentexpr'). */
9052 State = save_State;
9053#ifdef FEAT_MBYTE
9054 vim_free(arg);
9055#endif
9056}
9057
9058/*
Bram Moolenaar64969662005-12-14 21:59:55 +00009059 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00009060 */
9061 static void
9062ex_startinsert(eap)
9063 exarg_T *eap;
9064{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009065 if (eap->forceit)
9066 {
9067 coladvance((colnr_T)MAXCOL);
9068 curwin->w_curswant = MAXCOL;
9069 curwin->w_set_curswant = FALSE;
9070 }
9071
Bram Moolenaara40c5002005-01-09 21:16:21 +00009072 /* Ignore the command when already in Insert mode. Inserting an
9073 * expression register that invokes a function can do this. */
9074 if (State & INSERT)
9075 return;
9076
Bram Moolenaar64969662005-12-14 21:59:55 +00009077 if (eap->cmdidx == CMD_startinsert)
9078 restart_edit = 'a';
9079 else if (eap->cmdidx == CMD_startreplace)
9080 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009081 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009082 restart_edit = 'V';
9083
9084 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009085 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009086 if (eap->cmdidx == CMD_startinsert)
9087 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009088 curwin->w_curswant = 0; /* avoid MAXCOL */
9089 }
9090}
9091
9092/*
9093 * ":stopinsert"
9094 */
9095/*ARGSUSED*/
9096 static void
9097ex_stopinsert(eap)
9098 exarg_T *eap;
9099{
9100 restart_edit = 0;
9101 stop_insert_mode = TRUE;
9102}
9103#endif
9104
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009105#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9106/*
9107 * Execute normal mode command "cmd".
9108 * "remap" can be REMAP_NONE or REMAP_YES.
9109 */
9110 void
9111exec_normal_cmd(cmd, remap, silent)
9112 char_u *cmd;
9113 int remap;
9114 int silent;
9115{
9116 oparg_T oa;
9117
9118 /*
9119 * Stuff the argument into the typeahead buffer.
9120 * Execute normal_cmd() until there is no typeahead left.
9121 */
9122 clear_oparg(&oa);
9123 finish_op = FALSE;
9124 ins_typebuf(cmd, remap, 0, TRUE, silent);
9125 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9126 && !got_int)
9127 {
9128 update_topline_cursor();
9129 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9130 }
9131}
9132#endif
9133
Bram Moolenaar071d4272004-06-13 20:20:40 +00009134#ifdef FEAT_FIND_ID
9135 static void
9136ex_checkpath(eap)
9137 exarg_T *eap;
9138{
9139 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9140 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9141 (linenr_T)1, (linenr_T)MAXLNUM);
9142}
9143
9144#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9145/*
9146 * ":psearch"
9147 */
9148 static void
9149ex_psearch(eap)
9150 exarg_T *eap;
9151{
9152 g_do_tagpreview = p_pvh;
9153 ex_findpat(eap);
9154 g_do_tagpreview = 0;
9155}
9156#endif
9157
9158 static void
9159ex_findpat(eap)
9160 exarg_T *eap;
9161{
9162 int whole = TRUE;
9163 long n;
9164 char_u *p;
9165 int action;
9166
9167 switch (cmdnames[eap->cmdidx].cmd_name[2])
9168 {
9169 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9170 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9171 action = ACTION_GOTO;
9172 else
9173 action = ACTION_SHOW;
9174 break;
9175 case 'i': /* ":ilist" and ":dlist" */
9176 action = ACTION_SHOW_ALL;
9177 break;
9178 case 'u': /* ":ijump" and ":djump" */
9179 action = ACTION_GOTO;
9180 break;
9181 default: /* ":isplit" and ":dsplit" */
9182 action = ACTION_SPLIT;
9183 break;
9184 }
9185
9186 n = 1;
9187 if (vim_isdigit(*eap->arg)) /* get count */
9188 {
9189 n = getdigits(&eap->arg);
9190 eap->arg = skipwhite(eap->arg);
9191 }
9192 if (*eap->arg == '/') /* Match regexp, not just whole words */
9193 {
9194 whole = FALSE;
9195 ++eap->arg;
9196 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9197 if (*p)
9198 {
9199 *p++ = NUL;
9200 p = skipwhite(p);
9201
9202 /* Check for trailing illegal characters */
9203 if (!ends_excmd(*p))
9204 eap->errmsg = e_trailing;
9205 else
9206 eap->nextcmd = check_nextcmd(p);
9207 }
9208 }
9209 if (!eap->skip)
9210 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9211 whole, !eap->forceit,
9212 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9213 n, action, eap->line1, eap->line2);
9214}
9215#endif
9216
9217#ifdef FEAT_WINDOWS
9218
9219# ifdef FEAT_QUICKFIX
9220/*
9221 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9222 */
9223 static void
9224ex_ptag(eap)
9225 exarg_T *eap;
9226{
9227 g_do_tagpreview = p_pvh;
9228 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9229}
9230
9231/*
9232 * ":pedit"
9233 */
9234 static void
9235ex_pedit(eap)
9236 exarg_T *eap;
9237{
9238 win_T *curwin_save = curwin;
9239
9240 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009241 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009242 keep_help_flag = curwin_save->w_buffer->b_help;
9243 do_exedit(eap, NULL);
9244 keep_help_flag = FALSE;
9245 if (curwin != curwin_save && win_valid(curwin_save))
9246 {
9247 /* Return cursor to where we were */
9248 validate_cursor();
9249 redraw_later(VALID);
9250 win_enter(curwin_save, TRUE);
9251 }
9252 g_do_tagpreview = 0;
9253}
9254# endif
9255
9256/*
9257 * ":stag", ":stselect" and ":stjump".
9258 */
9259 static void
9260ex_stag(eap)
9261 exarg_T *eap;
9262{
9263 postponed_split = -1;
9264 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009265 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009266 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9267 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009268 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009269}
9270#endif
9271
9272/*
9273 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9274 */
9275 static void
9276ex_tag(eap)
9277 exarg_T *eap;
9278{
9279 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9280}
9281
9282 static void
9283ex_tag_cmd(eap, name)
9284 exarg_T *eap;
9285 char_u *name;
9286{
9287 int cmd;
9288
9289 switch (name[1])
9290 {
9291 case 'j': cmd = DT_JUMP; /* ":tjump" */
9292 break;
9293 case 's': cmd = DT_SELECT; /* ":tselect" */
9294 break;
9295 case 'p': cmd = DT_PREV; /* ":tprevious" */
9296 break;
9297 case 'N': cmd = DT_PREV; /* ":tNext" */
9298 break;
9299 case 'n': cmd = DT_NEXT; /* ":tnext" */
9300 break;
9301 case 'o': cmd = DT_POP; /* ":pop" */
9302 break;
9303 case 'f': /* ":tfirst" */
9304 case 'r': cmd = DT_FIRST; /* ":trewind" */
9305 break;
9306 case 'l': cmd = DT_LAST; /* ":tlast" */
9307 break;
9308 default: /* ":tag" */
9309#ifdef FEAT_CSCOPE
Bram Moolenaar7c94c262008-06-20 09:11:34 +00009310 if (p_cst && *eap->arg != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009311 {
9312 do_cstag(eap);
9313 return;
9314 }
9315#endif
9316 cmd = DT_TAG;
9317 break;
9318 }
9319
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009320 if (name[0] == 'l')
9321 {
9322#ifndef FEAT_QUICKFIX
9323 ex_ni(eap);
9324 return;
9325#else
9326 cmd = DT_LTAG;
9327#endif
9328 }
9329
Bram Moolenaar071d4272004-06-13 20:20:40 +00009330 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9331 eap->forceit, TRUE);
9332}
9333
9334/*
Bram Moolenaar05bb9532008-07-04 09:44:11 +00009335 * Check "str" for starting with a special cmdline variable.
9336 * If found return one of the SPEC_ values and set "*usedlen" to the length of
9337 * the variable. Otherwise return -1 and "*usedlen" is unchanged.
9338 */
9339 int
9340find_cmdline_var(src, usedlen)
9341 char_u *src;
9342 int *usedlen;
9343{
9344 int len;
9345 int i;
9346 static char *(spec_str[]) = {
9347 "%",
9348#define SPEC_PERC 0
9349 "#",
9350#define SPEC_HASH 1
9351 "<cword>", /* cursor word */
9352#define SPEC_CWORD 2
9353 "<cWORD>", /* cursor WORD */
9354#define SPEC_CCWORD 3
9355 "<cfile>", /* cursor path name */
9356#define SPEC_CFILE 4
9357 "<sfile>", /* ":so" file name */
9358#define SPEC_SFILE 5
9359#ifdef FEAT_AUTOCMD
9360 "<afile>", /* autocommand file name */
9361# define SPEC_AFILE 6
9362 "<abuf>", /* autocommand buffer number */
9363# define SPEC_ABUF 7
9364 "<amatch>", /* autocommand match name */
9365# define SPEC_AMATCH 8
9366#endif
9367#ifdef FEAT_CLIENTSERVER
9368 "<client>"
9369# define SPEC_CLIENT 9
9370#endif
9371 };
9372#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9373
9374 for (i = 0; i < SPEC_COUNT; ++i)
9375 {
9376 len = (int)STRLEN(spec_str[i]);
9377 if (STRNCMP(src, spec_str[i], len) == 0)
9378 {
9379 *usedlen = len;
9380 return i;
9381 }
9382 }
9383 return -1;
9384}
9385
9386/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009387 * Evaluate cmdline variables.
9388 *
9389 * change '%' to curbuf->b_ffname
9390 * '#' to curwin->w_altfile
9391 * '<cword>' to word under the cursor
9392 * '<cWORD>' to WORD under the cursor
9393 * '<cfile>' to path name under the cursor
9394 * '<sfile>' to sourced file name
9395 * '<afile>' to file name for autocommand
9396 * '<abuf>' to buffer number for autocommand
9397 * '<amatch>' to matching name for autocommand
9398 *
9399 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9400 * "" for error without a message) and NULL is returned.
9401 * Returns an allocated string if a valid match was found.
9402 * Returns NULL if no match was found. "usedlen" then still contains the
9403 * number of characters to skip.
9404 */
9405 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009406eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009407 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009408 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009409 int *usedlen; /* characters after src that are used */
9410 linenr_T *lnump; /* line number for :e command, or NULL */
9411 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009412 int *escaped; /* return value has escaped white space (can
9413 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009414{
9415 int i;
9416 char_u *s;
9417 char_u *result;
9418 char_u *resultbuf = NULL;
9419 int resultlen;
9420 buf_T *buf;
9421 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9422 int spec_idx;
9423#ifdef FEAT_MODIFY_FNAME
9424 int skip_mod = FALSE;
9425#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009426
9427#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9428 char_u strbuf[30];
9429#endif
9430
9431 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009432 if (escaped != NULL)
9433 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009434
9435 /*
9436 * Check if there is something to do.
9437 */
Bram Moolenaar05bb9532008-07-04 09:44:11 +00009438 spec_idx = find_cmdline_var(src, usedlen);
9439 if (spec_idx < 0) /* no match */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009440 {
9441 *usedlen = 1;
9442 return NULL;
9443 }
9444
9445 /*
9446 * Skip when preceded with a backslash "\%" and "\#".
9447 * Note: In "\\%" the % is also not recognized!
9448 */
9449 if (src > srcstart && src[-1] == '\\')
9450 {
9451 *usedlen = 0;
Bram Moolenaara7241f52008-06-24 20:39:31 +00009452 STRMOVE(src - 1, src); /* remove backslash */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009453 return NULL;
9454 }
9455
9456 /*
9457 * word or WORD under cursor
9458 */
9459 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9460 {
9461 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9462 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9463 if (resultlen == 0)
9464 {
9465 *errormsg = (char_u *)"";
9466 return NULL;
9467 }
9468 }
9469
9470 /*
9471 * '#': Alternate file name
9472 * '%': Current file name
9473 * File name under the cursor
9474 * File name for autocommand
9475 * and following modifiers
9476 */
9477 else
9478 {
9479 switch (spec_idx)
9480 {
9481 case SPEC_PERC: /* '%': current file */
9482 if (curbuf->b_fname == NULL)
9483 {
9484 result = (char_u *)"";
9485 valid = 0; /* Must have ":p:h" to be valid */
9486 }
9487 else
9488#ifdef RISCOS
9489 /* Always use the full path for RISC OS if possible. */
9490 result = curbuf->b_ffname;
9491 if (result == NULL)
9492 result = curbuf->b_fname;
9493#else
9494 result = curbuf->b_fname;
9495#endif
9496 break;
9497
9498 case SPEC_HASH: /* '#' or "#99": alternate file */
9499 if (src[1] == '#') /* "##": the argument list */
9500 {
9501 result = arg_all();
9502 resultbuf = result;
9503 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009504 if (escaped != NULL)
9505 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009506#ifdef FEAT_MODIFY_FNAME
9507 skip_mod = TRUE;
9508#endif
9509 break;
9510 }
9511 s = src + 1;
Bram Moolenaard812df62008-11-09 12:46:09 +00009512 if (*s == '<') /* "#<99" uses v:oldfiles */
9513 ++s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009514 i = (int)getdigits(&s);
9515 *usedlen = (int)(s - src); /* length of what we expand */
9516
Bram Moolenaard812df62008-11-09 12:46:09 +00009517 if (src[1] == '<')
Bram Moolenaar071d4272004-06-13 20:20:40 +00009518 {
Bram Moolenaard812df62008-11-09 12:46:09 +00009519 if (*usedlen < 2)
9520 {
9521 /* Should we give an error message for #<text? */
9522 *usedlen = 1;
9523 return NULL;
9524 }
9525#ifdef FEAT_EVAL
9526 result = list_find_str(get_vim_var_list(VV_OLDFILES),
9527 (long)i);
9528 if (result == NULL)
9529 {
9530 *errormsg = (char_u *)"";
9531 return NULL;
9532 }
9533#else
9534 *errormsg = (char_u *)_("E809: #< is not available without the +eval feature");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009535 return NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +00009536#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009537 }
9538 else
Bram Moolenaard812df62008-11-09 12:46:09 +00009539 {
9540 buf = buflist_findnr(i);
9541 if (buf == NULL)
9542 {
9543 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9544 return NULL;
9545 }
9546 if (lnump != NULL)
9547 *lnump = ECMD_LAST;
9548 if (buf->b_fname == NULL)
9549 {
9550 result = (char_u *)"";
9551 valid = 0; /* Must have ":p:h" to be valid */
9552 }
9553 else
9554 result = buf->b_fname;
9555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009556 break;
9557
9558#ifdef FEAT_SEARCHPATH
9559 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009560 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009561 if (result == NULL)
9562 {
9563 *errormsg = (char_u *)"";
9564 return NULL;
9565 }
9566 resultbuf = result; /* remember allocated string */
9567 break;
9568#endif
9569
9570#ifdef FEAT_AUTOCMD
9571 case SPEC_AFILE: /* file name for autocommand */
9572 result = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009573 if (result != NULL && !autocmd_fname_full)
9574 {
9575 /* Still need to turn the fname into a full path. It is
9576 * postponed to avoid a delay when <afile> is not used. */
9577 autocmd_fname_full = TRUE;
9578 result = FullName_save(autocmd_fname, FALSE);
9579 vim_free(autocmd_fname);
9580 autocmd_fname = result;
9581 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009582 if (result == NULL)
9583 {
9584 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9585 return NULL;
9586 }
Bram Moolenaara0174af2008-01-02 20:08:25 +00009587 result = shorten_fname1(result);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009588 break;
9589
9590 case SPEC_ABUF: /* buffer number for autocommand */
9591 if (autocmd_bufnr <= 0)
9592 {
9593 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9594 return NULL;
9595 }
9596 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9597 result = strbuf;
9598 break;
9599
9600 case SPEC_AMATCH: /* match name for autocommand */
9601 result = autocmd_match;
9602 if (result == NULL)
9603 {
9604 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9605 return NULL;
9606 }
9607 break;
9608
9609#endif
9610 case SPEC_SFILE: /* file name for ":so" command */
9611 result = sourcing_name;
9612 if (result == NULL)
9613 {
9614 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9615 return NULL;
9616 }
9617 break;
9618#if defined(FEAT_CLIENTSERVER)
9619 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009620 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9621 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009622 result = strbuf;
9623 break;
9624#endif
9625 }
9626
9627 resultlen = (int)STRLEN(result); /* length of new string */
9628 if (src[*usedlen] == '<') /* remove the file name extension */
9629 {
9630 ++*usedlen;
9631#ifdef RISCOS
9632 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9633#else
9634 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9635#endif
9636 resultlen = (int)(s - result);
9637 }
9638#ifdef FEAT_MODIFY_FNAME
9639 else if (!skip_mod)
9640 {
9641 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9642 &resultlen);
9643 if (result == NULL)
9644 {
9645 *errormsg = (char_u *)"";
9646 return NULL;
9647 }
9648 }
9649#endif
9650 }
9651
9652 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9653 {
9654 if (valid != VALID_HEAD + VALID_PATH)
9655 /* xgettext:no-c-format */
9656 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9657 else
9658 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9659 result = NULL;
9660 }
9661 else
9662 result = vim_strnsave(result, resultlen);
9663 vim_free(resultbuf);
9664 return result;
9665}
9666
9667/*
9668 * Concatenate all files in the argument list, separated by spaces, and return
9669 * it in one allocated string.
9670 * Spaces and backslashes in the file names are escaped with a backslash.
9671 * Returns NULL when out of memory.
9672 */
9673 static char_u *
9674arg_all()
9675{
9676 int len;
9677 int idx;
9678 char_u *retval = NULL;
9679 char_u *p;
9680
9681 /*
9682 * Do this loop two times:
9683 * first time: compute the total length
9684 * second time: concatenate the names
9685 */
9686 for (;;)
9687 {
9688 len = 0;
9689 for (idx = 0; idx < ARGCOUNT; ++idx)
9690 {
9691 p = alist_name(&ARGLIST[idx]);
9692 if (p != NULL)
9693 {
9694 if (len > 0)
9695 {
9696 /* insert a space in between names */
9697 if (retval != NULL)
9698 retval[len] = ' ';
9699 ++len;
9700 }
9701 for ( ; *p != NUL; ++p)
9702 {
9703 if (*p == ' ' || *p == '\\')
9704 {
9705 /* insert a backslash */
9706 if (retval != NULL)
9707 retval[len] = '\\';
9708 ++len;
9709 }
9710 if (retval != NULL)
9711 retval[len] = *p;
9712 ++len;
9713 }
9714 }
9715 }
9716
9717 /* second time: break here */
9718 if (retval != NULL)
9719 {
9720 retval[len] = NUL;
9721 break;
9722 }
9723
9724 /* allocate memory */
9725 retval = alloc(len + 1);
9726 if (retval == NULL)
9727 break;
9728 }
9729
9730 return retval;
9731}
9732
9733#if defined(FEAT_AUTOCMD) || defined(PROTO)
9734/*
9735 * Expand the <sfile> string in "arg".
9736 *
9737 * Returns an allocated string, or NULL for any error.
9738 */
9739 char_u *
9740expand_sfile(arg)
9741 char_u *arg;
9742{
9743 char_u *errormsg;
9744 int len;
9745 char_u *result;
9746 char_u *newres;
9747 char_u *repl;
9748 int srclen;
9749 char_u *p;
9750
9751 result = vim_strsave(arg);
9752 if (result == NULL)
9753 return NULL;
9754
9755 for (p = result; *p; )
9756 {
9757 if (STRNCMP(p, "<sfile>", 7) != 0)
9758 ++p;
9759 else
9760 {
9761 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009762 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009763 if (errormsg != NULL)
9764 {
9765 if (*errormsg)
9766 emsg(errormsg);
9767 vim_free(result);
9768 return NULL;
9769 }
9770 if (repl == NULL) /* no match (cannot happen) */
9771 {
9772 p += srclen;
9773 continue;
9774 }
9775 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9776 newres = alloc(len);
9777 if (newres == NULL)
9778 {
9779 vim_free(repl);
9780 vim_free(result);
9781 return NULL;
9782 }
9783 mch_memmove(newres, result, (size_t)(p - result));
9784 STRCPY(newres + (p - result), repl);
9785 len = (int)STRLEN(newres);
9786 STRCAT(newres, p + srclen);
9787 vim_free(repl);
9788 vim_free(result);
9789 result = newres;
9790 p = newres + len; /* continue after the match */
9791 }
9792 }
9793
9794 return result;
9795}
9796#endif
9797
9798#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009799static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9800 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009801static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9802static frame_T *ses_skipframe __ARGS((frame_T *fr));
9803static int ses_do_frame __ARGS((frame_T *fr));
9804static int ses_do_win __ARGS((win_T *wp));
9805static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9806static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9807static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9808
9809/*
9810 * Write openfile commands for the current buffers to an .exrc file.
9811 * Return FAIL on error, OK otherwise.
9812 */
9813 static int
9814makeopens(fd, dirnow)
9815 FILE *fd;
9816 char_u *dirnow; /* Current directory name */
9817{
9818 buf_T *buf;
9819 int only_save_windows = TRUE;
9820 int nr;
9821 int cnr = 1;
9822 int restore_size = TRUE;
9823 win_T *wp;
9824 char_u *sname;
9825 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009826 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009827 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009828 frame_T *tab_topframe;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +00009829 int cur_arg_idx = 0;
Bram Moolenaar383c6f52008-01-04 15:01:07 +00009830 int next_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009831
9832 if (ssop_flags & SSOP_BUFFERS)
9833 only_save_windows = FALSE; /* Save ALL buffers */
9834
9835 /*
9836 * Begin by setting the this_session variable, and then other
9837 * sessionable variables.
9838 */
9839#ifdef FEAT_EVAL
9840 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9841 return FAIL;
9842 if (ssop_flags & SSOP_GLOBALS)
9843 if (store_session_globals(fd) == FAIL)
9844 return FAIL;
9845#endif
9846
9847 /*
9848 * Close all windows but one.
9849 */
9850 if (put_line(fd, "silent only") == FAIL)
9851 return FAIL;
9852
9853 /*
9854 * Now a :cd command to the session directory or the current directory
9855 */
9856 if (ssop_flags & SSOP_SESDIR)
9857 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009858 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9859 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009860 return FAIL;
9861 }
9862 else if (ssop_flags & SSOP_CURDIR)
9863 {
9864 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9865 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009866 || fputs("cd ", fd) < 0
9867 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9868 || put_eol(fd) == FAIL)
9869 {
9870 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009871 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009872 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009873 vim_free(sname);
9874 }
9875
9876 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009877 * If there is an empty, unnamed buffer we will wipe it out later.
9878 * Remember the buffer number.
9879 */
9880 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9881 return FAIL;
9882 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9883 return FAIL;
9884 if (put_line(fd, "endif") == FAIL)
9885 return FAIL;
9886
9887 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009888 * Now save the current files, current buffer first.
9889 */
9890 if (put_line(fd, "set shortmess=aoO") == FAIL)
9891 return FAIL;
9892
9893 /* Now put the other buffers into the buffer list */
9894 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9895 {
9896 if (!(only_save_windows && buf->b_nwindows == 0)
9897 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9898 && buf->b_fname != NULL
9899 && buf->b_p_bl)
9900 {
9901 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9902 : buf->b_wininfo->wi_fpos.lnum) < 0
9903 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9904 return FAIL;
9905 }
9906 }
9907
9908 /* the global argument list */
9909 if (ses_arglist(fd, "args", &global_alist.al_ga,
9910 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9911 return FAIL;
9912
9913 if (ssop_flags & SSOP_RESIZE)
9914 {
9915 /* Note: after the restore we still check it worked!*/
9916 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9917 || put_eol(fd) == FAIL)
9918 return FAIL;
9919 }
9920
9921#ifdef FEAT_GUI
9922 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9923 {
9924 int x, y;
9925
9926 if (gui_mch_get_winpos(&x, &y) == OK)
9927 {
9928 /* Note: after the restore we still check it worked!*/
9929 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9930 return FAIL;
9931 }
9932 }
9933#endif
9934
9935 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009936 * May repeat putting Windows for each tab, when "tabpages" is in
9937 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009938 * Don't use goto_tabpage(), it may change directory and trigger
9939 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009940 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009941 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009942 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009943 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009944 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009945 int need_tabnew = FALSE;
9946
Bram Moolenaar18144c82006-04-12 21:52:12 +00009947 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009948 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009949 tabpage_T *tp = find_tabpage(tabnr);
9950
9951 if (tp == NULL)
9952 break; /* done all tab pages */
9953 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009954 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009955 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009956 tab_topframe = topframe;
9957 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009958 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009959 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009960 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009961 tab_topframe = tp->tp_topframe;
9962 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009963 if (tabnr > 1)
9964 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009966
Bram Moolenaar18144c82006-04-12 21:52:12 +00009967 /*
9968 * Before creating the window layout, try loading one file. If this
9969 * is aborted we don't end up with a number of useless windows.
9970 * This may have side effects! (e.g., compressed or network file).
9971 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009972 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009973 {
9974 if (ses_do_win(wp)
9975 && wp->w_buffer->b_ffname != NULL
9976 && !wp->w_buffer->b_help
9977#ifdef FEAT_QUICKFIX
9978 && !bt_nofile(wp->w_buffer)
9979#endif
9980 )
9981 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009982 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009983 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9984 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009985 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009986 if (!wp->w_arg_idx_invalid)
9987 edited_win = wp;
9988 break;
9989 }
9990 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009991
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009992 /* If no file got edited create an empty tab page. */
9993 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9994 return FAIL;
9995
Bram Moolenaar18144c82006-04-12 21:52:12 +00009996 /*
9997 * Save current window layout.
9998 */
9999 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010000 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +000010001 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010002 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +000010003 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
10004 return FAIL;
10005 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
10006 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010007
Bram Moolenaar18144c82006-04-12 21:52:12 +000010008 /*
10009 * Check if window sizes can be restored (no windows omitted).
10010 * Remember the window number of the current window after restoring.
10011 */
10012 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010013 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +000010014 {
10015 if (ses_do_win(wp))
10016 ++nr;
10017 else
10018 restore_size = FALSE;
10019 if (curwin == wp)
10020 cnr = nr;
10021 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010022
Bram Moolenaar18144c82006-04-12 21:52:12 +000010023 /* Go to the first window. */
10024 if (put_line(fd, "wincmd t") == FAIL)
10025 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010026
Bram Moolenaar18144c82006-04-12 21:52:12 +000010027 /*
10028 * If more than one window, see if sizes can be restored.
10029 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
10030 * resized when moving between windows.
10031 * Do this before restoring the view, so that the topline and the
10032 * cursor can be set. This is done again below.
10033 */
10034 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
10035 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010036 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010037 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010038
Bram Moolenaar18144c82006-04-12 21:52:12 +000010039 /*
10040 * Restore the view of the window (options, file, cursor, etc.).
10041 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010042 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010043 {
10044 if (!ses_do_win(wp))
10045 continue;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010046 if (put_view(fd, wp, wp != edited_win, &ssop_flags,
10047 cur_arg_idx) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010048 return FAIL;
10049 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
10050 return FAIL;
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010051 next_arg_idx = wp->w_arg_idx;
Bram Moolenaar18144c82006-04-12 21:52:12 +000010052 }
10053
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010054 /* The argument index in the first tab page is zero, need to set it in
10055 * each window. For further tab pages it's the window where we do
10056 * "tabedit". */
10057 cur_arg_idx = next_arg_idx;
10058
Bram Moolenaar18144c82006-04-12 21:52:12 +000010059 /*
10060 * Restore cursor to the current window if it's not the first one.
10061 */
10062 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
10063 || put_eol(fd) == FAIL))
10064 return FAIL;
10065
10066 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +000010067 * Restore window sizes again after jumping around in windows, because
10068 * the current window has a minimum size while others may not.
10069 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010070 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +000010071 return FAIL;
10072
Bram Moolenaar18144c82006-04-12 21:52:12 +000010073 /* Don't continue in another tab page when doing only the current one
10074 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010075 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +000010076 break;
10077 }
10078
10079 if (ssop_flags & SSOP_TABPAGES)
10080 {
Bram Moolenaar18144c82006-04-12 21:52:12 +000010081 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
10082 || put_eol(fd) == FAIL)
10083 return FAIL;
10084 }
10085
Bram Moolenaar9c102382006-05-03 21:26:49 +000010086 /*
10087 * Wipe out an empty unnamed buffer we started in.
10088 */
10089 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
10090 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +000010091 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +000010092 return FAIL;
10093 if (put_line(fd, "endif") == FAIL)
10094 return FAIL;
10095 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
10096 return FAIL;
10097
10098 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
10099 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
10100 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
10101 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010102
10103 /*
10104 * Lastly, execute the x.vim file if it exists.
10105 */
10106 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
10107 || put_line(fd, "if file_readable(s:sx)") == FAIL
10108 || put_line(fd, " exe \"source \" . s:sx") == FAIL
10109 || put_line(fd, "endif") == FAIL)
10110 return FAIL;
10111
10112 return OK;
10113}
10114
10115 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010116ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010117 FILE *fd;
10118 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010119 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010120{
10121 int n = 0;
10122 win_T *wp;
10123
10124 if (restore_size && (ssop_flags & SSOP_WINSIZE))
10125 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +000010126 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010127 {
10128 if (!ses_do_win(wp))
10129 continue;
10130 ++n;
10131
10132 /* restore height when not full height */
10133 if (wp->w_height + wp->w_status_height < topframe->fr_height
10134 && (fprintf(fd,
10135 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10136 n, (long)wp->w_height, Rows / 2, Rows) < 0
10137 || put_eol(fd) == FAIL))
10138 return FAIL;
10139
10140 /* restore width when not full width */
10141 if (wp->w_width < Columns && (fprintf(fd,
10142 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10143 n, (long)wp->w_width, Columns / 2, Columns) < 0
10144 || put_eol(fd) == FAIL))
10145 return FAIL;
10146 }
10147 }
10148 else
10149 {
10150 /* Just equalise window sizes */
10151 if (put_line(fd, "wincmd =") == FAIL)
10152 return FAIL;
10153 }
10154 return OK;
10155}
10156
10157/*
10158 * Write commands to "fd" to recursively create windows for frame "fr",
10159 * horizontally and vertically split.
10160 * After the commands the last window in the frame is the current window.
10161 * Returns FAIL when writing the commands to "fd" fails.
10162 */
10163 static int
10164ses_win_rec(fd, fr)
10165 FILE *fd;
10166 frame_T *fr;
10167{
10168 frame_T *frc;
10169 int count = 0;
10170
10171 if (fr->fr_layout != FR_LEAF)
10172 {
10173 /* Find first frame that's not skipped and then create a window for
10174 * each following one (first frame is already there). */
10175 frc = ses_skipframe(fr->fr_child);
10176 if (frc != NULL)
10177 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10178 {
10179 /* Make window as big as possible so that we have lots of room
10180 * to split. */
10181 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10182 || put_line(fd, fr->fr_layout == FR_COL
10183 ? "split" : "vsplit") == FAIL)
10184 return FAIL;
10185 ++count;
10186 }
10187
10188 /* Go back to the first window. */
10189 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10190 ? "%dwincmd k" : "%dwincmd h", count) < 0
10191 || put_eol(fd) == FAIL))
10192 return FAIL;
10193
10194 /* Recursively create frames/windows in each window of this column or
10195 * row. */
10196 frc = ses_skipframe(fr->fr_child);
10197 while (frc != NULL)
10198 {
10199 ses_win_rec(fd, frc);
10200 frc = ses_skipframe(frc->fr_next);
10201 /* Go to next window. */
10202 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10203 return FAIL;
10204 }
10205 }
10206 return OK;
10207}
10208
10209/*
10210 * Skip frames that don't contain windows we want to save in the Session.
10211 * Returns NULL when there none.
10212 */
10213 static frame_T *
10214ses_skipframe(fr)
10215 frame_T *fr;
10216{
10217 frame_T *frc;
10218
10219 for (frc = fr; frc != NULL; frc = frc->fr_next)
10220 if (ses_do_frame(frc))
10221 break;
10222 return frc;
10223}
10224
10225/*
10226 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10227 * the Session.
10228 */
10229 static int
10230ses_do_frame(fr)
10231 frame_T *fr;
10232{
10233 frame_T *frc;
10234
10235 if (fr->fr_layout == FR_LEAF)
10236 return ses_do_win(fr->fr_win);
10237 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10238 if (ses_do_frame(frc))
10239 return TRUE;
10240 return FALSE;
10241}
10242
10243/*
10244 * Return non-zero if window "wp" is to be stored in the Session.
10245 */
10246 static int
10247ses_do_win(wp)
10248 win_T *wp;
10249{
10250 if (wp->w_buffer->b_fname == NULL
10251#ifdef FEAT_QUICKFIX
10252 /* When 'buftype' is "nofile" can't restore the window contents. */
10253 || bt_nofile(wp->w_buffer)
10254#endif
10255 )
10256 return (ssop_flags & SSOP_BLANK);
10257 if (wp->w_buffer->b_help)
10258 return (ssop_flags & SSOP_HELP);
10259 return TRUE;
10260}
10261
10262/*
10263 * Write commands to "fd" to restore the view of a window.
10264 * Caller must make sure 'scrolloff' is zero.
10265 */
10266 static int
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010267put_view(fd, wp, add_edit, flagp, current_arg_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010268 FILE *fd;
10269 win_T *wp;
10270 int add_edit; /* add ":edit" command to view */
10271 unsigned *flagp; /* vop_flags or ssop_flags */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010272 int current_arg_idx; /* current argument index of the window, use
10273 * -1 if unknown */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010274{
10275 win_T *save_curwin;
10276 int f;
10277 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010278 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010279
10280 /* Always restore cursor position for ":mksession". For ":mkview" only
10281 * when 'viewoptions' contains "cursor". */
10282 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10283
10284 /*
10285 * Local argument list.
10286 */
10287 if (wp->w_alist == &global_alist)
10288 {
10289 if (put_line(fd, "argglobal") == FAIL)
10290 return FAIL;
10291 }
10292 else
10293 {
10294 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10295 flagp == &vop_flags
10296 || !(*flagp & SSOP_CURDIR)
10297 || wp->w_localdir != NULL, flagp) == FAIL)
10298 return FAIL;
10299 }
10300
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010301 /* Only when part of a session: restore the argument index. Some
10302 * arguments may have been deleted, check if the index is valid. */
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010303 if (wp->w_arg_idx != current_arg_idx && wp->w_arg_idx <= WARGCOUNT(wp)
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010304 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010305 {
Bram Moolenaarf13be0d2008-01-02 14:13:10 +000010306 if (fprintf(fd, "%ldargu", (long)wp->w_arg_idx + 1) < 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000010307 || put_eol(fd) == FAIL)
10308 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010309 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010310 }
10311
10312 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010313 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010314 {
10315 /*
10316 * Load the file.
10317 */
10318 if (wp->w_buffer->b_ffname != NULL
10319#ifdef FEAT_QUICKFIX
10320 && !bt_nofile(wp->w_buffer)
10321#endif
10322 )
10323 {
10324 /*
10325 * Editing a file in this buffer: use ":edit file".
10326 * This may have side effects! (e.g., compressed or network file).
10327 */
10328 if (fputs("edit ", fd) < 0
10329 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10330 return FAIL;
10331 }
10332 else
10333 {
10334 /* No file in this buffer, just make it empty. */
10335 if (put_line(fd, "enew") == FAIL)
10336 return FAIL;
10337#ifdef FEAT_QUICKFIX
10338 if (wp->w_buffer->b_ffname != NULL)
10339 {
10340 /* The buffer does have a name, but it's not a file name. */
10341 if (fputs("file ", fd) < 0
10342 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10343 return FAIL;
10344 }
10345#endif
10346 do_cursor = FALSE;
10347 }
10348 }
10349
10350 /*
10351 * Local mappings and abbreviations.
10352 */
10353 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10354 && makemap(fd, wp->w_buffer) == FAIL)
10355 return FAIL;
10356
10357 /*
10358 * Local options. Need to go to the window temporarily.
10359 * Store only local values when using ":mkview" and when ":mksession" is
10360 * used and 'sessionoptions' doesn't include "options".
10361 * Some folding options are always stored when "folds" is included,
10362 * otherwise the folds would not be restored correctly.
10363 */
10364 save_curwin = curwin;
10365 curwin = wp;
10366 curbuf = curwin->w_buffer;
10367 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10368 f = makeset(fd, OPT_LOCAL,
10369 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10370#ifdef FEAT_FOLDING
10371 else if (*flagp & SSOP_FOLDS)
10372 f = makefoldset(fd);
10373#endif
10374 else
10375 f = OK;
10376 curwin = save_curwin;
10377 curbuf = curwin->w_buffer;
10378 if (f == FAIL)
10379 return FAIL;
10380
10381#ifdef FEAT_FOLDING
10382 /*
10383 * Save Folds when 'buftype' is empty and for help files.
10384 */
10385 if ((*flagp & SSOP_FOLDS)
10386 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010387# ifdef FEAT_QUICKFIX
10388 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10389# endif
10390 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010391 {
10392 if (put_folds(fd, wp) == FAIL)
10393 return FAIL;
10394 }
10395#endif
10396
10397 /*
10398 * Set the cursor after creating folds, since that moves the cursor.
10399 */
10400 if (do_cursor)
10401 {
10402
10403 /* Restore the cursor line in the file and relatively in the
10404 * window. Don't use "G", it changes the jumplist. */
10405 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10406 (long)wp->w_cursor.lnum,
10407 (long)(wp->w_cursor.lnum - wp->w_topline),
10408 (long)wp->w_height / 2, (long)wp->w_height) < 0
10409 || put_eol(fd) == FAIL
10410 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10411 || put_line(fd, "exe s:l") == FAIL
10412 || put_line(fd, "normal! zt") == FAIL
10413 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10414 || put_eol(fd) == FAIL)
10415 return FAIL;
10416 /* Restore the cursor column and left offset when not wrapping. */
10417 if (wp->w_cursor.col == 0)
10418 {
10419 if (put_line(fd, "normal! 0") == FAIL)
10420 return FAIL;
10421 }
10422 else
10423 {
10424 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10425 {
10426 if (fprintf(fd,
10427 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10428 (long)wp->w_cursor.col,
10429 (long)(wp->w_cursor.col - wp->w_leftcol),
10430 (long)wp->w_width / 2, (long)wp->w_width) < 0
10431 || put_eol(fd) == FAIL
10432 || put_line(fd, "if s:c > 0") == FAIL
10433 || fprintf(fd,
10434 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10435 (long)wp->w_cursor.col) < 0
10436 || put_eol(fd) == FAIL
10437 || put_line(fd, "else") == FAIL
10438 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10439 || put_eol(fd) == FAIL
10440 || put_line(fd, "endif") == FAIL)
10441 return FAIL;
10442 }
10443 else
10444 {
10445 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10446 || put_eol(fd) == FAIL)
10447 return FAIL;
10448 }
10449 }
10450 }
10451
10452 /*
10453 * Local directory.
10454 */
10455 if (wp->w_localdir != NULL)
10456 {
10457 if (fputs("lcd ", fd) < 0
10458 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10459 || put_eol(fd) == FAIL)
10460 return FAIL;
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010461 did_lcd = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010462 }
10463
10464 return OK;
10465}
10466
10467/*
10468 * Write an argument list to the session file.
10469 * Returns FAIL if writing fails.
10470 */
10471 static int
10472ses_arglist(fd, cmd, gap, fullname, flagp)
10473 FILE *fd;
10474 char *cmd;
10475 garray_T *gap;
10476 int fullname; /* TRUE: use full path name */
10477 unsigned *flagp;
10478{
10479 int i;
10480 char_u buf[MAXPATHL];
10481 char_u *s;
10482
10483 if (gap->ga_len == 0)
10484 return put_line(fd, "silent! argdel *");
10485 if (fputs(cmd, fd) < 0)
10486 return FAIL;
10487 for (i = 0; i < gap->ga_len; ++i)
10488 {
10489 /* NULL file names are skipped (only happens when out of memory). */
10490 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10491 if (s != NULL)
10492 {
10493 if (fullname)
10494 {
10495 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10496 s = buf;
10497 }
10498 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10499 return FAIL;
10500 }
10501 }
10502 return put_eol(fd);
10503}
10504
10505/*
10506 * Write a buffer name to the session file.
10507 * Also ends the line.
10508 * Returns FAIL if writing fails.
10509 */
10510 static int
10511ses_fname(fd, buf, flagp)
10512 FILE *fd;
10513 buf_T *buf;
10514 unsigned *flagp;
10515{
10516 char_u *name;
10517
10518 /* Use the short file name if the current directory is known at the time
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010519 * the session file will be sourced.
10520 * Don't do this for ":mkview", we don't know the current directory.
10521 * Don't do this after ":lcd", we don't keep track of what the current
10522 * directory is. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010523 if (buf->b_sfname != NULL
10524 && flagp == &ssop_flags
Bram Moolenaareeefcc72007-05-01 21:21:21 +000010525 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR))
10526 && !did_lcd)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010527 name = buf->b_sfname;
10528 else
10529 name = buf->b_ffname;
10530 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10531 return FAIL;
10532 return OK;
10533}
10534
10535/*
10536 * Write a file name to the session file.
10537 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10538 * characters.
10539 * Returns FAIL if writing fails.
10540 */
10541 static int
10542ses_put_fname(fd, name, flagp)
10543 FILE *fd;
10544 char_u *name;
10545 unsigned *flagp;
10546{
10547 char_u *sname;
10548 int retval = OK;
10549 int c;
10550
10551 sname = home_replace_save(NULL, name);
10552 if (sname != NULL)
10553 name = sname;
10554 while (*name != NUL)
10555 {
10556#ifdef FEAT_MBYTE
10557 {
10558 int l;
10559
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010560 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010561 {
10562 /* copy a multibyte char */
10563 while (--l >= 0)
10564 {
10565 if (putc(*name, fd) != *name)
10566 retval = FAIL;
10567 ++name;
10568 }
10569 continue;
10570 }
10571 }
10572#endif
10573 c = *name++;
10574 if (c == '\\' && (*flagp & SSOP_SLASH))
10575 /* change a backslash to a forward slash */
10576 c = '/';
10577 else if ((vim_strchr(escape_chars, c) != NULL
10578#ifdef BACKSLASH_IN_FILENAME
10579 && c != '\\'
10580#endif
10581 ) || c == '#' || c == '%')
10582 {
10583 /* escape a special character with a backslash */
10584 if (putc('\\', fd) != '\\')
10585 retval = FAIL;
10586 }
10587 if (putc(c, fd) != c)
10588 retval = FAIL;
10589 }
10590 vim_free(sname);
10591 return retval;
10592}
10593
10594/*
10595 * ":loadview [nr]"
10596 */
10597 static void
10598ex_loadview(eap)
10599 exarg_T *eap;
10600{
10601 char_u *fname;
10602
10603 fname = get_view_file(*eap->arg);
10604 if (fname != NULL)
10605 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010606 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010607 vim_free(fname);
10608 }
10609}
10610
10611/*
10612 * Get the name of the view file for the current buffer.
10613 */
10614 static char_u *
10615get_view_file(c)
10616 int c;
10617{
10618 int len = 0;
10619 char_u *p, *s;
10620 char_u *retval;
10621 char_u *sname;
10622
10623 if (curbuf->b_ffname == NULL)
10624 {
10625 EMSG(_(e_noname));
10626 return NULL;
10627 }
10628 sname = home_replace_save(NULL, curbuf->b_ffname);
10629 if (sname == NULL)
10630 return NULL;
10631
10632 /*
10633 * We want a file name without separators, because we're not going to make
10634 * a directory.
10635 * "normal" path separator -> "=+"
10636 * "=" -> "=="
10637 * ":" path separator -> "=-"
10638 */
10639 for (p = sname; *p; ++p)
10640 if (*p == '=' || vim_ispathsep(*p))
10641 ++len;
10642 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10643 if (retval != NULL)
10644 {
10645 STRCPY(retval, p_vdir);
10646 add_pathsep(retval);
10647 s = retval + STRLEN(retval);
10648 for (p = sname; *p; ++p)
10649 {
10650 if (*p == '=')
10651 {
10652 *s++ = '=';
10653 *s++ = '=';
10654 }
10655 else if (vim_ispathsep(*p))
10656 {
10657 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010658#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010659 || defined(VMS)
10660 if (*p == ':')
10661 *s++ = '-';
10662 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010663#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010664 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010665 }
10666 else
10667 *s++ = *p;
10668 }
10669 *s++ = '=';
10670 *s++ = c;
10671 STRCPY(s, ".vim");
10672 }
10673
10674 vim_free(sname);
10675 return retval;
10676}
10677
10678#endif /* FEAT_SESSION */
10679
10680/*
10681 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10682 * Return FAIL for a write error.
10683 */
10684 int
10685put_eol(fd)
10686 FILE *fd;
10687{
10688 if (
10689#ifdef USE_CRNL
10690 (
10691# ifdef MKSESSION_NL
10692 !mksession_nl &&
10693# endif
10694 (putc('\r', fd) < 0)) ||
10695#endif
10696 (putc('\n', fd) < 0))
10697 return FAIL;
10698 return OK;
10699}
10700
10701/*
10702 * Write a line to "fd".
10703 * Return FAIL for a write error.
10704 */
10705 int
10706put_line(fd, s)
10707 FILE *fd;
10708 char *s;
10709{
10710 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10711 return FAIL;
10712 return OK;
10713}
10714
10715#ifdef FEAT_VIMINFO
10716/*
10717 * ":rviminfo" and ":wviminfo".
10718 */
10719 static void
10720ex_viminfo(eap)
10721 exarg_T *eap;
10722{
10723 char_u *save_viminfo;
10724
10725 save_viminfo = p_viminfo;
10726 if (*p_viminfo == NUL)
10727 p_viminfo = (char_u *)"'100";
10728 if (eap->cmdidx == CMD_rviminfo)
10729 {
Bram Moolenaard812df62008-11-09 12:46:09 +000010730 if (read_viminfo(eap->arg, VIF_WANT_INFO | VIF_WANT_MARKS
10731 | (eap->forceit ? VIF_FORCEIT : 0)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010732 EMSG(_("E195: Cannot open viminfo file for reading"));
10733 }
10734 else
10735 write_viminfo(eap->arg, eap->forceit);
10736 p_viminfo = save_viminfo;
10737}
10738#endif
10739
10740#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010741/*
10742 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010743 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010744 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010745 void
10746dialog_msg(buff, format, fname)
10747 char_u *buff;
10748 char *format;
10749 char_u *fname;
10750{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010751 if (fname == NULL)
10752 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010753 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010754}
10755#endif
10756
10757/*
10758 * ":behave {mswin,xterm}"
10759 */
10760 static void
10761ex_behave(eap)
10762 exarg_T *eap;
10763{
10764 if (STRCMP(eap->arg, "mswin") == 0)
10765 {
10766 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10767 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10768 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10769 set_option_value((char_u *)"keymodel", 0L,
10770 (char_u *)"startsel,stopsel", 0);
10771 }
10772 else if (STRCMP(eap->arg, "xterm") == 0)
10773 {
10774 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10775 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10776 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10777 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10778 }
10779 else
10780 EMSG2(_(e_invarg2), eap->arg);
10781}
10782
10783#ifdef FEAT_AUTOCMD
10784static int filetype_detect = FALSE;
10785static int filetype_plugin = FALSE;
10786static int filetype_indent = FALSE;
10787
10788/*
10789 * ":filetype [plugin] [indent] {on,off,detect}"
10790 * on: Load the filetype.vim file to install autocommands for file types.
10791 * off: Load the ftoff.vim file to remove all autocommands for file types.
10792 * plugin on: load filetype.vim and ftplugin.vim
10793 * plugin off: load ftplugof.vim
10794 * indent on: load filetype.vim and indent.vim
10795 * indent off: load indoff.vim
10796 */
10797 static void
10798ex_filetype(eap)
10799 exarg_T *eap;
10800{
10801 char_u *arg = eap->arg;
10802 int plugin = FALSE;
10803 int indent = FALSE;
10804
10805 if (*eap->arg == NUL)
10806 {
10807 /* Print current status. */
10808 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10809 filetype_detect ? "ON" : "OFF",
10810 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10811 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10812 return;
10813 }
10814
10815 /* Accept "plugin" and "indent" in any order. */
10816 for (;;)
10817 {
10818 if (STRNCMP(arg, "plugin", 6) == 0)
10819 {
10820 plugin = TRUE;
10821 arg = skipwhite(arg + 6);
10822 continue;
10823 }
10824 if (STRNCMP(arg, "indent", 6) == 0)
10825 {
10826 indent = TRUE;
10827 arg = skipwhite(arg + 6);
10828 continue;
10829 }
10830 break;
10831 }
10832 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10833 {
10834 if (*arg == 'o' || !filetype_detect)
10835 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010836 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010837 filetype_detect = TRUE;
10838 if (plugin)
10839 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010840 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010841 filetype_plugin = TRUE;
10842 }
10843 if (indent)
10844 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010845 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010846 filetype_indent = TRUE;
10847 }
10848 }
10849 if (*arg == 'd')
10850 {
10851 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010852 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010853 }
10854 }
10855 else if (STRCMP(arg, "off") == 0)
10856 {
10857 if (plugin || indent)
10858 {
10859 if (plugin)
10860 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010861 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010862 filetype_plugin = FALSE;
10863 }
10864 if (indent)
10865 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010866 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010867 filetype_indent = FALSE;
10868 }
10869 }
10870 else
10871 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010872 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010873 filetype_detect = FALSE;
10874 }
10875 }
10876 else
10877 EMSG2(_(e_invarg2), arg);
10878}
10879
10880/*
10881 * ":setfiletype {name}"
10882 */
10883 static void
10884ex_setfiletype(eap)
10885 exarg_T *eap;
10886{
10887 if (!did_filetype)
10888 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10889}
10890#endif
10891
10892/*ARGSUSED*/
10893 static void
10894ex_digraphs(eap)
10895 exarg_T *eap;
10896{
10897#ifdef FEAT_DIGRAPHS
10898 if (*eap->arg != NUL)
10899 putdigraph(eap->arg);
10900 else
10901 listdigraphs();
10902#else
10903 EMSG(_("E196: No digraphs in this version"));
10904#endif
10905}
10906
10907 static void
10908ex_set(eap)
10909 exarg_T *eap;
10910{
10911 int flags = 0;
10912
10913 if (eap->cmdidx == CMD_setlocal)
10914 flags = OPT_LOCAL;
10915 else if (eap->cmdidx == CMD_setglobal)
10916 flags = OPT_GLOBAL;
10917#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10918 if (cmdmod.browse && flags == 0)
10919 ex_options(eap);
10920 else
10921#endif
10922 (void)do_set(eap->arg, flags);
10923}
10924
10925#ifdef FEAT_SEARCH_EXTRA
10926/*
10927 * ":nohlsearch"
10928 */
10929/*ARGSUSED*/
10930 static void
10931ex_nohlsearch(eap)
10932 exarg_T *eap;
10933{
10934 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010935 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010936}
10937
10938/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010939 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010940 * Sets nextcmd to the start of the next command, if any. Also called when
10941 * skipping commands to find the next command.
10942 */
10943 static void
10944ex_match(eap)
10945 exarg_T *eap;
10946{
10947 char_u *p;
Bram Moolenaar52d36c82007-08-11 14:00:30 +000010948 char_u *g = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010949 char_u *end;
10950 int c;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010951 int id;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010952
10953 if (eap->line2 <= 3)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010954 id = eap->line2;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010955 else
10956 {
10957 EMSG(e_invcmd);
10958 return;
10959 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010960
10961 /* First clear any old pattern. */
10962 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010963 match_delete(curwin, id, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010964
10965 if (ends_excmd(*eap->arg))
10966 end = eap->arg;
10967 else if ((STRNICMP(eap->arg, "none", 4) == 0
10968 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10969 end = eap->arg + 4;
10970 else
10971 {
10972 p = skiptowhite(eap->arg);
10973 if (!eap->skip)
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010974 g = vim_strnsave(eap->arg, (int)(p - eap->arg));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010975 p = skipwhite(p);
10976 if (*p == NUL)
10977 {
10978 /* There must be two arguments. */
10979 EMSG2(_(e_invarg2), eap->arg);
10980 return;
10981 }
10982 end = skip_regexp(p + 1, *p, TRUE, NULL);
10983 if (!eap->skip)
10984 {
10985 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10986 {
10987 eap->errmsg = e_trailing;
10988 return;
10989 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010990 if (*end != *p)
10991 {
10992 EMSG2(_(e_invarg2), p);
10993 return;
10994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010995
10996 c = *end;
10997 *end = NUL;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000010998 match_add(curwin, g, p + 1, 10, id);
10999 vim_free(g);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000011000 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011001 }
11002 }
11003 eap->nextcmd = find_nextcmd(end);
11004}
11005#endif
11006
11007#ifdef FEAT_CRYPT
11008/*
11009 * ":X": Get crypt key
11010 */
11011/*ARGSUSED*/
11012 static void
11013ex_X(eap)
11014 exarg_T *eap;
11015{
11016 (void)get_crypt_key(TRUE, TRUE);
11017}
11018#endif
11019
11020#ifdef FEAT_FOLDING
11021 static void
11022ex_fold(eap)
11023 exarg_T *eap;
11024{
11025 if (foldManualAllowed(TRUE))
11026 foldCreate(eap->line1, eap->line2);
11027}
11028
11029 static void
11030ex_foldopen(eap)
11031 exarg_T *eap;
11032{
11033 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
11034 eap->forceit, FALSE);
11035}
11036
11037 static void
11038ex_folddo(eap)
11039 exarg_T *eap;
11040{
11041 linenr_T lnum;
11042
11043 /* First set the marks for all lines closed/open. */
11044 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
11045 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
11046 ml_setmarked(lnum);
11047
11048 /* Execute the command on the marked lines. */
11049 global_exe(eap->arg);
11050 ml_clearmarked(); /* clear rest of the marks */
11051}
11052#endif