blob: 3cb064e9c289e459b361971cf29fe737d638f734 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ex_docmd.c: functions for executing an Ex command line.
12 */
13
14#include "vim.h"
15
16#ifdef HAVE_FCNTL_H
17# include <fcntl.h> /* for chdir() */
18#endif
19
20static int quitmore = 0;
21static int ex_pressedreturn = FALSE;
22#ifndef FEAT_PRINTER
23# define ex_hardcopy ex_ni
24#endif
25
26#ifdef FEAT_USR_CMDS
27typedef struct ucmd
28{
29 char_u *uc_name; /* The command name */
30 long_u uc_argt; /* The argument type */
31 char_u *uc_rep; /* The command's replacement string */
32 long uc_def; /* The default value for a range/count */
33 scid_T uc_scriptID; /* SID where the command was defined */
34 int uc_compl; /* completion type */
35# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
36 char_u *uc_compl_arg; /* completion argument if any */
37# endif
38} ucmd_T;
39
40#define UC_BUFFER 1 /* -buffer: local to current buffer */
41
Bram Moolenaar2c29bee2005-06-01 21:46:07 +000042static garray_T ucmds = {0, 0, sizeof(ucmd_T), 4, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +000043
44#define USER_CMD(i) (&((ucmd_T *)(ucmds.ga_data))[i])
45#define USER_CMD_GA(gap, i) (&((ucmd_T *)((gap)->ga_data))[i])
46
47static void do_ucmd __ARGS((exarg_T *eap));
48static void ex_command __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000049static void ex_delcommand __ARGS((exarg_T *eap));
50# ifdef FEAT_CMDL_COMPL
51static char_u *get_user_command_name __ARGS((int idx));
52# endif
53
54#else
55# define ex_command ex_ni
56# define ex_comclear ex_ni
57# define ex_delcommand ex_ni
58#endif
59
60#ifdef FEAT_EVAL
Bram Moolenaar89d40322006-08-29 15:30:07 +000061static char_u *do_one_cmd __ARGS((char_u **, int, struct condstack *, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000062#else
Bram Moolenaar89d40322006-08-29 15:30:07 +000063static char_u *do_one_cmd __ARGS((char_u **, int, char_u *(*fgetline)(int, void *, int), void *cookie));
Bram Moolenaar071d4272004-06-13 20:20:40 +000064static int if_level = 0; /* depth in :if */
65#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000066static char_u *find_command __ARGS((exarg_T *eap, int *full));
67
68static void ex_abbreviate __ARGS((exarg_T *eap));
69static void ex_map __ARGS((exarg_T *eap));
70static void ex_unmap __ARGS((exarg_T *eap));
71static void ex_mapclear __ARGS((exarg_T *eap));
72static void ex_abclear __ARGS((exarg_T *eap));
73#ifndef FEAT_MENU
74# define ex_emenu ex_ni
75# define ex_menu ex_ni
76# define ex_menutranslate ex_ni
77#endif
78#ifdef FEAT_AUTOCMD
79static void ex_autocmd __ARGS((exarg_T *eap));
80static void ex_doautocmd __ARGS((exarg_T *eap));
81#else
82# define ex_autocmd ex_ni
83# define ex_doautocmd ex_ni
84# define ex_doautoall ex_ni
85#endif
86#ifdef FEAT_LISTCMDS
87static void ex_bunload __ARGS((exarg_T *eap));
88static void ex_buffer __ARGS((exarg_T *eap));
89static void ex_bmodified __ARGS((exarg_T *eap));
90static void ex_bnext __ARGS((exarg_T *eap));
91static void ex_bprevious __ARGS((exarg_T *eap));
92static void ex_brewind __ARGS((exarg_T *eap));
93static void ex_blast __ARGS((exarg_T *eap));
94#else
95# define ex_bunload ex_ni
96# define ex_buffer ex_ni
97# define ex_bmodified ex_ni
98# define ex_bnext ex_ni
99# define ex_bprevious ex_ni
100# define ex_brewind ex_ni
101# define ex_blast ex_ni
102# define buflist_list ex_ni
103# define ex_checktime ex_ni
104#endif
105#if !defined(FEAT_LISTCMDS) || !defined(FEAT_WINDOWS)
106# define ex_buffer_all ex_ni
107#endif
108static char_u *getargcmd __ARGS((char_u **));
109static char_u *skip_cmd_arg __ARGS((char_u *p, int rembs));
110static int getargopt __ARGS((exarg_T *eap));
111#ifndef FEAT_QUICKFIX
112# define ex_make ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000113# define ex_cbuffer ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114# define ex_cc ex_ni
115# define ex_cnext ex_ni
116# define ex_cfile ex_ni
117# define qf_list ex_ni
118# define qf_age ex_ni
119# define ex_helpgrep ex_ni
Bram Moolenaar86b68352004-12-27 21:59:20 +0000120# define ex_vimgrep ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121#endif
122#if !defined(FEAT_QUICKFIX) || !defined(FEAT_WINDOWS)
123# define ex_cclose ex_ni
124# define ex_copen ex_ni
125# define ex_cwindow ex_ni
126#endif
Bram Moolenaar1e015462005-09-25 22:16:38 +0000127#if !defined(FEAT_QUICKFIX) || !defined(FEAT_EVAL)
128# define ex_cexpr ex_ni
129#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130
131static int check_more __ARGS((int, int));
132static linenr_T get_address __ARGS((char_u **, int skip, int to_other_file));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000133static void get_flags __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000135 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136static void ex_script_ni __ARGS((exarg_T *eap));
137#endif
138static char_u *invalid_range __ARGS((exarg_T *eap));
139static void correct_range __ARGS((exarg_T *eap));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000140#ifdef FEAT_QUICKFIX
141static char_u *replace_makeprg __ARGS((exarg_T *eap, char_u *p, char_u **cmdlinep));
142#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143static char_u *repl_cmdline __ARGS((exarg_T *eap, char_u *src, int srclen, char_u *repl, char_u **cmdlinep));
144static void ex_highlight __ARGS((exarg_T *eap));
145static void ex_colorscheme __ARGS((exarg_T *eap));
146static void ex_quit __ARGS((exarg_T *eap));
147static void ex_cquit __ARGS((exarg_T *eap));
148static void ex_quit_all __ARGS((exarg_T *eap));
149#ifdef FEAT_WINDOWS
150static void ex_close __ARGS((exarg_T *eap));
Bram Moolenaarf740b292006-02-16 22:11:02 +0000151static void ex_win_close __ARGS((int forceit, win_T *win, tabpage_T *tp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152static void ex_only __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153static void ex_resize __ARGS((exarg_T *eap));
154static void ex_stag __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000155static void ex_tabclose __ARGS((exarg_T *eap));
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000156static void ex_tabonly __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000157static void ex_tabnext __ARGS((exarg_T *eap));
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000158static void ex_tabmove __ARGS((exarg_T *eap));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000159static void ex_tabs __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160#else
161# define ex_close ex_ni
162# define ex_only ex_ni
163# define ex_all ex_ni
164# define ex_resize ex_ni
165# define ex_splitview ex_ni
166# define ex_stag ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000167# define ex_tabnext ex_ni
Bram Moolenaar80a94a52006-02-23 21:26:58 +0000168# define ex_tabmove ex_ni
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000169# define ex_tabs ex_ni
170# define ex_tabclose ex_ni
Bram Moolenaar49d7bf12006-02-17 21:45:41 +0000171# define ex_tabonly ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172#endif
173#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
174static void ex_pclose __ARGS((exarg_T *eap));
175static void ex_ptag __ARGS((exarg_T *eap));
176static void ex_pedit __ARGS((exarg_T *eap));
177#else
178# define ex_pclose ex_ni
179# define ex_ptag ex_ni
180# define ex_pedit ex_ni
181#endif
182static void ex_hide __ARGS((exarg_T *eap));
183static void ex_stop __ARGS((exarg_T *eap));
184static void ex_exit __ARGS((exarg_T *eap));
185static void ex_print __ARGS((exarg_T *eap));
186#ifdef FEAT_BYTEOFF
187static void ex_goto __ARGS((exarg_T *eap));
188#else
189# define ex_goto ex_ni
190#endif
191static void ex_shell __ARGS((exarg_T *eap));
192static void ex_preserve __ARGS((exarg_T *eap));
193static void ex_recover __ARGS((exarg_T *eap));
194#ifndef FEAT_LISTCMDS
195# define ex_argedit ex_ni
196# define ex_argadd ex_ni
197# define ex_argdelete ex_ni
198# define ex_listdo ex_ni
199#endif
200static void ex_mode __ARGS((exarg_T *eap));
201static void ex_wrongmodifier __ARGS((exarg_T *eap));
202static void ex_find __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000203static void ex_open __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204static void ex_edit __ARGS((exarg_T *eap));
205#if !defined(FEAT_GUI) && !defined(FEAT_CLIENTSERVER)
206# define ex_drop ex_ni
207#endif
208#ifndef FEAT_GUI
209# define ex_gui ex_nogui
210static void ex_nogui __ARGS((exarg_T *eap));
211#endif
212#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
213static void ex_tearoff __ARGS((exarg_T *eap));
214#else
215# define ex_tearoff ex_ni
216#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000217#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218static void ex_popup __ARGS((exarg_T *eap));
219#else
220# define ex_popup ex_ni
221#endif
222#ifndef FEAT_GUI_MSWIN
223# define ex_simalt ex_ni
224#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000225#if !defined(FEAT_GUI_MSWIN) && !defined(FEAT_GUI_GTK) && !defined(FEAT_GUI_MOTIF)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226# define gui_mch_find_dialog ex_ni
227# define gui_mch_replace_dialog ex_ni
228#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +0000229#if !defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230# define ex_helpfind ex_ni
231#endif
232#ifndef FEAT_CSCOPE
233# define do_cscope ex_ni
234# define do_scscope ex_ni
235# define do_cstag ex_ni
236#endif
237#ifndef FEAT_SYN_HL
238# define ex_syntax ex_ni
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000239#endif
240#ifndef FEAT_SPELL
Bram Moolenaarb765d632005-06-07 21:00:02 +0000241# define ex_spell ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000242# define ex_mkspell ex_ni
Bram Moolenaarf417f2b2005-06-23 22:29:21 +0000243# define ex_spelldump ex_ni
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000244# define ex_spellinfo ex_ni
Bram Moolenaara1ba8112005-06-28 23:23:32 +0000245# define ex_spellrepall ex_ni
Bram Moolenaar402d2fe2005-04-15 21:00:38 +0000246#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000247#ifndef FEAT_MZSCHEME
248# define ex_mzscheme ex_script_ni
249# define ex_mzfile ex_ni
250#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251#ifndef FEAT_PERL
252# define ex_perl ex_script_ni
253# define ex_perldo ex_ni
254#endif
255#ifndef FEAT_PYTHON
256# define ex_python ex_script_ni
257# define ex_pyfile ex_ni
258#endif
259#ifndef FEAT_TCL
260# define ex_tcl ex_script_ni
261# define ex_tcldo ex_ni
262# define ex_tclfile ex_ni
263#endif
264#ifndef FEAT_RUBY
265# define ex_ruby ex_script_ni
266# define ex_rubydo ex_ni
267# define ex_rubyfile ex_ni
268#endif
269#ifndef FEAT_SNIFF
270# define ex_sniff ex_ni
271#endif
272#ifndef FEAT_KEYMAP
273# define ex_loadkeymap ex_ni
274#endif
275static void ex_swapname __ARGS((exarg_T *eap));
276static void ex_syncbind __ARGS((exarg_T *eap));
277static void ex_read __ARGS((exarg_T *eap));
278static void ex_cd __ARGS((exarg_T *eap));
279static void ex_pwd __ARGS((exarg_T *eap));
280static void ex_equal __ARGS((exarg_T *eap));
281static void ex_sleep __ARGS((exarg_T *eap));
282static void do_exmap __ARGS((exarg_T *eap, int isabbrev));
283static void ex_winsize __ARGS((exarg_T *eap));
284#ifdef FEAT_WINDOWS
285static void ex_wincmd __ARGS((exarg_T *eap));
286#else
287# define ex_wincmd ex_ni
288#endif
Bram Moolenaar843ee412004-06-30 16:16:41 +0000289#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290static void ex_winpos __ARGS((exarg_T *eap));
291#else
292# define ex_winpos ex_ni
293#endif
294static void ex_operators __ARGS((exarg_T *eap));
295static void ex_put __ARGS((exarg_T *eap));
296static void ex_copymove __ARGS((exarg_T *eap));
Bram Moolenaardf177f62005-02-22 08:39:57 +0000297static void ex_may_print __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298static void ex_submagic __ARGS((exarg_T *eap));
299static void ex_join __ARGS((exarg_T *eap));
300static void ex_at __ARGS((exarg_T *eap));
301static void ex_bang __ARGS((exarg_T *eap));
302static void ex_undo __ARGS((exarg_T *eap));
303static void ex_redo __ARGS((exarg_T *eap));
Bram Moolenaarc7d89352006-03-14 22:53:34 +0000304static void ex_later __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305static void ex_redir __ARGS((exarg_T *eap));
306static void ex_redraw __ARGS((exarg_T *eap));
307static void ex_redrawstatus __ARGS((exarg_T *eap));
308static void close_redir __ARGS((void));
309static void ex_mkrc __ARGS((exarg_T *eap));
310static void ex_mark __ARGS((exarg_T *eap));
311#ifdef FEAT_USR_CMDS
312static char_u *uc_fun_cmd __ARGS((void));
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000313static 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 +0000314#endif
315#ifdef FEAT_EX_EXTRA
316static void ex_normal __ARGS((exarg_T *eap));
317static void ex_startinsert __ARGS((exarg_T *eap));
318static void ex_stopinsert __ARGS((exarg_T *eap));
319#else
320# define ex_normal ex_ni
321# define ex_align ex_ni
322# define ex_retab ex_ni
323# define ex_startinsert ex_ni
324# define ex_stopinsert ex_ni
325# define ex_helptags ex_ni
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +0000326# define ex_sort ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327#endif
328#ifdef FEAT_FIND_ID
329static void ex_checkpath __ARGS((exarg_T *eap));
330static void ex_findpat __ARGS((exarg_T *eap));
331#else
332# define ex_findpat ex_ni
333# define ex_checkpath ex_ni
334#endif
335#if defined(FEAT_FIND_ID) && defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
336static void ex_psearch __ARGS((exarg_T *eap));
337#else
338# define ex_psearch ex_ni
339#endif
340static void ex_tag __ARGS((exarg_T *eap));
341static void ex_tag_cmd __ARGS((exarg_T *eap, char_u *name));
342#ifndef FEAT_EVAL
343# define ex_scriptnames ex_ni
344# define ex_finish ex_ni
345# define ex_echo ex_ni
346# define ex_echohl ex_ni
347# define ex_execute ex_ni
348# define ex_call ex_ni
349# define ex_if ex_ni
350# define ex_endif ex_ni
351# define ex_else ex_ni
352# define ex_while ex_ni
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000353# define ex_for ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354# define ex_continue ex_ni
355# define ex_break ex_ni
356# define ex_endwhile ex_ni
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000357# define ex_endfor ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358# define ex_throw ex_ni
359# define ex_try ex_ni
360# define ex_catch ex_ni
361# define ex_finally ex_ni
362# define ex_endtry ex_ni
363# define ex_endfunction ex_ni
364# define ex_let ex_ni
365# define ex_unlet ex_ni
Bram Moolenaar65c1b012005-01-31 19:02:28 +0000366# define ex_lockvar ex_ni
367# define ex_unlockvar ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368# define ex_function ex_ni
369# define ex_delfunction ex_ni
370# define ex_return ex_ni
371#endif
372static char_u *arg_all __ARGS((void));
373#ifdef FEAT_SESSION
374static int makeopens __ARGS((FILE *fd, char_u *dirnow));
375static int put_view __ARGS((FILE *fd, win_T *wp, int add_edit, unsigned *flagp));
376static void ex_loadview __ARGS((exarg_T *eap));
377static char_u *get_view_file __ARGS((int c));
378#else
379# define ex_loadview ex_ni
380#endif
381#ifndef FEAT_EVAL
382# define ex_compiler ex_ni
383#endif
384#ifdef FEAT_VIMINFO
385static void ex_viminfo __ARGS((exarg_T *eap));
386#else
387# define ex_viminfo ex_ni
388#endif
389static void ex_behave __ARGS((exarg_T *eap));
390#ifdef FEAT_AUTOCMD
391static void ex_filetype __ARGS((exarg_T *eap));
392static void ex_setfiletype __ARGS((exarg_T *eap));
393#else
394# define ex_filetype ex_ni
395# define ex_setfiletype ex_ni
396#endif
397#ifndef FEAT_DIFF
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000398# define ex_diffoff ex_ni
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399# define ex_diffpatch ex_ni
400# define ex_diffgetput ex_ni
401# define ex_diffsplit ex_ni
402# define ex_diffthis ex_ni
403# define ex_diffupdate ex_ni
404#endif
405static void ex_digraphs __ARGS((exarg_T *eap));
406static void ex_set __ARGS((exarg_T *eap));
407#if !defined(FEAT_EVAL) || !defined(FEAT_AUTOCMD)
408# define ex_options ex_ni
409#endif
410#ifdef FEAT_SEARCH_EXTRA
411static void ex_nohlsearch __ARGS((exarg_T *eap));
412static void ex_match __ARGS((exarg_T *eap));
413#else
414# define ex_nohlsearch ex_ni
415# define ex_match ex_ni
416#endif
417#ifdef FEAT_CRYPT
418static void ex_X __ARGS((exarg_T *eap));
419#else
420# define ex_X ex_ni
421#endif
422#ifdef FEAT_FOLDING
423static void ex_fold __ARGS((exarg_T *eap));
424static void ex_foldopen __ARGS((exarg_T *eap));
425static void ex_folddo __ARGS((exarg_T *eap));
426#else
427# define ex_fold ex_ni
428# define ex_foldopen ex_ni
429# define ex_folddo ex_ni
430#endif
431#if !((defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
432 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE)))
433# define ex_language ex_ni
434#endif
435#ifndef FEAT_SIGNS
436# define ex_sign ex_ni
437#endif
438#ifndef FEAT_SUN_WORKSHOP
439# define ex_wsverb ex_ni
440#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +0000441#ifndef FEAT_NETBEANS_INTG
442# define ex_nbkey ex_ni
443#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444
445#ifndef FEAT_EVAL
446# define ex_debug ex_ni
447# define ex_breakadd ex_ni
448# define ex_debuggreedy ex_ni
449# define ex_breakdel ex_ni
450# define ex_breaklist ex_ni
451#endif
452
453#ifndef FEAT_CMDHIST
454# define ex_history ex_ni
455#endif
456#ifndef FEAT_JUMPLIST
457# define ex_jumps ex_ni
458# define ex_changes ex_ni
459#endif
460
Bram Moolenaar05159a02005-02-26 23:04:13 +0000461#ifndef FEAT_PROFILE
462# define ex_profile ex_ni
463#endif
464
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465/*
466 * Declare cmdnames[].
467 */
468#define DO_DECLARE_EXCMD
469#include "ex_cmds.h"
470
471/*
472 * Table used to quickly search for a command, based on its first character.
473 */
Bram Moolenaar2c29bee2005-06-01 21:46:07 +0000474static cmdidx_T cmdidxs[27] =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475{
476 CMD_append,
477 CMD_buffer,
478 CMD_change,
479 CMD_delete,
480 CMD_edit,
481 CMD_file,
482 CMD_global,
483 CMD_help,
484 CMD_insert,
485 CMD_join,
486 CMD_k,
487 CMD_list,
488 CMD_move,
489 CMD_next,
490 CMD_open,
491 CMD_print,
492 CMD_quit,
493 CMD_read,
494 CMD_substitute,
495 CMD_t,
496 CMD_undo,
497 CMD_vglobal,
498 CMD_write,
499 CMD_xit,
500 CMD_yank,
501 CMD_z,
502 CMD_bang
503};
504
505static char_u dollar_command[2] = {'$', 0};
506
507
508#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000509/* Struct for storing a line inside a while/for loop */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510typedef struct
511{
512 char_u *line; /* command line */
513 linenr_T lnum; /* sourcing_lnum of the line */
514} wcmd_T;
515
516/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000517 * Structure used to store info for line position in a while or for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 * This is required, because do_one_cmd() may invoke ex_function(), which
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000519 * reads more lines that may come from the while/for loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000521struct loop_cookie
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522{
523 garray_T *lines_gap; /* growarray with line info */
524 int current_line; /* last read line from growarray */
525 int repeating; /* TRUE when looping a second time */
526 /* When "repeating" is FALSE use "getline" and "cookie" to get lines */
527 char_u *(*getline) __ARGS((int, void *, int));
528 void *cookie;
529};
530
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000531static char_u *get_loop_line __ARGS((int c, void *cookie, int indent));
532static int store_loop_line __ARGS((garray_T *gap, char_u *line));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533static void free_cmdlines __ARGS((garray_T *gap));
Bram Moolenaared203462004-06-16 11:19:22 +0000534
535/* Struct to save a few things while debugging. Used in do_cmdline() only. */
536struct dbg_stuff
537{
538 int trylevel;
539 int force_abort;
540 except_T *caught_stack;
541 char_u *vv_exception;
542 char_u *vv_throwpoint;
543 int did_emsg;
544 int got_int;
545 int did_throw;
546 int need_rethrow;
547 int check_cstack;
548 except_T *current_exception;
549};
550
551static void save_dbg_stuff __ARGS((struct dbg_stuff *dsp));
552static void restore_dbg_stuff __ARGS((struct dbg_stuff *dsp));
553
554 static void
555save_dbg_stuff(dsp)
556 struct dbg_stuff *dsp;
557{
558 dsp->trylevel = trylevel; trylevel = 0;
559 dsp->force_abort = force_abort; force_abort = FALSE;
560 dsp->caught_stack = caught_stack; caught_stack = NULL;
561 dsp->vv_exception = v_exception(NULL);
562 dsp->vv_throwpoint = v_throwpoint(NULL);
563
564 /* Necessary for debugging an inactive ":catch", ":finally", ":endtry" */
565 dsp->did_emsg = did_emsg; did_emsg = FALSE;
566 dsp->got_int = got_int; got_int = FALSE;
567 dsp->did_throw = did_throw; did_throw = FALSE;
568 dsp->need_rethrow = need_rethrow; need_rethrow = FALSE;
569 dsp->check_cstack = check_cstack; check_cstack = FALSE;
570 dsp->current_exception = current_exception; current_exception = NULL;
571}
572
573 static void
574restore_dbg_stuff(dsp)
575 struct dbg_stuff *dsp;
576{
577 suppress_errthrow = FALSE;
578 trylevel = dsp->trylevel;
579 force_abort = dsp->force_abort;
580 caught_stack = dsp->caught_stack;
581 (void)v_exception(dsp->vv_exception);
582 (void)v_throwpoint(dsp->vv_throwpoint);
583 did_emsg = dsp->did_emsg;
584 got_int = dsp->got_int;
585 did_throw = dsp->did_throw;
586 need_rethrow = dsp->need_rethrow;
587 check_cstack = dsp->check_cstack;
588 current_exception = dsp->current_exception;
589}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590#endif
591
592
593/*
594 * do_exmode(): Repeatedly get commands for the "Ex" mode, until the ":vi"
595 * command is given.
596 */
597 void
598do_exmode(improved)
599 int improved; /* TRUE for "improved Ex" mode */
600{
601 int save_msg_scroll;
602 int prev_msg_row;
603 linenr_T prev_line;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000604 int changedtick;
605
606 if (improved)
607 exmode_active = EXMODE_VIM;
608 else
609 exmode_active = EXMODE_NORMAL;
610 State = NORMAL;
611
612 /* When using ":global /pat/ visual" and then "Q" we return to continue
613 * the :global command. */
614 if (global_busy)
615 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616
617 save_msg_scroll = msg_scroll;
618 ++RedrawingDisabled; /* don't redisplay the window */
619 ++no_wait_return; /* don't wait for return */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000620#ifdef FEAT_GUI
621 /* Ignore scrollbar and mouse events in Ex mode */
622 ++hold_gui_events;
623#endif
624#ifdef FEAT_SNIFF
625 want_sniff_request = 0; /* No K_SNIFF wanted */
626#endif
627
628 MSG(_("Entering Ex mode. Type \"visual\" to go to Normal mode."));
629 while (exmode_active)
630 {
Bram Moolenaar7c626922005-02-07 22:01:03 +0000631#ifdef FEAT_EX_EXTRA
632 /* Check for a ":normal" command and no more characters left. */
633 if (ex_normal_busy > 0 && typebuf.tb_len == 0)
634 {
635 exmode_active = FALSE;
636 break;
637 }
638#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 msg_scroll = TRUE;
640 need_wait_return = FALSE;
641 ex_pressedreturn = FALSE;
642 ex_no_reprint = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +0000643 changedtick = curbuf->b_changedtick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 prev_msg_row = msg_row;
645 prev_line = curwin->w_cursor.lnum;
646#ifdef FEAT_SNIFF
647 ProcessSniffRequests();
648#endif
649 if (improved)
650 {
651 cmdline_row = msg_row;
652 do_cmdline(NULL, getexline, NULL, 0);
653 }
654 else
655 do_cmdline(NULL, getexmodeline, NULL, DOCMD_NOWAIT);
656 lines_left = Rows - 1;
657
Bram Moolenaardf177f62005-02-22 08:39:57 +0000658 if ((prev_line != curwin->w_cursor.lnum
659 || changedtick != curbuf->b_changedtick) && !ex_no_reprint)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000661 if (curbuf->b_ml.ml_flags & ML_EMPTY)
662 EMSG(_(e_emptybuf));
663 else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 {
Bram Moolenaardf177f62005-02-22 08:39:57 +0000665 if (ex_pressedreturn)
666 {
667 /* go up one line, to overwrite the ":<CR>" line, so the
668 * output doensn't contain empty lines. */
669 msg_row = prev_msg_row;
670 if (prev_msg_row == Rows - 1)
671 msg_row--;
672 }
673 msg_col = 0;
674 print_line_no_prefix(curwin->w_cursor.lnum, FALSE, FALSE);
675 msg_clr_eos();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 }
Bram Moolenaardf177f62005-02-22 08:39:57 +0000678 else if (ex_pressedreturn && !ex_no_reprint) /* must be at EOF */
679 {
680 if (curbuf->b_ml.ml_flags & ML_EMPTY)
681 EMSG(_(e_emptybuf));
682 else
683 EMSG(_("E501: At end-of-file"));
684 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 }
686
687#ifdef FEAT_GUI
688 --hold_gui_events;
689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 --RedrawingDisabled;
691 --no_wait_return;
692 update_screen(CLEAR);
693 need_wait_return = FALSE;
694 msg_scroll = save_msg_scroll;
695}
696
697/*
698 * Execute a simple command line. Used for translated commands like "*".
699 */
700 int
701do_cmdline_cmd(cmd)
702 char_u *cmd;
703{
704 return do_cmdline(cmd, NULL, NULL,
705 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
706}
707
708/*
709 * do_cmdline(): execute one Ex command line
710 *
711 * 1. Execute "cmdline" when it is not NULL.
712 * If "cmdline" is NULL, or more lines are needed, getline() is used.
713 * 2. Split up in parts separated with '|'.
714 *
715 * This function can be called recursively!
716 *
717 * flags:
718 * DOCMD_VERBOSE - The command will be included in the error message.
719 * DOCMD_NOWAIT - Don't call wait_return() and friends.
720 * DOCMD_REPEAT - Repeat execution until getline() returns NULL.
721 * DOCMD_KEYTYPED - Don't reset KeyTyped.
722 * DOCMD_EXCRESET - Reset the exception environment (used for debugging).
723 * DOCMD_KEEPLINE - Store first typed line (for repeating with ".").
724 *
725 * return FAIL if cmdline could not be executed, OK otherwise
726 */
727 int
728do_cmdline(cmdline, getline, cookie, flags)
729 char_u *cmdline;
730 char_u *(*getline) __ARGS((int, void *, int));
731 void *cookie; /* argument for getline() */
732 int flags;
733{
734 char_u *next_cmdline; /* next cmd to execute */
735 char_u *cmdline_copy = NULL; /* copy of cmd line */
736 int used_getline = FALSE; /* used "getline" to obtain command */
737 static int recursive = 0; /* recursive depth */
738 int msg_didout_before_start = 0;
739 int count = 0; /* line number count */
740 int did_inc = FALSE; /* incremented RedrawingDisabled */
741 int retval = OK;
742#ifdef FEAT_EVAL
743 struct condstack cstack; /* conditional stack */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000744 garray_T lines_ga; /* keep lines for ":while"/":for" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 int current_line = 0; /* active line in lines_ga */
746 char_u *fname = NULL; /* function or script name */
747 linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
748 int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
Bram Moolenaared203462004-06-16 11:19:22 +0000749 struct dbg_stuff debug_saved; /* saved things for debug mode */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 int initial_trylevel;
751 struct msglist **saved_msg_list = NULL;
752 struct msglist *private_msg_list;
753
754 /* "getline" and "cookie" passed to do_one_cmd() */
755 char_u *(*cmd_getline) __ARGS((int, void *, int));
756 void *cmd_cookie;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000757 struct loop_cookie cmd_loop_cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758 void *real_cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +0000759 int getline_is_func;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760#else
761# define cmd_getline getline
762# define cmd_cookie cookie
763#endif
764 static int call_depth = 0; /* recursiveness */
765
766#ifdef FEAT_EVAL
767 /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory
768 * location for storing error messages to be converted to an exception.
Bram Moolenaarcf3630f2005-01-08 16:04:29 +0000769 * This ensures that the do_errthrow() call in do_one_cmd() does not
770 * combine the messages stored by an earlier invocation of do_one_cmd()
771 * with the command name of the later one. This would happen when
772 * BufWritePost autocommands are executed after a write error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 saved_msg_list = msg_list;
774 msg_list = &private_msg_list;
775 private_msg_list = NULL;
776#endif
777
778 /* It's possible to create an endless loop with ":execute", catch that
779 * here. The value of 200 allows nested function calls, ":source", etc. */
780 if (call_depth == 200)
781 {
782 EMSG(_("E169: Command too recursive"));
783#ifdef FEAT_EVAL
784 /* When converting to an exception, we do not include the command name
785 * since this is not an error of the specific command. */
786 do_errthrow((struct condstack *)NULL, (char_u *)NULL);
787 msg_list = saved_msg_list;
788#endif
789 return FAIL;
790 }
791 ++call_depth;
792
793#ifdef FEAT_EVAL
794 cstack.cs_idx = -1;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000795 cstack.cs_looplevel = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 cstack.cs_trylevel = 0;
797 cstack.cs_emsg_silent_list = NULL;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000798 cstack.cs_lflags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 ga_init2(&lines_ga, (int)sizeof(wcmd_T), 10);
800
801 real_cookie = getline_cookie(getline, cookie);
802
803 /* Inside a function use a higher nesting level. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000804 getline_is_func = getline_equal(getline, cookie, get_func_line);
805 if (getline_is_func && ex_nesting_level == func_level(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 ++ex_nesting_level;
807
808 /* Get the function or script name and the address where the next breakpoint
809 * line and the debug tick for a function or script are stored. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000810 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 {
812 fname = func_name(real_cookie);
813 breakpoint = func_breakpoint(real_cookie);
814 dbg_tick = func_dbg_tick(real_cookie);
815 }
816 else if (getline_equal(getline, cookie, getsourceline))
817 {
818 fname = sourcing_name;
819 breakpoint = source_breakpoint(real_cookie);
820 dbg_tick = source_dbg_tick(real_cookie);
821 }
822
823 /*
824 * Initialize "force_abort" and "suppress_errthrow" at the top level.
825 */
826 if (!recursive)
827 {
828 force_abort = FALSE;
829 suppress_errthrow = FALSE;
830 }
831
832 /*
833 * If requested, store and reset the global values controlling the
Bram Moolenaar89d40322006-08-29 15:30:07 +0000834 * exception handling (used when debugging). Otherwise clear it to avoid
835 * a bogus compiler warning when the optimizer uses inline functions...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 */
Bram Moolenaarb4872942006-05-13 10:32:52 +0000837 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +0000838 save_dbg_stuff(&debug_saved);
Bram Moolenaar89d40322006-08-29 15:30:07 +0000839 else
840 memset(&debug_saved, 0, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841
842 initial_trylevel = trylevel;
843
844 /*
845 * "did_throw" will be set to TRUE when an exception is being thrown.
846 */
847 did_throw = FALSE;
848#endif
849 /*
850 * "did_emsg" will be set to TRUE when emsg() is used, in which case we
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000851 * cancel the whole command line, and any if/endif or loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 * If force_abort is set, we cancel everything.
853 */
854 did_emsg = FALSE;
855
856 /*
857 * KeyTyped is only set when calling vgetc(). Reset it here when not
858 * calling vgetc() (sourced command lines).
859 */
860 if (!(flags & DOCMD_KEYTYPED) && !getline_equal(getline, cookie, getexline))
861 KeyTyped = FALSE;
862
863 /*
864 * Continue executing command lines:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000865 * - when inside an ":if", ":while" or ":for"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866 * - for multiple commands on one line, separated with '|'
867 * - when repeating until there are no more lines (for ":source")
868 */
869 next_cmdline = cmdline;
870 do
871 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000872#ifdef FEAT_EVAL
873 getline_is_func = getline_equal(getline, cookie, get_func_line);
874#endif
875
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000876 /* stop skipping cmds for an error msg after all endif/while/for */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 if (next_cmdline == NULL
878#ifdef FEAT_EVAL
879 && !force_abort
880 && cstack.cs_idx < 0
Bram Moolenaar05159a02005-02-26 23:04:13 +0000881 && !(getline_is_func && func_has_abort(real_cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882#endif
883 )
884 did_emsg = FALSE;
885
886 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000887 * 1. If repeating a line in a loop, get a line from lines_ga.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888 * 2. If no line given: Get an allocated line with getline().
889 * 3. If a line is given: Make a copy, so we can mess with it.
890 */
891
892#ifdef FEAT_EVAL
893 /* 1. If repeating, get a previous line from lines_ga. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000894 if (cstack.cs_looplevel > 0 && current_line < lines_ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 {
896 /* Each '|' separated command is stored separately in lines_ga, to
897 * be able to jump to it. Don't use next_cmdline now. */
898 vim_free(cmdline_copy);
899 cmdline_copy = NULL;
900
901 /* Check if a function has returned or, unless it has an unclosed
902 * try conditional, aborted. */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000903 if (getline_is_func)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904 {
Bram Moolenaar05159a02005-02-26 23:04:13 +0000905# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000906 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000907 func_line_end(real_cookie);
908# endif
909 if (func_has_ended(real_cookie))
910 {
911 retval = FAIL;
912 break;
913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000915#ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000916 else if (do_profiling == PROF_YES
Bram Moolenaar05159a02005-02-26 23:04:13 +0000917 && getline_equal(getline, cookie, getsourceline))
918 script_line_end();
919#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920
921 /* Check if a sourced file hit a ":finish" command. */
922 if (source_finished(getline, cookie))
923 {
924 retval = FAIL;
925 break;
926 }
927
928 /* If breakpoints have been added/deleted need to check for it. */
929 if (breakpoint != NULL && dbg_tick != NULL
930 && *dbg_tick != debug_tick)
931 {
932 *breakpoint = dbg_find_breakpoint(
933 getline_equal(getline, cookie, getsourceline),
934 fname, sourcing_lnum);
935 *dbg_tick = debug_tick;
936 }
937
938 next_cmdline = ((wcmd_T *)(lines_ga.ga_data))[current_line].line;
939 sourcing_lnum = ((wcmd_T *)(lines_ga.ga_data))[current_line].lnum;
940
941 /* Did we encounter a breakpoint? */
942 if (breakpoint != NULL && *breakpoint != 0
943 && *breakpoint <= sourcing_lnum)
944 {
945 dbg_breakpoint(fname, sourcing_lnum);
946 /* Find next breakpoint. */
947 *breakpoint = dbg_find_breakpoint(
948 getline_equal(getline, cookie, getsourceline),
949 fname, sourcing_lnum);
950 *dbg_tick = debug_tick;
951 }
Bram Moolenaar05159a02005-02-26 23:04:13 +0000952# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +0000953 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +0000954 {
955 if (getline_is_func)
956 func_line_start(real_cookie);
957 else if (getline_equal(getline, cookie, getsourceline))
958 script_line_start();
959 }
960# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 }
962
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000963 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000965 /* Inside a while/for loop we need to store the lines and use them
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 * again. Pass a different "getline" function to do_one_cmd()
967 * below, so that it stores lines in or reads them from
968 * "lines_ga". Makes it possible to define a function inside a
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +0000969 * while/for loop. */
970 cmd_getline = get_loop_line;
971 cmd_cookie = (void *)&cmd_loop_cookie;
972 cmd_loop_cookie.lines_gap = &lines_ga;
973 cmd_loop_cookie.current_line = current_line;
974 cmd_loop_cookie.getline = getline;
975 cmd_loop_cookie.cookie = cookie;
976 cmd_loop_cookie.repeating = (current_line < lines_ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 }
978 else
979 {
980 cmd_getline = getline;
981 cmd_cookie = cookie;
982 }
983#endif
984
985 /* 2. If no line given, get an allocated line with getline(). */
986 if (next_cmdline == NULL)
987 {
988 /*
989 * Need to set msg_didout for the first line after an ":if",
990 * otherwise the ":if" will be overwritten.
991 */
992 if (count == 1 && getline_equal(getline, cookie, getexline))
993 msg_didout = TRUE;
994 if (getline == NULL || (next_cmdline = getline(':', cookie,
995#ifdef FEAT_EVAL
996 cstack.cs_idx < 0 ? 0 : (cstack.cs_idx + 1) * 2
997#else
998 0
999#endif
1000 )) == NULL)
1001 {
1002 /* Don't call wait_return for aborted command line. The NULL
1003 * returned for the end of a sourced file or executed function
1004 * doesn't do this. */
1005 if (KeyTyped && !(flags & DOCMD_REPEAT))
1006 need_wait_return = FALSE;
1007 retval = FAIL;
1008 break;
1009 }
1010 used_getline = TRUE;
1011
1012 /*
1013 * Keep the first typed line. Clear it when more lines are typed.
1014 */
1015 if (flags & DOCMD_KEEPLINE)
1016 {
1017 vim_free(repeat_cmdline);
1018 if (count == 0)
1019 repeat_cmdline = vim_strsave(next_cmdline);
1020 else
1021 repeat_cmdline = NULL;
1022 }
1023 }
1024
1025 /* 3. Make a copy of the command so we can mess with it. */
1026 else if (cmdline_copy == NULL)
1027 {
1028 next_cmdline = vim_strsave(next_cmdline);
1029 if (next_cmdline == NULL)
1030 {
1031 EMSG(_(e_outofmem));
1032 retval = FAIL;
1033 break;
1034 }
1035 }
1036 cmdline_copy = next_cmdline;
1037
1038#ifdef FEAT_EVAL
1039 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001040 * Save the current line when inside a ":while" or ":for", and when
1041 * the command looks like a ":while" or ":for", because we may need it
1042 * later. When there is a '|' and another command, it is stored
1043 * separately, because we need to be able to jump back to it from an
1044 * :endwhile/:endfor.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001046 if (current_line == lines_ga.ga_len
1047 && (cstack.cs_looplevel || has_loop_cmd(next_cmdline)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001049 if (store_loop_line(&lines_ga, next_cmdline) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050 {
1051 retval = FAIL;
1052 break;
1053 }
1054 }
1055 did_endif = FALSE;
1056#endif
1057
1058 if (count++ == 0)
1059 {
1060 /*
1061 * All output from the commands is put below each other, without
1062 * waiting for a return. Don't do this when executing commands
1063 * from a script or when being called recursive (e.g. for ":e
1064 * +command file").
1065 */
1066 if (!(flags & DOCMD_NOWAIT) && !recursive)
1067 {
1068 msg_didout_before_start = msg_didout;
1069 msg_didany = FALSE; /* no output yet */
1070 msg_start();
1071 msg_scroll = TRUE; /* put messages below each other */
1072 ++no_wait_return; /* dont wait for return until finished */
1073 ++RedrawingDisabled;
1074 did_inc = TRUE;
1075 }
1076 }
1077
1078 if (p_verbose >= 15 && sourcing_name != NULL)
1079 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 ++no_wait_return;
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001081 verbose_enter_scroll();
1082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 smsg((char_u *)_("line %ld: %s"),
1084 (long)sourcing_lnum, cmdline_copy);
Bram Moolenaar8b044b32005-05-31 22:05:58 +00001085 if (msg_silent == 0)
1086 msg_puts((char_u *)"\n"); /* don't overwrite this */
1087
1088 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 --no_wait_return;
1090 }
1091
1092 /*
1093 * 2. Execute one '|' separated command.
1094 * do_one_cmd() will return NULL if there is no trailing '|'.
1095 * "cmdline_copy" can change, e.g. for '%' and '#' expansion.
1096 */
1097 ++recursive;
1098 next_cmdline = do_one_cmd(&cmdline_copy, flags & DOCMD_VERBOSE,
1099#ifdef FEAT_EVAL
1100 &cstack,
1101#endif
1102 cmd_getline, cmd_cookie);
1103 --recursive;
1104
1105#ifdef FEAT_EVAL
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001106 if (cmd_cookie == (void *)&cmd_loop_cookie)
1107 /* Use "current_line" from "cmd_loop_cookie", it may have been
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 * incremented when defining a function. */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001109 current_line = cmd_loop_cookie.current_line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001110#endif
1111
1112 if (next_cmdline == NULL)
1113 {
1114 vim_free(cmdline_copy);
1115 cmdline_copy = NULL;
1116#ifdef FEAT_CMDHIST
1117 /*
1118 * If the command was typed, remember it for the ':' register.
1119 * Do this AFTER executing the command to make :@: work.
1120 */
1121 if (getline_equal(getline, cookie, getexline)
1122 && new_last_cmdline != NULL)
1123 {
1124 vim_free(last_cmdline);
1125 last_cmdline = new_last_cmdline;
1126 new_last_cmdline = NULL;
1127 }
1128#endif
1129 }
1130 else
1131 {
1132 /* need to copy the command after the '|' to cmdline_copy, for the
1133 * next do_one_cmd() */
1134 mch_memmove(cmdline_copy, next_cmdline, STRLEN(next_cmdline) + 1);
1135 next_cmdline = cmdline_copy;
1136 }
1137
1138
1139#ifdef FEAT_EVAL
1140 /* reset did_emsg for a function that is not aborted by an error */
1141 if (did_emsg && !force_abort
1142 && getline_equal(getline, cookie, get_func_line)
1143 && !func_has_abort(real_cookie))
1144 did_emsg = FALSE;
1145
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001146 if (cstack.cs_looplevel > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 {
1148 ++current_line;
1149
1150 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001151 * An ":endwhile", ":endfor" and ":continue" is handled here.
1152 * If we were executing commands, jump back to the ":while" or
1153 * ":for".
1154 * If we were not executing commands, decrement cs_looplevel.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001156 if (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 cstack.cs_lflags &= ~(CSL_HAD_CONT | CSL_HAD_ENDLOOP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001160 /* Jump back to the matching ":while" or ":for". Be careful
1161 * not to use a cs_line[] from an entry that isn't a ":while"
1162 * or ":for": It would make "current_line" invalid and can
1163 * cause a crash. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 if (!did_emsg && !got_int && !did_throw
1165 && cstack.cs_idx >= 0
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001166 && (cstack.cs_flags[cstack.cs_idx]
1167 & (CSF_WHILE | CSF_FOR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 && cstack.cs_line[cstack.cs_idx] >= 0
1169 && (cstack.cs_flags[cstack.cs_idx] & CSF_ACTIVE))
1170 {
1171 current_line = cstack.cs_line[cstack.cs_idx];
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001172 /* remember we jumped there */
1173 cstack.cs_lflags |= CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 line_breakcheck(); /* check if CTRL-C typed */
1175
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001176 /* Check for the next breakpoint at or after the ":while"
1177 * or ":for". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178 if (breakpoint != NULL)
1179 {
1180 *breakpoint = dbg_find_breakpoint(
1181 getline_equal(getline, cookie, getsourceline),
1182 fname,
1183 ((wcmd_T *)lines_ga.ga_data)[current_line].lnum-1);
1184 *dbg_tick = debug_tick;
1185 }
1186 }
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001187 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001189 /* can only get here with ":endwhile" or ":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 if (cstack.cs_idx >= 0)
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001191 rewind_conditionals(&cstack, cstack.cs_idx - 1,
1192 CSF_WHILE | CSF_FOR, &cstack.cs_looplevel);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 }
1194 }
1195
1196 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001197 * For a ":while" or ":for" we need to remember the line number.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001199 else if (cstack.cs_lflags & CSL_HAD_LOOP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001201 cstack.cs_lflags &= ~CSL_HAD_LOOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 cstack.cs_line[cstack.cs_idx] = current_line - 1;
1203 }
1204 }
1205
1206 /*
1207 * When not inside any ":while" loop, clear remembered lines.
1208 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001209 if (cstack.cs_looplevel == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 {
1211 if (lines_ga.ga_len > 0)
1212 {
1213 sourcing_lnum =
1214 ((wcmd_T *)lines_ga.ga_data)[lines_ga.ga_len - 1].lnum;
1215 free_cmdlines(&lines_ga);
1216 }
1217 current_line = 0;
1218 }
1219
1220 /*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001221 * A ":finally" makes did_emsg, got_int, and did_throw pending for
1222 * being restored at the ":endtry". Reset them here and set the
1223 * ACTIVE and FINALLY flags, so that the finally clause gets executed.
1224 * This includes the case where a missing ":endif", ":endwhile" or
1225 * ":endfor" was detected by the ":finally" itself.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 */
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001227 if (cstack.cs_lflags & CSL_HAD_FINA)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 {
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001229 cstack.cs_lflags &= ~CSL_HAD_FINA;
1230 report_make_pending(cstack.cs_pending[cstack.cs_idx]
1231 & (CSTP_ERROR | CSTP_INTERRUPT | CSTP_THROW),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 did_throw ? (void *)current_exception : NULL);
1233 did_emsg = got_int = did_throw = FALSE;
1234 cstack.cs_flags[cstack.cs_idx] |= CSF_ACTIVE | CSF_FINALLY;
1235 }
1236
1237 /* Update global "trylevel" for recursive calls to do_cmdline() from
1238 * within this loop. */
1239 trylevel = initial_trylevel + cstack.cs_trylevel;
1240
1241 /*
1242 * If the outermost try conditional (accross function calls and sourced
1243 * files) is aborted because of an error, an interrupt, or an uncaught
1244 * exception, cancel everything. If it is left normally, reset
1245 * force_abort to get the non-EH compatible abortion behavior for
1246 * the rest of the script.
1247 */
1248 if (trylevel == 0 && !did_emsg && !got_int && !did_throw)
1249 force_abort = FALSE;
1250
1251 /* Convert an interrupt to an exception if appropriate. */
1252 (void)do_intthrow(&cstack);
1253#endif /* FEAT_EVAL */
1254
1255 }
1256 /*
1257 * Continue executing command lines when:
1258 * - no CTRL-C typed, no aborting error, no exception thrown or try
1259 * conditionals need to be checked for executing finally clauses or
1260 * catching an interrupt exception
1261 * - didn't get an error message or lines are not typed
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001262 * - there is a command after '|', inside a :if, :while, :for or :try, or
Bram Moolenaar071d4272004-06-13 20:20:40 +00001263 * looping for ":source" command or function call.
1264 */
1265 while (!((got_int
1266#ifdef FEAT_EVAL
1267 || (did_emsg && force_abort) || did_throw
1268#endif
1269 )
1270#ifdef FEAT_EVAL
1271 && cstack.cs_trylevel == 0
1272#endif
1273 )
1274 && !(did_emsg && used_getline
1275 && (getline_equal(getline, cookie, getexmodeline)
1276 || getline_equal(getline, cookie, getexline)))
1277 && (next_cmdline != NULL
1278#ifdef FEAT_EVAL
1279 || cstack.cs_idx >= 0
1280#endif
1281 || (flags & DOCMD_REPEAT)));
1282
1283 vim_free(cmdline_copy);
1284#ifdef FEAT_EVAL
1285 free_cmdlines(&lines_ga);
1286 ga_clear(&lines_ga);
1287
1288 if (cstack.cs_idx >= 0)
1289 {
1290 /*
1291 * If a sourced file or executed function ran to its end, report the
1292 * unclosed conditional.
1293 */
1294 if (!got_int && !did_throw
1295 && ((getline_equal(getline, cookie, getsourceline)
1296 && !source_finished(getline, cookie))
1297 || (getline_equal(getline, cookie, get_func_line)
1298 && !func_has_ended(real_cookie))))
1299 {
1300 if (cstack.cs_flags[cstack.cs_idx] & CSF_TRY)
1301 EMSG(_(e_endtry));
1302 else if (cstack.cs_flags[cstack.cs_idx] & CSF_WHILE)
1303 EMSG(_(e_endwhile));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001304 else if (cstack.cs_flags[cstack.cs_idx] & CSF_FOR)
1305 EMSG(_(e_endfor));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 else
1307 EMSG(_(e_endif));
1308 }
1309
1310 /*
1311 * Reset "trylevel" in case of a ":finish" or ":return" or a missing
1312 * ":endtry" in a sourced file or executed function. If the try
1313 * conditional is in its finally clause, ignore anything pending.
1314 * If it is in a catch clause, finish the caught exception.
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001315 * Also cleanup any "cs_forinfo" structures.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 */
1317 do
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001318 {
1319 int idx = cleanup_conditionals(&cstack, 0, TRUE);
1320
Bram Moolenaar89e5d682005-01-17 22:06:23 +00001321 if (idx >= 0)
1322 --idx; /* remove try block not in its finally clause */
Bram Moolenaarbb761a72005-01-06 23:19:09 +00001323 rewind_conditionals(&cstack, idx, CSF_WHILE | CSF_FOR,
1324 &cstack.cs_looplevel);
1325 }
1326 while (cstack.cs_idx >= 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 trylevel = initial_trylevel;
1328 }
1329
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001330 /* If a missing ":endtry", ":endwhile", ":endfor", or ":endif" or a memory
1331 * lack was reported above and the error message is to be converted to an
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 * exception, do this now after rewinding the cstack. */
1333 do_errthrow(&cstack, getline_equal(getline, cookie, get_func_line)
1334 ? (char_u *)"endfunction" : (char_u *)NULL);
1335
1336 if (trylevel == 0)
1337 {
1338 /*
1339 * When an exception is being thrown out of the outermost try
1340 * conditional, discard the uncaught exception, disable the conversion
1341 * of interrupts or errors to exceptions, and ensure that no more
1342 * commands are executed.
1343 */
1344 if (did_throw)
1345 {
1346 void *p = NULL;
1347 char_u *saved_sourcing_name;
1348 int saved_sourcing_lnum;
1349 struct msglist *messages = NULL, *next;
1350
1351 /*
1352 * If the uncaught exception is a user exception, report it as an
1353 * error. If it is an error exception, display the saved error
1354 * message now. For an interrupt exception, do nothing; the
1355 * interrupt message is given elsewhere.
1356 */
1357 switch (current_exception->type)
1358 {
1359 case ET_USER:
Bram Moolenaar9c13b352005-05-19 20:53:52 +00001360 vim_snprintf((char *)IObuff, IOSIZE,
1361 _("E605: Exception not caught: %s"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 current_exception->value);
1363 p = vim_strsave(IObuff);
1364 break;
1365 case ET_ERROR:
1366 messages = current_exception->messages;
1367 current_exception->messages = NULL;
1368 break;
1369 case ET_INTERRUPT:
1370 break;
1371 default:
1372 p = vim_strsave((char_u *)_(e_internal));
1373 }
1374
1375 saved_sourcing_name = sourcing_name;
1376 saved_sourcing_lnum = sourcing_lnum;
1377 sourcing_name = current_exception->throw_name;
1378 sourcing_lnum = current_exception->throw_lnum;
1379 current_exception->throw_name = NULL;
1380
1381 discard_current_exception(); /* uses IObuff if 'verbose' */
1382 suppress_errthrow = TRUE;
1383 force_abort = TRUE;
1384
1385 if (messages != NULL)
1386 {
1387 do
1388 {
1389 next = messages->next;
1390 emsg(messages->msg);
1391 vim_free(messages->msg);
1392 vim_free(messages);
1393 messages = next;
1394 }
1395 while (messages != NULL);
1396 }
1397 else if (p != NULL)
1398 {
1399 emsg(p);
1400 vim_free(p);
1401 }
1402 vim_free(sourcing_name);
1403 sourcing_name = saved_sourcing_name;
1404 sourcing_lnum = saved_sourcing_lnum;
1405 }
1406
1407 /*
1408 * On an interrupt or an aborting error not converted to an exception,
1409 * disable the conversion of errors to exceptions. (Interrupts are not
1410 * converted any more, here.) This enables also the interrupt message
1411 * when force_abort is set and did_emsg unset in case of an interrupt
1412 * from a finally clause after an error.
1413 */
1414 else if (got_int || (did_emsg && force_abort))
1415 suppress_errthrow = TRUE;
1416 }
1417
1418 /*
1419 * The current cstack will be freed when do_cmdline() returns. An uncaught
1420 * exception will have to be rethrown in the previous cstack. If a function
1421 * has just returned or a script file was just finished and the previous
1422 * cstack belongs to the same function or, respectively, script file, it
1423 * will have to be checked for finally clauses to be executed due to the
1424 * ":return" or ":finish". This is done in do_one_cmd().
1425 */
1426 if (did_throw)
1427 need_rethrow = TRUE;
1428 if ((getline_equal(getline, cookie, getsourceline)
1429 && ex_nesting_level > source_level(real_cookie))
1430 || (getline_equal(getline, cookie, get_func_line)
1431 && ex_nesting_level > func_level(real_cookie) + 1))
1432 {
1433 if (!did_throw)
1434 check_cstack = TRUE;
1435 }
1436 else
1437 {
1438 /* When leaving a function, reduce nesting level. */
1439 if (getline_equal(getline, cookie, get_func_line))
1440 --ex_nesting_level;
1441 /*
1442 * Go to debug mode when returning from a function in which we are
1443 * single-stepping.
1444 */
1445 if ((getline_equal(getline, cookie, getsourceline)
1446 || getline_equal(getline, cookie, get_func_line))
1447 && ex_nesting_level + 1 <= debug_break_level)
1448 do_debug(getline_equal(getline, cookie, getsourceline)
1449 ? (char_u *)_("End of sourced file")
1450 : (char_u *)_("End of function"));
1451 }
1452
1453 /*
1454 * Restore the exception environment (done after returning from the
1455 * debugger).
1456 */
1457 if (flags & DOCMD_EXCRESET)
Bram Moolenaared203462004-06-16 11:19:22 +00001458 restore_dbg_stuff(&debug_saved);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
1460 msg_list = saved_msg_list;
1461#endif /* FEAT_EVAL */
1462
1463 /*
1464 * If there was too much output to fit on the command line, ask the user to
1465 * hit return before redrawing the screen. With the ":global" command we do
1466 * this only once after the command is finished.
1467 */
1468 if (did_inc)
1469 {
1470 --RedrawingDisabled;
1471 --no_wait_return;
1472 msg_scroll = FALSE;
1473
1474 /*
1475 * When just finished an ":if"-":else" which was typed, no need to
1476 * wait for hit-return. Also for an error situation.
1477 */
1478 if (retval == FAIL
1479#ifdef FEAT_EVAL
1480 || (did_endif && KeyTyped && !did_emsg)
1481#endif
1482 )
1483 {
1484 need_wait_return = FALSE;
1485 msg_didany = FALSE; /* don't wait when restarting edit */
1486 }
1487 else if (need_wait_return)
1488 {
1489 /*
1490 * The msg_start() above clears msg_didout. The wait_return we do
1491 * here should not overwrite the command that may be shown before
1492 * doing that.
1493 */
1494 msg_didout |= msg_didout_before_start;
1495 wait_return(FALSE);
1496 }
1497 }
1498
1499#ifndef FEAT_EVAL
1500 /*
1501 * Reset if_level, in case a sourced script file contains more ":if" than
1502 * ":endif" (could be ":if x | foo | endif").
1503 */
1504 if_level = 0;
1505#endif
1506
1507 --call_depth;
1508 return retval;
1509}
1510
1511#ifdef FEAT_EVAL
1512/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001513 * Obtain a line when inside a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001514 */
1515 static char_u *
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001516get_loop_line(c, cookie, indent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001517 int c;
1518 void *cookie;
1519 int indent;
1520{
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001521 struct loop_cookie *cp = (struct loop_cookie *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 wcmd_T *wp;
1523 char_u *line;
1524
1525 if (cp->current_line + 1 >= cp->lines_gap->ga_len)
1526 {
1527 if (cp->repeating)
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001528 return NULL; /* trying to read past ":endwhile"/":endfor" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001530 /* First time inside the ":while"/":for": get line normally. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 if (cp->getline == NULL)
1532 line = getcmdline(c, 0L, indent);
1533 else
1534 line = cp->getline(c, cp->cookie, indent);
Bram Moolenaard68071d2006-05-02 22:08:30 +00001535 if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 ++cp->current_line;
1537
1538 return line;
1539 }
1540
1541 KeyTyped = FALSE;
1542 ++cp->current_line;
1543 wp = (wcmd_T *)(cp->lines_gap->ga_data) + cp->current_line;
1544 sourcing_lnum = wp->lnum;
1545 return vim_strsave(wp->line);
1546}
1547
1548/*
1549 * Store a line in "gap" so that a ":while" loop can execute it again.
1550 */
1551 static int
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001552store_loop_line(gap, line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 garray_T *gap;
1554 char_u *line;
1555{
1556 if (ga_grow(gap, 1) == FAIL)
1557 return FAIL;
1558 ((wcmd_T *)(gap->ga_data))[gap->ga_len].line = vim_strsave(line);
1559 ((wcmd_T *)(gap->ga_data))[gap->ga_len].lnum = sourcing_lnum;
1560 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 return OK;
1562}
1563
1564/*
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001565 * Free the lines stored for a ":while" or ":for" loop.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 */
1567 static void
1568free_cmdlines(gap)
1569 garray_T *gap;
1570{
1571 while (gap->ga_len > 0)
1572 {
1573 vim_free(((wcmd_T *)(gap->ga_data))[gap->ga_len - 1].line);
1574 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 }
1576}
1577#endif
1578
1579/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001580 * If "fgetline" is get_loop_line(), return TRUE if the getline it uses equals
1581 * "func". * Otherwise return TRUE when "fgetline" equals "func".
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 */
1583/*ARGSUSED*/
1584 int
Bram Moolenaar89d40322006-08-29 15:30:07 +00001585getline_equal(fgetline, cookie, func)
1586 char_u *(*fgetline) __ARGS((int, void *, int));
1587 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588 char_u *(*func) __ARGS((int, void *, int));
1589{
1590#ifdef FEAT_EVAL
1591 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001592 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593
Bram Moolenaar89d40322006-08-29 15:30:07 +00001594 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 * function that's orignally used to obtain the lines. This may be nested
1596 * several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001597 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001598 cp = (struct loop_cookie *)cookie;
1599 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 {
1601 gp = cp->getline;
1602 cp = cp->cookie;
1603 }
1604 return gp == func;
1605#else
Bram Moolenaar89d40322006-08-29 15:30:07 +00001606 return fgetline == func;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607#endif
1608}
1609
1610#if defined(FEAT_EVAL) || defined(FEAT_MBYTE) || defined(PROTO)
1611/*
Bram Moolenaar89d40322006-08-29 15:30:07 +00001612 * If "fgetline" is get_loop_line(), return the cookie used by the original
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 * getline function. Otherwise return "cookie".
1614 */
1615/*ARGSUSED*/
1616 void *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001617getline_cookie(fgetline, cookie)
1618 char_u *(*fgetline) __ARGS((int, void *, int));
1619 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620{
1621# ifdef FEAT_EVAL
1622 char_u *(*gp) __ARGS((int, void *, int));
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001623 struct loop_cookie *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624
Bram Moolenaar89d40322006-08-29 15:30:07 +00001625 /* When "fgetline" is "get_loop_line()" use the "cookie" to find the
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 * cookie that's orignally used to obtain the lines. This may be nested
1627 * several levels. */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001628 gp = fgetline;
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00001629 cp = (struct loop_cookie *)cookie;
1630 while (gp == get_loop_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631 {
1632 gp = cp->getline;
1633 cp = cp->cookie;
1634 }
1635 return cp;
1636# else
1637 return cookie;
1638# endif
1639}
1640#endif
1641
1642/*
1643 * Execute one Ex command.
1644 *
1645 * If 'sourcing' is TRUE, the command will be included in the error message.
1646 *
1647 * 1. skip comment lines and leading space
1648 * 2. handle command modifiers
1649 * 3. parse range
1650 * 4. parse command
1651 * 5. parse arguments
1652 * 6. switch on command name
1653 *
Bram Moolenaar89d40322006-08-29 15:30:07 +00001654 * Note: "fgetline" can be NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 *
1656 * This function may be called recursively!
1657 */
1658#if (_MSC_VER == 1200)
1659/*
Bram Moolenaared203462004-06-16 11:19:22 +00001660 * Avoid optimisation bug in VC++ version 6.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 */
Bram Moolenaar281bdce2005-01-25 21:53:18 +00001662 #pragma optimize( "g", off )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663#endif
1664 static char_u *
1665do_one_cmd(cmdlinep, sourcing,
1666#ifdef FEAT_EVAL
1667 cstack,
1668#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001669 fgetline, cookie)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 char_u **cmdlinep;
1671 int sourcing;
1672#ifdef FEAT_EVAL
1673 struct condstack *cstack;
1674#endif
Bram Moolenaar89d40322006-08-29 15:30:07 +00001675 char_u *(*fgetline) __ARGS((int, void *, int));
1676 void *cookie; /* argument for fgetline() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677{
1678 char_u *p;
1679 linenr_T lnum;
1680 long n;
1681 char_u *errormsg = NULL; /* error message */
1682 exarg_T ea; /* Ex command arguments */
1683 long verbose_save = -1;
1684 int save_msg_scroll = 0;
1685 int did_silent = 0;
1686 int did_esilent = 0;
Bram Moolenaar7171abe2004-10-11 10:06:20 +00001687#ifdef HAVE_SANDBOX
1688 int did_sandbox = FALSE;
1689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 cmdmod_T save_cmdmod;
1691 int ni; /* set when Not Implemented */
1692
1693 vim_memset(&ea, 0, sizeof(ea));
1694 ea.line1 = 1;
1695 ea.line2 = 1;
1696#ifdef FEAT_EVAL
1697 ++ex_nesting_level;
1698#endif
1699
1700 /* when not editing the last file :q has to be typed twice */
1701 if (quitmore
1702#ifdef FEAT_EVAL
1703 /* avoid that a function call in 'statusline' does this */
Bram Moolenaar89d40322006-08-29 15:30:07 +00001704 && !getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705#endif
1706 )
1707 --quitmore;
1708
1709 /*
1710 * Reset browse, confirm, etc.. They are restored when returning, for
1711 * recursive calls.
1712 */
1713 save_cmdmod = cmdmod;
1714 vim_memset(&cmdmod, 0, sizeof(cmdmod));
1715
Bram Moolenaarcbb37ad2006-08-16 15:04:21 +00001716 /* "#!anything" is handled like a comment. */
1717 if ((*cmdlinep)[0] == '#' && (*cmdlinep)[1] == '!')
1718 goto doend;
1719
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 /*
1721 * Repeat until no more command modifiers are found.
1722 */
1723 ea.cmd = *cmdlinep;
1724 for (;;)
1725 {
1726/*
1727 * 1. skip comment lines and leading white space and colons
1728 */
1729 while (*ea.cmd == ' ' || *ea.cmd == '\t' || *ea.cmd == ':')
1730 ++ea.cmd;
1731
1732 /* in ex mode, an empty line works like :+ */
1733 if (*ea.cmd == NUL && exmode_active
Bram Moolenaar89d40322006-08-29 15:30:07 +00001734 && (getline_equal(fgetline, cookie, getexmodeline)
1735 || getline_equal(fgetline, cookie, getexline))
Bram Moolenaardf177f62005-02-22 08:39:57 +00001736 && curwin->w_cursor.lnum < curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737 {
1738 ea.cmd = (char_u *)"+";
1739 ex_pressedreturn = TRUE;
1740 }
1741
1742 /* ignore comment and empty lines */
1743 if (*ea.cmd == '"' || *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 {
1774#ifdef FEAT_BROWSE
1775 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
2120 cmdnames[ea.cmdidx].cmd_func == ex_ni);
2121
2122#ifndef FEAT_EVAL
2123 /*
2124 * When the expression evaluation is disabled, recognize the ":if" and
2125 * ":endif" commands and ignore everything in between it.
2126 */
2127 if (ea.cmdidx == CMD_if)
2128 ++if_level;
2129 if (if_level)
2130 {
2131 if (ea.cmdidx == CMD_endif)
2132 --if_level;
2133 goto doend;
2134 }
2135
2136#endif
2137
2138 if (*p == '!' && ea.cmdidx != CMD_substitute) /* forced commands */
2139 {
2140 ++p;
2141 ea.forceit = TRUE;
2142 }
2143 else
2144 ea.forceit = FALSE;
2145
2146/*
2147 * 5. parse arguments
2148 */
2149#ifdef FEAT_USR_CMDS
2150 if (!USER_CMDIDX(ea.cmdidx))
2151#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002152 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153
2154 if (!ea.skip)
2155 {
2156#ifdef HAVE_SANDBOX
2157 if (sandbox != 0 && !(ea.argt & SBOXOK))
2158 {
2159 /* Command not allowed in sandbox. */
2160 errormsg = (char_u *)_(e_sandbox);
2161 goto doend;
2162 }
2163#endif
2164 if (!curbuf->b_p_ma && (ea.argt & MODIFY))
2165 {
2166 /* Command not allowed in non-'modifiable' buffer */
2167 errormsg = (char_u *)_(e_modifiable);
2168 goto doend;
2169 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002170
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002171 if (text_locked() && !(ea.argt & CMDWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172# ifdef FEAT_USR_CMDS
2173 && !USER_CMDIDX(ea.cmdidx)
2174# endif
2175 )
2176 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00002177 /* Command not allowed when editing the command line. */
2178#ifdef FEAT_CMDWIN
2179 if (cmdwin_type != 0)
2180 errormsg = (char_u *)_(e_cmdwin);
2181 else
2182#endif
2183 errormsg = (char_u *)_(e_secure);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 goto doend;
2185 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002186#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002187 /* Disallow editing another buffer when "curbuf_lock" is set.
2188 * Do allow ":edit" (check for argument later).
2189 * Do allow ":checktime" (it's postponed). */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002190 if (!(ea.argt & CMDWIN)
Bram Moolenaar5555acc2006-04-07 21:33:12 +00002191 && ea.cmdidx != CMD_edit
2192 && ea.cmdidx != CMD_checktime
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002193# ifdef FEAT_USR_CMDS
2194 && !USER_CMDIDX(ea.cmdidx)
2195# endif
2196 && curbuf_locked())
2197 goto doend;
2198#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199
2200 if (!ni && !(ea.argt & RANGE) && ea.addr_count > 0)
2201 {
2202 /* no range allowed */
2203 errormsg = (char_u *)_(e_norange);
2204 goto doend;
2205 }
2206 }
2207
2208 if (!ni && !(ea.argt & BANG) && ea.forceit) /* no <!> allowed */
2209 {
2210 errormsg = (char_u *)_(e_nobang);
2211 goto doend;
2212 }
2213
2214 /*
2215 * Don't complain about the range if it is not used
2216 * (could happen if line_count is accidentally set to 0).
2217 */
2218 if (!ea.skip && !ni)
2219 {
2220 /*
2221 * If the range is backwards, ask for confirmation and, if given, swap
2222 * ea.line1 & ea.line2 so it's forwards again.
2223 * When global command is busy, don't ask, will fail below.
2224 */
2225 if (!global_busy && ea.line1 > ea.line2)
2226 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002227 if (msg_silent == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00002229 if (sourcing || exmode_active)
2230 {
2231 errormsg = (char_u *)_("E493: Backwards range given");
2232 goto doend;
2233 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 if (ask_yesno((char_u *)
2235 _("Backwards range given, OK to swap"), FALSE) != 'y')
Bram Moolenaara5792f52005-11-23 21:25:05 +00002236 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 }
2238 lnum = ea.line1;
2239 ea.line1 = ea.line2;
2240 ea.line2 = lnum;
2241 }
2242 if ((errormsg = invalid_range(&ea)) != NULL)
2243 goto doend;
2244 }
2245
2246 if ((ea.argt & NOTADR) && ea.addr_count == 0) /* default is 1, not cursor */
2247 ea.line2 = 1;
2248
2249 correct_range(&ea);
2250
2251#ifdef FEAT_FOLDING
2252 if (((ea.argt & WHOLEFOLD) || ea.addr_count >= 2) && !global_busy)
2253 {
2254 /* Put the first line at the start of a closed fold, put the last line
2255 * at the end of a closed fold. */
2256 (void)hasFolding(ea.line1, &ea.line1, NULL);
2257 (void)hasFolding(ea.line2, NULL, &ea.line2);
2258 }
2259#endif
2260
2261#ifdef FEAT_QUICKFIX
2262 /*
Bram Moolenaar86b68352004-12-27 21:59:20 +00002263 * For the ":make" and ":grep" commands we insert the 'makeprg'/'grepprg'
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 * option here, so things like % get expanded.
2265 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +00002266 p = replace_makeprg(&ea, p, cmdlinep);
2267 if (p == NULL)
2268 goto doend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269#endif
2270
2271 /*
2272 * Skip to start of argument.
2273 * Don't do this for the ":!" command, because ":!! -l" needs the space.
2274 */
2275 if (ea.cmdidx == CMD_bang)
2276 ea.arg = p;
2277 else
2278 ea.arg = skipwhite(p);
2279
2280 /*
2281 * Check for "++opt=val" argument.
2282 * Must be first, allow ":w ++enc=utf8 !cmd"
2283 */
2284 if (ea.argt & ARGOPT)
2285 while (ea.arg[0] == '+' && ea.arg[1] == '+')
2286 if (getargopt(&ea) == FAIL && !ni)
2287 {
2288 errormsg = (char_u *)_(e_invarg);
2289 goto doend;
2290 }
2291
2292 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
2293 {
2294 if (*ea.arg == '>') /* append */
2295 {
2296 if (*++ea.arg != '>') /* typed wrong */
2297 {
2298 errormsg = (char_u *)_("E494: Use w or w>>");
2299 goto doend;
2300 }
2301 ea.arg = skipwhite(ea.arg + 1);
2302 ea.append = TRUE;
2303 }
2304 else if (*ea.arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
2305 {
2306 ++ea.arg;
2307 ea.usefilter = TRUE;
2308 }
2309 }
2310
2311 if (ea.cmdidx == CMD_read)
2312 {
2313 if (ea.forceit)
2314 {
2315 ea.usefilter = TRUE; /* :r! filter if ea.forceit */
2316 ea.forceit = FALSE;
2317 }
2318 else if (*ea.arg == '!') /* :r !filter */
2319 {
2320 ++ea.arg;
2321 ea.usefilter = TRUE;
2322 }
2323 }
2324
2325 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
2326 {
2327 ea.amount = 1;
2328 while (*ea.arg == *ea.cmd) /* count number of '>' or '<' */
2329 {
2330 ++ea.arg;
2331 ++ea.amount;
2332 }
2333 ea.arg = skipwhite(ea.arg);
2334 }
2335
2336 /*
2337 * Check for "+command" argument, before checking for next command.
2338 * Don't do this for ":read !cmd" and ":write !cmd".
2339 */
2340 if ((ea.argt & EDITCMD) && !ea.usefilter)
2341 ea.do_ecmd_cmd = getargcmd(&ea.arg);
2342
2343 /*
2344 * Check for '|' to separate commands and '"' to start comments.
2345 * Don't do this for ":read !cmd" and ":write !cmd".
2346 */
2347 if ((ea.argt & TRLBAR) && !ea.usefilter)
2348 separate_nextcmd(&ea);
2349
2350 /*
2351 * Check for <newline> to end a shell command.
Bram Moolenaardf177f62005-02-22 08:39:57 +00002352 * Also do this for ":read !cmd", ":write !cmd" and ":global".
2353 * Any others?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002354 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00002355 else if (ea.cmdidx == CMD_bang
2356 || ea.cmdidx == CMD_global
2357 || ea.cmdidx == CMD_vglobal
2358 || ea.usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002359 {
2360 for (p = ea.arg; *p; ++p)
2361 {
2362 /* Remove one backslash before a newline, so that it's possible to
2363 * pass a newline to the shell and also a newline that is preceded
2364 * with a backslash. This makes it impossible to end a shell
2365 * command in a backslash, but that doesn't appear useful.
2366 * Halving the number of backslashes is incompatible with previous
2367 * versions. */
2368 if (*p == '\\' && p[1] == '\n')
2369 mch_memmove(p, p + 1, STRLEN(p));
2370 else if (*p == '\n')
2371 {
2372 ea.nextcmd = p + 1;
2373 *p = NUL;
2374 break;
2375 }
2376 }
2377 }
2378
2379 if ((ea.argt & DFLALL) && ea.addr_count == 0)
2380 {
2381 ea.line1 = 1;
2382 ea.line2 = curbuf->b_ml.ml_line_count;
2383 }
2384
2385 /* accept numbered register only when no count allowed (:put) */
2386 if ( (ea.argt & REGSTR)
2387 && *ea.arg != NUL
2388#ifdef FEAT_USR_CMDS
2389 && valid_yank_reg(*ea.arg, (ea.cmdidx != CMD_put
2390 && USER_CMDIDX(ea.cmdidx)))
2391 /* Do not allow register = for user commands */
2392 && (!USER_CMDIDX(ea.cmdidx) || *ea.arg != '=')
2393#else
2394 && valid_yank_reg(*ea.arg, ea.cmdidx != CMD_put)
2395#endif
2396 && !((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)))
2397 {
2398 ea.regname = *ea.arg++;
2399#ifdef FEAT_EVAL
2400 /* for '=' register: accept the rest of the line as an expression */
2401 if (ea.arg[-1] == '=' && ea.arg[0] != NUL)
2402 {
2403 set_expr_line(vim_strsave(ea.arg));
2404 ea.arg += STRLEN(ea.arg);
2405 }
2406#endif
2407 ea.arg = skipwhite(ea.arg);
2408 }
2409
2410 /*
2411 * Check for a count. When accepting a BUFNAME, don't use "123foo" as a
2412 * count, it's a buffer name.
2413 */
2414 if ((ea.argt & COUNT) && VIM_ISDIGIT(*ea.arg)
2415 && (!(ea.argt & BUFNAME) || *(p = skipdigits(ea.arg)) == NUL
2416 || vim_iswhite(*p)))
2417 {
2418 n = getdigits(&ea.arg);
2419 ea.arg = skipwhite(ea.arg);
Bram Moolenaar80a94a52006-02-23 21:26:58 +00002420 if (n <= 0 && !ni && (ea.argt & ZEROR) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 {
2422 errormsg = (char_u *)_(e_zerocount);
2423 goto doend;
2424 }
2425 if (ea.argt & NOTADR) /* e.g. :buffer 2, :sleep 3 */
2426 {
2427 ea.line2 = n;
2428 if (ea.addr_count == 0)
2429 ea.addr_count = 1;
2430 }
2431 else
2432 {
2433 ea.line1 = ea.line2;
2434 ea.line2 += n - 1;
2435 ++ea.addr_count;
2436 /*
2437 * Be vi compatible: no error message for out of range.
2438 */
2439 if (ea.line2 > curbuf->b_ml.ml_line_count)
2440 ea.line2 = curbuf->b_ml.ml_line_count;
2441 }
2442 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00002443
2444 /*
2445 * Check for flags: 'l', 'p' and '#'.
2446 */
2447 if (ea.argt & EXFLAGS)
2448 get_flags(&ea);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449 /* no arguments allowed */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00002450 if (!ni && !(ea.argt & EXTRA) && *ea.arg != NUL
Bram Moolenaara2031822006-03-07 22:29:51 +00002451 && *ea.arg != '"' && (*ea.arg != '|' || (ea.argt & TRLBAR) == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452 {
2453 errormsg = (char_u *)_(e_trailing);
2454 goto doend;
2455 }
2456
2457 if (!ni && (ea.argt & NEEDARG) && *ea.arg == NUL)
2458 {
2459 errormsg = (char_u *)_(e_argreq);
2460 goto doend;
2461 }
2462
2463#ifdef FEAT_EVAL
2464 /*
2465 * Skip the command when it's not going to be executed.
2466 * The commands like :if, :endif, etc. always need to be executed.
2467 * Also make an exception for commands that handle a trailing command
2468 * themselves.
2469 */
2470 if (ea.skip)
2471 {
2472 switch (ea.cmdidx)
2473 {
2474 /* commands that need evaluation */
2475 case CMD_while:
2476 case CMD_endwhile:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00002477 case CMD_for:
2478 case CMD_endfor:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 case CMD_if:
2480 case CMD_elseif:
2481 case CMD_else:
2482 case CMD_endif:
2483 case CMD_try:
2484 case CMD_catch:
2485 case CMD_finally:
2486 case CMD_endtry:
2487 case CMD_function:
2488 break;
2489
2490 /* Commands that handle '|' themselves. Check: A command should
2491 * either have the TRLBAR flag, appear in this list or appear in
2492 * the list at ":help :bar". */
2493 case CMD_aboveleft:
2494 case CMD_and:
2495 case CMD_belowright:
2496 case CMD_botright:
2497 case CMD_browse:
2498 case CMD_call:
2499 case CMD_confirm:
2500 case CMD_delfunction:
2501 case CMD_djump:
2502 case CMD_dlist:
2503 case CMD_dsearch:
2504 case CMD_dsplit:
2505 case CMD_echo:
2506 case CMD_echoerr:
2507 case CMD_echomsg:
2508 case CMD_echon:
2509 case CMD_execute:
2510 case CMD_help:
2511 case CMD_hide:
2512 case CMD_ijump:
2513 case CMD_ilist:
2514 case CMD_isearch:
2515 case CMD_isplit:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002516 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 case CMD_keepjumps:
2518 case CMD_keepmarks:
2519 case CMD_leftabove:
2520 case CMD_let:
2521 case CMD_lockmarks:
2522 case CMD_match:
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002523 case CMD_mzscheme:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 case CMD_perl:
2525 case CMD_psearch:
2526 case CMD_python:
2527 case CMD_return:
2528 case CMD_rightbelow:
2529 case CMD_ruby:
2530 case CMD_silent:
2531 case CMD_smagic:
2532 case CMD_snomagic:
2533 case CMD_substitute:
2534 case CMD_syntax:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002535 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 case CMD_tcl:
2537 case CMD_throw:
2538 case CMD_tilde:
2539 case CMD_topleft:
2540 case CMD_unlet:
2541 case CMD_verbose:
2542 case CMD_vertical:
2543 break;
2544
2545 default: goto doend;
2546 }
2547 }
2548#endif
2549
2550 if (ea.argt & XFILE)
2551 {
2552 if (expand_filename(&ea, cmdlinep, &errormsg) == FAIL)
2553 goto doend;
2554 }
2555
2556#ifdef FEAT_LISTCMDS
2557 /*
2558 * Accept buffer name. Cannot be used at the same time with a buffer
2559 * number. Don't do this for a user command.
2560 */
2561 if ((ea.argt & BUFNAME) && *ea.arg != NUL && ea.addr_count == 0
2562# ifdef FEAT_USR_CMDS
2563 && !USER_CMDIDX(ea.cmdidx)
2564# endif
2565 )
2566 {
2567 /*
2568 * :bdelete, :bwipeout and :bunload take several arguments, separated
2569 * by spaces: find next space (skipping over escaped characters).
2570 * The others take one argument: ignore trailing spaces.
2571 */
2572 if (ea.cmdidx == CMD_bdelete || ea.cmdidx == CMD_bwipeout
2573 || ea.cmdidx == CMD_bunload)
2574 p = skiptowhite_esc(ea.arg);
2575 else
2576 {
2577 p = ea.arg + STRLEN(ea.arg);
2578 while (p > ea.arg && vim_iswhite(p[-1]))
2579 --p;
2580 }
2581 ea.line2 = buflist_findpat(ea.arg, p, (ea.argt & BUFUNL) != 0, FALSE);
2582 if (ea.line2 < 0) /* failed */
2583 goto doend;
2584 ea.addr_count = 1;
2585 ea.arg = skipwhite(p);
2586 }
2587#endif
2588
2589/*
2590 * 6. switch on command name
2591 *
2592 * The "ea" structure holds the arguments that can be used.
2593 */
2594 ea.cmdlinep = cmdlinep;
Bram Moolenaar89d40322006-08-29 15:30:07 +00002595 ea.getline = fgetline;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 ea.cookie = cookie;
2597#ifdef FEAT_EVAL
2598 ea.cstack = cstack;
2599#endif
2600
2601#ifdef FEAT_USR_CMDS
2602 if (USER_CMDIDX(ea.cmdidx))
2603 {
2604 /*
2605 * Execute a user-defined command.
2606 */
2607 do_ucmd(&ea);
2608 }
2609 else
2610#endif
2611 {
2612 /*
2613 * Call the function to execute the command.
2614 */
2615 ea.errmsg = NULL;
2616 (cmdnames[ea.cmdidx].cmd_func)(&ea);
2617 if (ea.errmsg != NULL)
2618 errormsg = (char_u *)_(ea.errmsg);
2619 }
2620
2621#ifdef FEAT_EVAL
2622 /*
2623 * If the command just executed called do_cmdline(), any throw or ":return"
2624 * or ":finish" encountered there must also check the cstack of the still
2625 * active do_cmdline() that called this do_one_cmd(). Rethrow an uncaught
2626 * exception, or reanimate a returned function or finished script file and
2627 * return or finish it again.
2628 */
2629 if (need_rethrow)
2630 do_throw(cstack);
2631 else if (check_cstack)
2632 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002633 if (source_finished(fgetline, cookie))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634 do_finish(&ea, TRUE);
Bram Moolenaar89d40322006-08-29 15:30:07 +00002635 else if (getline_equal(fgetline, cookie, get_func_line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 && current_func_returned())
2637 do_return(&ea, TRUE, FALSE, NULL);
2638 }
2639 need_rethrow = check_cstack = FALSE;
2640#endif
2641
2642doend:
2643 if (curwin->w_cursor.lnum == 0) /* can happen with zero line number */
2644 curwin->w_cursor.lnum = 1;
2645
2646 if (errormsg != NULL && *errormsg != NUL && !did_emsg)
2647 {
2648 if (sourcing)
2649 {
2650 if (errormsg != IObuff)
2651 {
2652 STRCPY(IObuff, errormsg);
2653 errormsg = IObuff;
2654 }
2655 STRCAT(errormsg, ": ");
2656 STRNCAT(errormsg, *cmdlinep, IOSIZE - STRLEN(IObuff));
2657 }
2658 emsg(errormsg);
2659 }
2660#ifdef FEAT_EVAL
2661 do_errthrow(cstack,
2662 (ea.cmdidx != CMD_SIZE
2663# ifdef FEAT_USR_CMDS
2664 && !USER_CMDIDX(ea.cmdidx)
2665# endif
2666 ) ? cmdnames[(int)ea.cmdidx].cmd_name : (char_u *)NULL);
2667#endif
2668
2669 if (verbose_save >= 0)
2670 p_verbose = verbose_save;
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002671#ifdef FEAT_AUTOCMD
2672 if (cmdmod.save_ei != NULL)
2673 {
2674 /* Restore 'eventignore' to the value before ":noautocmd". */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002675 set_string_option_direct((char_u *)"ei", -1, cmdmod.save_ei,
2676 OPT_FREE, SID_NONE);
Bram Moolenaarcdbac1e2005-12-11 21:27:22 +00002677 free_string_option(cmdmod.save_ei);
2678 }
2679#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002680
2681 cmdmod = save_cmdmod;
2682
2683 if (did_silent > 0)
2684 {
2685 /* messages could be enabled for a serious error, need to check if the
2686 * counters don't become negative */
2687 msg_silent -= did_silent;
2688 if (msg_silent < 0)
2689 msg_silent = 0;
2690 emsg_silent -= did_esilent;
2691 if (emsg_silent < 0)
2692 emsg_silent = 0;
2693 /* Restore msg_scroll, it's set by file I/O commands, even when no
2694 * message is actually displayed. */
2695 msg_scroll = save_msg_scroll;
2696 }
2697
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002698#ifdef HAVE_SANDBOX
2699 if (did_sandbox)
2700 --sandbox;
2701#endif
2702
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 if (ea.nextcmd && *ea.nextcmd == NUL) /* not really a next command */
2704 ea.nextcmd = NULL;
2705
2706#ifdef FEAT_EVAL
2707 --ex_nesting_level;
2708#endif
2709
2710 return ea.nextcmd;
2711}
2712#if (_MSC_VER == 1200)
Bram Moolenaar281bdce2005-01-25 21:53:18 +00002713 #pragma optimize( "", on )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002714#endif
2715
2716/*
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002717 * Check for an Ex command with optional tail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 * If there is a match advance "pp" to the argument and return TRUE.
2719 */
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002720 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721checkforcmd(pp, cmd, len)
Bram Moolenaarc5a1e802005-01-11 21:21:40 +00002722 char_u **pp; /* start of command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 char *cmd; /* name of command */
2724 int len; /* required length */
2725{
2726 int i;
2727
2728 for (i = 0; cmd[i] != NUL; ++i)
2729 if (cmd[i] != (*pp)[i])
2730 break;
2731 if (i >= len && !isalpha((*pp)[i]))
2732 {
2733 *pp = skipwhite(*pp + i);
2734 return TRUE;
2735 }
2736 return FALSE;
2737}
2738
2739/*
2740 * Find an Ex command by its name, either built-in or user.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002741 * Start of the name can be found at eap->cmd.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 * Returns pointer to char after the command name.
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002743 * "full" is set to TRUE if the whole command name matched.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744 * Returns NULL for an ambiguous user command.
2745 */
2746/*ARGSUSED*/
2747 static char_u *
2748find_command(eap, full)
2749 exarg_T *eap;
2750 int *full;
2751{
2752 int len;
2753 char_u *p;
Bram Moolenaardf177f62005-02-22 08:39:57 +00002754 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755
2756 /*
2757 * Isolate the command and search for it in the command table.
2758 * Exeptions:
2759 * - the 'k' command can directly be followed by any character.
2760 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
2761 * but :sre[wind] is another command, as are :scrip[tnames],
2762 * :scs[cope], :sim[alt], :sig[ns] and :sil[ent].
Bram Moolenaardf177f62005-02-22 08:39:57 +00002763 * - the "d" command can directly be followed by 'l' or 'p' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764 */
2765 p = eap->cmd;
2766 if (*p == 'k')
2767 {
2768 eap->cmdidx = CMD_k;
2769 ++p;
2770 }
2771 else if (p[0] == 's'
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002772 && ((p[1] == 'c' && p[2] != 's' && p[2] != 'r'
2773 && p[3] != 'i' && p[4] != 'p')
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 || p[1] == 'g'
2775 || (p[1] == 'i' && p[2] != 'm' && p[2] != 'l' && p[2] != 'g')
2776 || p[1] == 'I'
2777 || (p[1] == 'r' && p[2] != 'e')))
2778 {
2779 eap->cmdidx = CMD_substitute;
2780 ++p;
2781 }
2782 else
2783 {
2784 while (ASCII_ISALPHA(*p))
2785 ++p;
2786 /* check for non-alpha command */
2787 if (p == eap->cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
2788 ++p;
2789 len = (int)(p - eap->cmd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00002790 if (*eap->cmd == 'd' && (p[-1] == 'l' || p[-1] == 'p'))
2791 {
2792 /* Check for ":dl", ":dell", etc. to ":deletel": that's
2793 * :delete with the 'l' flag. Same for 'p'. */
2794 for (i = 0; i < len; ++i)
2795 if (eap->cmd[i] != "delete"[i])
2796 break;
2797 if (i == len - 1)
2798 {
2799 --len;
2800 if (p[-1] == 'l')
2801 eap->flags |= EXFLAG_LIST;
2802 else
2803 eap->flags |= EXFLAG_PRINT;
2804 }
2805 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002806
2807 if (ASCII_ISLOWER(*eap->cmd))
2808 eap->cmdidx = cmdidxs[CharOrdLow(*eap->cmd)];
2809 else
2810 eap->cmdidx = cmdidxs[26];
2811
2812 for ( ; (int)eap->cmdidx < (int)CMD_SIZE;
2813 eap->cmdidx = (cmdidx_T)((int)eap->cmdidx + 1))
2814 if (STRNCMP(cmdnames[(int)eap->cmdidx].cmd_name, (char *)eap->cmd,
2815 (size_t)len) == 0)
2816 {
2817#ifdef FEAT_EVAL
2818 if (full != NULL
2819 && cmdnames[(int)eap->cmdidx].cmd_name[len] == NUL)
2820 *full = TRUE;
2821#endif
2822 break;
2823 }
2824
2825#ifdef FEAT_USR_CMDS
2826 /* Look for a user defined command as a last resort */
2827 if (eap->cmdidx == CMD_SIZE && *eap->cmd >= 'A' && *eap->cmd <= 'Z')
2828 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002829 /* User defined commands may contain digits. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 while (ASCII_ISALNUM(*p))
2831 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002832 p = find_ucmd(eap, p, full, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002833 }
2834#endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002835 if (p == eap->cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 eap->cmdidx = CMD_SIZE;
2837 }
2838
2839 return p;
2840}
2841
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002842#ifdef FEAT_USR_CMDS
2843/*
2844 * Search for a user command that matches "eap->cmd".
2845 * Return cmdidx in "eap->cmdidx", flags in "eap->argt", idx in "eap->useridx".
2846 * Return a pointer to just after the command.
2847 * Return NULL if there is no matching command.
2848 */
2849 static char_u *
2850find_ucmd(eap, p, full, xp, compl)
2851 exarg_T *eap;
2852 char_u *p; /* end of the command (possibly including count) */
2853 int *full; /* set to TRUE for a full match */
2854 expand_T *xp; /* used for completion, NULL otherwise */
2855 int *compl; /* completion flags or NULL */
2856{
2857 int len = (int)(p - eap->cmd);
2858 int j, k, matchlen = 0;
2859 ucmd_T *uc;
2860 int found = FALSE;
2861 int possible = FALSE;
2862 char_u *cp, *np; /* Point into typed cmd and test name */
2863 garray_T *gap;
2864 int amb_local = FALSE; /* Found ambiguous buffer-local command,
2865 only full match global is accepted. */
2866
2867 /*
2868 * Look for buffer-local user commands first, then global ones.
2869 */
2870 gap = &curbuf->b_ucmds;
2871 for (;;)
2872 {
2873 for (j = 0; j < gap->ga_len; ++j)
2874 {
2875 uc = USER_CMD_GA(gap, j);
2876 cp = eap->cmd;
2877 np = uc->uc_name;
2878 k = 0;
2879 while (k < len && *np != NUL && *cp++ == *np++)
2880 k++;
2881 if (k == len || (*np == NUL && vim_isdigit(eap->cmd[k])))
2882 {
2883 /* If finding a second match, the command is ambiguous. But
2884 * not if a buffer-local command wasn't a full match and a
2885 * global command is a full match. */
2886 if (k == len && found && *np != NUL)
2887 {
2888 if (gap == &ucmds)
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002889 return NULL;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002890 amb_local = TRUE;
2891 }
2892
2893 if (!found || (k == len && *np == NUL))
2894 {
2895 /* If we matched up to a digit, then there could
2896 * be another command including the digit that we
2897 * should use instead.
2898 */
2899 if (k == len)
2900 found = TRUE;
2901 else
2902 possible = TRUE;
2903
2904 if (gap == &ucmds)
2905 eap->cmdidx = CMD_USER;
2906 else
2907 eap->cmdidx = CMD_USER_BUF;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002908 eap->argt = (long)uc->uc_argt;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00002909 eap->useridx = j;
2910
2911# ifdef FEAT_CMDL_COMPL
2912 if (compl != NULL)
2913 *compl = uc->uc_compl;
2914# ifdef FEAT_EVAL
2915 if (xp != NULL)
2916 {
2917 xp->xp_arg = uc->uc_compl_arg;
2918 xp->xp_scriptID = uc->uc_scriptID;
2919 }
2920# endif
2921# endif
2922 /* Do not search for further abbreviations
2923 * if this is an exact match. */
2924 matchlen = k;
2925 if (k == len && *np == NUL)
2926 {
2927 if (full != NULL)
2928 *full = TRUE;
2929 amb_local = FALSE;
2930 break;
2931 }
2932 }
2933 }
2934 }
2935
2936 /* Stop if we found a full match or searched all. */
2937 if (j < gap->ga_len || gap == &ucmds)
2938 break;
2939 gap = &ucmds;
2940 }
2941
2942 /* Only found ambiguous matches. */
2943 if (amb_local)
2944 {
2945 if (xp != NULL)
2946 xp->xp_context = EXPAND_UNSUCCESSFUL;
2947 return NULL;
2948 }
2949
2950 /* The match we found may be followed immediately by a number. Move "p"
2951 * back to point to it. */
2952 if (found || possible)
2953 return p + (matchlen - len);
2954 return p;
2955}
2956#endif
2957
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958#if defined(FEAT_EVAL) || defined(PROTO)
2959/*
2960 * Return > 0 if an Ex command "name" exists.
2961 * Return 2 if there is an exact match.
2962 * Return 3 if there is an ambiguous match.
2963 */
2964 int
2965cmd_exists(name)
2966 char_u *name;
2967{
2968 exarg_T ea;
2969 int full = FALSE;
2970 int i;
2971 int j;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00002972 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973 static struct cmdmod
2974 {
2975 char *name;
2976 int minlen;
2977 } cmdmods[] = {
2978 {"aboveleft", 3},
2979 {"belowright", 3},
2980 {"botright", 2},
2981 {"browse", 3},
2982 {"confirm", 4},
2983 {"hide", 3},
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002984 {"keepalt", 5},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002985 {"keepjumps", 5},
2986 {"keepmarks", 3},
2987 {"leftabove", 5},
2988 {"lockmarks", 3},
2989 {"rightbelow", 6},
Bram Moolenaar7171abe2004-10-11 10:06:20 +00002990 {"sandbox", 3},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 {"silent", 3},
Bram Moolenaara226a6d2006-02-26 23:59:20 +00002992 {"tab", 3},
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 {"topleft", 2},
2994 {"verbose", 4},
2995 {"vertical", 4},
2996 };
2997
2998 /* Check command modifiers. */
2999 for (i = 0; i < sizeof(cmdmods) / sizeof(struct cmdmod); ++i)
3000 {
3001 for (j = 0; name[j] != NUL; ++j)
3002 if (name[j] != cmdmods[i].name[j])
3003 break;
3004 if (name[j] == NUL && j >= cmdmods[i].minlen)
3005 return (cmdmods[i].name[j] == NUL ? 2 : 1);
3006 }
3007
Bram Moolenaara9587612006-05-04 21:47:50 +00003008 /* Check built-in commands and user defined commands.
3009 * For ":2match" and ":3match" we need to skip the number. */
3010 ea.cmd = (*name == '2' || *name == '3') ? name + 1 : name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 ea.cmdidx = (cmdidx_T)0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003012 p = find_command(&ea, &full);
3013 if (p == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 return 3;
Bram Moolenaara9587612006-05-04 21:47:50 +00003015 if (vim_isdigit(*name) && ea.cmdidx != CMD_match)
3016 return 0;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00003017 if (*skipwhite(p) != NUL)
3018 return 0; /* trailing garbage */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 return (ea.cmdidx == CMD_SIZE ? 0 : (full ? 2 : 1));
3020}
3021#endif
3022
3023/*
3024 * This is all pretty much copied from do_one_cmd(), with all the extra stuff
3025 * we don't need/want deleted. Maybe this could be done better if we didn't
3026 * repeat all this stuff. The only problem is that they may not stay
3027 * perfectly compatible with each other, but then the command line syntax
3028 * probably won't change that much -- webb.
3029 */
3030 char_u *
3031set_one_cmd_context(xp, buff)
3032 expand_T *xp;
3033 char_u *buff; /* buffer for command string */
3034{
3035 char_u *p;
3036 char_u *cmd, *arg;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003037 int len = 0;
3038 exarg_T ea;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3040 int compl = EXPAND_NOTHING;
3041#endif
3042#ifdef FEAT_CMDL_COMPL
3043 int delim;
3044#endif
3045 int forceit = FALSE;
3046 int usefilter = FALSE; /* filter instead of file name */
3047
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003048 ExpandInit(xp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 xp->xp_pattern = buff;
3050 xp->xp_context = EXPAND_COMMANDS; /* Default until we get past command */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003051 ea.argt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052
3053/*
3054 * 2. skip comment lines and leading space, colons or bars
3055 */
3056 for (cmd = buff; vim_strchr((char_u *)" \t:|", *cmd) != NULL; cmd++)
3057 ;
3058 xp->xp_pattern = cmd;
3059
3060 if (*cmd == NUL)
3061 return NULL;
3062 if (*cmd == '"') /* ignore comment lines */
3063 {
3064 xp->xp_context = EXPAND_NOTHING;
3065 return NULL;
3066 }
3067
3068/*
3069 * 3. parse a range specifier of the form: addr [,addr] [;addr] ..
3070 */
3071 cmd = skip_range(cmd, &xp->xp_context);
3072
3073/*
3074 * 4. parse command
3075 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 xp->xp_pattern = cmd;
3077 if (*cmd == NUL)
3078 return NULL;
3079 if (*cmd == '"')
3080 {
3081 xp->xp_context = EXPAND_NOTHING;
3082 return NULL;
3083 }
3084
3085 if (*cmd == '|' || *cmd == '\n')
3086 return cmd + 1; /* There's another command */
3087
3088 /*
3089 * Isolate the command and search for it in the command table.
3090 * Exceptions:
3091 * - the 'k' command can directly be followed by any character, but
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003092 * do accept "keepmarks", "keepalt" and "keepjumps".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 * - the 's' command can be followed directly by 'c', 'g', 'i', 'I' or 'r'
3094 */
3095 if (*cmd == 'k' && cmd[1] != 'e')
3096 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003097 ea.cmdidx = CMD_k;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 p = cmd + 1;
3099 }
3100 else
3101 {
3102 p = cmd;
3103 while (ASCII_ISALPHA(*p) || *p == '*') /* Allow * wild card */
3104 ++p;
3105 /* check for non-alpha command */
3106 if (p == cmd && vim_strchr((char_u *)"@*!=><&~#", *p) != NULL)
3107 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003108 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003110 if (len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 {
3112 xp->xp_context = EXPAND_UNSUCCESSFUL;
3113 return NULL;
3114 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003115 for (ea.cmdidx = (cmdidx_T)0; (int)ea.cmdidx < (int)CMD_SIZE;
3116 ea.cmdidx = (cmdidx_T)((int)ea.cmdidx + 1))
3117 if (STRNCMP(cmdnames[(int)ea.cmdidx].cmd_name, cmd, (size_t)len) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118 break;
3119
3120#ifdef FEAT_USR_CMDS
3121 if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3122 {
3123 while (ASCII_ISALNUM(*p) || *p == '*') /* Allow * wild card */
3124 ++p;
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003125 len = (int)(p - cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 }
3127#endif
3128 }
3129
3130 /*
3131 * If the cursor is touching the command, and it ends in an alpha-numeric
3132 * character, complete the command name.
3133 */
3134 if (*p == NUL && ASCII_ISALNUM(p[-1]))
3135 return NULL;
3136
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003137 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 {
3139 if (*cmd == 's' && vim_strchr((char_u *)"cgriI", cmd[1]) != NULL)
3140 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003141 ea.cmdidx = CMD_substitute;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142 p = cmd + 1;
3143 }
3144#ifdef FEAT_USR_CMDS
3145 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
3146 {
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003147 ea.cmd = cmd;
3148 p = find_ucmd(&ea, p, NULL, xp,
3149# if defined(FEAT_CMDL_COMPL)
3150 &compl
3151# else
3152 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153# endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003154 );
Bram Moolenaarebefac62005-12-28 22:39:57 +00003155 if (p == NULL)
3156 ea.cmdidx = CMD_SIZE; /* ambiguous user command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 }
3158#endif
3159 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003160 if (ea.cmdidx == CMD_SIZE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 {
3162 /* Not still touching the command and it was an illegal one */
3163 xp->xp_context = EXPAND_UNSUCCESSFUL;
3164 return NULL;
3165 }
3166
3167 xp->xp_context = EXPAND_NOTHING; /* Default now that we're past command */
3168
3169 if (*p == '!') /* forced commands */
3170 {
3171 forceit = TRUE;
3172 ++p;
3173 }
3174
3175/*
3176 * 5. parse arguments
3177 */
3178#ifdef FEAT_USR_CMDS
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003179 if (!USER_CMDIDX(ea.cmdidx))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180#endif
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003181 ea.argt = (long)cmdnames[(int)ea.cmdidx].cmd_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182
3183 arg = skipwhite(p);
3184
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003185 if (ea.cmdidx == CMD_write || ea.cmdidx == CMD_update)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 {
3187 if (*arg == '>') /* append */
3188 {
3189 if (*++arg == '>')
3190 ++arg;
3191 arg = skipwhite(arg);
3192 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003193 else if (*arg == '!' && ea.cmdidx == CMD_write) /* :w !filter */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 {
3195 ++arg;
3196 usefilter = TRUE;
3197 }
3198 }
3199
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003200 if (ea.cmdidx == CMD_read)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 {
3202 usefilter = forceit; /* :r! filter if forced */
3203 if (*arg == '!') /* :r !filter */
3204 {
3205 ++arg;
3206 usefilter = TRUE;
3207 }
3208 }
3209
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003210 if (ea.cmdidx == CMD_lshift || ea.cmdidx == CMD_rshift)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211 {
3212 while (*arg == *cmd) /* allow any number of '>' or '<' */
3213 ++arg;
3214 arg = skipwhite(arg);
3215 }
3216
3217 /* Does command allow "+command"? */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003218 if ((ea.argt & EDITCMD) && !usefilter && *arg == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003219 {
3220 /* Check if we're in the +command */
3221 p = arg + 1;
3222 arg = skip_cmd_arg(arg, FALSE);
3223
3224 /* Still touching the command after '+'? */
3225 if (*arg == NUL)
3226 return p;
3227
3228 /* Skip space(s) after +command to get to the real argument */
3229 arg = skipwhite(arg);
3230 }
3231
3232 /*
3233 * Check for '|' to separate commands and '"' to start comments.
3234 * Don't do this for ":read !cmd" and ":write !cmd".
3235 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003236 if ((ea.argt & TRLBAR) && !usefilter)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 {
3238 p = arg;
3239 /* ":redir @" is not the start of a comment */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003240 if (ea.cmdidx == CMD_redir && p[0] == '@' && p[1] == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241 p += 2;
3242 while (*p)
3243 {
3244 if (*p == Ctrl_V)
3245 {
3246 if (p[1] != NUL)
3247 ++p;
3248 }
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003249 else if ( (*p == '"' && !(ea.argt & NOTRLCOM))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250 || *p == '|' || *p == '\n')
3251 {
3252 if (*(p - 1) != '\\')
3253 {
3254 if (*p == '|' || *p == '\n')
3255 return p + 1;
3256 return NULL; /* It's a comment */
3257 }
3258 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003259 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003260 }
3261 }
3262
3263 /* no arguments allowed */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003264 if (!(ea.argt & EXTRA) && *arg != NUL &&
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 vim_strchr((char_u *)"|\"", *arg) == NULL)
3266 return NULL;
3267
3268 /* Find start of last argument (argument just before cursor): */
3269 p = buff + STRLEN(buff);
3270 while (p != arg && *p != ' ' && *p != TAB)
3271 p--;
3272 if (*p == ' ' || *p == TAB)
3273 p++;
3274 xp->xp_pattern = p;
3275
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003276 if (ea.argt & XFILE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 {
3278 int in_quote = FALSE;
3279 char_u *bow = NULL; /* Beginning of word */
3280
3281 /*
3282 * Allow spaces within back-quotes to count as part of the argument
3283 * being expanded.
3284 */
3285 xp->xp_pattern = skipwhite(arg);
3286 for (p = xp->xp_pattern; *p; )
3287 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003288 if (*p == '\\' && p[1] != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 ++p;
3290#ifdef SPACE_IN_FILENAME
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003291 else if (vim_iswhite(*p) && (!(ea.argt & NOSPC) || usefilter))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292#else
3293 else if (vim_iswhite(*p))
3294#endif
3295 {
3296 p = skipwhite(p);
3297 if (in_quote)
3298 bow = p;
3299 else
3300 xp->xp_pattern = p;
3301 --p;
3302 }
3303 else if (*p == '`')
3304 {
3305 if (!in_quote)
3306 {
3307 xp->xp_pattern = p;
3308 bow = p + 1;
3309 }
3310 in_quote = !in_quote;
3311 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003312 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 }
3314
3315 /*
3316 * If we are still inside the quotes, and we passed a space, just
3317 * expand from there.
3318 */
3319 if (bow != NULL && in_quote)
3320 xp->xp_pattern = bow;
3321 xp->xp_context = EXPAND_FILES;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003322
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003323#ifndef BACKSLASH_IN_FILENAME
3324 /* For a shell command more chars need to be escaped. */
3325 if (usefilter || ea.cmdidx == CMD_bang)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003326 {
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003327 xp->xp_shell = TRUE;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00003328
3329 /* When still after the command name expand executables. */
3330 if (xp->xp_pattern == skipwhite(arg))
3331 xp->xp_context = EXPAND_SHELLCMD;
3332 }
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00003333#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334
3335 /* Check for environment variable */
3336 if (*xp->xp_pattern == '$'
3337#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3338 || *xp->xp_pattern == '%'
3339#endif
3340 )
3341 {
3342 for (p = xp->xp_pattern + 1; *p != NUL; ++p)
3343 if (!vim_isIDc(*p))
3344 break;
3345 if (*p == NUL)
3346 {
3347 xp->xp_context = EXPAND_ENV_VARS;
3348 ++xp->xp_pattern;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003349#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
3350 /* Avoid that the assignment uses EXPAND_FILES again. */
Bram Moolenaara466c992005-07-09 21:03:22 +00003351 if (compl != EXPAND_USER_DEFINED && compl != EXPAND_USER_LIST)
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003352 compl = EXPAND_ENV_VARS;
3353#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003354 }
3355 }
3356 }
3357
3358/*
3359 * 6. switch on command name
3360 */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003361 switch (ea.cmdidx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003362 {
3363 case CMD_cd:
3364 case CMD_chdir:
3365 case CMD_lcd:
3366 case CMD_lchdir:
3367 if (xp->xp_context == EXPAND_FILES)
3368 xp->xp_context = EXPAND_DIRECTORIES;
3369 break;
3370 case CMD_help:
3371 xp->xp_context = EXPAND_HELP;
3372 xp->xp_pattern = arg;
3373 break;
3374
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003375 /* Command modifiers: return the argument.
3376 * Also for commands with an argument that is a command. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 case CMD_aboveleft:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003378 case CMD_argdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 case CMD_belowright:
3380 case CMD_botright:
3381 case CMD_browse:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003382 case CMD_bufdo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 case CMD_confirm:
Bram Moolenaardf177f62005-02-22 08:39:57 +00003384 case CMD_debug:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 case CMD_folddoclosed:
3386 case CMD_folddoopen:
3387 case CMD_hide:
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003388 case CMD_keepalt:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389 case CMD_keepjumps:
3390 case CMD_keepmarks:
3391 case CMD_leftabove:
3392 case CMD_lockmarks:
3393 case CMD_rightbelow:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003394 case CMD_sandbox:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395 case CMD_silent:
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003396 case CMD_tab:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003397 case CMD_topleft:
3398 case CMD_verbose:
3399 case CMD_vertical:
Bram Moolenaardf7b1ff2005-03-11 22:40:50 +00003400 case CMD_windo:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003401 return arg;
3402
3403#ifdef FEAT_SEARCH_EXTRA
3404 case CMD_match:
3405 if (*arg == NUL || !ends_excmd(*arg))
3406 {
3407 /* Dummy call to clear variables. */
3408 set_context_in_highlight_cmd(xp, (char_u *)"link n");
3409 xp->xp_context = EXPAND_HIGHLIGHT;
3410 xp->xp_pattern = arg;
3411 arg = skipwhite(skiptowhite(arg));
3412 if (*arg != NUL)
3413 {
3414 xp->xp_context = EXPAND_NOTHING;
3415 arg = skip_regexp(arg + 1, *arg, p_magic, NULL);
3416 }
3417 }
3418 return find_nextcmd(arg);
3419#endif
3420
3421#ifdef FEAT_CMDL_COMPL
3422/*
3423 * All completion for the +cmdline_compl feature goes here.
3424 */
3425
3426# ifdef FEAT_USR_CMDS
3427 case CMD_command:
3428 /* Check for attributes */
3429 while (*arg == '-')
3430 {
3431 arg++; /* Skip "-" */
3432 p = skiptowhite(arg);
3433 if (*p == NUL)
3434 {
3435 /* Cursor is still in the attribute */
3436 p = vim_strchr(arg, '=');
3437 if (p == NULL)
3438 {
3439 /* No "=", so complete attribute names */
3440 xp->xp_context = EXPAND_USER_CMD_FLAGS;
3441 xp->xp_pattern = arg;
3442 return NULL;
3443 }
3444
3445 /* For the -complete and -nargs attributes, we complete
3446 * their arguments as well.
3447 */
3448 if (STRNICMP(arg, "complete", p - arg) == 0)
3449 {
3450 xp->xp_context = EXPAND_USER_COMPLETE;
3451 xp->xp_pattern = p + 1;
3452 return NULL;
3453 }
3454 else if (STRNICMP(arg, "nargs", p - arg) == 0)
3455 {
3456 xp->xp_context = EXPAND_USER_NARGS;
3457 xp->xp_pattern = p + 1;
3458 return NULL;
3459 }
3460 return NULL;
3461 }
3462 arg = skipwhite(p);
3463 }
3464
3465 /* After the attributes comes the new command name */
3466 p = skiptowhite(arg);
3467 if (*p == NUL)
3468 {
3469 xp->xp_context = EXPAND_USER_COMMANDS;
3470 xp->xp_pattern = arg;
3471 break;
3472 }
3473
3474 /* And finally comes a normal command */
3475 return skipwhite(p);
3476
3477 case CMD_delcommand:
3478 xp->xp_context = EXPAND_USER_COMMANDS;
3479 xp->xp_pattern = arg;
3480 break;
3481# endif
3482
3483 case CMD_global:
3484 case CMD_vglobal:
3485 delim = *arg; /* get the delimiter */
3486 if (delim)
3487 ++arg; /* skip delimiter if there is one */
3488
3489 while (arg[0] != NUL && arg[0] != delim)
3490 {
3491 if (arg[0] == '\\' && arg[1] != NUL)
3492 ++arg;
3493 ++arg;
3494 }
3495 if (arg[0] != NUL)
3496 return arg + 1;
3497 break;
3498 case CMD_and:
3499 case CMD_substitute:
3500 delim = *arg;
3501 if (delim)
3502 {
3503 /* skip "from" part */
3504 ++arg;
3505 arg = skip_regexp(arg, delim, p_magic, NULL);
3506 }
3507 /* skip "to" part */
3508 while (arg[0] != NUL && arg[0] != delim)
3509 {
3510 if (arg[0] == '\\' && arg[1] != NUL)
3511 ++arg;
3512 ++arg;
3513 }
3514 if (arg[0] != NUL) /* skip delimiter */
3515 ++arg;
3516 while (arg[0] && vim_strchr((char_u *)"|\"#", arg[0]) == NULL)
3517 ++arg;
3518 if (arg[0] != NUL)
3519 return arg;
3520 break;
3521 case CMD_isearch:
3522 case CMD_dsearch:
3523 case CMD_ilist:
3524 case CMD_dlist:
3525 case CMD_ijump:
3526 case CMD_psearch:
3527 case CMD_djump:
3528 case CMD_isplit:
3529 case CMD_dsplit:
3530 arg = skipwhite(skipdigits(arg)); /* skip count */
3531 if (*arg == '/') /* Match regexp, not just whole words */
3532 {
3533 for (++arg; *arg && *arg != '/'; arg++)
3534 if (*arg == '\\' && arg[1] != NUL)
3535 arg++;
3536 if (*arg)
3537 {
3538 arg = skipwhite(arg + 1);
3539
3540 /* Check for trailing illegal characters */
3541 if (*arg && vim_strchr((char_u *)"|\"\n", *arg) == NULL)
3542 xp->xp_context = EXPAND_NOTHING;
3543 else
3544 return arg;
3545 }
3546 }
3547 break;
3548#ifdef FEAT_AUTOCMD
3549 case CMD_autocmd:
3550 return set_context_in_autocmd(xp, arg, FALSE);
3551
3552 case CMD_doautocmd:
3553 return set_context_in_autocmd(xp, arg, TRUE);
3554#endif
3555 case CMD_set:
3556 set_context_in_set_cmd(xp, arg, 0);
3557 break;
3558 case CMD_setglobal:
3559 set_context_in_set_cmd(xp, arg, OPT_GLOBAL);
3560 break;
3561 case CMD_setlocal:
3562 set_context_in_set_cmd(xp, arg, OPT_LOCAL);
3563 break;
3564 case CMD_tag:
3565 case CMD_stag:
3566 case CMD_ptag:
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00003567 case CMD_ltag:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 case CMD_tselect:
3569 case CMD_stselect:
3570 case CMD_ptselect:
3571 case CMD_tjump:
3572 case CMD_stjump:
3573 case CMD_ptjump:
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00003574 if (*p_wop != NUL)
3575 xp->xp_context = EXPAND_TAGS_LISTFILES;
3576 else
3577 xp->xp_context = EXPAND_TAGS;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 xp->xp_pattern = arg;
3579 break;
3580 case CMD_augroup:
3581 xp->xp_context = EXPAND_AUGROUP;
3582 xp->xp_pattern = arg;
3583 break;
3584#ifdef FEAT_SYN_HL
3585 case CMD_syntax:
3586 set_context_in_syntax_cmd(xp, arg);
3587 break;
3588#endif
3589#ifdef FEAT_EVAL
3590 case CMD_let:
3591 case CMD_if:
3592 case CMD_elseif:
3593 case CMD_while:
Bram Moolenaarb32ce2d2005-01-05 22:07:01 +00003594 case CMD_for:
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 case CMD_echo:
3596 case CMD_echon:
3597 case CMD_execute:
3598 case CMD_echomsg:
3599 case CMD_echoerr:
3600 case CMD_call:
3601 case CMD_return:
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003602 set_context_for_expression(xp, arg, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 break;
3604
3605 case CMD_unlet:
3606 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3607 arg = xp->xp_pattern + 1;
3608 xp->xp_context = EXPAND_USER_VARS;
3609 xp->xp_pattern = arg;
3610 break;
3611
3612 case CMD_function:
3613 case CMD_delfunction:
3614 xp->xp_context = EXPAND_USER_FUNC;
3615 xp->xp_pattern = arg;
3616 break;
3617
3618 case CMD_echohl:
3619 xp->xp_context = EXPAND_HIGHLIGHT;
3620 xp->xp_pattern = arg;
3621 break;
3622#endif
3623 case CMD_highlight:
3624 set_context_in_highlight_cmd(xp, arg);
3625 break;
3626#ifdef FEAT_LISTCMDS
3627 case CMD_bdelete:
3628 case CMD_bwipeout:
3629 case CMD_bunload:
3630 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3631 arg = xp->xp_pattern + 1;
3632 /*FALLTHROUGH*/
3633 case CMD_buffer:
3634 case CMD_sbuffer:
3635 case CMD_checktime:
3636 xp->xp_context = EXPAND_BUFFERS;
3637 xp->xp_pattern = arg;
3638 break;
3639#endif
3640#ifdef FEAT_USR_CMDS
3641 case CMD_USER:
3642 case CMD_USER_BUF:
3643 if (compl != EXPAND_NOTHING)
3644 {
3645 /* XFILE: file names are handled above */
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003646 if (!(ea.argt & XFILE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 {
3648# ifdef FEAT_MENU
3649 if (compl == EXPAND_MENUS)
3650 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3651# endif
3652 if (compl == EXPAND_COMMANDS)
3653 return arg;
3654 if (compl == EXPAND_MAPPINGS)
3655 return set_context_in_map_cmd(xp, (char_u *)"map",
3656 arg, forceit, FALSE, FALSE, CMD_map);
3657 while ((xp->xp_pattern = vim_strchr(arg, ' ')) != NULL)
3658 arg = xp->xp_pattern + 1;
3659 xp->xp_pattern = arg;
3660 }
3661 xp->xp_context = compl;
3662 }
3663 break;
3664#endif
3665 case CMD_map: case CMD_noremap:
3666 case CMD_nmap: case CMD_nnoremap:
3667 case CMD_vmap: case CMD_vnoremap:
3668 case CMD_omap: case CMD_onoremap:
3669 case CMD_imap: case CMD_inoremap:
3670 case CMD_cmap: case CMD_cnoremap:
3671 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003672 FALSE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 case CMD_unmap:
3674 case CMD_nunmap:
3675 case CMD_vunmap:
3676 case CMD_ounmap:
3677 case CMD_iunmap:
3678 case CMD_cunmap:
3679 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003680 FALSE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 case CMD_abbreviate: case CMD_noreabbrev:
3682 case CMD_cabbrev: case CMD_cnoreabbrev:
3683 case CMD_iabbrev: case CMD_inoreabbrev:
3684 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003685 TRUE, FALSE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 case CMD_unabbreviate:
3687 case CMD_cunabbrev:
3688 case CMD_iunabbrev:
3689 return set_context_in_map_cmd(xp, cmd, arg, forceit,
Bram Moolenaar52b4b552005-03-07 23:00:57 +00003690 TRUE, TRUE, ea.cmdidx);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691#ifdef FEAT_MENU
3692 case CMD_menu: case CMD_noremenu: case CMD_unmenu:
3693 case CMD_amenu: case CMD_anoremenu: case CMD_aunmenu:
3694 case CMD_nmenu: case CMD_nnoremenu: case CMD_nunmenu:
3695 case CMD_vmenu: case CMD_vnoremenu: case CMD_vunmenu:
3696 case CMD_omenu: case CMD_onoremenu: case CMD_ounmenu:
3697 case CMD_imenu: case CMD_inoremenu: case CMD_iunmenu:
3698 case CMD_cmenu: case CMD_cnoremenu: case CMD_cunmenu:
3699 case CMD_tmenu: case CMD_tunmenu:
3700 case CMD_popup: case CMD_tearoff: case CMD_emenu:
3701 return set_context_in_menu_cmd(xp, cmd, arg, forceit);
3702#endif
3703
3704 case CMD_colorscheme:
3705 xp->xp_context = EXPAND_COLORS;
3706 xp->xp_pattern = arg;
3707 break;
3708
3709 case CMD_compiler:
3710 xp->xp_context = EXPAND_COMPILER;
3711 xp->xp_pattern = arg;
3712 break;
3713
3714#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
3715 && (defined(FEAT_GETTEXT) || defined(FEAT_MBYTE))
3716 case CMD_language:
3717 if (*skiptowhite(arg) == NUL)
3718 {
3719 xp->xp_context = EXPAND_LANGUAGE;
3720 xp->xp_pattern = arg;
3721 }
3722 else
3723 xp->xp_context = EXPAND_NOTHING;
3724 break;
3725#endif
3726
3727#endif /* FEAT_CMDL_COMPL */
3728
3729 default:
3730 break;
3731 }
3732 return NULL;
3733}
3734
3735/*
3736 * skip a range specifier of the form: addr [,addr] [;addr] ..
3737 *
3738 * Backslashed delimiters after / or ? will be skipped, and commands will
3739 * not be expanded between /'s and ?'s or after "'".
3740 *
Bram Moolenaardf177f62005-02-22 08:39:57 +00003741 * Also skip white space and ":" characters.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003742 * Returns the "cmd" pointer advanced to beyond the range.
3743 */
3744 char_u *
3745skip_range(cmd, ctx)
3746 char_u *cmd;
3747 int *ctx; /* pointer to xp_context or NULL */
3748{
3749 int delim;
3750
Bram Moolenaardf177f62005-02-22 08:39:57 +00003751 while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;", *cmd) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 {
3753 if (*cmd == '\'')
3754 {
3755 if (*++cmd == NUL && ctx != NULL)
3756 *ctx = EXPAND_NOTHING;
3757 }
3758 else if (*cmd == '/' || *cmd == '?')
3759 {
3760 delim = *cmd++;
3761 while (*cmd != NUL && *cmd != delim)
3762 if (*cmd++ == '\\' && *cmd != NUL)
3763 ++cmd;
3764 if (*cmd == NUL && ctx != NULL)
3765 *ctx = EXPAND_NOTHING;
3766 }
3767 if (*cmd != NUL)
3768 ++cmd;
3769 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003770
3771 /* Skip ":" and white space. */
3772 while (*cmd == ':')
3773 cmd = skipwhite(cmd + 1);
3774
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 return cmd;
3776}
3777
3778/*
3779 * get a single EX address
3780 *
3781 * Set ptr to the next character after the part that was interpreted.
3782 * Set ptr to NULL when an error is encountered.
3783 *
3784 * Return MAXLNUM when no Ex address was found.
3785 */
3786 static linenr_T
3787get_address(ptr, skip, to_other_file)
3788 char_u **ptr;
3789 int skip; /* only skip the address, don't use it */
3790 int to_other_file; /* flag: may jump to other file */
3791{
3792 int c;
3793 int i;
3794 long n;
3795 char_u *cmd;
3796 pos_T pos;
3797 pos_T *fp;
3798 linenr_T lnum;
3799
3800 cmd = skipwhite(*ptr);
3801 lnum = MAXLNUM;
3802 do
3803 {
3804 switch (*cmd)
3805 {
3806 case '.': /* '.' - Cursor position */
3807 ++cmd;
3808 lnum = curwin->w_cursor.lnum;
3809 break;
3810
3811 case '$': /* '$' - last line */
3812 ++cmd;
3813 lnum = curbuf->b_ml.ml_line_count;
3814 break;
3815
3816 case '\'': /* ''' - mark */
3817 if (*++cmd == NUL)
3818 {
3819 cmd = NULL;
3820 goto error;
3821 }
3822 if (skip)
3823 ++cmd;
3824 else
3825 {
3826 /* Only accept a mark in another file when it is
3827 * used by itself: ":'M". */
3828 fp = getmark(*cmd, to_other_file && cmd[1] == NUL);
3829 ++cmd;
3830 if (fp == (pos_T *)-1)
3831 /* Jumped to another file. */
3832 lnum = curwin->w_cursor.lnum;
3833 else
3834 {
3835 if (check_mark(fp) == FAIL)
3836 {
3837 cmd = NULL;
3838 goto error;
3839 }
3840 lnum = fp->lnum;
3841 }
3842 }
3843 break;
3844
3845 case '/':
3846 case '?': /* '/' or '?' - search */
3847 c = *cmd++;
3848 if (skip) /* skip "/pat/" */
3849 {
3850 cmd = skip_regexp(cmd, c, (int)p_magic, NULL);
3851 if (*cmd == c)
3852 ++cmd;
3853 }
3854 else
3855 {
3856 pos = curwin->w_cursor; /* save curwin->w_cursor */
3857 /*
3858 * When '/' or '?' follows another address, start
3859 * from there.
3860 */
3861 if (lnum != MAXLNUM)
3862 curwin->w_cursor.lnum = lnum;
3863 /*
3864 * Start a forward search at the end of the line.
3865 * Start a backward search at the start of the line.
3866 * This makes sure we never match in the current
3867 * line, and can match anywhere in the
3868 * next/previous line.
3869 */
3870 if (c == '/')
3871 curwin->w_cursor.col = MAXCOL;
3872 else
3873 curwin->w_cursor.col = 0;
3874 searchcmdlen = 0;
3875 if (!do_search(NULL, c, cmd, 1L,
3876 SEARCH_HIS + SEARCH_MSG + SEARCH_START))
3877 {
3878 curwin->w_cursor = pos;
3879 cmd = NULL;
3880 goto error;
3881 }
3882 lnum = curwin->w_cursor.lnum;
3883 curwin->w_cursor = pos;
3884 /* adjust command string pointer */
3885 cmd += searchcmdlen;
3886 }
3887 break;
3888
3889 case '\\': /* "\?", "\/" or "\&", repeat search */
3890 ++cmd;
3891 if (*cmd == '&')
3892 i = RE_SUBST;
3893 else if (*cmd == '?' || *cmd == '/')
3894 i = RE_SEARCH;
3895 else
3896 {
3897 EMSG(_(e_backslash));
3898 cmd = NULL;
3899 goto error;
3900 }
3901
3902 if (!skip)
3903 {
3904 /*
3905 * When search follows another address, start from
3906 * there.
3907 */
3908 if (lnum != MAXLNUM)
3909 pos.lnum = lnum;
3910 else
3911 pos.lnum = curwin->w_cursor.lnum;
3912
3913 /*
3914 * Start the search just like for the above
3915 * do_search().
3916 */
3917 if (*cmd != '?')
3918 pos.col = MAXCOL;
3919 else
3920 pos.col = 0;
3921 if (searchit(curwin, curbuf, &pos,
3922 *cmd == '?' ? BACKWARD : FORWARD,
3923 (char_u *)"", 1L,
Bram Moolenaara226a6d2006-02-26 23:59:20 +00003924 SEARCH_MSG + SEARCH_START,
3925 i, (linenr_T)0) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003926 lnum = pos.lnum;
3927 else
3928 {
3929 cmd = NULL;
3930 goto error;
3931 }
3932 }
3933 ++cmd;
3934 break;
3935
3936 default:
3937 if (VIM_ISDIGIT(*cmd)) /* absolute line number */
3938 lnum = getdigits(&cmd);
3939 }
3940
3941 for (;;)
3942 {
3943 cmd = skipwhite(cmd);
3944 if (*cmd != '-' && *cmd != '+' && !VIM_ISDIGIT(*cmd))
3945 break;
3946
3947 if (lnum == MAXLNUM)
3948 lnum = curwin->w_cursor.lnum; /* "+1" is same as ".+1" */
3949 if (VIM_ISDIGIT(*cmd))
3950 i = '+'; /* "number" is same as "+number" */
3951 else
3952 i = *cmd++;
3953 if (!VIM_ISDIGIT(*cmd)) /* '+' is '+1', but '+0' is not '+1' */
3954 n = 1;
3955 else
3956 n = getdigits(&cmd);
3957 if (i == '-')
3958 lnum -= n;
3959 else
3960 lnum += n;
3961 }
3962 } while (*cmd == '/' || *cmd == '?');
3963
3964error:
3965 *ptr = cmd;
3966 return lnum;
3967}
3968
3969/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003970 * Get flags from an Ex command argument.
3971 */
3972 static void
3973get_flags(eap)
3974 exarg_T *eap;
3975{
3976 while (vim_strchr((char_u *)"lp#", *eap->arg) != NULL)
3977 {
3978 if (*eap->arg == 'l')
3979 eap->flags |= EXFLAG_LIST;
3980 else if (*eap->arg == 'p')
3981 eap->flags |= EXFLAG_PRINT;
3982 else
3983 eap->flags |= EXFLAG_NR;
3984 eap->arg = skipwhite(eap->arg + 1);
3985 }
3986}
3987
3988/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989 * Function called for command which is Not Implemented. NI!
3990 */
3991 void
3992ex_ni(eap)
3993 exarg_T *eap;
3994{
3995 if (!eap->skip)
3996 eap->errmsg = (char_u *)N_("E319: Sorry, the command is not available in this version");
3997}
3998
3999#if !defined(FEAT_PERL) || !defined(FEAT_PYTHON) || !defined(FEAT_TCL) \
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004000 || !defined(FEAT_RUBY) || !defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004001/*
4002 * Function called for script command which is Not Implemented. NI!
4003 * Skips over ":perl <<EOF" constructs.
4004 */
4005 static void
4006ex_script_ni(eap)
4007 exarg_T *eap;
4008{
4009 if (!eap->skip)
4010 ex_ni(eap);
4011 else
4012 vim_free(script_get(eap, eap->arg));
4013}
4014#endif
4015
4016/*
4017 * Check range in Ex command for validity.
4018 * Return NULL when valid, error message when invalid.
4019 */
4020 static char_u *
4021invalid_range(eap)
4022 exarg_T *eap;
4023{
4024 if ( eap->line1 < 0
4025 || eap->line2 < 0
4026 || eap->line1 > eap->line2
4027 || ((eap->argt & RANGE)
4028 && !(eap->argt & NOTADR)
4029 && eap->line2 > curbuf->b_ml.ml_line_count
4030#ifdef FEAT_DIFF
4031 + (eap->cmdidx == CMD_diffget)
4032#endif
4033 ))
4034 return (char_u *)_(e_invrange);
4035 return NULL;
4036}
4037
4038/*
4039 * Correct the range for zero line number, if required.
4040 */
4041 static void
4042correct_range(eap)
4043 exarg_T *eap;
4044{
4045 if (!(eap->argt & ZEROR)) /* zero in range not allowed */
4046 {
4047 if (eap->line1 == 0)
4048 eap->line1 = 1;
4049 if (eap->line2 == 0)
4050 eap->line2 = 1;
4051 }
4052}
4053
Bram Moolenaar748bf032005-02-02 23:04:36 +00004054#ifdef FEAT_QUICKFIX
4055static char_u *skip_grep_pat __ARGS((exarg_T *eap));
4056
4057/*
4058 * For a ":vimgrep" or ":vimgrepadd" command return a pointer past the
4059 * pattern. Otherwise return eap->arg.
4060 */
4061 static char_u *
4062skip_grep_pat(eap)
4063 exarg_T *eap;
4064{
4065 char_u *p = eap->arg;
4066
Bram Moolenaara37420f2006-02-04 22:37:47 +00004067 if (*p != NUL && (eap->cmdidx == CMD_vimgrep || eap->cmdidx == CMD_lvimgrep
4068 || eap->cmdidx == CMD_vimgrepadd
4069 || eap->cmdidx == CMD_lvimgrepadd
4070 || grep_internal(eap->cmdidx)))
Bram Moolenaar748bf032005-02-02 23:04:36 +00004071 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00004072 p = skip_vimgrep_pat(p, NULL, NULL);
Bram Moolenaar748bf032005-02-02 23:04:36 +00004073 if (p == NULL)
4074 p = eap->arg;
Bram Moolenaar748bf032005-02-02 23:04:36 +00004075 }
4076 return p;
4077}
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004078
4079/*
4080 * For the ":make" and ":grep" commands insert the 'makeprg'/'grepprg' option
4081 * in the command line, so that things like % get expanded.
4082 */
4083 static char_u *
4084replace_makeprg(eap, p, cmdlinep)
4085 exarg_T *eap;
4086 char_u *p;
4087 char_u **cmdlinep;
4088{
4089 char_u *new_cmdline;
4090 char_u *program;
4091 char_u *pos;
4092 char_u *ptr;
4093 int len;
4094 int i;
4095
4096 /*
4097 * Don't do it when ":vimgrep" is used for ":grep".
4098 */
Bram Moolenaara37420f2006-02-04 22:37:47 +00004099 if ((eap->cmdidx == CMD_make || eap->cmdidx == CMD_lmake
4100 || eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4101 || eap->cmdidx == CMD_grepadd
4102 || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004103 && !grep_internal(eap->cmdidx))
4104 {
Bram Moolenaara37420f2006-02-04 22:37:47 +00004105 if (eap->cmdidx == CMD_grep || eap->cmdidx == CMD_lgrep
4106 || eap->cmdidx == CMD_grepadd || eap->cmdidx == CMD_lgrepadd)
Bram Moolenaard857f0e2005-06-21 22:37:39 +00004107 {
4108 if (*curbuf->b_p_gp == NUL)
4109 program = p_gp;
4110 else
4111 program = curbuf->b_p_gp;
4112 }
4113 else
4114 {
4115 if (*curbuf->b_p_mp == NUL)
4116 program = p_mp;
4117 else
4118 program = curbuf->b_p_mp;
4119 }
4120
4121 p = skipwhite(p);
4122
4123 if ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4124 {
4125 /* replace $* by given arguments */
4126 i = 1;
4127 while ((pos = (char_u *)strstr((char *)pos + 2, "$*")) != NULL)
4128 ++i;
4129 len = (int)STRLEN(p);
4130 new_cmdline = alloc((int)(STRLEN(program) + i * (len - 2) + 1));
4131 if (new_cmdline == NULL)
4132 return NULL; /* out of memory */
4133 ptr = new_cmdline;
4134 while ((pos = (char_u *)strstr((char *)program, "$*")) != NULL)
4135 {
4136 i = (int)(pos - program);
4137 STRNCPY(ptr, program, i);
4138 STRCPY(ptr += i, p);
4139 ptr += len;
4140 program = pos + 2;
4141 }
4142 STRCPY(ptr, program);
4143 }
4144 else
4145 {
4146 new_cmdline = alloc((int)(STRLEN(program) + STRLEN(p) + 2));
4147 if (new_cmdline == NULL)
4148 return NULL; /* out of memory */
4149 STRCPY(new_cmdline, program);
4150 STRCAT(new_cmdline, " ");
4151 STRCAT(new_cmdline, p);
4152 }
4153 msg_make(p);
4154
4155 /* 'eap->cmd' is not set here, because it is not used at CMD_make */
4156 vim_free(*cmdlinep);
4157 *cmdlinep = new_cmdline;
4158 p = new_cmdline;
4159 }
4160 return p;
4161}
Bram Moolenaar748bf032005-02-02 23:04:36 +00004162#endif
4163
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164/*
4165 * Expand file name in Ex command argument.
4166 * Return FAIL for failure, OK otherwise.
4167 */
4168 int
4169expand_filename(eap, cmdlinep, errormsgp)
4170 exarg_T *eap;
4171 char_u **cmdlinep;
4172 char_u **errormsgp;
4173{
4174 int has_wildcards; /* need to expand wildcards */
4175 char_u *repl;
4176 int srclen;
4177 char_u *p;
4178 int n;
Bram Moolenaar63b92542007-03-27 14:57:09 +00004179 int escaped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004180
Bram Moolenaar748bf032005-02-02 23:04:36 +00004181#ifdef FEAT_QUICKFIX
4182 /* Skip a regexp pattern for ":vimgrep[add] pat file..." */
4183 p = skip_grep_pat(eap);
4184#else
4185 p = eap->arg;
4186#endif
4187
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 /*
4189 * Decide to expand wildcards *before* replacing '%', '#', etc. If
4190 * the file name contains a wildcard it should not cause expanding.
4191 * (it will be expanded anyway if there is a wildcard before replacing).
4192 */
Bram Moolenaar748bf032005-02-02 23:04:36 +00004193 has_wildcards = mch_has_wildcard(p);
4194 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 {
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004196#ifdef FEAT_EVAL
4197 /* Skip over `=expr`, wildcards in it are not expanded. */
4198 if (p[0] == '`' && p[1] == '=')
4199 {
4200 p += 2;
4201 (void)skip_expr(&p);
4202 if (*p == '`')
4203 ++p;
4204 continue;
4205 }
4206#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 /*
4208 * Quick check if this cannot be the start of a special string.
4209 * Also removes backslash before '%', '#' and '<'.
4210 */
4211 if (vim_strchr((char_u *)"%#<", *p) == NULL)
4212 {
4213 ++p;
4214 continue;
4215 }
4216
4217 /*
4218 * Try to find a match at this position.
4219 */
Bram Moolenaar63b92542007-03-27 14:57:09 +00004220 repl = eval_vars(p, eap->arg, &srclen, &(eap->do_ecmd_lnum),
4221 errormsgp, &escaped);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004222 if (*errormsgp != NULL) /* error detected */
4223 return FAIL;
4224 if (repl == NULL) /* no match found */
4225 {
4226 p += srclen;
4227 continue;
4228 }
4229
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00004230 /* Wildcards won't be expanded below, the replacement is taken
4231 * literally. But do expand "~/file", "~user/file" and "$HOME/file". */
4232 if (vim_strchr(repl, '$') != NULL || vim_strchr(repl, '~') != NULL)
4233 {
4234 char_u *l = repl;
4235
4236 repl = expand_env_save(repl);
4237 vim_free(l);
4238 }
4239
Bram Moolenaar63b92542007-03-27 14:57:09 +00004240 /* Need to escape white space et al. with a backslash.
4241 * Don't do this for:
4242 * - replacement that already has been escaped: "##"
4243 * - shell commands (may have to use quotes instead).
4244 * - non-unix systems when there is a single argument (spaces don't
4245 * separate arguments then).
4246 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247 if (!eap->usefilter
Bram Moolenaar63b92542007-03-27 14:57:09 +00004248 && !escaped
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 && eap->cmdidx != CMD_bang
4250 && eap->cmdidx != CMD_make
Bram Moolenaara37420f2006-02-04 22:37:47 +00004251 && eap->cmdidx != CMD_lmake
Bram Moolenaar071d4272004-06-13 20:20:40 +00004252 && eap->cmdidx != CMD_grep
Bram Moolenaara37420f2006-02-04 22:37:47 +00004253 && eap->cmdidx != CMD_lgrep
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 && eap->cmdidx != CMD_grepadd
Bram Moolenaara37420f2006-02-04 22:37:47 +00004255 && eap->cmdidx != CMD_lgrepadd
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256#ifndef UNIX
4257 && !(eap->argt & NOSPC)
4258#endif
4259 )
4260 {
4261 char_u *l;
4262#ifdef BACKSLASH_IN_FILENAME
4263 /* Don't escape a backslash here, because rem_backslash() doesn't
4264 * remove it later. */
4265 static char_u *nobslash = (char_u *)" \t\"|";
4266# define ESCAPE_CHARS nobslash
4267#else
4268# define ESCAPE_CHARS escape_chars
4269#endif
4270
4271 for (l = repl; *l; ++l)
4272 if (vim_strchr(ESCAPE_CHARS, *l) != NULL)
4273 {
4274 l = vim_strsave_escaped(repl, ESCAPE_CHARS);
4275 if (l != NULL)
4276 {
4277 vim_free(repl);
4278 repl = l;
4279 }
4280 break;
4281 }
4282 }
4283
4284 /* For a shell command a '!' must be escaped. */
4285 if ((eap->usefilter || eap->cmdidx == CMD_bang)
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004286 && vim_strpbrk(repl, (char_u *)"!&;()<>") != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 {
4288 char_u *l;
4289
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004290 l = vim_strsave_escaped(repl, (char_u *)"!&;()<>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 if (l != NULL)
4292 {
4293 vim_free(repl);
4294 repl = l;
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00004295 /* For a sh-like shell escape "!" another time. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296 if (strstr((char *)p_sh, "sh") != NULL)
4297 {
4298 l = vim_strsave_escaped(repl, (char_u *)"!");
4299 if (l != NULL)
4300 {
4301 vim_free(repl);
4302 repl = l;
4303 }
4304 }
4305 }
4306 }
4307
4308 p = repl_cmdline(eap, p, srclen, repl, cmdlinep);
4309 vim_free(repl);
4310 if (p == NULL)
4311 return FAIL;
4312 }
4313
4314 /*
4315 * One file argument: Expand wildcards.
4316 * Don't do this with ":r !command" or ":w !command".
4317 */
4318 if ((eap->argt & NOSPC) && !eap->usefilter)
4319 {
4320 /*
4321 * May do this twice:
4322 * 1. Replace environment variables.
4323 * 2. Replace any other wildcards, remove backslashes.
4324 */
4325 for (n = 1; n <= 2; ++n)
4326 {
4327 if (n == 2)
4328 {
4329#ifdef UNIX
4330 /*
4331 * Only for Unix we check for more than one file name.
4332 * For other systems spaces are considered to be part
4333 * of the file name.
4334 * Only check here if there is no wildcard, otherwise
4335 * ExpandOne() will check for errors. This allows
4336 * ":e `ls ve*.c`" on Unix.
4337 */
4338 if (!has_wildcards)
4339 for (p = eap->arg; *p; ++p)
4340 {
4341 /* skip escaped characters */
4342 if (p[1] && (*p == '\\' || *p == Ctrl_V))
4343 ++p;
4344 else if (vim_iswhite(*p))
4345 {
4346 *errormsgp = (char_u *)_("E172: Only one file name allowed");
4347 return FAIL;
4348 }
4349 }
4350#endif
4351
4352 /*
4353 * Halve the number of backslashes (this is Vi compatible).
4354 * For Unix and OS/2, when wildcards are expanded, this is
4355 * done by ExpandOne() below.
4356 */
4357#if defined(UNIX) || defined(OS2)
4358 if (!has_wildcards)
4359#endif
4360 backslash_halve(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 }
4362
4363 if (has_wildcards)
4364 {
4365 if (n == 1)
4366 {
4367 /*
4368 * First loop: May expand environment variables. This
4369 * can be done much faster with expand_env() than with
4370 * something else (e.g., calling a shell).
4371 * After expanding environment variables, check again
4372 * if there are still wildcards present.
4373 */
4374 if (vim_strchr(eap->arg, '$') != NULL
4375 || vim_strchr(eap->arg, '~') != NULL)
4376 {
Bram Moolenaara1ba8112005-06-28 23:23:32 +00004377 expand_env_esc(eap->arg, NameBuff, MAXPATHL,
4378 TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 has_wildcards = mch_has_wildcard(NameBuff);
4380 p = NameBuff;
4381 }
4382 else
4383 p = NULL;
4384 }
4385 else /* n == 2 */
4386 {
4387 expand_T xpc;
4388
4389 ExpandInit(&xpc);
4390 xpc.xp_context = EXPAND_FILES;
4391 p = ExpandOne(&xpc, eap->arg, NULL,
4392 WILD_LIST_NOTFOUND|WILD_ADD_SLASH,
4393 WILD_EXPAND_FREE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 if (p == NULL)
4395 return FAIL;
4396 }
4397 if (p != NULL)
4398 {
4399 (void)repl_cmdline(eap, eap->arg, (int)STRLEN(eap->arg),
4400 p, cmdlinep);
4401 if (n == 2) /* p came from ExpandOne() */
4402 vim_free(p);
4403 }
4404 }
4405 }
4406 }
4407 return OK;
4408}
4409
4410/*
4411 * Replace part of the command line, keeping eap->cmd, eap->arg and
4412 * eap->nextcmd correct.
4413 * "src" points to the part that is to be replaced, of length "srclen".
4414 * "repl" is the replacement string.
4415 * Returns a pointer to the character after the replaced string.
4416 * Returns NULL for failure.
4417 */
4418 static char_u *
4419repl_cmdline(eap, src, srclen, repl, cmdlinep)
4420 exarg_T *eap;
4421 char_u *src;
4422 int srclen;
4423 char_u *repl;
4424 char_u **cmdlinep;
4425{
4426 int len;
4427 int i;
4428 char_u *new_cmdline;
4429
4430 /*
4431 * The new command line is build in new_cmdline[].
4432 * First allocate it.
4433 * Careful: a "+cmd" argument may have been NUL terminated.
4434 */
4435 len = (int)STRLEN(repl);
4436 i = (int)(src - *cmdlinep) + (int)STRLEN(src + srclen) + len + 3;
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004437 if (eap->nextcmd != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004438 i += (int)STRLEN(eap->nextcmd);/* add space for next command */
4439 if ((new_cmdline = alloc((unsigned)i)) == NULL)
4440 return NULL; /* out of memory! */
4441
4442 /*
4443 * Copy the stuff before the expanded part.
4444 * Copy the expanded stuff.
4445 * Copy what came after the expanded part.
4446 * Copy the next commands, if there are any.
4447 */
4448 i = (int)(src - *cmdlinep); /* length of part before match */
4449 mch_memmove(new_cmdline, *cmdlinep, (size_t)i);
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00004450
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 mch_memmove(new_cmdline + i, repl, (size_t)len);
4452 i += len; /* remember the end of the string */
4453 STRCPY(new_cmdline + i, src + srclen);
4454 src = new_cmdline + i; /* remember where to continue */
4455
Bram Moolenaare1438bb2006-03-01 22:01:55 +00004456 if (eap->nextcmd != NULL) /* append next command */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 {
4458 i = (int)STRLEN(new_cmdline) + 1;
4459 STRCPY(new_cmdline + i, eap->nextcmd);
4460 eap->nextcmd = new_cmdline + i;
4461 }
4462 eap->cmd = new_cmdline + (eap->cmd - *cmdlinep);
4463 eap->arg = new_cmdline + (eap->arg - *cmdlinep);
4464 if (eap->do_ecmd_cmd != NULL && eap->do_ecmd_cmd != dollar_command)
4465 eap->do_ecmd_cmd = new_cmdline + (eap->do_ecmd_cmd - *cmdlinep);
4466 vim_free(*cmdlinep);
4467 *cmdlinep = new_cmdline;
4468
4469 return src;
4470}
4471
4472/*
4473 * Check for '|' to separate commands and '"' to start comments.
4474 */
4475 void
4476separate_nextcmd(eap)
4477 exarg_T *eap;
4478{
4479 char_u *p;
4480
Bram Moolenaar86b68352004-12-27 21:59:20 +00004481#ifdef FEAT_QUICKFIX
Bram Moolenaar748bf032005-02-02 23:04:36 +00004482 p = skip_grep_pat(eap);
4483#else
4484 p = eap->arg;
Bram Moolenaar86b68352004-12-27 21:59:20 +00004485#endif
4486
4487 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 {
4489 if (*p == Ctrl_V)
4490 {
4491 if (eap->argt & (USECTRLV | XFILE))
4492 ++p; /* skip CTRL-V and next char */
4493 else
4494 STRCPY(p, p + 1); /* remove CTRL-V and skip next char */
4495 if (*p == NUL) /* stop at NUL after CTRL-V */
4496 break;
4497 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004498
4499#ifdef FEAT_EVAL
4500 /* Skip over `=expr` when wildcards are expanded. */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004501 else if (p[0] == '`' && p[1] == '=' && (eap->argt & XFILE))
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004502 {
4503 p += 2;
4504 (void)skip_expr(&p);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00004505 }
4506#endif
4507
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 /* Check for '"': start of comment or '|': next command */
4509 /* :@" and :*" do not start a comment!
4510 * :redir @" doesn't either. */
4511 else if ((*p == '"' && !(eap->argt & NOTRLCOM)
4512 && ((eap->cmdidx != CMD_at && eap->cmdidx != CMD_star)
4513 || p != eap->arg)
4514 && (eap->cmdidx != CMD_redir
4515 || p != eap->arg + 1 || p[-1] != '@'))
4516 || *p == '|' || *p == '\n')
4517 {
4518 /*
4519 * We remove the '\' before the '|', unless USECTRLV is used
4520 * AND 'b' is present in 'cpoptions'.
4521 */
4522 if ((vim_strchr(p_cpo, CPO_BAR) == NULL
4523 || !(eap->argt & USECTRLV)) && *(p - 1) == '\\')
4524 {
4525 mch_memmove(p - 1, p, STRLEN(p) + 1); /* remove the '\' */
4526 --p;
4527 }
4528 else
4529 {
4530 eap->nextcmd = check_nextcmd(p);
4531 *p = NUL;
4532 break;
4533 }
4534 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00004536
Bram Moolenaar071d4272004-06-13 20:20:40 +00004537 if (!(eap->argt & NOTRLCOM)) /* remove trailing spaces */
4538 del_trailing_spaces(eap->arg);
4539}
4540
4541/*
4542 * get + command from ex argument
4543 */
4544 static char_u *
4545getargcmd(argp)
4546 char_u **argp;
4547{
4548 char_u *arg = *argp;
4549 char_u *command = NULL;
4550
4551 if (*arg == '+') /* +[command] */
4552 {
4553 ++arg;
4554 if (vim_isspace(*arg))
4555 command = dollar_command;
4556 else
4557 {
4558 command = arg;
4559 arg = skip_cmd_arg(command, TRUE);
4560 if (*arg != NUL)
4561 *arg++ = NUL; /* terminate command with NUL */
4562 }
4563
4564 arg = skipwhite(arg); /* skip over spaces */
4565 *argp = arg;
4566 }
4567 return command;
4568}
4569
4570/*
4571 * Find end of "+command" argument. Skip over "\ " and "\\".
4572 */
4573 static char_u *
4574skip_cmd_arg(p, rembs)
4575 char_u *p;
4576 int rembs; /* TRUE to halve the number of backslashes */
4577{
4578 while (*p && !vim_isspace(*p))
4579 {
4580 if (*p == '\\' && p[1] != NUL)
4581 {
4582 if (rembs)
4583 mch_memmove(p, p + 1, STRLEN(p));
4584 else
4585 ++p;
4586 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004587 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 }
4589 return p;
4590}
4591
4592/*
4593 * Get "++opt=arg" argument.
4594 * Return FAIL or OK.
4595 */
4596 static int
4597getargopt(eap)
4598 exarg_T *eap;
4599{
4600 char_u *arg = eap->arg + 2;
4601 int *pp = NULL;
4602#ifdef FEAT_MBYTE
4603 char_u *p;
4604#endif
4605
4606 /* ":edit ++[no]bin[ary] file" */
4607 if (STRNCMP(arg, "bin", 3) == 0 || STRNCMP(arg, "nobin", 5) == 0)
4608 {
4609 if (*arg == 'n')
4610 {
4611 arg += 2;
4612 eap->force_bin = FORCE_NOBIN;
4613 }
4614 else
4615 eap->force_bin = FORCE_BIN;
4616 if (!checkforcmd(&arg, "binary", 3))
4617 return FAIL;
4618 eap->arg = skipwhite(arg);
4619 return OK;
4620 }
4621
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004622 /* ":read ++edit file" */
4623 if (STRNCMP(arg, "edit", 4) == 0)
4624 {
4625 eap->read_edit = TRUE;
4626 eap->arg = skipwhite(arg + 4);
4627 return OK;
4628 }
4629
Bram Moolenaar071d4272004-06-13 20:20:40 +00004630 if (STRNCMP(arg, "ff", 2) == 0)
4631 {
4632 arg += 2;
4633 pp = &eap->force_ff;
4634 }
4635 else if (STRNCMP(arg, "fileformat", 10) == 0)
4636 {
4637 arg += 10;
4638 pp = &eap->force_ff;
4639 }
4640#ifdef FEAT_MBYTE
4641 else if (STRNCMP(arg, "enc", 3) == 0)
4642 {
4643 arg += 3;
4644 pp = &eap->force_enc;
4645 }
4646 else if (STRNCMP(arg, "encoding", 8) == 0)
4647 {
4648 arg += 8;
4649 pp = &eap->force_enc;
4650 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004651 else if (STRNCMP(arg, "bad", 3) == 0)
4652 {
4653 arg += 3;
4654 pp = &eap->bad_char;
4655 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656#endif
4657
4658 if (pp == NULL || *arg != '=')
4659 return FAIL;
4660
4661 ++arg;
4662 *pp = (int)(arg - eap->cmd);
4663 arg = skip_cmd_arg(arg, FALSE);
4664 eap->arg = skipwhite(arg);
4665 *arg = NUL;
4666
4667#ifdef FEAT_MBYTE
4668 if (pp == &eap->force_ff)
4669 {
4670#endif
4671 if (check_ff_value(eap->cmd + eap->force_ff) == FAIL)
4672 return FAIL;
4673#ifdef FEAT_MBYTE
4674 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004675 else if (pp == &eap->force_enc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004676 {
4677 /* Make 'fileencoding' lower case. */
4678 for (p = eap->cmd + eap->force_enc; *p != NUL; ++p)
4679 *p = TOLOWER_ASC(*p);
4680 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00004681 else
4682 {
4683 /* Check ++bad= argument. Must be a single-byte character, "keep" or
4684 * "drop". */
4685 p = eap->cmd + eap->bad_char;
4686 if (STRICMP(p, "keep") == 0)
4687 eap->bad_char = BAD_KEEP;
4688 else if (STRICMP(p, "drop") == 0)
4689 eap->bad_char = BAD_DROP;
4690 else if (MB_BYTE2LEN(*p) == 1 && p[1] == NUL)
4691 eap->bad_char = *p;
4692 else
4693 return FAIL;
4694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695#endif
4696
4697 return OK;
4698}
4699
4700/*
4701 * ":abbreviate" and friends.
4702 */
4703 static void
4704ex_abbreviate(eap)
4705 exarg_T *eap;
4706{
4707 do_exmap(eap, TRUE); /* almost the same as mapping */
4708}
4709
4710/*
4711 * ":map" and friends.
4712 */
4713 static void
4714ex_map(eap)
4715 exarg_T *eap;
4716{
4717 /*
4718 * If we are sourcing .exrc or .vimrc in current directory we
4719 * print the mappings for security reasons.
4720 */
4721 if (secure)
4722 {
4723 secure = 2;
4724 msg_outtrans(eap->cmd);
4725 msg_putchar('\n');
4726 }
4727 do_exmap(eap, FALSE);
4728}
4729
4730/*
4731 * ":unmap" and friends.
4732 */
4733 static void
4734ex_unmap(eap)
4735 exarg_T *eap;
4736{
4737 do_exmap(eap, FALSE);
4738}
4739
4740/*
4741 * ":mapclear" and friends.
4742 */
4743 static void
4744ex_mapclear(eap)
4745 exarg_T *eap;
4746{
4747 map_clear(eap->cmd, eap->arg, eap->forceit, FALSE);
4748}
4749
4750/*
4751 * ":abclear" and friends.
4752 */
4753 static void
4754ex_abclear(eap)
4755 exarg_T *eap;
4756{
4757 map_clear(eap->cmd, eap->arg, TRUE, TRUE);
4758}
4759
4760#ifdef FEAT_AUTOCMD
4761 static void
4762ex_autocmd(eap)
4763 exarg_T *eap;
4764{
4765 /*
4766 * Disallow auto commands from .exrc and .vimrc in current
4767 * directory for security reasons.
4768 */
4769 if (secure)
4770 {
4771 secure = 2;
4772 eap->errmsg = e_curdir;
4773 }
4774 else if (eap->cmdidx == CMD_autocmd)
4775 do_autocmd(eap->arg, eap->forceit);
4776 else
4777 do_augroup(eap->arg, eap->forceit);
4778}
4779
4780/*
4781 * ":doautocmd": Apply the automatic commands to the current buffer.
4782 */
4783 static void
4784ex_doautocmd(eap)
4785 exarg_T *eap;
4786{
4787 (void)do_doautocmd(eap->arg, TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004788 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789}
4790#endif
4791
4792#ifdef FEAT_LISTCMDS
4793/*
4794 * :[N]bunload[!] [N] [bufname] unload buffer
4795 * :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
4796 * :[N]bwipeout[!] [N] [bufname] delete buffer really
4797 */
4798 static void
4799ex_bunload(eap)
4800 exarg_T *eap;
4801{
4802 eap->errmsg = do_bufdel(
4803 eap->cmdidx == CMD_bdelete ? DOBUF_DEL
4804 : eap->cmdidx == CMD_bwipeout ? DOBUF_WIPE
4805 : DOBUF_UNLOAD, eap->arg,
4806 eap->addr_count, (int)eap->line1, (int)eap->line2, eap->forceit);
4807}
4808
4809/*
4810 * :[N]buffer [N] to buffer N
4811 * :[N]sbuffer [N] to buffer N
4812 */
4813 static void
4814ex_buffer(eap)
4815 exarg_T *eap;
4816{
4817 if (*eap->arg)
4818 eap->errmsg = e_trailing;
4819 else
4820 {
4821 if (eap->addr_count == 0) /* default is current buffer */
4822 goto_buffer(eap, DOBUF_CURRENT, FORWARD, 0);
4823 else
4824 goto_buffer(eap, DOBUF_FIRST, FORWARD, (int)eap->line2);
4825 }
4826}
4827
4828/*
4829 * :[N]bmodified [N] to next mod. buffer
4830 * :[N]sbmodified [N] to next mod. buffer
4831 */
4832 static void
4833ex_bmodified(eap)
4834 exarg_T *eap;
4835{
4836 goto_buffer(eap, DOBUF_MOD, FORWARD, (int)eap->line2);
4837}
4838
4839/*
4840 * :[N]bnext [N] to next buffer
4841 * :[N]sbnext [N] split and to next buffer
4842 */
4843 static void
4844ex_bnext(eap)
4845 exarg_T *eap;
4846{
4847 goto_buffer(eap, DOBUF_CURRENT, FORWARD, (int)eap->line2);
4848}
4849
4850/*
4851 * :[N]bNext [N] to previous buffer
4852 * :[N]bprevious [N] to previous buffer
4853 * :[N]sbNext [N] split and to previous buffer
4854 * :[N]sbprevious [N] split and to previous buffer
4855 */
4856 static void
4857ex_bprevious(eap)
4858 exarg_T *eap;
4859{
4860 goto_buffer(eap, DOBUF_CURRENT, BACKWARD, (int)eap->line2);
4861}
4862
4863/*
4864 * :brewind to first buffer
4865 * :bfirst to first buffer
4866 * :sbrewind split and to first buffer
4867 * :sbfirst split and to first buffer
4868 */
4869 static void
4870ex_brewind(eap)
4871 exarg_T *eap;
4872{
4873 goto_buffer(eap, DOBUF_FIRST, FORWARD, 0);
4874}
4875
4876/*
4877 * :blast to last buffer
4878 * :sblast split and to last buffer
4879 */
4880 static void
4881ex_blast(eap)
4882 exarg_T *eap;
4883{
4884 goto_buffer(eap, DOBUF_LAST, BACKWARD, 0);
4885}
4886#endif
4887
4888 int
4889ends_excmd(c)
4890 int c;
4891{
4892 return (c == NUL || c == '|' || c == '"' || c == '\n');
4893}
4894
4895#if defined(FEAT_SYN_HL) || defined(FEAT_SEARCH_EXTRA) || defined(FEAT_EVAL) \
4896 || defined(PROTO)
4897/*
4898 * Return the next command, after the first '|' or '\n'.
4899 * Return NULL if not found.
4900 */
4901 char_u *
4902find_nextcmd(p)
4903 char_u *p;
4904{
4905 while (*p != '|' && *p != '\n')
4906 {
4907 if (*p == NUL)
4908 return NULL;
4909 ++p;
4910 }
4911 return (p + 1);
4912}
4913#endif
4914
4915/*
4916 * Check if *p is a separator between Ex commands.
4917 * Return NULL if it isn't, (p + 1) if it is.
4918 */
4919 char_u *
4920check_nextcmd(p)
4921 char_u *p;
4922{
4923 p = skipwhite(p);
4924 if (*p == '|' || *p == '\n')
4925 return (p + 1);
4926 else
4927 return NULL;
4928}
4929
4930/*
4931 * - if there are more files to edit
4932 * - and this is the last window
4933 * - and forceit not used
4934 * - and not repeated twice on a row
4935 * return FAIL and give error message if 'message' TRUE
4936 * return OK otherwise
4937 */
4938 static int
4939check_more(message, forceit)
4940 int message; /* when FALSE check only, no messages */
4941 int forceit;
4942{
4943 int n = ARGCOUNT - curwin->w_arg_idx - 1;
4944
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00004945 if (!forceit && only_one_window()
4946 && ARGCOUNT > 1 && !arg_had_last && n >= 0 && quitmore == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 {
4948 if (message)
4949 {
4950#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
4951 if ((p_confirm || cmdmod.confirm) && curbuf->b_fname != NULL)
4952 {
4953 char_u buff[IOSIZE];
4954
4955 if (n == 1)
4956 STRCPY(buff, _("1 more file to edit. Quit anyway?"));
4957 else
Bram Moolenaar9c13b352005-05-19 20:53:52 +00004958 vim_snprintf((char *)buff, IOSIZE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 _("%d more files to edit. Quit anyway?"), n);
4960 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
4961 return OK;
4962 return FAIL;
4963 }
4964#endif
4965 if (n == 1)
4966 EMSG(_("E173: 1 more file to edit"));
4967 else
4968 EMSGN(_("E173: %ld more files to edit"), n);
4969 quitmore = 2; /* next try to quit is allowed */
4970 }
4971 return FAIL;
4972 }
4973 return OK;
4974}
4975
4976#ifdef FEAT_CMDL_COMPL
4977/*
4978 * Function given to ExpandGeneric() to obtain the list of command names.
4979 */
4980/*ARGSUSED*/
4981 char_u *
4982get_command_name(xp, idx)
4983 expand_T *xp;
4984 int idx;
4985{
4986 if (idx >= (int)CMD_SIZE)
4987# ifdef FEAT_USR_CMDS
4988 return get_user_command_name(idx);
4989# else
4990 return NULL;
4991# endif
4992 return cmdnames[idx].cmd_name;
4993}
4994#endif
4995
4996#if defined(FEAT_USR_CMDS) || defined(PROTO)
4997static 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));
4998static void uc_list __ARGS((char_u *name, size_t name_len));
4999static int uc_scan_attr __ARGS((char_u *attr, size_t len, long *argt, long *def, int *flags, int *compl, char_u **compl_arg));
5000static char_u *uc_split_args __ARGS((char_u *arg, size_t *lenp));
5001static 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));
5002
5003 static int
5004uc_add_command(name, name_len, rep, argt, def, flags, compl, compl_arg, force)
5005 char_u *name;
5006 size_t name_len;
5007 char_u *rep;
5008 long argt;
5009 long def;
5010 int flags;
5011 int compl;
5012 char_u *compl_arg;
5013 int force;
5014{
5015 ucmd_T *cmd = NULL;
5016 char_u *p;
5017 int i;
5018 int cmp = 1;
5019 char_u *rep_buf = NULL;
5020 garray_T *gap;
5021
Bram Moolenaar9c102382006-05-03 21:26:49 +00005022 replace_termcodes(rep, &rep_buf, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 if (rep_buf == NULL)
5024 {
5025 /* Can't replace termcodes - try using the string as is */
5026 rep_buf = vim_strsave(rep);
5027
5028 /* Give up if out of memory */
5029 if (rep_buf == NULL)
5030 return FAIL;
5031 }
5032
5033 /* get address of growarray: global or in curbuf */
5034 if (flags & UC_BUFFER)
5035 {
5036 gap = &curbuf->b_ucmds;
5037 if (gap->ga_itemsize == 0)
5038 ga_init2(gap, (int)sizeof(ucmd_T), 4);
5039 }
5040 else
5041 gap = &ucmds;
5042
5043 /* Search for the command in the already defined commands. */
5044 for (i = 0; i < gap->ga_len; ++i)
5045 {
5046 size_t len;
5047
5048 cmd = USER_CMD_GA(gap, i);
5049 len = STRLEN(cmd->uc_name);
5050 cmp = STRNCMP(name, cmd->uc_name, name_len);
5051 if (cmp == 0)
5052 {
5053 if (name_len < len)
5054 cmp = -1;
5055 else if (name_len > len)
5056 cmp = 1;
5057 }
5058
5059 if (cmp == 0)
5060 {
5061 if (!force)
5062 {
5063 EMSG(_("E174: Command already exists: add ! to replace it"));
5064 goto fail;
5065 }
5066
5067 vim_free(cmd->uc_rep);
5068 cmd->uc_rep = 0;
5069 break;
5070 }
5071
5072 /* Stop as soon as we pass the name to add */
5073 if (cmp < 0)
5074 break;
5075 }
5076
5077 /* Extend the array unless we're replacing an existing command */
5078 if (cmp != 0)
5079 {
5080 if (ga_grow(gap, 1) != OK)
5081 goto fail;
5082 if ((p = vim_strnsave(name, (int)name_len)) == NULL)
5083 goto fail;
5084
5085 cmd = USER_CMD_GA(gap, i);
5086 mch_memmove(cmd + 1, cmd, (gap->ga_len - i) * sizeof(ucmd_T));
5087
5088 ++gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089
5090 cmd->uc_name = p;
5091 }
5092
5093 cmd->uc_rep = rep_buf;
5094 cmd->uc_argt = argt;
5095 cmd->uc_def = def;
5096 cmd->uc_compl = compl;
5097#ifdef FEAT_EVAL
5098 cmd->uc_scriptID = current_SID;
5099# ifdef FEAT_CMDL_COMPL
5100 cmd->uc_compl_arg = compl_arg;
5101# endif
5102#endif
5103
5104 return OK;
5105
5106fail:
5107 vim_free(rep_buf);
5108#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5109 vim_free(compl_arg);
5110#endif
5111 return FAIL;
5112}
5113
5114/*
5115 * List of names for completion for ":command" with the EXPAND_ flag.
5116 * Must be alphabetical for completion.
5117 */
5118static struct
5119{
5120 int expand;
5121 char *name;
5122} command_complete[] =
5123{
5124 {EXPAND_AUGROUP, "augroup"},
5125 {EXPAND_BUFFERS, "buffer"},
5126 {EXPAND_COMMANDS, "command"},
5127#if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5128 {EXPAND_USER_DEFINED, "custom"},
Bram Moolenaara466c992005-07-09 21:03:22 +00005129 {EXPAND_USER_LIST, "customlist"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005130#endif
5131 {EXPAND_DIRECTORIES, "dir"},
5132 {EXPAND_ENV_VARS, "environment"},
5133 {EXPAND_EVENTS, "event"},
5134 {EXPAND_EXPRESSION, "expression"},
5135 {EXPAND_FILES, "file"},
5136 {EXPAND_FUNCTIONS, "function"},
5137 {EXPAND_HELP, "help"},
5138 {EXPAND_HIGHLIGHT, "highlight"},
5139 {EXPAND_MAPPINGS, "mapping"},
5140 {EXPAND_MENUS, "menu"},
5141 {EXPAND_SETTINGS, "option"},
Bram Moolenaar362e1a32006-03-06 23:29:24 +00005142 {EXPAND_SHELLCMD, "shellcmd"},
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 {EXPAND_TAGS, "tag"},
5144 {EXPAND_TAGS_LISTFILES, "tag_listfiles"},
5145 {EXPAND_USER_VARS, "var"},
5146 {0, NULL}
5147};
5148
5149 static void
5150uc_list(name, name_len)
5151 char_u *name;
5152 size_t name_len;
5153{
5154 int i, j;
5155 int found = FALSE;
5156 ucmd_T *cmd;
5157 int len;
5158 long a;
5159 garray_T *gap;
5160
5161 gap = &curbuf->b_ucmds;
5162 for (;;)
5163 {
5164 for (i = 0; i < gap->ga_len; ++i)
5165 {
5166 cmd = USER_CMD_GA(gap, i);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005167 a = (long)cmd->uc_argt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168
5169 /* Skip commands which don't match the requested prefix */
5170 if (STRNCMP(name, cmd->uc_name, name_len) != 0)
5171 continue;
5172
5173 /* Put out the title first time */
5174 if (!found)
5175 MSG_PUTS_TITLE(_("\n Name Args Range Complete Definition"));
5176 found = TRUE;
5177 msg_putchar('\n');
5178 if (got_int)
5179 break;
5180
5181 /* Special cases */
5182 msg_putchar(a & BANG ? '!' : ' ');
5183 msg_putchar(a & REGSTR ? '"' : ' ');
5184 msg_putchar(gap != &ucmds ? 'b' : ' ');
5185 msg_putchar(' ');
5186
5187 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
5188 len = (int)STRLEN(cmd->uc_name) + 4;
5189
5190 do {
5191 msg_putchar(' ');
5192 ++len;
5193 } while (len < 16);
5194
5195 len = 0;
5196
5197 /* Arguments */
5198 switch ((int)(a & (EXTRA|NOSPC|NEEDARG)))
5199 {
5200 case 0: IObuff[len++] = '0'; break;
5201 case (EXTRA): IObuff[len++] = '*'; break;
5202 case (EXTRA|NOSPC): IObuff[len++] = '?'; break;
5203 case (EXTRA|NEEDARG): IObuff[len++] = '+'; break;
5204 case (EXTRA|NOSPC|NEEDARG): IObuff[len++] = '1'; break;
5205 }
5206
5207 do {
5208 IObuff[len++] = ' ';
5209 } while (len < 5);
5210
5211 /* Range */
5212 if (a & (RANGE|COUNT))
5213 {
5214 if (a & COUNT)
5215 {
5216 /* -count=N */
5217 sprintf((char *)IObuff + len, "%ldc", cmd->uc_def);
5218 len += (int)STRLEN(IObuff + len);
5219 }
5220 else if (a & DFLALL)
5221 IObuff[len++] = '%';
5222 else if (cmd->uc_def >= 0)
5223 {
5224 /* -range=N */
5225 sprintf((char *)IObuff + len, "%ld", cmd->uc_def);
5226 len += (int)STRLEN(IObuff + len);
5227 }
5228 else
5229 IObuff[len++] = '.';
5230 }
5231
5232 do {
5233 IObuff[len++] = ' ';
5234 } while (len < 11);
5235
5236 /* Completion */
5237 for (j = 0; command_complete[j].expand != 0; ++j)
5238 if (command_complete[j].expand == cmd->uc_compl)
5239 {
5240 STRCPY(IObuff + len, command_complete[j].name);
5241 len += (int)STRLEN(IObuff + len);
5242 break;
5243 }
5244
5245 do {
5246 IObuff[len++] = ' ';
5247 } while (len < 21);
5248
5249 IObuff[len] = '\0';
5250 msg_outtrans(IObuff);
5251
5252 msg_outtrans_special(cmd->uc_rep, FALSE);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +00005253#ifdef FEAT_EVAL
5254 if (p_verbose > 0)
5255 last_set_msg(cmd->uc_scriptID);
5256#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257 out_flush();
5258 ui_breakcheck();
5259 if (got_int)
5260 break;
5261 }
5262 if (gap == &ucmds || i < gap->ga_len)
5263 break;
5264 gap = &ucmds;
5265 }
5266
5267 if (!found)
5268 MSG(_("No user-defined commands found"));
5269}
5270
5271 static char_u *
5272uc_fun_cmd()
5273{
5274 static char_u fcmd[] = {0x84, 0xaf, 0x60, 0xb9, 0xaf, 0xb5, 0x60, 0xa4,
5275 0xa5, 0xad, 0xa1, 0xae, 0xa4, 0x60, 0xa1, 0x60,
5276 0xb3, 0xa8, 0xb2, 0xb5, 0xa2, 0xa2, 0xa5, 0xb2,
5277 0xb9, 0x7f, 0};
5278 int i;
5279
5280 for (i = 0; fcmd[i]; ++i)
5281 IObuff[i] = fcmd[i] - 0x40;
5282 IObuff[i] = 0;
5283 return IObuff;
5284}
5285
5286 static int
5287uc_scan_attr(attr, len, argt, def, flags, compl, compl_arg)
5288 char_u *attr;
5289 size_t len;
5290 long *argt;
5291 long *def;
5292 int *flags;
5293 int *compl;
5294 char_u **compl_arg;
5295{
5296 char_u *p;
5297
5298 if (len == 0)
5299 {
5300 EMSG(_("E175: No attribute specified"));
5301 return FAIL;
5302 }
5303
5304 /* First, try the simple attributes (no arguments) */
5305 if (STRNICMP(attr, "bang", len) == 0)
5306 *argt |= BANG;
5307 else if (STRNICMP(attr, "buffer", len) == 0)
5308 *flags |= UC_BUFFER;
5309 else if (STRNICMP(attr, "register", len) == 0)
5310 *argt |= REGSTR;
5311 else if (STRNICMP(attr, "bar", len) == 0)
5312 *argt |= TRLBAR;
5313 else
5314 {
5315 int i;
5316 char_u *val = NULL;
5317 size_t vallen = 0;
5318 size_t attrlen = len;
5319
5320 /* Look for the attribute name - which is the part before any '=' */
5321 for (i = 0; i < (int)len; ++i)
5322 {
5323 if (attr[i] == '=')
5324 {
5325 val = &attr[i + 1];
5326 vallen = len - i - 1;
5327 attrlen = i;
5328 break;
5329 }
5330 }
5331
5332 if (STRNICMP(attr, "nargs", attrlen) == 0)
5333 {
5334 if (vallen == 1)
5335 {
5336 if (*val == '0')
5337 /* Do nothing - this is the default */;
5338 else if (*val == '1')
5339 *argt |= (EXTRA | NOSPC | NEEDARG);
5340 else if (*val == '*')
5341 *argt |= EXTRA;
5342 else if (*val == '?')
5343 *argt |= (EXTRA | NOSPC);
5344 else if (*val == '+')
5345 *argt |= (EXTRA | NEEDARG);
5346 else
5347 goto wrong_nargs;
5348 }
5349 else
5350 {
5351wrong_nargs:
5352 EMSG(_("E176: Invalid number of arguments"));
5353 return FAIL;
5354 }
5355 }
5356 else if (STRNICMP(attr, "range", attrlen) == 0)
5357 {
5358 *argt |= RANGE;
5359 if (vallen == 1 && *val == '%')
5360 *argt |= DFLALL;
5361 else if (val != NULL)
5362 {
5363 p = val;
5364 if (*def >= 0)
5365 {
5366two_count:
5367 EMSG(_("E177: Count cannot be specified twice"));
5368 return FAIL;
5369 }
5370
5371 *def = getdigits(&p);
5372 *argt |= (ZEROR | NOTADR);
5373
5374 if (p != val + vallen || vallen == 0)
5375 {
5376invalid_count:
5377 EMSG(_("E178: Invalid default value for count"));
5378 return FAIL;
5379 }
5380 }
5381 }
5382 else if (STRNICMP(attr, "count", attrlen) == 0)
5383 {
Bram Moolenaar32e7b2d2005-02-27 22:36:47 +00005384 *argt |= (COUNT | ZEROR | RANGE | NOTADR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005385
5386 if (val != NULL)
5387 {
5388 p = val;
5389 if (*def >= 0)
5390 goto two_count;
5391
5392 *def = getdigits(&p);
5393
5394 if (p != val + vallen)
5395 goto invalid_count;
5396 }
5397
5398 if (*def < 0)
5399 *def = 0;
5400 }
5401 else if (STRNICMP(attr, "complete", attrlen) == 0)
5402 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 if (val == NULL)
5404 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005405 EMSG(_("E179: argument required for -complete"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 return FAIL;
5407 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005408
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00005409 if (parse_compl_arg(val, (int)vallen, compl, argt, compl_arg)
5410 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 }
5413 else
5414 {
5415 char_u ch = attr[len];
5416 attr[len] = '\0';
5417 EMSG2(_("E181: Invalid attribute: %s"), attr);
5418 attr[len] = ch;
5419 return FAIL;
5420 }
5421 }
5422
5423 return OK;
5424}
5425
5426 static void
5427ex_command(eap)
5428 exarg_T *eap;
5429{
5430 char_u *name;
5431 char_u *end;
5432 char_u *p;
5433 long argt = 0;
5434 long def = -1;
5435 int flags = 0;
5436 int compl = EXPAND_NOTHING;
5437 char_u *compl_arg = NULL;
5438 int has_attr = (eap->arg[0] == '-');
5439
5440 p = eap->arg;
5441
5442 /* Check for attributes */
5443 while (*p == '-')
5444 {
5445 ++p;
5446 end = skiptowhite(p);
5447 if (uc_scan_attr(p, end - p, &argt, &def, &flags, &compl, &compl_arg)
5448 == FAIL)
5449 return;
5450 p = skipwhite(end);
5451 }
5452
5453 /* Get the name (if any) and skip to the following argument */
5454 name = p;
5455 if (ASCII_ISALPHA(*p))
5456 while (ASCII_ISALNUM(*p))
5457 ++p;
5458 if (!ends_excmd(*p) && !vim_iswhite(*p))
5459 {
5460 EMSG(_("E182: Invalid command name"));
5461 return;
5462 }
5463 end = p;
5464
5465 /* If there is nothing after the name, and no attributes were specified,
5466 * we are listing commands
5467 */
5468 p = skipwhite(end);
5469 if (!has_attr && ends_excmd(*p))
5470 {
5471 uc_list(name, end - name);
5472 }
5473 else if (!ASCII_ISUPPER(*name))
5474 {
5475 EMSG(_("E183: User defined commands must start with an uppercase letter"));
5476 return;
5477 }
5478 else
5479 uc_add_command(name, end - name, p, argt, def, flags, compl, compl_arg,
5480 eap->forceit);
5481}
5482
5483/*
5484 * ":comclear"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 * Clear all user commands, global and for current buffer.
5486 */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00005487/*ARGSUSED*/
5488 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489ex_comclear(eap)
5490 exarg_T *eap;
5491{
5492 uc_clear(&ucmds);
5493 uc_clear(&curbuf->b_ucmds);
5494}
5495
5496/*
5497 * Clear all user commands for "gap".
5498 */
5499 void
5500uc_clear(gap)
5501 garray_T *gap;
5502{
5503 int i;
5504 ucmd_T *cmd;
5505
5506 for (i = 0; i < gap->ga_len; ++i)
5507 {
5508 cmd = USER_CMD_GA(gap, i);
5509 vim_free(cmd->uc_name);
5510 vim_free(cmd->uc_rep);
5511# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5512 vim_free(cmd->uc_compl_arg);
5513# endif
5514 }
5515 ga_clear(gap);
5516}
5517
5518 static void
5519ex_delcommand(eap)
5520 exarg_T *eap;
5521{
5522 int i = 0;
5523 ucmd_T *cmd = NULL;
5524 int cmp = -1;
5525 garray_T *gap;
5526
5527 gap = &curbuf->b_ucmds;
5528 for (;;)
5529 {
5530 for (i = 0; i < gap->ga_len; ++i)
5531 {
5532 cmd = USER_CMD_GA(gap, i);
5533 cmp = STRCMP(eap->arg, cmd->uc_name);
5534 if (cmp <= 0)
5535 break;
5536 }
5537 if (gap == &ucmds || cmp == 0)
5538 break;
5539 gap = &ucmds;
5540 }
5541
5542 if (cmp != 0)
5543 {
5544 EMSG2(_("E184: No such user-defined command: %s"), eap->arg);
5545 return;
5546 }
5547
5548 vim_free(cmd->uc_name);
5549 vim_free(cmd->uc_rep);
5550# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
5551 vim_free(cmd->uc_compl_arg);
5552# endif
5553
5554 --gap->ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555
5556 if (i < gap->ga_len)
5557 mch_memmove(cmd, cmd + 1, (gap->ga_len - i) * sizeof(ucmd_T));
5558}
5559
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005560/*
5561 * split and quote args for <f-args>
5562 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 static char_u *
5564uc_split_args(arg, lenp)
5565 char_u *arg;
5566 size_t *lenp;
5567{
5568 char_u *buf;
5569 char_u *p;
5570 char_u *q;
5571 int len;
5572
5573 /* Precalculate length */
5574 p = arg;
5575 len = 2; /* Initial and final quotes */
5576
5577 while (*p)
5578 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005579 if (p[0] == '\\' && p[1] == '\\')
5580 {
5581 len += 2;
5582 p += 2;
5583 }
5584 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 {
5586 len += 1;
5587 p += 2;
5588 }
5589 else if (*p == '\\' || *p == '"')
5590 {
5591 len += 2;
5592 p += 1;
5593 }
5594 else if (vim_iswhite(*p))
5595 {
5596 p = skipwhite(p);
5597 if (*p == NUL)
5598 break;
5599 len += 3; /* "," */
5600 }
5601 else
5602 {
5603 ++len;
5604 ++p;
5605 }
5606 }
5607
5608 buf = alloc(len + 1);
5609 if (buf == NULL)
5610 {
5611 *lenp = 0;
5612 return buf;
5613 }
5614
5615 p = arg;
5616 q = buf;
5617 *q++ = '"';
5618 while (*p)
5619 {
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005620 if (p[0] == '\\' && p[1] == '\\')
5621 {
5622 *q++ = '\\';
5623 *q++ = '\\';
5624 p += 2;
5625 }
5626 else if (p[0] == '\\' && vim_iswhite(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005627 {
5628 *q++ = p[1];
5629 p += 2;
5630 }
5631 else if (*p == '\\' || *p == '"')
5632 {
5633 *q++ = '\\';
5634 *q++ = *p++;
5635 }
5636 else if (vim_iswhite(*p))
5637 {
5638 p = skipwhite(p);
5639 if (*p == NUL)
5640 break;
5641 *q++ = '"';
5642 *q++ = ',';
5643 *q++ = '"';
5644 }
5645 else
5646 {
5647 *q++ = *p++;
5648 }
5649 }
5650 *q++ = '"';
5651 *q = 0;
5652
5653 *lenp = len;
5654 return buf;
5655}
5656
5657/*
5658 * Check for a <> code in a user command.
5659 * "code" points to the '<'. "len" the length of the <> (inclusive).
5660 * "buf" is where the result is to be added.
5661 * "split_buf" points to a buffer used for splitting, caller should free it.
5662 * "split_len" is the length of what "split_buf" contains.
5663 * Returns the length of the replacement, which has been added to "buf".
5664 * Returns -1 if there was no match, and only the "<" has been copied.
5665 */
5666 static size_t
5667uc_check_code(code, len, buf, cmd, eap, split_buf, split_len)
5668 char_u *code;
5669 size_t len;
5670 char_u *buf;
5671 ucmd_T *cmd; /* the user command we're expanding */
5672 exarg_T *eap; /* ex arguments */
5673 char_u **split_buf;
5674 size_t *split_len;
5675{
5676 size_t result = 0;
5677 char_u *p = code + 1;
5678 size_t l = len - 2;
5679 int quote = 0;
5680 enum { ct_ARGS, ct_BANG, ct_COUNT, ct_LINE1, ct_LINE2, ct_REGISTER,
5681 ct_LT, ct_NONE } type = ct_NONE;
5682
5683 if ((vim_strchr((char_u *)"qQfF", *p) != NULL) && p[1] == '-')
5684 {
5685 quote = (*p == 'q' || *p == 'Q') ? 1 : 2;
5686 p += 2;
5687 l -= 2;
5688 }
5689
Bram Moolenaar371d5402006-03-20 21:47:49 +00005690 ++l;
5691 if (l <= 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 type = ct_NONE;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005693 else if (STRNICMP(p, "args>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694 type = ct_ARGS;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005695 else if (STRNICMP(p, "bang>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696 type = ct_BANG;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005697 else if (STRNICMP(p, "count>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 type = ct_COUNT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005699 else if (STRNICMP(p, "line1>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005700 type = ct_LINE1;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005701 else if (STRNICMP(p, "line2>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702 type = ct_LINE2;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005703 else if (STRNICMP(p, "lt>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005704 type = ct_LT;
Bram Moolenaar371d5402006-03-20 21:47:49 +00005705 else if (STRNICMP(p, "reg>", l) == 0 || STRNICMP(p, "register>", l) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706 type = ct_REGISTER;
5707
5708 switch (type)
5709 {
5710 case ct_ARGS:
5711 /* Simple case first */
5712 if (*eap->arg == NUL)
5713 {
5714 if (quote == 1)
5715 {
5716 result = 2;
5717 if (buf != NULL)
5718 STRCPY(buf, "''");
5719 }
5720 else
5721 result = 0;
5722 break;
5723 }
5724
5725 /* When specified there is a single argument don't split it.
5726 * Works for ":Cmd %" when % is "a b c". */
5727 if ((eap->argt & NOSPC) && quote == 2)
5728 quote = 1;
5729
5730 switch (quote)
5731 {
5732 case 0: /* No quoting, no splitting */
5733 result = STRLEN(eap->arg);
5734 if (buf != NULL)
5735 STRCPY(buf, eap->arg);
5736 break;
5737 case 1: /* Quote, but don't split */
5738 result = STRLEN(eap->arg) + 2;
5739 for (p = eap->arg; *p; ++p)
5740 {
5741 if (*p == '\\' || *p == '"')
5742 ++result;
5743 }
5744
5745 if (buf != NULL)
5746 {
5747 *buf++ = '"';
5748 for (p = eap->arg; *p; ++p)
5749 {
5750 if (*p == '\\' || *p == '"')
5751 *buf++ = '\\';
5752 *buf++ = *p;
5753 }
5754 *buf = '"';
5755 }
5756
5757 break;
Bram Moolenaar552f8a12007-03-08 17:12:08 +00005758 case 2: /* Quote and split (<f-args>) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005759 /* This is hard, so only do it once, and cache the result */
5760 if (*split_buf == NULL)
5761 *split_buf = uc_split_args(eap->arg, split_len);
5762
5763 result = *split_len;
5764 if (buf != NULL && result != 0)
5765 STRCPY(buf, *split_buf);
5766
5767 break;
5768 }
5769 break;
5770
5771 case ct_BANG:
5772 result = eap->forceit ? 1 : 0;
5773 if (quote)
5774 result += 2;
5775 if (buf != NULL)
5776 {
5777 if (quote)
5778 *buf++ = '"';
5779 if (eap->forceit)
5780 *buf++ = '!';
5781 if (quote)
5782 *buf = '"';
5783 }
5784 break;
5785
5786 case ct_LINE1:
5787 case ct_LINE2:
5788 case ct_COUNT:
5789 {
5790 char num_buf[20];
5791 long num = (type == ct_LINE1) ? eap->line1 :
5792 (type == ct_LINE2) ? eap->line2 :
5793 (eap->addr_count > 0) ? eap->line2 : cmd->uc_def;
5794 size_t num_len;
5795
5796 sprintf(num_buf, "%ld", num);
5797 num_len = STRLEN(num_buf);
5798 result = num_len;
5799
5800 if (quote)
5801 result += 2;
5802
5803 if (buf != NULL)
5804 {
5805 if (quote)
5806 *buf++ = '"';
5807 STRCPY(buf, num_buf);
5808 buf += num_len;
5809 if (quote)
5810 *buf = '"';
5811 }
5812
5813 break;
5814 }
5815
5816 case ct_REGISTER:
5817 result = eap->regname ? 1 : 0;
5818 if (quote)
5819 result += 2;
5820 if (buf != NULL)
5821 {
5822 if (quote)
5823 *buf++ = '\'';
5824 if (eap->regname)
5825 *buf++ = eap->regname;
5826 if (quote)
5827 *buf = '\'';
5828 }
5829 break;
5830
5831 case ct_LT:
5832 result = 1;
5833 if (buf != NULL)
5834 *buf = '<';
5835 break;
5836
5837 default:
5838 /* Not recognized: just copy the '<' and return -1. */
5839 result = (size_t)-1;
5840 if (buf != NULL)
5841 *buf = '<';
5842 break;
5843 }
5844
5845 return result;
5846}
5847
5848 static void
5849do_ucmd(eap)
5850 exarg_T *eap;
5851{
5852 char_u *buf;
5853 char_u *p;
5854 char_u *q;
5855
5856 char_u *start;
5857 char_u *end;
5858 size_t len, totlen;
5859
5860 size_t split_len = 0;
5861 char_u *split_buf = NULL;
5862 ucmd_T *cmd;
5863#ifdef FEAT_EVAL
5864 scid_T save_current_SID = current_SID;
5865#endif
5866
5867 if (eap->cmdidx == CMD_USER)
5868 cmd = USER_CMD(eap->useridx);
5869 else
5870 cmd = USER_CMD_GA(&curbuf->b_ucmds, eap->useridx);
5871
5872 /*
5873 * Replace <> in the command by the arguments.
5874 */
5875 buf = NULL;
5876 for (;;)
5877 {
5878 p = cmd->uc_rep;
5879 q = buf;
5880 totlen = 0;
5881 while ((start = vim_strchr(p, '<')) != NULL
5882 && (end = vim_strchr(start + 1, '>')) != NULL)
5883 {
5884 /* Include the '>' */
5885 ++end;
5886
5887 /* Take everything up to the '<' */
5888 len = start - p;
5889 if (buf == NULL)
5890 totlen += len;
5891 else
5892 {
5893 mch_memmove(q, p, len);
5894 q += len;
5895 }
5896
5897 len = uc_check_code(start, end - start, q, cmd, eap,
5898 &split_buf, &split_len);
5899 if (len == (size_t)-1)
5900 {
5901 /* no match, continue after '<' */
5902 p = start + 1;
5903 len = 1;
5904 }
5905 else
5906 p = end;
5907 if (buf == NULL)
5908 totlen += len;
5909 else
5910 q += len;
5911 }
5912 if (buf != NULL) /* second time here, finished */
5913 {
5914 STRCPY(q, p);
5915 break;
5916 }
5917
5918 totlen += STRLEN(p); /* Add on the trailing characters */
5919 buf = alloc((unsigned)(totlen + 1));
5920 if (buf == NULL)
5921 {
5922 vim_free(split_buf);
5923 return;
5924 }
5925 }
5926
5927#ifdef FEAT_EVAL
5928 current_SID = cmd->uc_scriptID;
5929#endif
5930 (void)do_cmdline(buf, eap->getline, eap->cookie,
5931 DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED);
5932#ifdef FEAT_EVAL
5933 current_SID = save_current_SID;
5934#endif
5935 vim_free(buf);
5936 vim_free(split_buf);
5937}
5938
5939# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
5940 static char_u *
5941get_user_command_name(idx)
5942 int idx;
5943{
5944 return get_user_commands(NULL, idx - (int)CMD_SIZE);
5945}
5946
5947/*
5948 * Function given to ExpandGeneric() to obtain the list of user command names.
5949 */
5950/*ARGSUSED*/
5951 char_u *
5952get_user_commands(xp, idx)
5953 expand_T *xp;
5954 int idx;
5955{
5956 if (idx < curbuf->b_ucmds.ga_len)
5957 return USER_CMD_GA(&curbuf->b_ucmds, idx)->uc_name;
5958 idx -= curbuf->b_ucmds.ga_len;
5959 if (idx < ucmds.ga_len)
5960 return USER_CMD(idx)->uc_name;
5961 return NULL;
5962}
5963
5964/*
5965 * Function given to ExpandGeneric() to obtain the list of user command
5966 * attributes.
5967 */
5968/*ARGSUSED*/
5969 char_u *
5970get_user_cmd_flags(xp, idx)
5971 expand_T *xp;
5972 int idx;
5973{
5974 static char *user_cmd_flags[] =
5975 {"bang", "bar", "buffer", "complete", "count",
5976 "nargs", "range", "register"};
5977
5978 if (idx >= sizeof(user_cmd_flags) / sizeof(user_cmd_flags[0]))
5979 return NULL;
5980 return (char_u *)user_cmd_flags[idx];
5981}
5982
5983/*
5984 * Function given to ExpandGeneric() to obtain the list of values for -nargs.
5985 */
5986/*ARGSUSED*/
5987 char_u *
5988get_user_cmd_nargs(xp, idx)
5989 expand_T *xp;
5990 int idx;
5991{
5992 static char *user_cmd_nargs[] = {"0", "1", "*", "?", "+"};
5993
5994 if (idx >= sizeof(user_cmd_nargs) / sizeof(user_cmd_nargs[0]))
5995 return NULL;
5996 return (char_u *)user_cmd_nargs[idx];
5997}
5998
5999/*
6000 * Function given to ExpandGeneric() to obtain the list of values for -complete.
6001 */
6002/*ARGSUSED*/
6003 char_u *
6004get_user_cmd_complete(xp, idx)
6005 expand_T *xp;
6006 int idx;
6007{
6008 return (char_u *)command_complete[idx].name;
6009}
6010# endif /* FEAT_CMDL_COMPL */
6011
6012#endif /* FEAT_USR_CMDS */
6013
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006014#if defined(FEAT_USR_CMDS) || defined(FEAT_EVAL) || defined(PROTO)
6015/*
6016 * Parse a completion argument "value[vallen]".
6017 * The detected completion goes in "*complp", argument type in "*argt".
6018 * When there is an argument, for function and user defined completion, it's
6019 * copied to allocated memory and stored in "*compl_arg".
6020 * Returns FAIL if something is wrong.
6021 */
6022 int
6023parse_compl_arg(value, vallen, complp, argt, compl_arg)
6024 char_u *value;
6025 int vallen;
6026 int *complp;
6027 long *argt;
6028 char_u **compl_arg;
6029{
6030 char_u *arg = NULL;
6031 size_t arglen = 0;
6032 int i;
6033 int valend = vallen;
6034
6035 /* Look for any argument part - which is the part after any ',' */
6036 for (i = 0; i < vallen; ++i)
6037 {
6038 if (value[i] == ',')
6039 {
6040 arg = &value[i + 1];
6041 arglen = vallen - i - 1;
6042 valend = i;
6043 break;
6044 }
6045 }
6046
6047 for (i = 0; command_complete[i].expand != 0; ++i)
6048 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006049 if ((int)STRLEN(command_complete[i].name) == valend
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006050 && STRNCMP(value, command_complete[i].name, valend) == 0)
6051 {
6052 *complp = command_complete[i].expand;
6053 if (command_complete[i].expand == EXPAND_BUFFERS)
6054 *argt |= BUFNAME;
6055 else if (command_complete[i].expand == EXPAND_DIRECTORIES
6056 || command_complete[i].expand == EXPAND_FILES)
6057 *argt |= XFILE;
6058 break;
6059 }
6060 }
6061
6062 if (command_complete[i].expand == 0)
6063 {
6064 EMSG2(_("E180: Invalid complete value: %s"), value);
6065 return FAIL;
6066 }
6067
6068# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6069 if (*complp != EXPAND_USER_DEFINED && *complp != EXPAND_USER_LIST
6070 && arg != NULL)
6071# else
6072 if (arg != NULL)
6073# endif
6074 {
6075 EMSG(_("E468: Completion argument only allowed for custom completion"));
6076 return FAIL;
6077 }
6078
6079# if defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
6080 if ((*complp == EXPAND_USER_DEFINED || *complp == EXPAND_USER_LIST)
6081 && arg == NULL)
6082 {
6083 EMSG(_("E467: Custom completion requires a function argument"));
6084 return FAIL;
6085 }
6086
6087 if (arg != NULL)
6088 *compl_arg = vim_strnsave(arg, (int)arglen);
6089# endif
6090 return OK;
6091}
6092#endif
6093
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 static void
6095ex_colorscheme(eap)
6096 exarg_T *eap;
6097{
6098 if (load_colors(eap->arg) == FAIL)
6099 EMSG2(_("E185: Cannot find color scheme %s"), eap->arg);
6100}
6101
6102 static void
6103ex_highlight(eap)
6104 exarg_T *eap;
6105{
6106 if (*eap->arg == NUL && eap->cmd[2] == '!')
6107 MSG(_("Greetings, Vim user!"));
6108 do_highlight(eap->arg, eap->forceit, FALSE);
6109}
6110
6111
6112/*
6113 * Call this function if we thought we were going to exit, but we won't
6114 * (because of an error). May need to restore the terminal mode.
6115 */
6116 void
6117not_exiting()
6118{
6119 exiting = FALSE;
6120 settmode(TMODE_RAW);
6121}
6122
6123/*
6124 * ":quit": quit current window, quit Vim if closed the last window.
6125 */
6126 static void
6127ex_quit(eap)
6128 exarg_T *eap;
6129{
6130#ifdef FEAT_CMDWIN
6131 if (cmdwin_type != 0)
6132 {
6133 cmdwin_result = Ctrl_C;
6134 return;
6135 }
6136#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006137 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006138 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006139 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006140 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006141 return;
6142 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006143#ifdef FEAT_AUTOCMD
6144 if (curbuf_locked())
6145 return;
6146#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147
6148#ifdef FEAT_NETBEANS_INTG
6149 netbeansForcedQuit = eap->forceit;
6150#endif
6151
6152 /*
6153 * If there are more files or windows we won't exit.
6154 */
6155 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6156 exiting = TRUE;
6157 if ((!P_HID(curbuf)
6158 && check_changed(curbuf, p_awa, FALSE, eap->forceit, FALSE))
6159 || check_more(TRUE, eap->forceit) == FAIL
6160 || (only_one_window() && check_changed_any(eap->forceit)))
6161 {
6162 not_exiting();
6163 }
6164 else
6165 {
6166#ifdef FEAT_WINDOWS
6167 if (only_one_window()) /* quit last window */
6168#endif
6169 getout(0);
6170#ifdef FEAT_WINDOWS
6171# ifdef FEAT_GUI
6172 need_mouse_correct = TRUE;
6173# endif
6174 /* close window; may free buffer */
6175 win_close(curwin, !P_HID(curwin->w_buffer) || eap->forceit);
6176#endif
6177 }
6178}
6179
6180/*
6181 * ":cquit".
6182 */
6183/*ARGSUSED*/
6184 static void
6185ex_cquit(eap)
6186 exarg_T *eap;
6187{
6188 getout(1); /* this does not always pass on the exit code to the Manx
6189 compiler. why? */
6190}
6191
6192/*
6193 * ":qall": try to quit all windows
6194 */
6195 static void
6196ex_quit_all(eap)
6197 exarg_T *eap;
6198{
6199# ifdef FEAT_CMDWIN
6200 if (cmdwin_type != 0)
6201 {
6202 if (eap->forceit)
6203 cmdwin_result = K_XF1; /* ex_window() takes care of this */
6204 else
6205 cmdwin_result = K_XF2;
6206 return;
6207 }
6208# endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006209
6210 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006211 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006212 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006213 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006214 return;
6215 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006216#ifdef FEAT_AUTOCMD
6217 if (curbuf_locked())
6218 return;
6219#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006220
Bram Moolenaar071d4272004-06-13 20:20:40 +00006221 exiting = TRUE;
6222 if (eap->forceit || !check_changed_any(FALSE))
6223 getout(0);
6224 not_exiting();
6225}
6226
Bram Moolenaard9967712006-03-11 21:18:15 +00006227#if defined(FEAT_WINDOWS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228/*
6229 * ":close": close current window, unless it is the last one
6230 */
6231 static void
6232ex_close(eap)
6233 exarg_T *eap;
6234{
6235# ifdef FEAT_CMDWIN
6236 if (cmdwin_type != 0)
6237 cmdwin_result = K_IGNORE;
6238 else
6239# endif
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006240 if (!text_locked()
6241#ifdef FEAT_AUTOCMD
6242 && !curbuf_locked()
6243#endif
6244 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006245 ex_win_close(eap->forceit, curwin, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246}
6247
Bram Moolenaard9967712006-03-11 21:18:15 +00006248# ifdef FEAT_QUICKFIX
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006249/*
6250 * ":pclose": Close any preview window.
6251 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006253ex_pclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 exarg_T *eap;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006255{
6256 win_T *win;
6257
6258 for (win = firstwin; win != NULL; win = win->w_next)
6259 if (win->w_p_pvw)
6260 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006261 ex_win_close(eap->forceit, win, NULL);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006262 break;
6263 }
6264}
Bram Moolenaard9967712006-03-11 21:18:15 +00006265# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006266
Bram Moolenaarf740b292006-02-16 22:11:02 +00006267/*
6268 * Close window "win" and take care of handling closing the last window for a
6269 * modified buffer.
6270 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006271 static void
Bram Moolenaarf740b292006-02-16 22:11:02 +00006272ex_win_close(forceit, win, tp)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006273 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006274 win_T *win;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006275 tabpage_T *tp; /* NULL or the tab page "win" is in */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276{
6277 int need_hide;
6278 buf_T *buf = win->w_buffer;
6279
6280 need_hide = (bufIsChanged(buf) && buf->b_nwindows <= 1);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006281 if (need_hide && !P_HID(buf) && !forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 {
Bram Moolenaard9967712006-03-11 21:18:15 +00006283# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 if ((p_confirm || cmdmod.confirm) && p_write)
6285 {
6286 dialog_changed(buf, FALSE);
6287 if (buf_valid(buf) && bufIsChanged(buf))
6288 return;
6289 need_hide = FALSE;
6290 }
6291 else
Bram Moolenaard9967712006-03-11 21:18:15 +00006292# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006293 {
6294 EMSG(_(e_nowrtmsg));
6295 return;
6296 }
6297 }
6298
Bram Moolenaard9967712006-03-11 21:18:15 +00006299# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006300 need_mouse_correct = TRUE;
Bram Moolenaard9967712006-03-11 21:18:15 +00006301# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006302
Bram Moolenaar071d4272004-06-13 20:20:40 +00006303 /* free buffer when not hiding it or when it's a scratch buffer */
Bram Moolenaarf740b292006-02-16 22:11:02 +00006304 if (tp == NULL)
6305 win_close(win, !need_hide && !P_HID(buf));
6306 else
6307 win_close_othertab(win, !need_hide && !P_HID(buf), tp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308}
6309
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006311 * ":tabclose": close current tab page, unless it is the last one.
6312 * ":tabclose N": close tab page N.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006313 */
6314 static void
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006315ex_tabclose(eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316 exarg_T *eap;
6317{
Bram Moolenaarf740b292006-02-16 22:11:02 +00006318 tabpage_T *tp;
6319
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006320# ifdef FEAT_CMDWIN
6321 if (cmdwin_type != 0)
6322 cmdwin_result = K_IGNORE;
6323 else
6324# endif
Bram Moolenaarf740b292006-02-16 22:11:02 +00006325 if (first_tabpage->tp_next == NULL)
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006326 EMSG(_("E784: Cannot close last tab page"));
Bram Moolenaarf740b292006-02-16 22:11:02 +00006327 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006328 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006329 if (eap->addr_count > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006330 {
Bram Moolenaarf740b292006-02-16 22:11:02 +00006331 tp = find_tabpage((int)eap->line2);
6332 if (tp == NULL)
6333 {
6334 beep_flush();
6335 return;
6336 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00006337 if (tp != curtab)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006338 {
6339 tabpage_close_other(tp, eap->forceit);
6340 return;
6341 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006342 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006343 if (!text_locked()
6344#ifdef FEAT_AUTOCMD
6345 && !curbuf_locked()
6346#endif
6347 )
Bram Moolenaarf740b292006-02-16 22:11:02 +00006348 tabpage_close(eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349 }
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006350}
6351
6352/*
6353 * ":tabonly": close all tab pages except the current one
6354 */
6355 static void
6356ex_tabonly(eap)
6357 exarg_T *eap;
6358{
6359 tabpage_T *tp;
6360 int done;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006361
6362# ifdef FEAT_CMDWIN
6363 if (cmdwin_type != 0)
6364 cmdwin_result = K_IGNORE;
6365 else
6366# endif
6367 if (first_tabpage->tp_next == NULL)
6368 MSG(_("Already only one tab page"));
6369 else
6370 {
6371 /* Repeat this up to a 1000 times, because autocommands may mess
6372 * up the lists. */
6373 for (done = 0; done < 1000; ++done)
6374 {
6375 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6376 if (tp->tp_topframe != topframe)
6377 {
6378 tabpage_close_other(tp, eap->forceit);
6379 /* if we failed to close it quit */
6380 if (valid_tabpage(tp))
6381 done = 1000;
6382 /* start over, "tp" is now invalid */
6383 break;
6384 }
6385 if (first_tabpage->tp_next == NULL)
6386 break;
6387 }
6388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006389}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390
6391/*
Bram Moolenaarf740b292006-02-16 22:11:02 +00006392 * Close the current tab page.
6393 */
6394 void
6395tabpage_close(forceit)
6396 int forceit;
6397{
6398 /* First close all the windows but the current one. If that worked then
6399 * close the last window in this tab, that will close it. */
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006400 if (lastwin != firstwin)
6401 close_others(TRUE, forceit);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006402 if (lastwin == firstwin)
6403 ex_win_close(forceit, curwin, NULL);
6404# ifdef FEAT_GUI
6405 need_mouse_correct = TRUE;
6406# endif
6407}
6408
6409/*
6410 * Close tab page "tp", which is not the current tab page.
6411 * Note that autocommands may make "tp" invalid.
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006412 * Also takes care of the tab pages line disappearing when closing the
6413 * last-but-one tab page.
Bram Moolenaarf740b292006-02-16 22:11:02 +00006414 */
6415 void
6416tabpage_close_other(tp, forceit)
6417 tabpage_T *tp;
6418 int forceit;
6419{
6420 int done = 0;
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006421 win_T *wp;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006422 int h = tabline_height();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006423
6424 /* Limit to 1000 windows, autocommands may add a window while we close
6425 * one. OK, so I'm paranoid... */
6426 while (++done < 1000)
6427 {
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006428 wp = tp->tp_firstwin;
6429 ex_win_close(forceit, wp, tp);
Bram Moolenaarf740b292006-02-16 22:11:02 +00006430
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006431 /* Autocommands may delete the tab page under our fingers and we may
6432 * fail to close a window with a modified buffer. */
6433 if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
Bram Moolenaarf740b292006-02-16 22:11:02 +00006434 break;
6435 }
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006436
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006437 redraw_tabline = TRUE;
Bram Moolenaar7875acc2006-09-10 13:51:17 +00006438 if (h != tabline_height())
6439 shell_new_rows();
Bram Moolenaarf740b292006-02-16 22:11:02 +00006440}
6441
6442/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006443 * ":only".
6444 */
6445 static void
6446ex_only(eap)
6447 exarg_T *eap;
6448{
6449# ifdef FEAT_GUI
6450 need_mouse_correct = TRUE;
6451# endif
6452 close_others(TRUE, eap->forceit);
6453}
6454
6455/*
6456 * ":all" and ":sall".
Bram Moolenaard9967712006-03-11 21:18:15 +00006457 * Also used for ":tab drop file ..." after setting the argument list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006458 */
Bram Moolenaard9967712006-03-11 21:18:15 +00006459 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460ex_all(eap)
6461 exarg_T *eap;
6462{
6463 if (eap->addr_count == 0)
6464 eap->line2 = 9999;
Bram Moolenaard9967712006-03-11 21:18:15 +00006465 do_arg_all((int)eap->line2, eap->forceit, eap->cmdidx == CMD_drop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466}
6467#endif /* FEAT_WINDOWS */
6468
6469 static void
6470ex_hide(eap)
6471 exarg_T *eap;
6472{
6473 if (*eap->arg != NUL && check_nextcmd(eap->arg) == NULL)
6474 eap->errmsg = e_invarg;
6475 else
6476 {
6477 /* ":hide" or ":hide | cmd": hide current window */
6478 eap->nextcmd = check_nextcmd(eap->arg);
6479#ifdef FEAT_WINDOWS
6480 if (!eap->skip)
6481 {
6482# ifdef FEAT_GUI
6483 need_mouse_correct = TRUE;
6484# endif
6485 win_close(curwin, FALSE); /* don't free buffer */
6486 }
6487#endif
6488 }
6489}
6490
6491/*
6492 * ":stop" and ":suspend": Suspend Vim.
6493 */
6494 static void
6495ex_stop(eap)
6496 exarg_T *eap;
6497{
6498 /*
6499 * Disallow suspending for "rvim".
6500 */
6501 if (!check_restricted()
6502#ifdef WIN3264
6503 /*
6504 * Check if external commands are allowed now.
6505 */
6506 && can_end_termcap_mode(TRUE)
6507#endif
6508 )
6509 {
6510 if (!eap->forceit)
6511 autowrite_all();
6512 windgoto((int)Rows - 1, 0);
6513 out_char('\n');
6514 out_flush();
6515 stoptermcap();
6516 out_flush(); /* needed for SUN to restore xterm buffer */
6517#ifdef FEAT_TITLE
6518 mch_restore_title(3); /* restore window titles */
6519#endif
6520 ui_suspend(); /* call machine specific function */
6521#ifdef FEAT_TITLE
6522 maketitle();
6523 resettitle(); /* force updating the title */
6524#endif
6525 starttermcap();
6526 scroll_start(); /* scroll screen before redrawing */
6527 redraw_later_clear();
6528 shell_resized(); /* may have resized window */
6529 }
6530}
6531
6532/*
6533 * ":exit", ":xit" and ":wq": Write file and exit Vim.
6534 */
6535 static void
6536ex_exit(eap)
6537 exarg_T *eap;
6538{
6539#ifdef FEAT_CMDWIN
6540 if (cmdwin_type != 0)
6541 {
6542 cmdwin_result = Ctrl_C;
6543 return;
6544 }
6545#endif
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006546 /* Don't quit while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006547 if (text_locked())
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006548 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006549 text_locked_msg();
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006550 return;
6551 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006552#ifdef FEAT_AUTOCMD
6553 if (curbuf_locked())
6554 return;
6555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556
6557 /*
6558 * if more files or windows we won't exit
6559 */
6560 if (check_more(FALSE, eap->forceit) == OK && only_one_window())
6561 exiting = TRUE;
6562 if ( ((eap->cmdidx == CMD_wq
6563 || curbufIsChanged())
6564 && do_write(eap) == FAIL)
6565 || check_more(TRUE, eap->forceit) == FAIL
6566 || (only_one_window() && check_changed_any(eap->forceit)))
6567 {
6568 not_exiting();
6569 }
6570 else
6571 {
6572#ifdef FEAT_WINDOWS
6573 if (only_one_window()) /* quit last window, exit Vim */
6574#endif
6575 getout(0);
6576#ifdef FEAT_WINDOWS
6577# ifdef FEAT_GUI
6578 need_mouse_correct = TRUE;
6579# endif
6580 /* quit current window, may free buffer */
6581 win_close(curwin, !P_HID(curwin->w_buffer));
6582#endif
6583 }
6584}
6585
6586/*
6587 * ":print", ":list", ":number".
6588 */
6589 static void
6590ex_print(eap)
6591 exarg_T *eap;
6592{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006593 if (curbuf->b_ml.ml_flags & ML_EMPTY)
6594 EMSG(_(e_emptybuf));
6595 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006596 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00006597 for ( ;!got_int; ui_breakcheck())
6598 {
6599 print_line(eap->line1,
6600 (eap->cmdidx == CMD_number || eap->cmdidx == CMD_pound
6601 || (eap->flags & EXFLAG_NR)),
6602 eap->cmdidx == CMD_list || (eap->flags & EXFLAG_LIST));
6603 if (++eap->line1 > eap->line2)
6604 break;
6605 out_flush(); /* show one line at a time */
6606 }
6607 setpcmark();
6608 /* put cursor at last line */
6609 curwin->w_cursor.lnum = eap->line2;
6610 beginline(BL_SOL | BL_FIX);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006611 }
6612
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 ex_no_reprint = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614}
6615
6616#ifdef FEAT_BYTEOFF
6617 static void
6618ex_goto(eap)
6619 exarg_T *eap;
6620{
6621 goto_byte(eap->line2);
6622}
6623#endif
6624
6625/*
6626 * ":shell".
6627 */
6628/*ARGSUSED*/
6629 static void
6630ex_shell(eap)
6631 exarg_T *eap;
6632{
6633 do_shell(NULL, 0);
6634}
6635
6636#if (defined(FEAT_WINDOWS) && defined(HAVE_DROP_FILE)) \
6637 || (defined(FEAT_GUI_GTK) && defined(FEAT_DND)) \
Bram Moolenaar371baa92005-12-29 22:43:53 +00006638 || defined(FEAT_GUI_MSWIN) \
6639 || defined(FEAT_GUI_MAC) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00006640 || defined(PROTO)
6641
6642/*
6643 * Handle a file drop. The code is here because a drop is *nearly* like an
6644 * :args command, but not quite (we have a list of exact filenames, so we
6645 * don't want to (a) parse a command line, or (b) expand wildcards. So the
6646 * code is very similar to :args and hence needs access to a lot of the static
6647 * functions in this file.
6648 *
6649 * The list should be allocated using alloc(), as should each item in the
6650 * list. This function takes over responsibility for freeing the list.
6651 *
6652 * XXX The list is made into the arggument list. This is freed using
6653 * FreeWild(), which does a series of vim_free() calls, unless the two defines
6654 * __EMX__ and __ALWAYS_HAS_TRAILING_NUL_POINTER are set. In this case, a
6655 * routine _fnexplodefree() is used. This may cause problems, but as the drop
6656 * file functionality is (currently) not in EMX this is not presently a
6657 * problem.
6658 */
6659 void
6660handle_drop(filec, filev, split)
6661 int filec; /* the number of files dropped */
6662 char_u **filev; /* the list of files dropped */
6663 int split; /* force splitting the window */
6664{
6665 exarg_T ea;
6666 int save_msg_scroll = msg_scroll;
6667
Bram Moolenaar05a7bb32006-01-19 22:09:32 +00006668 /* Postpone this while editing the command line. */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00006669 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006670 return;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006671#ifdef FEAT_AUTOCMD
6672 if (curbuf_locked())
6673 return;
6674#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006675
6676 /* Check whether the current buffer is changed. If so, we will need
6677 * to split the current window or data could be lost.
6678 * We don't need to check if the 'hidden' option is set, as in this
6679 * case the buffer won't be lost.
6680 */
6681 if (!P_HID(curbuf) && !split)
6682 {
6683 ++emsg_off;
6684 split = check_changed(curbuf, TRUE, FALSE, FALSE, FALSE);
6685 --emsg_off;
6686 }
6687 if (split)
6688 {
6689# ifdef FEAT_WINDOWS
6690 if (win_split(0, 0) == FAIL)
6691 return;
6692# ifdef FEAT_SCROLLBIND
6693 curwin->w_p_scb = FALSE;
6694# endif
6695
6696 /* When splitting the window, create a new alist. Otherwise the
6697 * existing one is overwritten. */
6698 alist_unlink(curwin->w_alist);
6699 alist_new();
6700# else
6701 return; /* can't split, always fail */
6702# endif
6703 }
6704
6705 /*
6706 * Set up the new argument list.
6707 */
Bram Moolenaar86b68352004-12-27 21:59:20 +00006708 alist_set(ALIST(curwin), filec, filev, FALSE, NULL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709
6710 /*
6711 * Move to the first file.
6712 */
6713 /* Fake up a minimal "next" command for do_argfile() */
6714 vim_memset(&ea, 0, sizeof(ea));
6715 ea.cmd = (char_u *)"next";
6716 do_argfile(&ea, 0);
6717
6718 /* do_ecmd() may set need_start_insertmode, but since we never left Insert
6719 * mode that is not needed here. */
6720 need_start_insertmode = FALSE;
6721
6722 /* Restore msg_scroll, otherwise a following command may cause scrolling
6723 * unexpectedly. The screen will be redrawn by the caller, thus
6724 * msg_scroll being set by displaying a message is irrelevant. */
6725 msg_scroll = save_msg_scroll;
6726}
6727#endif
6728
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729/*
6730 * Clear an argument list: free all file names and reset it to zero entries.
6731 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006732 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733alist_clear(al)
6734 alist_T *al;
6735{
6736 while (--al->al_ga.ga_len >= 0)
6737 vim_free(AARGLIST(al)[al->al_ga.ga_len].ae_fname);
6738 ga_clear(&al->al_ga);
6739}
6740
6741/*
6742 * Init an argument list.
6743 */
6744 void
6745alist_init(al)
6746 alist_T *al;
6747{
6748 ga_init2(&al->al_ga, (int)sizeof(aentry_T), 5);
6749}
6750
6751#if defined(FEAT_WINDOWS) || defined(PROTO)
6752
6753/*
6754 * Remove a reference from an argument list.
6755 * Ignored when the argument list is the global one.
6756 * If the argument list is no longer used by any window, free it.
6757 */
6758 void
6759alist_unlink(al)
6760 alist_T *al;
6761{
6762 if (al != &global_alist && --al->al_refcount <= 0)
6763 {
6764 alist_clear(al);
6765 vim_free(al);
6766 }
6767}
6768
6769# if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
6770/*
6771 * Create a new argument list and use it for the current window.
6772 */
6773 void
6774alist_new()
6775{
6776 curwin->w_alist = (alist_T *)alloc((unsigned)sizeof(alist_T));
6777 if (curwin->w_alist == NULL)
6778 {
6779 curwin->w_alist = &global_alist;
6780 ++global_alist.al_refcount;
6781 }
6782 else
6783 {
6784 curwin->w_alist->al_refcount = 1;
6785 alist_init(curwin->w_alist);
6786 }
6787}
6788# endif
6789#endif
6790
6791#if (!defined(UNIX) && !defined(__EMX__)) || defined(ARCHIE) || defined(PROTO)
6792/*
6793 * Expand the file names in the global argument list.
Bram Moolenaar86b68352004-12-27 21:59:20 +00006794 * If "fnum_list" is not NULL, use "fnum_list[fnum_len]" as a list of buffer
6795 * numbers to be re-used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796 */
6797 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006798alist_expand(fnum_list, fnum_len)
6799 int *fnum_list;
6800 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006801{
6802 char_u **old_arg_files;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006803 int old_arg_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006804 char_u **new_arg_files;
6805 int new_arg_file_count;
6806 char_u *save_p_su = p_su;
6807 int i;
6808
6809 /* Don't use 'suffixes' here. This should work like the shell did the
6810 * expansion. Also, the vimrc file isn't read yet, thus the user
6811 * can't set the options. */
6812 p_su = empty_option;
6813 old_arg_files = (char_u **)alloc((unsigned)(sizeof(char_u *) * GARGCOUNT));
6814 if (old_arg_files != NULL)
6815 {
6816 for (i = 0; i < GARGCOUNT; ++i)
Bram Moolenaar86b68352004-12-27 21:59:20 +00006817 old_arg_files[i] = vim_strsave(GARGLIST[i].ae_fname);
6818 old_arg_count = GARGCOUNT;
6819 if (expand_wildcards(old_arg_count, old_arg_files,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006820 &new_arg_file_count, &new_arg_files,
6821 EW_FILE|EW_NOTFOUND|EW_ADDSLASH) == OK
6822 && new_arg_file_count > 0)
6823 {
Bram Moolenaar86b68352004-12-27 21:59:20 +00006824 alist_set(&global_alist, new_arg_file_count, new_arg_files,
6825 TRUE, fnum_list, fnum_len);
6826 FreeWild(old_arg_count, old_arg_files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006827 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006828 }
6829 p_su = save_p_su;
6830}
6831#endif
6832
6833/*
6834 * Set the argument list for the current window.
6835 * Takes over the allocated files[] and the allocated fnames in it.
6836 */
6837 void
Bram Moolenaar86b68352004-12-27 21:59:20 +00006838alist_set(al, count, files, use_curbuf, fnum_list, fnum_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839 alist_T *al;
6840 int count;
6841 char_u **files;
6842 int use_curbuf;
Bram Moolenaar86b68352004-12-27 21:59:20 +00006843 int *fnum_list;
6844 int fnum_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845{
6846 int i;
6847
6848 alist_clear(al);
6849 if (ga_grow(&al->al_ga, count) == OK)
6850 {
6851 for (i = 0; i < count; ++i)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006852 {
6853 if (got_int)
6854 {
6855 /* When adding many buffers this can take a long time. Allow
6856 * interrupting here. */
6857 while (i < count)
6858 vim_free(files[i++]);
6859 break;
6860 }
Bram Moolenaar86b68352004-12-27 21:59:20 +00006861
6862 /* May set buffer name of a buffer previously used for the
6863 * argument list, so that it's re-used by alist_add. */
6864 if (fnum_list != NULL && i < fnum_len)
6865 buf_set_name(fnum_list[i], files[i]);
6866
Bram Moolenaar071d4272004-06-13 20:20:40 +00006867 alist_add(al, files[i], use_curbuf ? 2 : 1);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00006868 ui_breakcheck();
6869 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006870 vim_free(files);
6871 }
6872 else
6873 FreeWild(count, files);
6874#ifdef FEAT_WINDOWS
6875 if (al == &global_alist)
6876#endif
6877 arg_had_last = FALSE;
6878}
6879
6880/*
6881 * Add file "fname" to argument list "al".
6882 * "fname" must have been allocated and "al" must have been checked for room.
6883 */
6884 void
6885alist_add(al, fname, set_fnum)
6886 alist_T *al;
6887 char_u *fname;
6888 int set_fnum; /* 1: set buffer number; 2: re-use curbuf */
6889{
6890 if (fname == NULL) /* don't add NULL file names */
6891 return;
6892#ifdef BACKSLASH_IN_FILENAME
6893 slash_adjust(fname);
6894#endif
6895 AARGLIST(al)[al->al_ga.ga_len].ae_fname = fname;
6896 if (set_fnum > 0)
6897 AARGLIST(al)[al->al_ga.ga_len].ae_fnum =
6898 buflist_add(fname, BLN_LISTED | (set_fnum == 2 ? BLN_CURBUF : 0));
6899 ++al->al_ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900}
6901
6902#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6903/*
6904 * Adjust slashes in file names. Called after 'shellslash' was set.
6905 */
6906 void
6907alist_slash_adjust()
6908{
6909 int i;
6910# ifdef FEAT_WINDOWS
6911 win_T *wp;
Bram Moolenaarf740b292006-02-16 22:11:02 +00006912 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913# endif
6914
6915 for (i = 0; i < GARGCOUNT; ++i)
6916 if (GARGLIST[i].ae_fname != NULL)
6917 slash_adjust(GARGLIST[i].ae_fname);
6918# ifdef FEAT_WINDOWS
Bram Moolenaarf740b292006-02-16 22:11:02 +00006919 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920 if (wp->w_alist != &global_alist)
6921 for (i = 0; i < WARGCOUNT(wp); ++i)
6922 if (WARGLIST(wp)[i].ae_fname != NULL)
6923 slash_adjust(WARGLIST(wp)[i].ae_fname);
6924# endif
6925}
6926#endif
6927
6928/*
6929 * ":preserve".
6930 */
6931/*ARGSUSED*/
6932 static void
6933ex_preserve(eap)
6934 exarg_T *eap;
6935{
Bram Moolenaar4399ef42005-02-12 14:29:27 +00006936 curbuf->b_flags |= BF_PRESERVED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 ml_preserve(curbuf, TRUE);
6938}
6939
6940/*
6941 * ":recover".
6942 */
6943 static void
6944ex_recover(eap)
6945 exarg_T *eap;
6946{
6947 /* Set recoverymode right away to avoid the ATTENTION prompt. */
6948 recoverymode = TRUE;
6949 if (!check_changed(curbuf, p_awa, TRUE, eap->forceit, FALSE)
6950 && (*eap->arg == NUL
6951 || setfname(curbuf, eap->arg, NULL, TRUE) == OK))
6952 ml_recover();
6953 recoverymode = FALSE;
6954}
6955
6956/*
6957 * Command modifier used in a wrong way.
6958 */
6959 static void
6960ex_wrongmodifier(eap)
6961 exarg_T *eap;
6962{
6963 eap->errmsg = e_invcmd;
6964}
6965
6966#ifdef FEAT_WINDOWS
6967/*
6968 * :sview [+command] file split window with new file, read-only
6969 * :split [[+command] file] split window with current or new file
6970 * :vsplit [[+command] file] split window vertically with current or new file
6971 * :new [[+command] file] split window with no or new file
6972 * :vnew [[+command] file] split vertically window with no or new file
6973 * :sfind [+command] file split window with file in 'path'
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006974 *
6975 * :tabedit open new Tab page with empty window
6976 * :tabedit [+command] file open new Tab page and edit "file"
6977 * :tabnew [[+command] file] just like :tabedit
6978 * :tabfind [+command] file open new Tab page and find "file"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006979 */
6980 void
6981ex_splitview(eap)
6982 exarg_T *eap;
6983{
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00006984 win_T *old_curwin = curwin;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006985# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986 char_u *fname = NULL;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006987# endif
6988# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00006989 int browse_flag = cmdmod.browse;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006990# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006992# ifndef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993 if (eap->cmdidx == CMD_vsplit || eap->cmdidx == CMD_vnew)
6994 {
6995 ex_ni(eap);
6996 return;
6997 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00006998# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007000# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001 need_mouse_correct = TRUE;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007002# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007003
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007004# ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00007005 /* A ":split" in the quickfix window works like ":new". Don't want two
7006 * quickfix windows. */
7007 if (bt_quickfix(curbuf))
7008 {
7009 if (eap->cmdidx == CMD_split)
7010 eap->cmdidx = CMD_new;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007011# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007012 if (eap->cmdidx == CMD_vsplit)
7013 eap->cmdidx = CMD_vnew;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007014# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007016# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007017
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007018# ifdef FEAT_SEARCHPATH
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007019 if (eap->cmdidx == CMD_sfind || eap->cmdidx == CMD_tabfind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007020 {
7021 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg),
7022 FNAME_MESS, TRUE, curbuf->b_ffname);
7023 if (fname == NULL)
7024 goto theend;
7025 eap->arg = fname;
7026 }
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007027# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028 else
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007029# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007030# endif
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007031# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032 if (cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007033# ifdef FEAT_VERTSPLIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034 && eap->cmdidx != CMD_vnew
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007035# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036 && eap->cmdidx != CMD_new)
7037 {
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007038 if (
7039# ifdef FEAT_GUI
7040 !gui.in_use &&
7041# endif
7042 au_has_group((char_u *)"FileExplorer"))
7043 {
7044 /* No browsing supported but we do have the file explorer:
7045 * Edit the directory. */
7046 if (*eap->arg == NUL || !mch_isdir(eap->arg))
7047 eap->arg = (char_u *)".";
7048 }
7049 else
7050 {
7051 fname = do_browse(0, (char_u *)_("Edit File in new window"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 eap->arg, NULL, NULL, NULL, curbuf);
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007053 if (fname == NULL)
7054 goto theend;
7055 eap->arg = fname;
7056 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057 }
7058 cmdmod.browse = FALSE; /* Don't browse again in do_ecmd(). */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007059# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007061 /*
7062 * Either open new tab page or split the window.
7063 */
7064 if (eap->cmdidx == CMD_tabedit
7065 || eap->cmdidx == CMD_tabfind
7066 || eap->cmdidx == CMD_tabnew)
7067 {
Bram Moolenaar8dff8182006-04-06 20:18:50 +00007068 if (win_new_tabpage(cmdmod.tab != 0 ? cmdmod.tab
7069 : eap->addr_count == 0 ? 0
7070 : (int)eap->line2 + 1) != FAIL)
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007071 {
7072 do_exedit(eap, NULL);
7073
7074 /* set the alternate buffer for the window we came from */
7075 if (curwin != old_curwin
7076 && win_valid(old_curwin)
7077 && old_curwin->w_buffer != curbuf
7078 && !cmdmod.keepalt)
7079 old_curwin->w_alt_fnum = curbuf->b_fnum;
7080 }
7081 }
7082 else if (win_split(eap->addr_count > 0 ? (int)eap->line2 : 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007083 *eap->cmd == 'v' ? WSP_VERT : 0) != FAIL)
7084 {
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007085# ifdef FEAT_SCROLLBIND
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086 /* Reset 'scrollbind' when editing another file, but keep it when
7087 * doing ":split" without arguments. */
7088 if (*eap->arg != NUL
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007089# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 || cmdmod.browse
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007091# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092 )
7093 curwin->w_p_scb = FALSE;
7094 else
7095 do_check_scrollbind(FALSE);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007096# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 do_exedit(eap, old_curwin);
7098 }
7099
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007100# ifdef FEAT_BROWSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007101 cmdmod.browse = browse_flag;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007102# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007103
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007104# if defined(FEAT_SEARCHPATH) || defined(FEAT_BROWSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007105theend:
7106 vim_free(fname);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007107# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108}
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007109
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007110#if defined(FEAT_MOUSE) || defined(PROTO)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007111/*
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007112 * Open a new tab page.
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007113 */
7114 void
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007115tabpage_new()
7116{
7117 exarg_T ea;
7118
7119 vim_memset(&ea, 0, sizeof(ea));
7120 ea.cmdidx = CMD_tabnew;
7121 ea.cmd = (char_u *)"tabn";
7122 ea.arg = (char_u *)"";
7123 ex_splitview(&ea);
7124}
Bram Moolenaarf71a3db2006-03-12 21:50:18 +00007125#endif
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007126
7127/*
7128 * :tabnext command
7129 */
7130 static void
7131ex_tabnext(eap)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007132 exarg_T *eap;
7133{
Bram Moolenaar32466aa2006-02-24 23:53:04 +00007134 switch (eap->cmdidx)
7135 {
7136 case CMD_tabfirst:
7137 case CMD_tabrewind:
7138 goto_tabpage(1);
7139 break;
7140 case CMD_tablast:
7141 goto_tabpage(9999);
7142 break;
7143 case CMD_tabprevious:
7144 case CMD_tabNext:
7145 goto_tabpage(eap->addr_count == 0 ? -1 : -(int)eap->line2);
7146 break;
7147 default: /* CMD_tabnext */
7148 goto_tabpage(eap->addr_count == 0 ? 0 : (int)eap->line2);
7149 break;
7150 }
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007151}
7152
7153/*
7154 * :tabmove command
7155 */
7156 static void
7157ex_tabmove(eap)
7158 exarg_T *eap;
7159{
7160 tabpage_move(eap->addr_count == 0 ? 9999 : (int)eap->line2);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007161}
7162
7163/*
7164 * :tabs command: List tabs and their contents.
7165 */
7166/*ARGSUSED*/
7167 static void
7168ex_tabs(eap)
7169 exarg_T *eap;
7170{
7171 tabpage_T *tp;
7172 win_T *wp;
7173 int tabcount = 1;
7174
7175 msg_start();
7176 msg_scroll = TRUE;
7177 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
7178 {
7179 msg_putchar('\n');
7180 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
7181 msg_outtrans_attr(IObuff, hl_attr(HLF_T));
7182 out_flush(); /* output one line at a time */
7183 ui_breakcheck();
7184
Bram Moolenaar030f0df2006-02-21 22:02:53 +00007185 if (tp == curtab)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007186 wp = firstwin;
7187 else
7188 wp = tp->tp_firstwin;
7189 for ( ; wp != NULL && !got_int; wp = wp->w_next)
7190 {
Bram Moolenaar80a94a52006-02-23 21:26:58 +00007191 msg_putchar('\n');
7192 msg_putchar(wp == curwin ? '>' : ' ');
7193 msg_putchar(' ');
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00007194 msg_putchar(bufIsChanged(wp->w_buffer) ? '+' : ' ');
7195 msg_putchar(' ');
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007196 if (buf_spname(wp->w_buffer) != NULL)
7197 STRCPY(IObuff, buf_spname(wp->w_buffer));
7198 else
7199 home_replace(wp->w_buffer, wp->w_buffer->b_fname,
7200 IObuff, IOSIZE, TRUE);
7201 msg_outtrans(IObuff);
7202 out_flush(); /* output one line at a time */
7203 ui_breakcheck();
7204 }
7205 }
7206}
7207
7208#endif /* FEAT_WINDOWS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209
7210/*
7211 * ":mode": Set screen mode.
7212 * If no argument given, just get the screen size and redraw.
7213 */
7214 static void
7215ex_mode(eap)
7216 exarg_T *eap;
7217{
7218 if (*eap->arg == NUL)
7219 shell_resized();
7220 else
7221 mch_screenmode(eap->arg);
7222}
7223
7224#ifdef FEAT_WINDOWS
7225/*
7226 * ":resize".
7227 * set, increment or decrement current window height
7228 */
7229 static void
7230ex_resize(eap)
7231 exarg_T *eap;
7232{
7233 int n;
7234 win_T *wp = curwin;
7235
7236 if (eap->addr_count > 0)
7237 {
7238 n = eap->line2;
7239 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next)
7240 ;
7241 }
7242
7243#ifdef FEAT_GUI
7244 need_mouse_correct = TRUE;
7245#endif
7246 n = atol((char *)eap->arg);
7247#ifdef FEAT_VERTSPLIT
7248 if (cmdmod.split & WSP_VERT)
7249 {
7250 if (*eap->arg == '-' || *eap->arg == '+')
7251 n += W_WIDTH(curwin);
7252 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7253 n = 9999;
7254 win_setwidth_win((int)n, wp);
7255 }
7256 else
7257#endif
7258 {
7259 if (*eap->arg == '-' || *eap->arg == '+')
7260 n += curwin->w_height;
7261 else if (n == 0 && eap->arg[0] == NUL) /* default is very wide */
7262 n = 9999;
7263 win_setheight_win((int)n, wp);
7264 }
7265}
7266#endif
7267
7268/*
7269 * ":find [+command] <file>" command.
7270 */
7271 static void
7272ex_find(eap)
7273 exarg_T *eap;
7274{
7275#ifdef FEAT_SEARCHPATH
7276 char_u *fname;
7277 int count;
7278
7279 fname = find_file_in_path(eap->arg, (int)STRLEN(eap->arg), FNAME_MESS,
7280 TRUE, curbuf->b_ffname);
7281 if (eap->addr_count > 0)
7282 {
7283 /* Repeat finding the file "count" times. This matters when it
7284 * appears several times in the path. */
7285 count = eap->line2;
7286 while (fname != NULL && --count > 0)
7287 {
7288 vim_free(fname);
7289 fname = find_file_in_path(NULL, 0, FNAME_MESS,
7290 FALSE, curbuf->b_ffname);
7291 }
7292 }
7293
7294 if (fname != NULL)
7295 {
7296 eap->arg = fname;
7297#endif
7298 do_exedit(eap, NULL);
7299#ifdef FEAT_SEARCHPATH
7300 vim_free(fname);
7301 }
7302#endif
7303}
7304
7305/*
Bram Moolenaardf177f62005-02-22 08:39:57 +00007306 * ":open" simulation: for now just work like ":visual".
7307 */
7308 static void
7309ex_open(eap)
7310 exarg_T *eap;
7311{
7312 regmatch_T regmatch;
7313 char_u *p;
7314
7315 curwin->w_cursor.lnum = eap->line2;
7316 beginline(BL_SOL | BL_FIX);
7317 if (*eap->arg == '/')
7318 {
7319 /* ":open /pattern/": put cursor in column found with pattern */
7320 ++eap->arg;
7321 p = skip_regexp(eap->arg, '/', p_magic, NULL);
7322 *p = NUL;
7323 regmatch.regprog = vim_regcomp(eap->arg, p_magic ? RE_MAGIC : 0);
7324 if (regmatch.regprog != NULL)
7325 {
7326 regmatch.rm_ic = p_ic;
7327 p = ml_get_curline();
7328 if (vim_regexec(&regmatch, p, (colnr_T)0))
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007329 curwin->w_cursor.col = (colnr_T)(regmatch.startp[0] - p);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007330 else
7331 EMSG(_(e_nomatch));
7332 vim_free(regmatch.regprog);
7333 }
7334 /* Move to the NUL, ignore any other arguments. */
7335 eap->arg += STRLEN(eap->arg);
7336 }
7337 check_cursor();
7338
7339 eap->cmdidx = CMD_visual;
7340 do_exedit(eap, NULL);
7341}
7342
7343/*
7344 * ":edit", ":badd", ":visual".
Bram Moolenaar071d4272004-06-13 20:20:40 +00007345 */
7346 static void
7347ex_edit(eap)
7348 exarg_T *eap;
7349{
7350 do_exedit(eap, NULL);
7351}
7352
7353/*
7354 * ":edit <file>" command and alikes.
7355 */
7356/*ARGSUSED*/
7357 void
7358do_exedit(eap, old_curwin)
7359 exarg_T *eap;
7360 win_T *old_curwin; /* curwin before doing a split or NULL */
7361{
7362 int n;
7363#ifdef FEAT_WINDOWS
7364 int need_hide;
7365#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00007366 int exmode_was = exmode_active;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007367
7368 /*
7369 * ":vi" command ends Ex mode.
7370 */
7371 if (exmode_active && (eap->cmdidx == CMD_visual
7372 || eap->cmdidx == CMD_view))
7373 {
7374 exmode_active = FALSE;
7375 if (*eap->arg == NUL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007376 {
7377 /* Special case: ":global/pat/visual\NLvi-commands" */
7378 if (global_busy)
7379 {
7380 int rd = RedrawingDisabled;
7381 int nwr = no_wait_return;
7382 int ms = msg_scroll;
7383#ifdef FEAT_GUI
7384 int he = hold_gui_events;
7385#endif
7386
7387 if (eap->nextcmd != NULL)
7388 {
7389 stuffReadbuff(eap->nextcmd);
7390 eap->nextcmd = NULL;
7391 }
7392
7393 if (exmode_was != EXMODE_VIM)
7394 settmode(TMODE_RAW);
7395 RedrawingDisabled = 0;
7396 no_wait_return = 0;
7397 need_wait_return = FALSE;
7398 msg_scroll = 0;
7399#ifdef FEAT_GUI
7400 hold_gui_events = 0;
7401#endif
7402 must_redraw = CLEAR;
7403
7404 main_loop(FALSE, TRUE);
7405
7406 RedrawingDisabled = rd;
7407 no_wait_return = nwr;
7408 msg_scroll = ms;
7409#ifdef FEAT_GUI
7410 hold_gui_events = he;
7411#endif
7412 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007413 return;
Bram Moolenaardf177f62005-02-22 08:39:57 +00007414 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007415 }
7416
7417 if ((eap->cmdidx == CMD_new
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007418 || eap->cmdidx == CMD_tabnew
7419 || eap->cmdidx == CMD_tabedit
Bram Moolenaar071d4272004-06-13 20:20:40 +00007420#ifdef FEAT_VERTSPLIT
7421 || eap->cmdidx == CMD_vnew
7422#endif
7423 ) && *eap->arg == NUL)
7424 {
Bram Moolenaar2a0449d2006-02-20 21:27:21 +00007425 /* ":new" or ":tabnew" without argument: edit an new empty buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007426 setpcmark();
7427 (void)do_ecmd(0, NULL, NULL, eap, ECMD_ONE,
7428 ECMD_HIDE + (eap->forceit ? ECMD_FORCEIT : 0));
7429 }
7430 else if ((eap->cmdidx != CMD_split
7431#ifdef FEAT_VERTSPLIT
7432 && eap->cmdidx != CMD_vsplit
7433#endif
7434 )
7435 || *eap->arg != NUL
7436#ifdef FEAT_BROWSE
7437 || cmdmod.browse
7438#endif
7439 )
7440 {
Bram Moolenaar5555acc2006-04-07 21:33:12 +00007441#ifdef FEAT_AUTOCMD
7442 /* Can't edit another file when "curbuf_lock" is set. Only ":edit"
7443 * can bring us here, others are stopped earlier. */
7444 if (*eap->arg != NUL && curbuf_locked())
7445 return;
7446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007447 n = readonlymode;
7448 if (eap->cmdidx == CMD_view || eap->cmdidx == CMD_sview)
7449 readonlymode = TRUE;
7450 else if (eap->cmdidx == CMD_enew)
7451 readonlymode = FALSE; /* 'readonly' doesn't make sense in an
7452 empty buffer */
7453 setpcmark();
7454 if (do_ecmd(0, (eap->cmdidx == CMD_enew ? NULL : eap->arg),
7455 NULL, eap,
7456 /* ":edit" goes to first line if Vi compatible */
7457 (*eap->arg == NUL && eap->do_ecmd_lnum == 0
7458 && vim_strchr(p_cpo, CPO_GOTO1) != NULL)
7459 ? ECMD_ONE : eap->do_ecmd_lnum,
7460 (P_HID(curbuf) ? ECMD_HIDE : 0)
7461 + (eap->forceit ? ECMD_FORCEIT : 0)
7462#ifdef FEAT_LISTCMDS
7463 + (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
7464#endif
7465 ) == FAIL)
7466 {
7467 /* Editing the file failed. If the window was split, close it. */
7468#ifdef FEAT_WINDOWS
7469 if (old_curwin != NULL)
7470 {
7471 need_hide = (curbufIsChanged() && curbuf->b_nwindows <= 1);
7472 if (!need_hide || P_HID(curbuf))
7473 {
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007474# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7475 cleanup_T cs;
7476
7477 /* Reset the error/interrupt/exception state here so that
7478 * aborting() returns FALSE when closing a window. */
7479 enter_cleanup(&cs);
7480# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007481# ifdef FEAT_GUI
7482 need_mouse_correct = TRUE;
7483# endif
7484 win_close(curwin, !need_hide && !P_HID(curbuf));
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007485
7486# if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7487 /* Restore the error/interrupt/exception state if not
7488 * discarded by a new aborting error, interrupt, or
7489 * uncaught exception. */
7490 leave_cleanup(&cs);
7491# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007492 }
7493 }
7494#endif
7495 }
7496 else if (readonlymode && curbuf->b_nwindows == 1)
7497 {
7498 /* When editing an already visited buffer, 'readonly' won't be set
7499 * but the previous value is kept. With ":view" and ":sview" we
7500 * want the file to be readonly, except when another window is
7501 * editing the same buffer. */
7502 curbuf->b_p_ro = TRUE;
7503 }
7504 readonlymode = n;
7505 }
7506 else
7507 {
7508 if (eap->do_ecmd_cmd != NULL)
7509 do_cmdline_cmd(eap->do_ecmd_cmd);
7510#ifdef FEAT_TITLE
7511 n = curwin->w_arg_idx_invalid;
7512#endif
7513 check_arg_idx(curwin);
7514#ifdef FEAT_TITLE
7515 if (n != curwin->w_arg_idx_invalid)
7516 maketitle();
7517#endif
7518 }
7519
7520#ifdef FEAT_WINDOWS
7521 /*
7522 * if ":split file" worked, set alternate file name in old window to new
7523 * file
7524 */
7525 if (old_curwin != NULL
7526 && *eap->arg != NUL
7527 && curwin != old_curwin
7528 && win_valid(old_curwin)
Bram Moolenaard4755bb2004-09-02 19:12:26 +00007529 && old_curwin->w_buffer != curbuf
7530 && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007531 old_curwin->w_alt_fnum = curbuf->b_fnum;
7532#endif
7533
7534 ex_no_reprint = TRUE;
7535}
7536
7537#ifndef FEAT_GUI
7538/*
7539 * ":gui" and ":gvim" when there is no GUI.
7540 */
7541 static void
7542ex_nogui(eap)
7543 exarg_T *eap;
7544{
7545 eap->errmsg = e_nogvim;
7546}
7547#endif
7548
7549#if defined(FEAT_GUI_W32) && defined(FEAT_MENU) && defined(FEAT_TEAROFF)
7550 static void
7551ex_tearoff(eap)
7552 exarg_T *eap;
7553{
7554 gui_make_tearoff(eap->arg);
7555}
7556#endif
7557
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007558#if (defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK)) && defined(FEAT_MENU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007559 static void
7560ex_popup(eap)
7561 exarg_T *eap;
7562{
Bram Moolenaar97409f12005-07-08 22:17:29 +00007563 gui_make_popup(eap->arg, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007564}
7565#endif
7566
7567/*ARGSUSED*/
7568 static void
7569ex_swapname(eap)
7570 exarg_T *eap;
7571{
7572 if (curbuf->b_ml.ml_mfp == NULL || curbuf->b_ml.ml_mfp->mf_fname == NULL)
7573 MSG(_("No swap file"));
7574 else
7575 msg(curbuf->b_ml.ml_mfp->mf_fname);
7576}
7577
7578/*
7579 * ":syncbind" forces all 'scrollbind' windows to have the same relative
7580 * offset.
7581 * (1998-11-02 16:21:01 R. Edward Ralston <eralston@computer.org>)
7582 */
7583/*ARGSUSED*/
7584 static void
7585ex_syncbind(eap)
7586 exarg_T *eap;
7587{
7588#ifdef FEAT_SCROLLBIND
7589 win_T *wp;
7590 long topline;
7591 long y;
7592 linenr_T old_linenr = curwin->w_cursor.lnum;
7593
7594 setpcmark();
7595
7596 /*
7597 * determine max topline
7598 */
7599 if (curwin->w_p_scb)
7600 {
7601 topline = curwin->w_topline;
7602 for (wp = firstwin; wp; wp = wp->w_next)
7603 {
7604 if (wp->w_p_scb && wp->w_buffer)
7605 {
7606 y = wp->w_buffer->b_ml.ml_line_count - p_so;
7607 if (topline > y)
7608 topline = y;
7609 }
7610 }
7611 if (topline < 1)
7612 topline = 1;
7613 }
7614 else
7615 {
7616 topline = 1;
7617 }
7618
7619
7620 /*
7621 * set all scrollbind windows to the same topline
7622 */
7623 wp = curwin;
7624 for (curwin = firstwin; curwin; curwin = curwin->w_next)
7625 {
7626 if (curwin->w_p_scb)
7627 {
7628 y = topline - curwin->w_topline;
7629 if (y > 0)
7630 scrollup(y, TRUE);
7631 else
7632 scrolldown(-y, TRUE);
7633 curwin->w_scbind_pos = topline;
7634 redraw_later(VALID);
7635 cursor_correct();
7636#ifdef FEAT_WINDOWS
7637 curwin->w_redr_status = TRUE;
7638#endif
7639 }
7640 }
7641 curwin = wp;
7642 if (curwin->w_p_scb)
7643 {
7644 did_syncbind = TRUE;
7645 checkpcmark();
7646 if (old_linenr != curwin->w_cursor.lnum)
7647 {
7648 char_u ctrl_o[2];
7649
7650 ctrl_o[0] = Ctrl_O;
7651 ctrl_o[1] = 0;
7652 ins_typebuf(ctrl_o, REMAP_NONE, 0, TRUE, FALSE);
7653 }
7654 }
7655#endif
7656}
7657
7658
7659 static void
7660ex_read(eap)
7661 exarg_T *eap;
7662{
Bram Moolenaardf177f62005-02-22 08:39:57 +00007663 int i;
7664 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7665 linenr_T lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007666
7667 if (eap->usefilter) /* :r!cmd */
7668 do_bang(1, eap, FALSE, FALSE, TRUE);
7669 else
7670 {
7671 if (u_save(eap->line2, (linenr_T)(eap->line2 + 1)) == FAIL)
7672 return;
7673
7674#ifdef FEAT_BROWSE
7675 if (cmdmod.browse)
7676 {
7677 char_u *browseFile;
7678
Bram Moolenaar7171abe2004-10-11 10:06:20 +00007679 browseFile = do_browse(0, (char_u *)_("Append File"), eap->arg,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007680 NULL, NULL, NULL, curbuf);
7681 if (browseFile != NULL)
7682 {
7683 i = readfile(browseFile, NULL,
7684 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7685 vim_free(browseFile);
7686 }
7687 else
7688 i = OK;
7689 }
7690 else
7691#endif
7692 if (*eap->arg == NUL)
7693 {
7694 if (check_fname() == FAIL) /* check for no file name */
7695 return;
7696 i = readfile(curbuf->b_ffname, curbuf->b_fname,
7697 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7698 }
7699 else
7700 {
7701 if (vim_strchr(p_cpo, CPO_ALTREAD) != NULL)
7702 (void)setaltfname(eap->arg, eap->arg, (linenr_T)1);
7703 i = readfile(eap->arg, NULL,
7704 eap->line2, (linenr_T)0, (linenr_T)MAXLNUM, eap, 0);
7705
7706 }
7707 if (i == FAIL)
7708 {
7709#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
7710 if (!aborting())
7711#endif
7712 EMSG2(_(e_notopen), eap->arg);
7713 }
7714 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00007715 {
7716 if (empty && exmode_active)
7717 {
7718 /* Delete the empty line that remains. Historically ex does
7719 * this but vi doesn't. */
7720 if (eap->line2 == 0)
7721 lnum = curbuf->b_ml.ml_line_count;
7722 else
7723 lnum = 1;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007724 if (*ml_get(lnum) == NUL && u_savedel(lnum, 1L) == OK)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007725 {
7726 ml_delete(lnum, FALSE);
7727 deleted_lines_mark(lnum, 1L);
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00007728 if (curwin->w_cursor.lnum > 1
7729 && curwin->w_cursor.lnum >= lnum)
Bram Moolenaardf177f62005-02-22 08:39:57 +00007730 --curwin->w_cursor.lnum;
7731 }
7732 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007733 redraw_curbuf_later(VALID);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007734 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007735 }
7736}
7737
Bram Moolenaarea408852005-06-25 22:49:46 +00007738static char_u *prev_dir = NULL;
7739
7740#if defined(EXITFREE) || defined(PROTO)
7741 void
7742free_cd_dir()
7743{
7744 vim_free(prev_dir);
7745}
7746#endif
7747
7748
Bram Moolenaar071d4272004-06-13 20:20:40 +00007749/*
7750 * ":cd", ":lcd", ":chdir" and ":lchdir".
7751 */
7752 static void
7753ex_cd(eap)
7754 exarg_T *eap;
7755{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007756 char_u *new_dir;
7757 char_u *tofree;
7758
7759 new_dir = eap->arg;
7760#if !defined(UNIX) && !defined(VMS)
7761 /* for non-UNIX ":cd" means: print current directory */
7762 if (*new_dir == NUL)
7763 ex_pwd(NULL);
7764 else
7765#endif
7766 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00007767 if (vim_strchr(p_cpo, CPO_CHDIR) != NULL && curbufIsChanged()
7768 && !eap->forceit)
7769 {
7770 EMSG(_("E747: Cannot change directory, buffer is modifed (add ! to override)"));
7771 return;
7772 }
7773
Bram Moolenaar071d4272004-06-13 20:20:40 +00007774 /* ":cd -": Change to previous directory */
7775 if (STRCMP(new_dir, "-") == 0)
7776 {
7777 if (prev_dir == NULL)
7778 {
7779 EMSG(_("E186: No previous directory"));
7780 return;
7781 }
7782 new_dir = prev_dir;
7783 }
7784
7785 /* Save current directory for next ":cd -" */
7786 tofree = prev_dir;
7787 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7788 prev_dir = vim_strsave(NameBuff);
7789 else
7790 prev_dir = NULL;
7791
7792#if defined(UNIX) || defined(VMS)
7793 /* for UNIX ":cd" means: go to home directory */
7794 if (*new_dir == NUL)
7795 {
7796 /* use NameBuff for home directory name */
7797# ifdef VMS
7798 char_u *p;
7799
7800 p = mch_getenv((char_u *)"SYS$LOGIN");
7801 if (p == NULL || *p == NUL) /* empty is the same as not set */
7802 NameBuff[0] = NUL;
7803 else
Bram Moolenaarb6356332005-07-18 21:40:44 +00007804 vim_strncpy(NameBuff, p, MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007805# else
7806 expand_env((char_u *)"$HOME", NameBuff, MAXPATHL);
7807# endif
7808 new_dir = NameBuff;
7809 }
7810#endif
7811 if (new_dir == NULL || vim_chdir(new_dir))
7812 EMSG(_(e_failed));
7813 else
7814 {
7815 vim_free(curwin->w_localdir);
7816 if (eap->cmdidx == CMD_lcd || eap->cmdidx == CMD_lchdir)
7817 {
7818 /* If still in global directory, need to remember current
7819 * directory as global directory. */
7820 if (globaldir == NULL && prev_dir != NULL)
7821 globaldir = vim_strsave(prev_dir);
7822 /* Remember this local directory for the window. */
7823 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7824 curwin->w_localdir = vim_strsave(NameBuff);
7825 }
7826 else
7827 {
7828 /* We are now in the global directory, no need to remember its
7829 * name. */
7830 vim_free(globaldir);
7831 globaldir = NULL;
7832 curwin->w_localdir = NULL;
7833 }
7834
7835 shorten_fnames(TRUE);
7836
7837 /* Echo the new current directory if the command was typed. */
7838 if (KeyTyped)
7839 ex_pwd(eap);
7840 }
7841 vim_free(tofree);
7842 }
7843}
7844
7845/*
7846 * ":pwd".
7847 */
7848/*ARGSUSED*/
7849 static void
7850ex_pwd(eap)
7851 exarg_T *eap;
7852{
7853 if (mch_dirname(NameBuff, MAXPATHL) == OK)
7854 {
7855#ifdef BACKSLASH_IN_FILENAME
7856 slash_adjust(NameBuff);
7857#endif
7858 msg(NameBuff);
7859 }
7860 else
7861 EMSG(_("E187: Unknown"));
7862}
7863
7864/*
7865 * ":=".
7866 */
7867 static void
7868ex_equal(eap)
7869 exarg_T *eap;
7870{
7871 smsg((char_u *)"%ld", (long)eap->line2);
Bram Moolenaardf177f62005-02-22 08:39:57 +00007872 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007873}
7874
7875 static void
7876ex_sleep(eap)
7877 exarg_T *eap;
7878{
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007879 int n;
7880 long len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007881
7882 if (cursor_valid())
7883 {
7884 n = W_WINROW(curwin) + curwin->w_wrow - msg_scrolled;
7885 if (n >= 0)
7886 windgoto((int)n, curwin->w_wcol);
7887 }
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00007888
7889 len = eap->line2;
7890 switch (*eap->arg)
7891 {
7892 case 'm': break;
7893 case NUL: len *= 1000L; break;
7894 default: EMSG2(_(e_invarg2), eap->arg); return;
7895 }
7896 do_sleep(len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007897}
7898
7899/*
7900 * Sleep for "msec" milliseconds, but keep checking for a CTRL-C every second.
7901 */
7902 void
7903do_sleep(msec)
7904 long msec;
7905{
7906 long done;
7907
7908 cursor_on();
7909 out_flush();
7910 for (done = 0; !got_int && done < msec; done += 1000L)
7911 {
7912 ui_delay(msec - done > 1000L ? 1000L : msec - done, TRUE);
7913 ui_breakcheck();
7914 }
7915}
7916
7917 static void
7918do_exmap(eap, isabbrev)
7919 exarg_T *eap;
7920 int isabbrev;
7921{
7922 int mode;
7923 char_u *cmdp;
7924
7925 cmdp = eap->cmd;
7926 mode = get_map_mode(&cmdp, eap->forceit || isabbrev);
7927
7928 switch (do_map((*cmdp == 'n') ? 2 : (*cmdp == 'u'),
7929 eap->arg, mode, isabbrev))
7930 {
7931 case 1: EMSG(_(e_invarg));
7932 break;
7933 case 2: EMSG(isabbrev ? _(e_noabbr) : _(e_nomap));
7934 break;
7935 }
7936}
7937
7938/*
7939 * ":winsize" command (obsolete).
7940 */
7941 static void
7942ex_winsize(eap)
7943 exarg_T *eap;
7944{
7945 int w, h;
7946 char_u *arg = eap->arg;
7947 char_u *p;
7948
7949 w = getdigits(&arg);
7950 arg = skipwhite(arg);
7951 p = arg;
7952 h = getdigits(&arg);
7953 if (*p != NUL && *arg == NUL)
7954 set_shellsize(w, h, TRUE);
7955 else
7956 EMSG(_("E465: :winsize requires two number arguments"));
7957}
7958
7959#ifdef FEAT_WINDOWS
7960 static void
7961ex_wincmd(eap)
7962 exarg_T *eap;
7963{
7964 int xchar = NUL;
7965 char_u *p;
7966
7967 if (*eap->arg == 'g' || *eap->arg == Ctrl_G)
7968 {
7969 /* CTRL-W g and CTRL-W CTRL-G have an extra command character */
7970 if (eap->arg[1] == NUL)
7971 {
7972 EMSG(_(e_invarg));
7973 return;
7974 }
7975 xchar = eap->arg[1];
7976 p = eap->arg + 2;
7977 }
7978 else
7979 p = eap->arg + 1;
7980
7981 eap->nextcmd = check_nextcmd(p);
7982 p = skipwhite(p);
7983 if (*p != NUL && *p != '"' && eap->nextcmd == NULL)
7984 EMSG(_(e_invarg));
7985 else
7986 {
7987 /* Pass flags on for ":vertical wincmd ]". */
7988 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00007989 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007990 do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
7991 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00007992 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007993 }
7994}
7995#endif
7996
Bram Moolenaar843ee412004-06-30 16:16:41 +00007997#if defined(FEAT_GUI) || defined(UNIX) || defined(VMS) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007998/*
7999 * ":winpos".
8000 */
8001 static void
8002ex_winpos(eap)
8003 exarg_T *eap;
8004{
8005 int x, y;
8006 char_u *arg = eap->arg;
8007 char_u *p;
8008
8009 if (*arg == NUL)
8010 {
Bram Moolenaar843ee412004-06-30 16:16:41 +00008011# if defined(FEAT_GUI) || defined(MSWIN)
8012# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00008013 if (gui.in_use && gui_mch_get_winpos(&x, &y) != FAIL)
Bram Moolenaar843ee412004-06-30 16:16:41 +00008014# else
8015 if (mch_get_winpos(&x, &y) != FAIL)
8016# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008017 {
8018 sprintf((char *)IObuff, _("Window position: X %d, Y %d"), x, y);
8019 msg(IObuff);
8020 }
8021 else
8022# endif
8023 EMSG(_("E188: Obtaining window position not implemented for this platform"));
8024 }
8025 else
8026 {
8027 x = getdigits(&arg);
8028 arg = skipwhite(arg);
8029 p = arg;
8030 y = getdigits(&arg);
8031 if (*p == NUL || *arg != NUL)
8032 {
8033 EMSG(_("E466: :winpos requires two number arguments"));
8034 return;
8035 }
8036# ifdef FEAT_GUI
8037 if (gui.in_use)
8038 gui_mch_set_winpos(x, y);
8039 else if (gui.starting)
8040 {
8041 /* Remember the coordinates for when the window is opened. */
8042 gui_win_x = x;
8043 gui_win_y = y;
8044 }
8045# ifdef HAVE_TGETENT
8046 else
8047# endif
Bram Moolenaar843ee412004-06-30 16:16:41 +00008048# else
8049# ifdef MSWIN
8050 mch_set_winpos(x, y);
8051# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008052# endif
8053# ifdef HAVE_TGETENT
8054 if (*T_CWP)
8055 term_set_winpos(x, y);
8056# endif
8057 }
8058}
8059#endif
8060
8061/*
8062 * Handle command that work like operators: ":delete", ":yank", ":>" and ":<".
8063 */
8064 static void
8065ex_operators(eap)
8066 exarg_T *eap;
8067{
8068 oparg_T oa;
8069
8070 clear_oparg(&oa);
8071 oa.regname = eap->regname;
8072 oa.start.lnum = eap->line1;
8073 oa.end.lnum = eap->line2;
8074 oa.line_count = eap->line2 - eap->line1 + 1;
8075 oa.motion_type = MLINE;
8076#ifdef FEAT_VIRTUALEDIT
8077 virtual_op = FALSE;
8078#endif
8079 if (eap->cmdidx != CMD_yank) /* position cursor for undo */
8080 {
8081 setpcmark();
8082 curwin->w_cursor.lnum = eap->line1;
8083 beginline(BL_SOL | BL_FIX);
8084 }
8085
8086 switch (eap->cmdidx)
8087 {
8088 case CMD_delete:
8089 oa.op_type = OP_DELETE;
8090 op_delete(&oa);
8091 break;
8092
8093 case CMD_yank:
8094 oa.op_type = OP_YANK;
8095 (void)op_yank(&oa, FALSE, TRUE);
8096 break;
8097
8098 default: /* CMD_rshift or CMD_lshift */
8099 if ((eap->cmdidx == CMD_rshift)
8100#ifdef FEAT_RIGHTLEFT
8101 ^ curwin->w_p_rl
8102#endif
8103 )
8104 oa.op_type = OP_RSHIFT;
8105 else
8106 oa.op_type = OP_LSHIFT;
8107 op_shift(&oa, FALSE, eap->amount);
8108 break;
8109 }
8110#ifdef FEAT_VIRTUALEDIT
8111 virtual_op = MAYBE;
8112#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00008113 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008114}
8115
8116/*
8117 * ":put".
8118 */
8119 static void
8120ex_put(eap)
8121 exarg_T *eap;
8122{
8123 /* ":0put" works like ":1put!". */
8124 if (eap->line2 == 0)
8125 {
8126 eap->line2 = 1;
8127 eap->forceit = TRUE;
8128 }
8129 curwin->w_cursor.lnum = eap->line2;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008130 do_put(eap->regname, eap->forceit ? BACKWARD : FORWARD, 1L,
8131 PUT_LINE|PUT_CURSLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008132}
8133
8134/*
8135 * Handle ":copy" and ":move".
8136 */
8137 static void
8138ex_copymove(eap)
8139 exarg_T *eap;
8140{
8141 long n;
8142
8143 n = get_address(&eap->arg, FALSE, FALSE);
8144 if (eap->arg == NULL) /* error detected */
8145 {
8146 eap->nextcmd = NULL;
8147 return;
8148 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008149 get_flags(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008150
8151 /*
8152 * move or copy lines from 'eap->line1'-'eap->line2' to below line 'n'
8153 */
8154 if (n == MAXLNUM || n < 0 || n > curbuf->b_ml.ml_line_count)
8155 {
8156 EMSG(_(e_invaddr));
8157 return;
8158 }
8159
8160 if (eap->cmdidx == CMD_move)
8161 {
8162 if (do_move(eap->line1, eap->line2, n) == FAIL)
8163 return;
8164 }
8165 else
8166 ex_copy(eap->line1, eap->line2, n);
8167 u_clearline();
8168 beginline(BL_SOL | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008169 ex_may_print(eap);
8170}
8171
8172/*
8173 * Print the current line if flags were given to the Ex command.
8174 */
8175 static void
8176ex_may_print(eap)
8177 exarg_T *eap;
8178{
8179 if (eap->flags != 0)
8180 {
8181 print_line(curwin->w_cursor.lnum, (eap->flags & EXFLAG_NR),
8182 (eap->flags & EXFLAG_LIST));
8183 ex_no_reprint = TRUE;
8184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008185}
8186
8187/*
8188 * ":smagic" and ":snomagic".
8189 */
8190 static void
8191ex_submagic(eap)
8192 exarg_T *eap;
8193{
8194 int magic_save = p_magic;
8195
8196 p_magic = (eap->cmdidx == CMD_smagic);
8197 do_sub(eap);
8198 p_magic = magic_save;
8199}
8200
8201/*
8202 * ":join".
8203 */
8204 static void
8205ex_join(eap)
8206 exarg_T *eap;
8207{
8208 curwin->w_cursor.lnum = eap->line1;
8209 if (eap->line1 == eap->line2)
8210 {
8211 if (eap->addr_count >= 2) /* :2,2join does nothing */
8212 return;
8213 if (eap->line2 == curbuf->b_ml.ml_line_count)
8214 {
8215 beep_flush();
8216 return;
8217 }
8218 ++eap->line2;
8219 }
8220 do_do_join(eap->line2 - eap->line1 + 1, !eap->forceit);
8221 beginline(BL_WHITE | BL_FIX);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008222 ex_may_print(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008223}
8224
8225/*
8226 * ":[addr]@r" or ":[addr]*r": execute register
8227 */
8228 static void
8229ex_at(eap)
8230 exarg_T *eap;
8231{
8232 int c;
8233
8234 curwin->w_cursor.lnum = eap->line2;
8235
8236#ifdef USE_ON_FLY_SCROLL
8237 dont_scroll = TRUE; /* disallow scrolling here */
8238#endif
8239
8240 /* get the register name. No name means to use the previous one */
8241 c = *eap->arg;
8242 if (c == NUL || (c == '*' && *eap->cmd == '*'))
8243 c = '@';
Bram Moolenaard333d1e2006-11-07 17:43:47 +00008244 /* Put the register in the typeahead buffer with the "silent" flag. */
8245 if (do_execreg(c, TRUE, vim_strchr(p_cpo, CPO_EXECBUF) != NULL, TRUE)
8246 == FAIL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00008247 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008248 beep_flush();
Bram Moolenaardf177f62005-02-22 08:39:57 +00008249 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008250 else
8251 {
8252 int save_efr = exec_from_reg;
8253
8254 exec_from_reg = TRUE;
8255
8256 /*
8257 * Execute from the typeahead buffer.
8258 * Originally this didn't check for the typeahead buffer to be empty,
8259 * thus could read more Ex commands from stdin. It's not clear why,
8260 * it is certainly unexpected.
8261 */
8262 while ((!stuff_empty() || typebuf.tb_len > 0) && vpeekc() == ':')
8263 (void)do_cmdline(NULL, getexline, NULL, DOCMD_NOWAIT|DOCMD_VERBOSE);
8264
8265 exec_from_reg = save_efr;
8266 }
8267}
8268
8269/*
8270 * ":!".
8271 */
8272 static void
8273ex_bang(eap)
8274 exarg_T *eap;
8275{
8276 do_bang(eap->addr_count, eap, eap->forceit, TRUE, TRUE);
8277}
8278
8279/*
8280 * ":undo".
8281 */
8282/*ARGSUSED*/
8283 static void
8284ex_undo(eap)
8285 exarg_T *eap;
8286{
Bram Moolenaard3667a22006-03-16 21:35:52 +00008287 if (eap->addr_count == 1) /* :undo 123 */
8288 undo_time(eap->line2, FALSE, TRUE);
8289 else
8290 u_undo(1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008291}
8292
8293/*
8294 * ":redo".
8295 */
8296/*ARGSUSED*/
8297 static void
8298ex_redo(eap)
8299 exarg_T *eap;
8300{
8301 u_redo(1);
8302}
8303
8304/*
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008305 * ":earlier" and ":later".
8306 */
8307/*ARGSUSED*/
8308 static void
8309ex_later(eap)
8310 exarg_T *eap;
8311{
8312 long count = 0;
8313 int sec = FALSE;
8314 char_u *p = eap->arg;
8315
8316 if (*p == NUL)
8317 count = 1;
8318 else if (isdigit(*p))
8319 {
8320 count = getdigits(&p);
8321 switch (*p)
8322 {
8323 case 's': ++p; sec = TRUE; break;
8324 case 'm': ++p; sec = TRUE; count *= 60; break;
8325 case 'h': ++p; sec = TRUE; count *= 60 * 60; break;
8326 }
8327 }
8328
8329 if (*p != NUL)
8330 EMSG2(_(e_invarg2), eap->arg);
8331 else
Bram Moolenaard3667a22006-03-16 21:35:52 +00008332 undo_time(eap->cmdidx == CMD_earlier ? -count : count, sec, FALSE);
Bram Moolenaarc7d89352006-03-14 22:53:34 +00008333}
8334
8335/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008336 * ":redir": start/stop redirection.
8337 */
8338 static void
8339ex_redir(eap)
8340 exarg_T *eap;
8341{
8342 char *mode;
8343 char_u *fname;
Bram Moolenaarca472992005-01-21 11:46:23 +00008344 char_u *arg = eap->arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008345
8346 if (STRICMP(eap->arg, "END") == 0)
8347 close_redir();
8348 else
8349 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008350 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008351 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008352 ++arg;
8353 if (*arg == '>')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008354 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008355 ++arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008356 mode = "a";
8357 }
8358 else
8359 mode = "w";
Bram Moolenaarca472992005-01-21 11:46:23 +00008360 arg = skipwhite(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008361
8362 close_redir();
8363
8364 /* Expand environment variables and "~/". */
Bram Moolenaarca472992005-01-21 11:46:23 +00008365 fname = expand_env_save(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008366 if (fname == NULL)
8367 return;
8368#ifdef FEAT_BROWSE
8369 if (cmdmod.browse)
8370 {
8371 char_u *browseFile;
8372
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008373 browseFile = do_browse(BROWSE_SAVE,
8374 (char_u *)_("Save Redirection"),
8375 fname, NULL, NULL, BROWSE_FILTER_ALL_FILES, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008376 if (browseFile == NULL)
8377 return; /* operation cancelled */
8378 vim_free(fname);
8379 fname = browseFile;
8380 eap->forceit = TRUE; /* since dialog already asked */
8381 }
8382#endif
8383
8384 redir_fd = open_exfile(fname, eap->forceit, mode);
8385 vim_free(fname);
8386 }
8387#ifdef FEAT_EVAL
Bram Moolenaarca472992005-01-21 11:46:23 +00008388 else if (*arg == '@')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008389 {
8390 /* redirect to a register a-z (resp. A-Z for appending) */
8391 close_redir();
Bram Moolenaarca472992005-01-21 11:46:23 +00008392 ++arg;
8393 if (ASCII_ISALPHA(*arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008394# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008395 || *arg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008396 || *arg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008397# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008398 || *arg == '"')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008399 {
Bram Moolenaarca472992005-01-21 11:46:23 +00008400 redir_reg = *arg++;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008401 if (*arg == '>' && arg[1] == '>')
8402 arg += 2;
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008403 else if ((*arg == NUL || (*arg == '>' && arg[1] == NUL)) &&
8404 (islower(redir_reg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008405# ifdef FEAT_CLIPBOARD
Bram Moolenaarca472992005-01-21 11:46:23 +00008406 || redir_reg == '*'
Bram Moolenaar9a51c6e2006-11-14 19:25:02 +00008407 || redir_reg == '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +00008408# endif
Bram Moolenaarca472992005-01-21 11:46:23 +00008409 || redir_reg == '"'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008410 {
Bram Moolenaar2c29bee2005-06-01 21:46:07 +00008411 if (*arg == '>')
8412 arg++;
8413
Bram Moolenaar071d4272004-06-13 20:20:40 +00008414 /* make register empty */
8415 write_reg_contents(redir_reg, (char_u *)"", -1, FALSE);
8416 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00008417 }
8418 if (*arg != NUL)
8419 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00008420 redir_reg = 0;
Bram Moolenaard9d30582005-05-18 22:10:28 +00008421 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaardf177f62005-02-22 08:39:57 +00008422 }
8423 }
8424 else if (*arg == '=' && arg[1] == '>')
8425 {
8426 int append;
8427
8428 /* redirect to a variable */
8429 close_redir();
8430 arg += 2;
8431
8432 if (*arg == '>')
8433 {
8434 ++arg;
8435 append = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008436 }
8437 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00008438 append = FALSE;
8439
8440 if (var_redir_start(skipwhite(arg), append) == OK)
8441 redir_vname = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008442 }
8443#endif
8444
8445 /* TODO: redirect to a buffer */
8446
Bram Moolenaar071d4272004-06-13 20:20:40 +00008447 else
Bram Moolenaarca472992005-01-21 11:46:23 +00008448 EMSG2(_(e_invarg2), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008449 }
Bram Moolenaar29b2d262006-09-10 19:07:28 +00008450
8451 /* Make sure redirection is not off. Can happen for cmdline completion
8452 * that indirectly invokes a command to catch its output. */
8453 if (redir_fd != NULL
8454#ifdef FEAT_EVAL
8455 || redir_reg || redir_vname
8456#endif
8457 )
8458 redir_off = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008459}
8460
8461/*
8462 * ":redraw": force redraw
8463 */
8464 static void
8465ex_redraw(eap)
8466 exarg_T *eap;
8467{
8468 int r = RedrawingDisabled;
8469 int p = p_lz;
8470
8471 RedrawingDisabled = 0;
8472 p_lz = FALSE;
8473 update_topline();
8474 update_screen(eap->forceit ? CLEAR :
8475#ifdef FEAT_VISUAL
8476 VIsual_active ? INVERTED :
8477#endif
8478 0);
8479#ifdef FEAT_TITLE
8480 if (need_maketitle)
8481 maketitle();
8482#endif
8483 RedrawingDisabled = r;
8484 p_lz = p;
8485
8486 /* Reset msg_didout, so that a message that's there is overwritten. */
8487 msg_didout = FALSE;
8488 msg_col = 0;
8489
8490 out_flush();
8491}
8492
8493/*
8494 * ":redrawstatus": force redraw of status line(s)
8495 */
8496/*ARGSUSED*/
8497 static void
8498ex_redrawstatus(eap)
8499 exarg_T *eap;
8500{
8501#if defined(FEAT_WINDOWS)
8502 int r = RedrawingDisabled;
8503 int p = p_lz;
8504
8505 RedrawingDisabled = 0;
8506 p_lz = FALSE;
8507 if (eap->forceit)
8508 status_redraw_all();
8509 else
8510 status_redraw_curbuf();
8511 update_screen(
8512# ifdef FEAT_VISUAL
8513 VIsual_active ? INVERTED :
8514# endif
8515 0);
8516 RedrawingDisabled = r;
8517 p_lz = p;
8518 out_flush();
8519#endif
8520}
8521
8522 static void
8523close_redir()
8524{
8525 if (redir_fd != NULL)
8526 {
8527 fclose(redir_fd);
8528 redir_fd = NULL;
8529 }
8530#ifdef FEAT_EVAL
8531 redir_reg = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00008532 if (redir_vname)
8533 {
8534 var_redir_stop();
8535 redir_vname = 0;
8536 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008537#endif
8538}
8539
8540#if defined(FEAT_SESSION) && defined(USE_CRNL)
8541# define MKSESSION_NL
8542static int mksession_nl = FALSE; /* use NL only in put_eol() */
8543#endif
8544
8545/*
8546 * ":mkexrc", ":mkvimrc", ":mkview" and ":mksession".
8547 */
8548 static void
8549ex_mkrc(eap)
8550 exarg_T *eap;
8551{
8552 FILE *fd;
8553 int failed = FALSE;
8554 char_u *fname;
8555#ifdef FEAT_BROWSE
8556 char_u *browseFile = NULL;
8557#endif
8558#ifdef FEAT_SESSION
8559 int view_session = FALSE;
8560 int using_vdir = FALSE; /* using 'viewdir'? */
8561 char_u *viewFile = NULL;
8562 unsigned *flagp;
8563#endif
8564
8565 if (eap->cmdidx == CMD_mksession || eap->cmdidx == CMD_mkview)
8566 {
8567#ifdef FEAT_SESSION
8568 view_session = TRUE;
8569#else
8570 ex_ni(eap);
8571 return;
8572#endif
8573 }
8574
8575#ifdef FEAT_SESSION
8576 /* ":mkview" or ":mkview 9": generate file name with 'viewdir' */
8577 if (eap->cmdidx == CMD_mkview
8578 && (*eap->arg == NUL
8579 || (vim_isdigit(*eap->arg) && eap->arg[1] == NUL)))
8580 {
8581 eap->forceit = TRUE;
8582 fname = get_view_file(*eap->arg);
8583 if (fname == NULL)
8584 return;
8585 viewFile = fname;
8586 using_vdir = TRUE;
8587 }
8588 else
8589#endif
8590 if (*eap->arg != NUL)
8591 fname = eap->arg;
8592 else if (eap->cmdidx == CMD_mkvimrc)
8593 fname = (char_u *)VIMRC_FILE;
8594#ifdef FEAT_SESSION
8595 else if (eap->cmdidx == CMD_mksession)
8596 fname = (char_u *)SESSION_FILE;
8597#endif
8598 else
8599 fname = (char_u *)EXRC_FILE;
8600
8601#ifdef FEAT_BROWSE
8602 if (cmdmod.browse)
8603 {
Bram Moolenaar7171abe2004-10-11 10:06:20 +00008604 browseFile = do_browse(BROWSE_SAVE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008605# ifdef FEAT_SESSION
8606 eap->cmdidx == CMD_mkview ? (char_u *)_("Save View") :
8607 eap->cmdidx == CMD_mksession ? (char_u *)_("Save Session") :
8608# endif
8609 (char_u *)_("Save Setup"),
8610 fname, (char_u *)"vim", NULL, BROWSE_FILTER_MACROS, NULL);
8611 if (browseFile == NULL)
8612 goto theend;
8613 fname = browseFile;
8614 eap->forceit = TRUE; /* since dialog already asked */
8615 }
8616#endif
8617
8618#if defined(FEAT_SESSION) && defined(vim_mkdir)
8619 /* When using 'viewdir' may have to create the directory. */
8620 if (using_vdir && !mch_isdir(p_vdir))
Bram Moolenaardf177f62005-02-22 08:39:57 +00008621 vim_mkdir_emsg(p_vdir, 0755);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008622#endif
8623
8624 fd = open_exfile(fname, eap->forceit, WRITEBIN);
8625 if (fd != NULL)
8626 {
8627#ifdef FEAT_SESSION
8628 if (eap->cmdidx == CMD_mkview)
8629 flagp = &vop_flags;
8630 else
8631 flagp = &ssop_flags;
8632#endif
8633
8634#ifdef MKSESSION_NL
8635 /* "unix" in 'sessionoptions': use NL line separator */
8636 if (view_session && (*flagp & SSOP_UNIX))
8637 mksession_nl = TRUE;
8638#endif
8639
8640 /* Write the version command for :mkvimrc */
8641 if (eap->cmdidx == CMD_mkvimrc)
8642 (void)put_line(fd, "version 6.0");
8643
8644#ifdef FEAT_SESSION
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008645 if (eap->cmdidx == CMD_mksession)
8646 {
8647 if (put_line(fd, "let SessionLoad = 1") == FAIL)
8648 failed = TRUE;
8649 }
8650
Bram Moolenaar071d4272004-06-13 20:20:40 +00008651 if (eap->cmdidx != CMD_mkview)
8652#endif
8653 {
8654 /* Write setting 'compatible' first, because it has side effects.
8655 * For that same reason only do it when needed. */
8656 if (p_cp)
8657 (void)put_line(fd, "if !&cp | set cp | endif");
8658 else
8659 (void)put_line(fd, "if &cp | set nocp | endif");
8660 }
8661
8662#ifdef FEAT_SESSION
8663 if (!view_session
8664 || (eap->cmdidx == CMD_mksession
8665 && (*flagp & SSOP_OPTIONS)))
8666#endif
8667 failed |= (makemap(fd, NULL) == FAIL
8668 || makeset(fd, OPT_GLOBAL, FALSE) == FAIL);
8669
8670#ifdef FEAT_SESSION
8671 if (!failed && view_session)
8672 {
8673 if (put_line(fd, "let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0") == FAIL)
8674 failed = TRUE;
8675 if (eap->cmdidx == CMD_mksession)
8676 {
8677 char_u dirnow[MAXPATHL]; /* current directory */
8678
8679 /*
8680 * Change to session file's dir.
8681 */
8682 if (mch_dirname(dirnow, MAXPATHL) == FAIL
8683 || mch_chdir((char *)dirnow) != 0)
8684 *dirnow = NUL;
8685 if (*dirnow != NUL && (ssop_flags & SSOP_SESDIR))
8686 {
8687 if (vim_chdirfile(fname) == OK)
8688 shorten_fnames(TRUE);
8689 }
8690 else if (*dirnow != NUL
8691 && (ssop_flags & SSOP_CURDIR) && globaldir != NULL)
8692 {
8693 (void)mch_chdir((char *)globaldir);
8694 shorten_fnames(TRUE);
8695 }
8696
8697 failed |= (makeopens(fd, dirnow) == FAIL);
8698
8699 /* restore original dir */
8700 if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR)
8701 || ((ssop_flags & SSOP_CURDIR) && globaldir != NULL)))
8702 {
8703 if (mch_chdir((char *)dirnow) != 0)
8704 EMSG(_(e_prev_dir));
8705 shorten_fnames(TRUE);
8706 }
8707 }
8708 else
8709 {
8710 failed |= (put_view(fd, curwin, !using_vdir, flagp) == FAIL);
8711 }
8712 if (put_line(fd, "let &so = s:so_save | let &siso = s:siso_save")
8713 == FAIL)
8714 failed = TRUE;
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008715 if (put_line(fd, "doautoall SessionLoadPost") == FAIL)
8716 failed = TRUE;
Bram Moolenaar4770d092006-01-12 23:22:24 +00008717 if (eap->cmdidx == CMD_mksession)
8718 {
8719 if (put_line(fd, "unlet SessionLoad") == FAIL)
8720 failed = TRUE;
8721 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008722 }
8723#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +00008724 if (put_line(fd, "\" vim: set ft=vim :") == FAIL)
8725 failed = TRUE;
8726
Bram Moolenaar071d4272004-06-13 20:20:40 +00008727 failed |= fclose(fd);
8728
8729 if (failed)
8730 EMSG(_(e_write));
8731#if defined(FEAT_EVAL) && defined(FEAT_SESSION)
8732 else if (eap->cmdidx == CMD_mksession)
8733 {
8734 /* successful session write - set this_session var */
8735 char_u tbuf[MAXPATHL];
8736
8737 if (vim_FullName(fname, tbuf, MAXPATHL, FALSE) == OK)
8738 set_vim_var_string(VV_THIS_SESSION, tbuf, -1);
8739 }
8740#endif
8741#ifdef MKSESSION_NL
8742 mksession_nl = FALSE;
8743#endif
8744 }
8745
8746#ifdef FEAT_BROWSE
8747theend:
8748 vim_free(browseFile);
8749#endif
8750#ifdef FEAT_SESSION
8751 vim_free(viewFile);
8752#endif
8753}
8754
Bram Moolenaardf177f62005-02-22 08:39:57 +00008755#if ((defined(FEAT_SESSION) || defined(FEAT_EVAL)) && defined(vim_mkdir)) \
8756 || defined(PROTO)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008757/*ARGSUSED*/
Bram Moolenaardf177f62005-02-22 08:39:57 +00008758 int
8759vim_mkdir_emsg(name, prot)
8760 char_u *name;
8761 int prot;
8762{
8763 if (vim_mkdir(name, prot) != 0)
8764 {
8765 EMSG2(_("E739: Cannot create directory: %s"), name);
8766 return FAIL;
8767 }
8768 return OK;
8769}
8770#endif
8771
Bram Moolenaar071d4272004-06-13 20:20:40 +00008772/*
8773 * Open a file for writing for an Ex command, with some checks.
8774 * Return file descriptor, or NULL on failure.
8775 */
8776 FILE *
8777open_exfile(fname, forceit, mode)
8778 char_u *fname;
8779 int forceit;
8780 char *mode; /* "w" for create new file or "a" for append */
8781{
8782 FILE *fd;
8783
8784#ifdef UNIX
8785 /* with Unix it is possible to open a directory */
8786 if (mch_isdir(fname))
8787 {
8788 EMSG2(_(e_isadir2), fname);
8789 return NULL;
8790 }
8791#endif
8792 if (!forceit && *mode != 'a' && vim_fexists(fname))
8793 {
8794 EMSG2(_("E189: \"%s\" exists (add ! to override)"), fname);
8795 return NULL;
8796 }
8797
8798 if ((fd = mch_fopen((char *)fname, mode)) == NULL)
8799 EMSG2(_("E190: Cannot open \"%s\" for writing"), fname);
8800
8801 return fd;
8802}
8803
8804/*
8805 * ":mark" and ":k".
8806 */
8807 static void
8808ex_mark(eap)
8809 exarg_T *eap;
8810{
8811 pos_T pos;
8812
8813 if (*eap->arg == NUL) /* No argument? */
8814 EMSG(_(e_argreq));
8815 else if (eap->arg[1] != NUL) /* more than one character? */
8816 EMSG(_(e_trailing));
8817 else
8818 {
8819 pos = curwin->w_cursor; /* save curwin->w_cursor */
8820 curwin->w_cursor.lnum = eap->line2;
8821 beginline(BL_WHITE | BL_FIX);
8822 if (setmark(*eap->arg) == FAIL) /* set mark */
8823 EMSG(_("E191: Argument must be a letter or forward/backward quote"));
8824 curwin->w_cursor = pos; /* restore curwin->w_cursor */
8825 }
8826}
8827
8828/*
8829 * Update w_topline, w_leftcol and the cursor position.
8830 */
8831 void
8832update_topline_cursor()
8833{
8834 check_cursor(); /* put cursor on valid line */
8835 update_topline();
8836 if (!curwin->w_p_wrap)
8837 validate_cursor();
8838 update_curswant();
8839}
8840
8841#ifdef FEAT_EX_EXTRA
8842/*
8843 * ":normal[!] {commands}": Execute normal mode commands.
8844 */
8845 static void
8846ex_normal(eap)
8847 exarg_T *eap;
8848{
Bram Moolenaar071d4272004-06-13 20:20:40 +00008849 int save_msg_scroll = msg_scroll;
8850 int save_restart_edit = restart_edit;
8851 int save_msg_didout = msg_didout;
8852 int save_State = State;
8853 tasave_T tabuf;
8854 int save_insertmode = p_im;
8855 int save_finish_op = finish_op;
8856#ifdef FEAT_MBYTE
8857 char_u *arg = NULL;
8858 int l;
8859 char_u *p;
8860#endif
8861
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008862 if (ex_normal_lock > 0)
8863 {
8864 EMSG(_(e_secure));
8865 return;
8866 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008867 if (ex_normal_busy >= p_mmd)
8868 {
8869 EMSG(_("E192: Recursive use of :normal too deep"));
8870 return;
8871 }
8872 ++ex_normal_busy;
8873
8874 msg_scroll = FALSE; /* no msg scrolling in Normal mode */
8875 restart_edit = 0; /* don't go to Insert mode */
8876 p_im = FALSE; /* don't use 'insertmode' */
8877
8878#ifdef FEAT_MBYTE
8879 /*
8880 * vgetc() expects a CSI and K_SPECIAL to have been escaped. Don't do
8881 * this for the K_SPECIAL leading byte, otherwise special keys will not
8882 * work.
8883 */
8884 if (has_mbyte)
8885 {
8886 int len = 0;
8887
8888 /* Count the number of characters to be escaped. */
8889 for (p = eap->arg; *p != NUL; ++p)
8890 {
8891# ifdef FEAT_GUI
8892 if (*p == CSI) /* leadbyte CSI */
8893 len += 2;
8894# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008895 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008896 if (*++p == K_SPECIAL /* trailbyte K_SPECIAL or CSI */
8897# ifdef FEAT_GUI
8898 || *p == CSI
8899# endif
8900 )
8901 len += 2;
8902 }
8903 if (len > 0)
8904 {
8905 arg = alloc((unsigned)(STRLEN(eap->arg) + len + 1));
8906 if (arg != NULL)
8907 {
8908 len = 0;
8909 for (p = eap->arg; *p != NUL; ++p)
8910 {
8911 arg[len++] = *p;
8912# ifdef FEAT_GUI
8913 if (*p == CSI)
8914 {
8915 arg[len++] = KS_EXTRA;
8916 arg[len++] = (int)KE_CSI;
8917 }
8918# endif
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008919 for (l = (*mb_ptr2len)(p) - 1; l > 0; --l)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008920 {
8921 arg[len++] = *++p;
8922 if (*p == K_SPECIAL)
8923 {
8924 arg[len++] = KS_SPECIAL;
8925 arg[len++] = KE_FILLER;
8926 }
8927# ifdef FEAT_GUI
8928 else if (*p == CSI)
8929 {
8930 arg[len++] = KS_EXTRA;
8931 arg[len++] = (int)KE_CSI;
8932 }
8933# endif
8934 }
8935 arg[len] = NUL;
8936 }
8937 }
8938 }
8939 }
8940#endif
8941
8942 /*
8943 * Save the current typeahead. This is required to allow using ":normal"
8944 * from an event handler and makes sure we don't hang when the argument
8945 * ends with half a command.
8946 */
8947 save_typeahead(&tabuf);
8948 if (tabuf.typebuf_valid)
8949 {
8950 /*
8951 * Repeat the :normal command for each line in the range. When no
8952 * range given, execute it just once, without positioning the cursor
8953 * first.
8954 */
8955 do
8956 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008957 if (eap->addr_count != 0)
8958 {
8959 curwin->w_cursor.lnum = eap->line1++;
8960 curwin->w_cursor.col = 0;
8961 }
8962
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008963 exec_normal_cmd(
Bram Moolenaar071d4272004-06-13 20:20:40 +00008964#ifdef FEAT_MBYTE
8965 arg != NULL ? arg :
8966#endif
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00008967 eap->arg, eap->forceit ? REMAP_NONE : REMAP_YES, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008968 }
8969 while (eap->addr_count > 0 && eap->line1 <= eap->line2 && !got_int);
8970 }
8971
8972 /* Might not return to the main loop when in an event handler. */
8973 update_topline_cursor();
8974
8975 /* Restore the previous typeahead. */
8976 restore_typeahead(&tabuf);
8977
8978 --ex_normal_busy;
8979 msg_scroll = save_msg_scroll;
8980 restart_edit = save_restart_edit;
8981 p_im = save_insertmode;
8982 finish_op = save_finish_op;
8983 msg_didout |= save_msg_didout; /* don't reset msg_didout now */
8984
8985 /* Restore the state (needed when called from a function executed for
8986 * 'indentexpr'). */
8987 State = save_State;
8988#ifdef FEAT_MBYTE
8989 vim_free(arg);
8990#endif
8991}
8992
8993/*
Bram Moolenaar64969662005-12-14 21:59:55 +00008994 * ":startinsert", ":startreplace" and ":startgreplace"
Bram Moolenaar071d4272004-06-13 20:20:40 +00008995 */
8996 static void
8997ex_startinsert(eap)
8998 exarg_T *eap;
8999{
Bram Moolenaarfd371682005-01-14 21:42:54 +00009000 if (eap->forceit)
9001 {
9002 coladvance((colnr_T)MAXCOL);
9003 curwin->w_curswant = MAXCOL;
9004 curwin->w_set_curswant = FALSE;
9005 }
9006
Bram Moolenaara40c5002005-01-09 21:16:21 +00009007 /* Ignore the command when already in Insert mode. Inserting an
9008 * expression register that invokes a function can do this. */
9009 if (State & INSERT)
9010 return;
9011
Bram Moolenaar64969662005-12-14 21:59:55 +00009012 if (eap->cmdidx == CMD_startinsert)
9013 restart_edit = 'a';
9014 else if (eap->cmdidx == CMD_startreplace)
9015 restart_edit = 'R';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009016 else
Bram Moolenaar64969662005-12-14 21:59:55 +00009017 restart_edit = 'V';
9018
9019 if (!eap->forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009020 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00009021 if (eap->cmdidx == CMD_startinsert)
9022 restart_edit = 'i';
Bram Moolenaar071d4272004-06-13 20:20:40 +00009023 curwin->w_curswant = 0; /* avoid MAXCOL */
9024 }
9025}
9026
9027/*
9028 * ":stopinsert"
9029 */
9030/*ARGSUSED*/
9031 static void
9032ex_stopinsert(eap)
9033 exarg_T *eap;
9034{
9035 restart_edit = 0;
9036 stop_insert_mode = TRUE;
9037}
9038#endif
9039
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009040#if defined(FEAT_EX_EXTRA) || defined(FEAT_MENU) || defined(PROTO)
9041/*
9042 * Execute normal mode command "cmd".
9043 * "remap" can be REMAP_NONE or REMAP_YES.
9044 */
9045 void
9046exec_normal_cmd(cmd, remap, silent)
9047 char_u *cmd;
9048 int remap;
9049 int silent;
9050{
9051 oparg_T oa;
9052
9053 /*
9054 * Stuff the argument into the typeahead buffer.
9055 * Execute normal_cmd() until there is no typeahead left.
9056 */
9057 clear_oparg(&oa);
9058 finish_op = FALSE;
9059 ins_typebuf(cmd, remap, 0, TRUE, silent);
9060 while ((!stuff_empty() || (!typebuf_typed() && typebuf.tb_len > 0))
9061 && !got_int)
9062 {
9063 update_topline_cursor();
9064 normal_cmd(&oa, FALSE); /* execute a Normal mode cmd */
9065 }
9066}
9067#endif
9068
Bram Moolenaar071d4272004-06-13 20:20:40 +00009069#ifdef FEAT_FIND_ID
9070 static void
9071ex_checkpath(eap)
9072 exarg_T *eap;
9073{
9074 find_pattern_in_path(NULL, 0, 0, FALSE, FALSE, CHECK_PATH, 1L,
9075 eap->forceit ? ACTION_SHOW_ALL : ACTION_SHOW,
9076 (linenr_T)1, (linenr_T)MAXLNUM);
9077}
9078
9079#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
9080/*
9081 * ":psearch"
9082 */
9083 static void
9084ex_psearch(eap)
9085 exarg_T *eap;
9086{
9087 g_do_tagpreview = p_pvh;
9088 ex_findpat(eap);
9089 g_do_tagpreview = 0;
9090}
9091#endif
9092
9093 static void
9094ex_findpat(eap)
9095 exarg_T *eap;
9096{
9097 int whole = TRUE;
9098 long n;
9099 char_u *p;
9100 int action;
9101
9102 switch (cmdnames[eap->cmdidx].cmd_name[2])
9103 {
9104 case 'e': /* ":psearch", ":isearch" and ":dsearch" */
9105 if (cmdnames[eap->cmdidx].cmd_name[0] == 'p')
9106 action = ACTION_GOTO;
9107 else
9108 action = ACTION_SHOW;
9109 break;
9110 case 'i': /* ":ilist" and ":dlist" */
9111 action = ACTION_SHOW_ALL;
9112 break;
9113 case 'u': /* ":ijump" and ":djump" */
9114 action = ACTION_GOTO;
9115 break;
9116 default: /* ":isplit" and ":dsplit" */
9117 action = ACTION_SPLIT;
9118 break;
9119 }
9120
9121 n = 1;
9122 if (vim_isdigit(*eap->arg)) /* get count */
9123 {
9124 n = getdigits(&eap->arg);
9125 eap->arg = skipwhite(eap->arg);
9126 }
9127 if (*eap->arg == '/') /* Match regexp, not just whole words */
9128 {
9129 whole = FALSE;
9130 ++eap->arg;
9131 p = skip_regexp(eap->arg, '/', p_magic, NULL);
9132 if (*p)
9133 {
9134 *p++ = NUL;
9135 p = skipwhite(p);
9136
9137 /* Check for trailing illegal characters */
9138 if (!ends_excmd(*p))
9139 eap->errmsg = e_trailing;
9140 else
9141 eap->nextcmd = check_nextcmd(p);
9142 }
9143 }
9144 if (!eap->skip)
9145 find_pattern_in_path(eap->arg, 0, (int)STRLEN(eap->arg),
9146 whole, !eap->forceit,
9147 *eap->cmd == 'd' ? FIND_DEFINE : FIND_ANY,
9148 n, action, eap->line1, eap->line2);
9149}
9150#endif
9151
9152#ifdef FEAT_WINDOWS
9153
9154# ifdef FEAT_QUICKFIX
9155/*
9156 * ":ptag", ":ptselect", ":ptjump", ":ptnext", etc.
9157 */
9158 static void
9159ex_ptag(eap)
9160 exarg_T *eap;
9161{
9162 g_do_tagpreview = p_pvh;
9163 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9164}
9165
9166/*
9167 * ":pedit"
9168 */
9169 static void
9170ex_pedit(eap)
9171 exarg_T *eap;
9172{
9173 win_T *curwin_save = curwin;
9174
9175 g_do_tagpreview = p_pvh;
Bram Moolenaar607a95ed2006-03-28 20:57:42 +00009176 prepare_tagpreview(TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009177 keep_help_flag = curwin_save->w_buffer->b_help;
9178 do_exedit(eap, NULL);
9179 keep_help_flag = FALSE;
9180 if (curwin != curwin_save && win_valid(curwin_save))
9181 {
9182 /* Return cursor to where we were */
9183 validate_cursor();
9184 redraw_later(VALID);
9185 win_enter(curwin_save, TRUE);
9186 }
9187 g_do_tagpreview = 0;
9188}
9189# endif
9190
9191/*
9192 * ":stag", ":stselect" and ":stjump".
9193 */
9194 static void
9195ex_stag(eap)
9196 exarg_T *eap;
9197{
9198 postponed_split = -1;
9199 postponed_split_flags = cmdmod.split;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009200 postponed_split_tab = cmdmod.tab;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009201 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
9202 postponed_split_flags = 0;
Bram Moolenaard326ce82007-03-11 14:48:29 +00009203 postponed_split_tab = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009204}
9205#endif
9206
9207/*
9208 * ":tag", ":tselect", ":tjump", ":tnext", etc.
9209 */
9210 static void
9211ex_tag(eap)
9212 exarg_T *eap;
9213{
9214 ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name);
9215}
9216
9217 static void
9218ex_tag_cmd(eap, name)
9219 exarg_T *eap;
9220 char_u *name;
9221{
9222 int cmd;
9223
9224 switch (name[1])
9225 {
9226 case 'j': cmd = DT_JUMP; /* ":tjump" */
9227 break;
9228 case 's': cmd = DT_SELECT; /* ":tselect" */
9229 break;
9230 case 'p': cmd = DT_PREV; /* ":tprevious" */
9231 break;
9232 case 'N': cmd = DT_PREV; /* ":tNext" */
9233 break;
9234 case 'n': cmd = DT_NEXT; /* ":tnext" */
9235 break;
9236 case 'o': cmd = DT_POP; /* ":pop" */
9237 break;
9238 case 'f': /* ":tfirst" */
9239 case 'r': cmd = DT_FIRST; /* ":trewind" */
9240 break;
9241 case 'l': cmd = DT_LAST; /* ":tlast" */
9242 break;
9243 default: /* ":tag" */
9244#ifdef FEAT_CSCOPE
9245 if (p_cst)
9246 {
9247 do_cstag(eap);
9248 return;
9249 }
9250#endif
9251 cmd = DT_TAG;
9252 break;
9253 }
9254
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009255 if (name[0] == 'l')
9256 {
9257#ifndef FEAT_QUICKFIX
9258 ex_ni(eap);
9259 return;
9260#else
9261 cmd = DT_LTAG;
9262#endif
9263 }
9264
Bram Moolenaar071d4272004-06-13 20:20:40 +00009265 do_tag(eap->arg, cmd, eap->addr_count > 0 ? (int)eap->line2 : 1,
9266 eap->forceit, TRUE);
9267}
9268
9269/*
9270 * Evaluate cmdline variables.
9271 *
9272 * change '%' to curbuf->b_ffname
9273 * '#' to curwin->w_altfile
9274 * '<cword>' to word under the cursor
9275 * '<cWORD>' to WORD under the cursor
9276 * '<cfile>' to path name under the cursor
9277 * '<sfile>' to sourced file name
9278 * '<afile>' to file name for autocommand
9279 * '<abuf>' to buffer number for autocommand
9280 * '<amatch>' to matching name for autocommand
9281 *
9282 * When an error is detected, "errormsg" is set to a non-NULL pointer (may be
9283 * "" for error without a message) and NULL is returned.
9284 * Returns an allocated string if a valid match was found.
9285 * Returns NULL if no match was found. "usedlen" then still contains the
9286 * number of characters to skip.
9287 */
9288 char_u *
Bram Moolenaar63b92542007-03-27 14:57:09 +00009289eval_vars(src, srcstart, usedlen, lnump, errormsg, escaped)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009290 char_u *src; /* pointer into commandline */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009291 char_u *srcstart; /* beginning of valid memory for src */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009292 int *usedlen; /* characters after src that are used */
9293 linenr_T *lnump; /* line number for :e command, or NULL */
9294 char_u **errormsg; /* pointer to error message */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009295 int *escaped; /* return value has escaped white space (can
9296 * be NULL) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009297{
9298 int i;
9299 char_u *s;
9300 char_u *result;
9301 char_u *resultbuf = NULL;
9302 int resultlen;
9303 buf_T *buf;
9304 int valid = VALID_HEAD + VALID_PATH; /* assume valid result */
9305 int spec_idx;
9306#ifdef FEAT_MODIFY_FNAME
9307 int skip_mod = FALSE;
9308#endif
9309 static char *(spec_str[]) =
9310 {
9311 "%",
9312#define SPEC_PERC 0
9313 "#",
9314#define SPEC_HASH 1
9315 "<cword>", /* cursor word */
9316#define SPEC_CWORD 2
9317 "<cWORD>", /* cursor WORD */
9318#define SPEC_CCWORD 3
9319 "<cfile>", /* cursor path name */
9320#define SPEC_CFILE 4
9321 "<sfile>", /* ":so" file name */
9322#define SPEC_SFILE 5
9323#ifdef FEAT_AUTOCMD
9324 "<afile>", /* autocommand file name */
9325# define SPEC_AFILE 6
9326 "<abuf>", /* autocommand buffer number */
9327# define SPEC_ABUF 7
9328 "<amatch>", /* autocommand match name */
9329# define SPEC_AMATCH 8
9330#endif
9331#ifdef FEAT_CLIENTSERVER
9332 "<client>"
9333# define SPEC_CLIENT 9
9334#endif
9335 };
9336#define SPEC_COUNT (sizeof(spec_str) / sizeof(char *))
9337
9338#if defined(FEAT_AUTOCMD) || defined(FEAT_CLIENTSERVER)
9339 char_u strbuf[30];
9340#endif
9341
9342 *errormsg = NULL;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009343 if (escaped != NULL)
9344 *escaped = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009345
9346 /*
9347 * Check if there is something to do.
9348 */
9349 for (spec_idx = 0; spec_idx < SPEC_COUNT; ++spec_idx)
9350 {
9351 *usedlen = (int)STRLEN(spec_str[spec_idx]);
9352 if (STRNCMP(src, spec_str[spec_idx], *usedlen) == 0)
9353 break;
9354 }
9355 if (spec_idx == SPEC_COUNT) /* no match */
9356 {
9357 *usedlen = 1;
9358 return NULL;
9359 }
9360
9361 /*
9362 * Skip when preceded with a backslash "\%" and "\#".
9363 * Note: In "\\%" the % is also not recognized!
9364 */
9365 if (src > srcstart && src[-1] == '\\')
9366 {
9367 *usedlen = 0;
9368 STRCPY(src - 1, src); /* remove backslash */
9369 return NULL;
9370 }
9371
9372 /*
9373 * word or WORD under cursor
9374 */
9375 if (spec_idx == SPEC_CWORD || spec_idx == SPEC_CCWORD)
9376 {
9377 resultlen = find_ident_under_cursor(&result, spec_idx == SPEC_CWORD ?
9378 (FIND_IDENT|FIND_STRING) : FIND_STRING);
9379 if (resultlen == 0)
9380 {
9381 *errormsg = (char_u *)"";
9382 return NULL;
9383 }
9384 }
9385
9386 /*
9387 * '#': Alternate file name
9388 * '%': Current file name
9389 * File name under the cursor
9390 * File name for autocommand
9391 * and following modifiers
9392 */
9393 else
9394 {
9395 switch (spec_idx)
9396 {
9397 case SPEC_PERC: /* '%': current file */
9398 if (curbuf->b_fname == NULL)
9399 {
9400 result = (char_u *)"";
9401 valid = 0; /* Must have ":p:h" to be valid */
9402 }
9403 else
9404#ifdef RISCOS
9405 /* Always use the full path for RISC OS if possible. */
9406 result = curbuf->b_ffname;
9407 if (result == NULL)
9408 result = curbuf->b_fname;
9409#else
9410 result = curbuf->b_fname;
9411#endif
9412 break;
9413
9414 case SPEC_HASH: /* '#' or "#99": alternate file */
9415 if (src[1] == '#') /* "##": the argument list */
9416 {
9417 result = arg_all();
9418 resultbuf = result;
9419 *usedlen = 2;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009420 if (escaped != NULL)
9421 *escaped = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009422#ifdef FEAT_MODIFY_FNAME
9423 skip_mod = TRUE;
9424#endif
9425 break;
9426 }
9427 s = src + 1;
9428 i = (int)getdigits(&s);
9429 *usedlen = (int)(s - src); /* length of what we expand */
9430
9431 buf = buflist_findnr(i);
9432 if (buf == NULL)
9433 {
9434 *errormsg = (char_u *)_("E194: No alternate file name to substitute for '#'");
9435 return NULL;
9436 }
9437 if (lnump != NULL)
9438 *lnump = ECMD_LAST;
9439 if (buf->b_fname == NULL)
9440 {
9441 result = (char_u *)"";
9442 valid = 0; /* Must have ":p:h" to be valid */
9443 }
9444 else
9445 result = buf->b_fname;
9446 break;
9447
9448#ifdef FEAT_SEARCHPATH
9449 case SPEC_CFILE: /* file name under cursor */
Bram Moolenaard1f56e62006-02-22 21:25:37 +00009450 result = file_name_at_cursor(FNAME_MESS|FNAME_HYP, 1L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009451 if (result == NULL)
9452 {
9453 *errormsg = (char_u *)"";
9454 return NULL;
9455 }
9456 resultbuf = result; /* remember allocated string */
9457 break;
9458#endif
9459
9460#ifdef FEAT_AUTOCMD
9461 case SPEC_AFILE: /* file name for autocommand */
9462 result = autocmd_fname;
9463 if (result == NULL)
9464 {
9465 *errormsg = (char_u *)_("E495: no autocommand file name to substitute for \"<afile>\"");
9466 return NULL;
9467 }
9468 break;
9469
9470 case SPEC_ABUF: /* buffer number for autocommand */
9471 if (autocmd_bufnr <= 0)
9472 {
9473 *errormsg = (char_u *)_("E496: no autocommand buffer number to substitute for \"<abuf>\"");
9474 return NULL;
9475 }
9476 sprintf((char *)strbuf, "%d", autocmd_bufnr);
9477 result = strbuf;
9478 break;
9479
9480 case SPEC_AMATCH: /* match name for autocommand */
9481 result = autocmd_match;
9482 if (result == NULL)
9483 {
9484 *errormsg = (char_u *)_("E497: no autocommand match name to substitute for \"<amatch>\"");
9485 return NULL;
9486 }
9487 break;
9488
9489#endif
9490 case SPEC_SFILE: /* file name for ":so" command */
9491 result = sourcing_name;
9492 if (result == NULL)
9493 {
9494 *errormsg = (char_u *)_("E498: no :source file name to substitute for \"<sfile>\"");
9495 return NULL;
9496 }
9497 break;
9498#if defined(FEAT_CLIENTSERVER)
9499 case SPEC_CLIENT: /* Source of last submitted input */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009500 sprintf((char *)strbuf, PRINTF_HEX_LONG_U,
9501 (long_u)clientWindow);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009502 result = strbuf;
9503 break;
9504#endif
9505 }
9506
9507 resultlen = (int)STRLEN(result); /* length of new string */
9508 if (src[*usedlen] == '<') /* remove the file name extension */
9509 {
9510 ++*usedlen;
9511#ifdef RISCOS
9512 if ((s = vim_strrchr(result, '/')) != NULL && s >= gettail(result))
9513#else
9514 if ((s = vim_strrchr(result, '.')) != NULL && s >= gettail(result))
9515#endif
9516 resultlen = (int)(s - result);
9517 }
9518#ifdef FEAT_MODIFY_FNAME
9519 else if (!skip_mod)
9520 {
9521 valid |= modify_fname(src, usedlen, &result, &resultbuf,
9522 &resultlen);
9523 if (result == NULL)
9524 {
9525 *errormsg = (char_u *)"";
9526 return NULL;
9527 }
9528 }
9529#endif
9530 }
9531
9532 if (resultlen == 0 || valid != VALID_HEAD + VALID_PATH)
9533 {
9534 if (valid != VALID_HEAD + VALID_PATH)
9535 /* xgettext:no-c-format */
9536 *errormsg = (char_u *)_("E499: Empty file name for '%' or '#', only works with \":p:h\"");
9537 else
9538 *errormsg = (char_u *)_("E500: Evaluates to an empty string");
9539 result = NULL;
9540 }
9541 else
9542 result = vim_strnsave(result, resultlen);
9543 vim_free(resultbuf);
9544 return result;
9545}
9546
9547/*
9548 * Concatenate all files in the argument list, separated by spaces, and return
9549 * it in one allocated string.
9550 * Spaces and backslashes in the file names are escaped with a backslash.
9551 * Returns NULL when out of memory.
9552 */
9553 static char_u *
9554arg_all()
9555{
9556 int len;
9557 int idx;
9558 char_u *retval = NULL;
9559 char_u *p;
9560
9561 /*
9562 * Do this loop two times:
9563 * first time: compute the total length
9564 * second time: concatenate the names
9565 */
9566 for (;;)
9567 {
9568 len = 0;
9569 for (idx = 0; idx < ARGCOUNT; ++idx)
9570 {
9571 p = alist_name(&ARGLIST[idx]);
9572 if (p != NULL)
9573 {
9574 if (len > 0)
9575 {
9576 /* insert a space in between names */
9577 if (retval != NULL)
9578 retval[len] = ' ';
9579 ++len;
9580 }
9581 for ( ; *p != NUL; ++p)
9582 {
9583 if (*p == ' ' || *p == '\\')
9584 {
9585 /* insert a backslash */
9586 if (retval != NULL)
9587 retval[len] = '\\';
9588 ++len;
9589 }
9590 if (retval != NULL)
9591 retval[len] = *p;
9592 ++len;
9593 }
9594 }
9595 }
9596
9597 /* second time: break here */
9598 if (retval != NULL)
9599 {
9600 retval[len] = NUL;
9601 break;
9602 }
9603
9604 /* allocate memory */
9605 retval = alloc(len + 1);
9606 if (retval == NULL)
9607 break;
9608 }
9609
9610 return retval;
9611}
9612
9613#if defined(FEAT_AUTOCMD) || defined(PROTO)
9614/*
9615 * Expand the <sfile> string in "arg".
9616 *
9617 * Returns an allocated string, or NULL for any error.
9618 */
9619 char_u *
9620expand_sfile(arg)
9621 char_u *arg;
9622{
9623 char_u *errormsg;
9624 int len;
9625 char_u *result;
9626 char_u *newres;
9627 char_u *repl;
9628 int srclen;
9629 char_u *p;
9630
9631 result = vim_strsave(arg);
9632 if (result == NULL)
9633 return NULL;
9634
9635 for (p = result; *p; )
9636 {
9637 if (STRNCMP(p, "<sfile>", 7) != 0)
9638 ++p;
9639 else
9640 {
9641 /* replace "<sfile>" with the sourced file name, and do ":" stuff */
Bram Moolenaar63b92542007-03-27 14:57:09 +00009642 repl = eval_vars(p, result, &srclen, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009643 if (errormsg != NULL)
9644 {
9645 if (*errormsg)
9646 emsg(errormsg);
9647 vim_free(result);
9648 return NULL;
9649 }
9650 if (repl == NULL) /* no match (cannot happen) */
9651 {
9652 p += srclen;
9653 continue;
9654 }
9655 len = (int)STRLEN(result) - srclen + (int)STRLEN(repl) + 1;
9656 newres = alloc(len);
9657 if (newres == NULL)
9658 {
9659 vim_free(repl);
9660 vim_free(result);
9661 return NULL;
9662 }
9663 mch_memmove(newres, result, (size_t)(p - result));
9664 STRCPY(newres + (p - result), repl);
9665 len = (int)STRLEN(newres);
9666 STRCAT(newres, p + srclen);
9667 vim_free(repl);
9668 vim_free(result);
9669 result = newres;
9670 p = newres + len; /* continue after the match */
9671 }
9672 }
9673
9674 return result;
9675}
9676#endif
9677
9678#ifdef FEAT_SESSION
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009679static int ses_winsizes __ARGS((FILE *fd, int restore_size,
9680 win_T *tab_firstwin));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009681static int ses_win_rec __ARGS((FILE *fd, frame_T *fr));
9682static frame_T *ses_skipframe __ARGS((frame_T *fr));
9683static int ses_do_frame __ARGS((frame_T *fr));
9684static int ses_do_win __ARGS((win_T *wp));
9685static int ses_arglist __ARGS((FILE *fd, char *cmd, garray_T *gap, int fullname, unsigned *flagp));
9686static int ses_put_fname __ARGS((FILE *fd, char_u *name, unsigned *flagp));
9687static int ses_fname __ARGS((FILE *fd, buf_T *buf, unsigned *flagp));
9688
9689/*
9690 * Write openfile commands for the current buffers to an .exrc file.
9691 * Return FAIL on error, OK otherwise.
9692 */
9693 static int
9694makeopens(fd, dirnow)
9695 FILE *fd;
9696 char_u *dirnow; /* Current directory name */
9697{
9698 buf_T *buf;
9699 int only_save_windows = TRUE;
9700 int nr;
9701 int cnr = 1;
9702 int restore_size = TRUE;
9703 win_T *wp;
9704 char_u *sname;
9705 win_T *edited_win = NULL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009706 int tabnr;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009707 win_T *tab_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009708 frame_T *tab_topframe;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009709
9710 if (ssop_flags & SSOP_BUFFERS)
9711 only_save_windows = FALSE; /* Save ALL buffers */
9712
9713 /*
9714 * Begin by setting the this_session variable, and then other
9715 * sessionable variables.
9716 */
9717#ifdef FEAT_EVAL
9718 if (put_line(fd, "let v:this_session=expand(\"<sfile>:p\")") == FAIL)
9719 return FAIL;
9720 if (ssop_flags & SSOP_GLOBALS)
9721 if (store_session_globals(fd) == FAIL)
9722 return FAIL;
9723#endif
9724
9725 /*
9726 * Close all windows but one.
9727 */
9728 if (put_line(fd, "silent only") == FAIL)
9729 return FAIL;
9730
9731 /*
9732 * Now a :cd command to the session directory or the current directory
9733 */
9734 if (ssop_flags & SSOP_SESDIR)
9735 {
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009736 if (put_line(fd, "exe \"cd \" . escape(expand(\"<sfile>:p:h\"), ' ')")
9737 == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009738 return FAIL;
9739 }
9740 else if (ssop_flags & SSOP_CURDIR)
9741 {
9742 sname = home_replace_save(NULL, globaldir != NULL ? globaldir : dirnow);
9743 if (sname == NULL
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009744 || fputs("cd ", fd) < 0
9745 || ses_put_fname(fd, sname, &ssop_flags) == FAIL
9746 || put_eol(fd) == FAIL)
9747 {
9748 vim_free(sname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009749 return FAIL;
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009751 vim_free(sname);
9752 }
9753
9754 /*
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009755 * If there is an empty, unnamed buffer we will wipe it out later.
9756 * Remember the buffer number.
9757 */
9758 if (put_line(fd, "if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''") == FAIL)
9759 return FAIL;
9760 if (put_line(fd, " let s:wipebuf = bufnr('%')") == FAIL)
9761 return FAIL;
9762 if (put_line(fd, "endif") == FAIL)
9763 return FAIL;
9764
9765 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009766 * Now save the current files, current buffer first.
9767 */
9768 if (put_line(fd, "set shortmess=aoO") == FAIL)
9769 return FAIL;
9770
9771 /* Now put the other buffers into the buffer list */
9772 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
9773 {
9774 if (!(only_save_windows && buf->b_nwindows == 0)
9775 && !(buf->b_help && !(ssop_flags & SSOP_HELP))
9776 && buf->b_fname != NULL
9777 && buf->b_p_bl)
9778 {
9779 if (fprintf(fd, "badd +%ld ", buf->b_wininfo == NULL ? 1L
9780 : buf->b_wininfo->wi_fpos.lnum) < 0
9781 || ses_fname(fd, buf, &ssop_flags) == FAIL)
9782 return FAIL;
9783 }
9784 }
9785
9786 /* the global argument list */
9787 if (ses_arglist(fd, "args", &global_alist.al_ga,
9788 !(ssop_flags & SSOP_CURDIR), &ssop_flags) == FAIL)
9789 return FAIL;
9790
9791 if (ssop_flags & SSOP_RESIZE)
9792 {
9793 /* Note: after the restore we still check it worked!*/
9794 if (fprintf(fd, "set lines=%ld columns=%ld" , Rows, Columns) < 0
9795 || put_eol(fd) == FAIL)
9796 return FAIL;
9797 }
9798
9799#ifdef FEAT_GUI
9800 if (gui.in_use && (ssop_flags & SSOP_WINPOS))
9801 {
9802 int x, y;
9803
9804 if (gui_mch_get_winpos(&x, &y) == OK)
9805 {
9806 /* Note: after the restore we still check it worked!*/
9807 if (fprintf(fd, "winpos %d %d", x, y) < 0 || put_eol(fd) == FAIL)
9808 return FAIL;
9809 }
9810 }
9811#endif
9812
9813 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009814 * May repeat putting Windows for each tab, when "tabpages" is in
9815 * 'sessionoptions'.
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009816 * Don't use goto_tabpage(), it may change directory and trigger
9817 * autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009818 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009819 tab_firstwin = firstwin; /* first window in tab page "tabnr" */
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009820 tab_topframe = topframe;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009821 for (tabnr = 1; ; ++tabnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009822 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009823 int need_tabnew = FALSE;
9824
Bram Moolenaar18144c82006-04-12 21:52:12 +00009825 if ((ssop_flags & SSOP_TABPAGES))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009826 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009827 tabpage_T *tp = find_tabpage(tabnr);
9828
9829 if (tp == NULL)
9830 break; /* done all tab pages */
9831 if (tp == curtab)
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009832 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009833 tab_firstwin = firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009834 tab_topframe = topframe;
9835 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009836 else
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009837 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009838 tab_firstwin = tp->tp_firstwin;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009839 tab_topframe = tp->tp_topframe;
9840 }
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009841 if (tabnr > 1)
9842 need_tabnew = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009844
Bram Moolenaar18144c82006-04-12 21:52:12 +00009845 /*
9846 * Before creating the window layout, try loading one file. If this
9847 * is aborted we don't end up with a number of useless windows.
9848 * This may have side effects! (e.g., compressed or network file).
9849 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009850 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009851 {
9852 if (ses_do_win(wp)
9853 && wp->w_buffer->b_ffname != NULL
9854 && !wp->w_buffer->b_help
9855#ifdef FEAT_QUICKFIX
9856 && !bt_nofile(wp->w_buffer)
9857#endif
9858 )
9859 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009860 if (fputs(need_tabnew ? "tabedit " : "edit ", fd) < 0
Bram Moolenaar18144c82006-04-12 21:52:12 +00009861 || ses_fname(fd, wp->w_buffer, &ssop_flags) == FAIL)
9862 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009863 need_tabnew = FALSE;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009864 if (!wp->w_arg_idx_invalid)
9865 edited_win = wp;
9866 break;
9867 }
9868 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009869
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009870 /* If no file got edited create an empty tab page. */
9871 if (need_tabnew && put_line(fd, "tabnew") == FAIL)
9872 return FAIL;
9873
Bram Moolenaar18144c82006-04-12 21:52:12 +00009874 /*
9875 * Save current window layout.
9876 */
9877 if (put_line(fd, "set splitbelow splitright") == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009878 return FAIL;
Bram Moolenaar3b1b6c62006-11-28 20:40:00 +00009879 if (ses_win_rec(fd, tab_topframe) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009880 return FAIL;
Bram Moolenaar18144c82006-04-12 21:52:12 +00009881 if (!p_sb && put_line(fd, "set nosplitbelow") == FAIL)
9882 return FAIL;
9883 if (!p_spr && put_line(fd, "set nosplitright") == FAIL)
9884 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009885
Bram Moolenaar18144c82006-04-12 21:52:12 +00009886 /*
9887 * Check if window sizes can be restored (no windows omitted).
9888 * Remember the window number of the current window after restoring.
9889 */
9890 nr = 0;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009891 for (wp = tab_firstwin; wp != NULL; wp = W_NEXT(wp))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009892 {
9893 if (ses_do_win(wp))
9894 ++nr;
9895 else
9896 restore_size = FALSE;
9897 if (curwin == wp)
9898 cnr = nr;
9899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009900
Bram Moolenaar18144c82006-04-12 21:52:12 +00009901 /* Go to the first window. */
9902 if (put_line(fd, "wincmd t") == FAIL)
9903 return FAIL;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00009904
Bram Moolenaar18144c82006-04-12 21:52:12 +00009905 /*
9906 * If more than one window, see if sizes can be restored.
9907 * First set 'winheight' and 'winwidth' to 1 to avoid the windows being
9908 * resized when moving between windows.
9909 * Do this before restoring the view, so that the topline and the
9910 * cursor can be set. This is done again below.
9911 */
9912 if (put_line(fd, "set winheight=1 winwidth=1") == FAIL)
9913 return FAIL;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009914 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009915 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009916
Bram Moolenaar18144c82006-04-12 21:52:12 +00009917 /*
9918 * Restore the view of the window (options, file, cursor, etc.).
9919 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009920 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009921 {
9922 if (!ses_do_win(wp))
9923 continue;
9924 if (put_view(fd, wp, wp != edited_win, &ssop_flags) == FAIL)
9925 return FAIL;
9926 if (nr > 1 && put_line(fd, "wincmd w") == FAIL)
9927 return FAIL;
9928 }
9929
9930 /*
9931 * Restore cursor to the current window if it's not the first one.
9932 */
9933 if (cnr > 1 && (fprintf(fd, "%dwincmd w", cnr) < 0
9934 || put_eol(fd) == FAIL))
9935 return FAIL;
9936
9937 /*
Bram Moolenaar18144c82006-04-12 21:52:12 +00009938 * Restore window sizes again after jumping around in windows, because
9939 * the current window has a minimum size while others may not.
9940 */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009941 if (nr > 1 && ses_winsizes(fd, restore_size, tab_firstwin) == FAIL)
Bram Moolenaar18144c82006-04-12 21:52:12 +00009942 return FAIL;
9943
Bram Moolenaar18144c82006-04-12 21:52:12 +00009944 /* Don't continue in another tab page when doing only the current one
9945 * or when at the last tab page. */
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009946 if (!(ssop_flags & SSOP_TABPAGES))
Bram Moolenaar18144c82006-04-12 21:52:12 +00009947 break;
9948 }
9949
9950 if (ssop_flags & SSOP_TABPAGES)
9951 {
Bram Moolenaar18144c82006-04-12 21:52:12 +00009952 if (fprintf(fd, "tabnext %d", tabpage_index(curtab)) < 0
9953 || put_eol(fd) == FAIL)
9954 return FAIL;
9955 }
9956
Bram Moolenaar9c102382006-05-03 21:26:49 +00009957 /*
9958 * Wipe out an empty unnamed buffer we started in.
9959 */
9960 if (put_line(fd, "if exists('s:wipebuf')") == FAIL)
9961 return FAIL;
Bram Moolenaarf3a67882006-05-05 21:09:41 +00009962 if (put_line(fd, " silent exe 'bwipe ' . s:wipebuf") == FAIL)
Bram Moolenaar9c102382006-05-03 21:26:49 +00009963 return FAIL;
9964 if (put_line(fd, "endif") == FAIL)
9965 return FAIL;
9966 if (put_line(fd, "unlet! s:wipebuf") == FAIL)
9967 return FAIL;
9968
9969 /* Re-apply 'winheight', 'winwidth' and 'shortmess'. */
9970 if (fprintf(fd, "set winheight=%ld winwidth=%ld shortmess=%s",
9971 p_wh, p_wiw, p_shm) < 0 || put_eol(fd) == FAIL)
9972 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009973
9974 /*
9975 * Lastly, execute the x.vim file if it exists.
9976 */
9977 if (put_line(fd, "let s:sx = expand(\"<sfile>:p:r\").\"x.vim\"") == FAIL
9978 || put_line(fd, "if file_readable(s:sx)") == FAIL
9979 || put_line(fd, " exe \"source \" . s:sx") == FAIL
9980 || put_line(fd, "endif") == FAIL)
9981 return FAIL;
9982
9983 return OK;
9984}
9985
9986 static int
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009987ses_winsizes(fd, restore_size, tab_firstwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009988 FILE *fd;
9989 int restore_size;
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009990 win_T *tab_firstwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009991{
9992 int n = 0;
9993 win_T *wp;
9994
9995 if (restore_size && (ssop_flags & SSOP_WINSIZE))
9996 {
Bram Moolenaarcba2ae52006-10-24 10:59:57 +00009997 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009998 {
9999 if (!ses_do_win(wp))
10000 continue;
10001 ++n;
10002
10003 /* restore height when not full height */
10004 if (wp->w_height + wp->w_status_height < topframe->fr_height
10005 && (fprintf(fd,
10006 "exe '%dresize ' . ((&lines * %ld + %ld) / %ld)",
10007 n, (long)wp->w_height, Rows / 2, Rows) < 0
10008 || put_eol(fd) == FAIL))
10009 return FAIL;
10010
10011 /* restore width when not full width */
10012 if (wp->w_width < Columns && (fprintf(fd,
10013 "exe 'vert %dresize ' . ((&columns * %ld + %ld) / %ld)",
10014 n, (long)wp->w_width, Columns / 2, Columns) < 0
10015 || put_eol(fd) == FAIL))
10016 return FAIL;
10017 }
10018 }
10019 else
10020 {
10021 /* Just equalise window sizes */
10022 if (put_line(fd, "wincmd =") == FAIL)
10023 return FAIL;
10024 }
10025 return OK;
10026}
10027
10028/*
10029 * Write commands to "fd" to recursively create windows for frame "fr",
10030 * horizontally and vertically split.
10031 * After the commands the last window in the frame is the current window.
10032 * Returns FAIL when writing the commands to "fd" fails.
10033 */
10034 static int
10035ses_win_rec(fd, fr)
10036 FILE *fd;
10037 frame_T *fr;
10038{
10039 frame_T *frc;
10040 int count = 0;
10041
10042 if (fr->fr_layout != FR_LEAF)
10043 {
10044 /* Find first frame that's not skipped and then create a window for
10045 * each following one (first frame is already there). */
10046 frc = ses_skipframe(fr->fr_child);
10047 if (frc != NULL)
10048 while ((frc = ses_skipframe(frc->fr_next)) != NULL)
10049 {
10050 /* Make window as big as possible so that we have lots of room
10051 * to split. */
10052 if (put_line(fd, "wincmd _ | wincmd |") == FAIL
10053 || put_line(fd, fr->fr_layout == FR_COL
10054 ? "split" : "vsplit") == FAIL)
10055 return FAIL;
10056 ++count;
10057 }
10058
10059 /* Go back to the first window. */
10060 if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL
10061 ? "%dwincmd k" : "%dwincmd h", count) < 0
10062 || put_eol(fd) == FAIL))
10063 return FAIL;
10064
10065 /* Recursively create frames/windows in each window of this column or
10066 * row. */
10067 frc = ses_skipframe(fr->fr_child);
10068 while (frc != NULL)
10069 {
10070 ses_win_rec(fd, frc);
10071 frc = ses_skipframe(frc->fr_next);
10072 /* Go to next window. */
10073 if (frc != NULL && put_line(fd, "wincmd w") == FAIL)
10074 return FAIL;
10075 }
10076 }
10077 return OK;
10078}
10079
10080/*
10081 * Skip frames that don't contain windows we want to save in the Session.
10082 * Returns NULL when there none.
10083 */
10084 static frame_T *
10085ses_skipframe(fr)
10086 frame_T *fr;
10087{
10088 frame_T *frc;
10089
10090 for (frc = fr; frc != NULL; frc = frc->fr_next)
10091 if (ses_do_frame(frc))
10092 break;
10093 return frc;
10094}
10095
10096/*
10097 * Return TRUE if frame "fr" has a window somewhere that we want to save in
10098 * the Session.
10099 */
10100 static int
10101ses_do_frame(fr)
10102 frame_T *fr;
10103{
10104 frame_T *frc;
10105
10106 if (fr->fr_layout == FR_LEAF)
10107 return ses_do_win(fr->fr_win);
10108 for (frc = fr->fr_child; frc != NULL; frc = frc->fr_next)
10109 if (ses_do_frame(frc))
10110 return TRUE;
10111 return FALSE;
10112}
10113
10114/*
10115 * Return non-zero if window "wp" is to be stored in the Session.
10116 */
10117 static int
10118ses_do_win(wp)
10119 win_T *wp;
10120{
10121 if (wp->w_buffer->b_fname == NULL
10122#ifdef FEAT_QUICKFIX
10123 /* When 'buftype' is "nofile" can't restore the window contents. */
10124 || bt_nofile(wp->w_buffer)
10125#endif
10126 )
10127 return (ssop_flags & SSOP_BLANK);
10128 if (wp->w_buffer->b_help)
10129 return (ssop_flags & SSOP_HELP);
10130 return TRUE;
10131}
10132
10133/*
10134 * Write commands to "fd" to restore the view of a window.
10135 * Caller must make sure 'scrolloff' is zero.
10136 */
10137 static int
10138put_view(fd, wp, add_edit, flagp)
10139 FILE *fd;
10140 win_T *wp;
10141 int add_edit; /* add ":edit" command to view */
10142 unsigned *flagp; /* vop_flags or ssop_flags */
10143{
10144 win_T *save_curwin;
10145 int f;
10146 int do_cursor;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010147 int did_next = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010148
10149 /* Always restore cursor position for ":mksession". For ":mkview" only
10150 * when 'viewoptions' contains "cursor". */
10151 do_cursor = (flagp == &ssop_flags || *flagp & SSOP_CURSOR);
10152
10153 /*
10154 * Local argument list.
10155 */
10156 if (wp->w_alist == &global_alist)
10157 {
10158 if (put_line(fd, "argglobal") == FAIL)
10159 return FAIL;
10160 }
10161 else
10162 {
10163 if (ses_arglist(fd, "arglocal", &wp->w_alist->al_ga,
10164 flagp == &vop_flags
10165 || !(*flagp & SSOP_CURDIR)
10166 || wp->w_localdir != NULL, flagp) == FAIL)
10167 return FAIL;
10168 }
10169
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010170 /* Only when part of a session: restore the argument index. Some
10171 * arguments may have been deleted, check if the index is valid. */
10172 if (wp->w_arg_idx != 0 && wp->w_arg_idx <= WARGCOUNT(wp)
10173 && flagp == &ssop_flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010174 {
10175 if (fprintf(fd, "%ldnext", (long)wp->w_arg_idx) < 0
10176 || put_eol(fd) == FAIL)
10177 return FAIL;
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010178 did_next = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010179 }
10180
10181 /* Edit the file. Skip this when ":next" already did it. */
Bram Moolenaarf95dc3b2005-05-22 22:02:25 +000010182 if (add_edit && (!did_next || wp->w_arg_idx_invalid))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010183 {
10184 /*
10185 * Load the file.
10186 */
10187 if (wp->w_buffer->b_ffname != NULL
10188#ifdef FEAT_QUICKFIX
10189 && !bt_nofile(wp->w_buffer)
10190#endif
10191 )
10192 {
10193 /*
10194 * Editing a file in this buffer: use ":edit file".
10195 * This may have side effects! (e.g., compressed or network file).
10196 */
10197 if (fputs("edit ", fd) < 0
10198 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10199 return FAIL;
10200 }
10201 else
10202 {
10203 /* No file in this buffer, just make it empty. */
10204 if (put_line(fd, "enew") == FAIL)
10205 return FAIL;
10206#ifdef FEAT_QUICKFIX
10207 if (wp->w_buffer->b_ffname != NULL)
10208 {
10209 /* The buffer does have a name, but it's not a file name. */
10210 if (fputs("file ", fd) < 0
10211 || ses_fname(fd, wp->w_buffer, flagp) == FAIL)
10212 return FAIL;
10213 }
10214#endif
10215 do_cursor = FALSE;
10216 }
10217 }
10218
10219 /*
10220 * Local mappings and abbreviations.
10221 */
10222 if ((*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10223 && makemap(fd, wp->w_buffer) == FAIL)
10224 return FAIL;
10225
10226 /*
10227 * Local options. Need to go to the window temporarily.
10228 * Store only local values when using ":mkview" and when ":mksession" is
10229 * used and 'sessionoptions' doesn't include "options".
10230 * Some folding options are always stored when "folds" is included,
10231 * otherwise the folds would not be restored correctly.
10232 */
10233 save_curwin = curwin;
10234 curwin = wp;
10235 curbuf = curwin->w_buffer;
10236 if (*flagp & (SSOP_OPTIONS | SSOP_LOCALOPTIONS))
10237 f = makeset(fd, OPT_LOCAL,
10238 flagp == &vop_flags || !(*flagp & SSOP_OPTIONS));
10239#ifdef FEAT_FOLDING
10240 else if (*flagp & SSOP_FOLDS)
10241 f = makefoldset(fd);
10242#endif
10243 else
10244 f = OK;
10245 curwin = save_curwin;
10246 curbuf = curwin->w_buffer;
10247 if (f == FAIL)
10248 return FAIL;
10249
10250#ifdef FEAT_FOLDING
10251 /*
10252 * Save Folds when 'buftype' is empty and for help files.
10253 */
10254 if ((*flagp & SSOP_FOLDS)
10255 && wp->w_buffer->b_ffname != NULL
Bram Moolenaarb1b715d2006-01-21 22:09:43 +000010256# ifdef FEAT_QUICKFIX
10257 && (*wp->w_buffer->b_p_bt == NUL || wp->w_buffer->b_help)
10258# endif
10259 )
Bram Moolenaar071d4272004-06-13 20:20:40 +000010260 {
10261 if (put_folds(fd, wp) == FAIL)
10262 return FAIL;
10263 }
10264#endif
10265
10266 /*
10267 * Set the cursor after creating folds, since that moves the cursor.
10268 */
10269 if (do_cursor)
10270 {
10271
10272 /* Restore the cursor line in the file and relatively in the
10273 * window. Don't use "G", it changes the jumplist. */
10274 if (fprintf(fd, "let s:l = %ld - ((%ld * winheight(0) + %ld) / %ld)",
10275 (long)wp->w_cursor.lnum,
10276 (long)(wp->w_cursor.lnum - wp->w_topline),
10277 (long)wp->w_height / 2, (long)wp->w_height) < 0
10278 || put_eol(fd) == FAIL
10279 || put_line(fd, "if s:l < 1 | let s:l = 1 | endif") == FAIL
10280 || put_line(fd, "exe s:l") == FAIL
10281 || put_line(fd, "normal! zt") == FAIL
10282 || fprintf(fd, "%ld", (long)wp->w_cursor.lnum) < 0
10283 || put_eol(fd) == FAIL)
10284 return FAIL;
10285 /* Restore the cursor column and left offset when not wrapping. */
10286 if (wp->w_cursor.col == 0)
10287 {
10288 if (put_line(fd, "normal! 0") == FAIL)
10289 return FAIL;
10290 }
10291 else
10292 {
10293 if (!wp->w_p_wrap && wp->w_leftcol > 0 && wp->w_width > 0)
10294 {
10295 if (fprintf(fd,
10296 "let s:c = %ld - ((%ld * winwidth(0) + %ld) / %ld)",
10297 (long)wp->w_cursor.col,
10298 (long)(wp->w_cursor.col - wp->w_leftcol),
10299 (long)wp->w_width / 2, (long)wp->w_width) < 0
10300 || put_eol(fd) == FAIL
10301 || put_line(fd, "if s:c > 0") == FAIL
10302 || fprintf(fd,
10303 " exe 'normal! 0' . s:c . 'lzs' . (%ld - s:c) . 'l'",
10304 (long)wp->w_cursor.col) < 0
10305 || put_eol(fd) == FAIL
10306 || put_line(fd, "else") == FAIL
10307 || fprintf(fd, " normal! 0%dl", wp->w_cursor.col) < 0
10308 || put_eol(fd) == FAIL
10309 || put_line(fd, "endif") == FAIL)
10310 return FAIL;
10311 }
10312 else
10313 {
10314 if (fprintf(fd, "normal! 0%dl", wp->w_cursor.col) < 0
10315 || put_eol(fd) == FAIL)
10316 return FAIL;
10317 }
10318 }
10319 }
10320
10321 /*
10322 * Local directory.
10323 */
10324 if (wp->w_localdir != NULL)
10325 {
10326 if (fputs("lcd ", fd) < 0
10327 || ses_put_fname(fd, wp->w_localdir, flagp) == FAIL
10328 || put_eol(fd) == FAIL)
10329 return FAIL;
10330 }
10331
10332 return OK;
10333}
10334
10335/*
10336 * Write an argument list to the session file.
10337 * Returns FAIL if writing fails.
10338 */
10339 static int
10340ses_arglist(fd, cmd, gap, fullname, flagp)
10341 FILE *fd;
10342 char *cmd;
10343 garray_T *gap;
10344 int fullname; /* TRUE: use full path name */
10345 unsigned *flagp;
10346{
10347 int i;
10348 char_u buf[MAXPATHL];
10349 char_u *s;
10350
10351 if (gap->ga_len == 0)
10352 return put_line(fd, "silent! argdel *");
10353 if (fputs(cmd, fd) < 0)
10354 return FAIL;
10355 for (i = 0; i < gap->ga_len; ++i)
10356 {
10357 /* NULL file names are skipped (only happens when out of memory). */
10358 s = alist_name(&((aentry_T *)gap->ga_data)[i]);
10359 if (s != NULL)
10360 {
10361 if (fullname)
10362 {
10363 (void)vim_FullName(s, buf, MAXPATHL, FALSE);
10364 s = buf;
10365 }
10366 if (fputs(" ", fd) < 0 || ses_put_fname(fd, s, flagp) == FAIL)
10367 return FAIL;
10368 }
10369 }
10370 return put_eol(fd);
10371}
10372
10373/*
10374 * Write a buffer name to the session file.
10375 * Also ends the line.
10376 * Returns FAIL if writing fails.
10377 */
10378 static int
10379ses_fname(fd, buf, flagp)
10380 FILE *fd;
10381 buf_T *buf;
10382 unsigned *flagp;
10383{
10384 char_u *name;
10385
10386 /* Use the short file name if the current directory is known at the time
10387 * the session file will be sourced. Don't do this for ":mkview", we
10388 * don't know the current directory. */
10389 if (buf->b_sfname != NULL
10390 && flagp == &ssop_flags
10391 && (ssop_flags & (SSOP_CURDIR | SSOP_SESDIR)))
10392 name = buf->b_sfname;
10393 else
10394 name = buf->b_ffname;
10395 if (ses_put_fname(fd, name, flagp) == FAIL || put_eol(fd) == FAIL)
10396 return FAIL;
10397 return OK;
10398}
10399
10400/*
10401 * Write a file name to the session file.
10402 * Takes care of the "slash" option in 'sessionoptions' and escapes special
10403 * characters.
10404 * Returns FAIL if writing fails.
10405 */
10406 static int
10407ses_put_fname(fd, name, flagp)
10408 FILE *fd;
10409 char_u *name;
10410 unsigned *flagp;
10411{
10412 char_u *sname;
10413 int retval = OK;
10414 int c;
10415
10416 sname = home_replace_save(NULL, name);
10417 if (sname != NULL)
10418 name = sname;
10419 while (*name != NUL)
10420 {
10421#ifdef FEAT_MBYTE
10422 {
10423 int l;
10424
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010425 if (has_mbyte && (l = (*mb_ptr2len)(name)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010426 {
10427 /* copy a multibyte char */
10428 while (--l >= 0)
10429 {
10430 if (putc(*name, fd) != *name)
10431 retval = FAIL;
10432 ++name;
10433 }
10434 continue;
10435 }
10436 }
10437#endif
10438 c = *name++;
10439 if (c == '\\' && (*flagp & SSOP_SLASH))
10440 /* change a backslash to a forward slash */
10441 c = '/';
10442 else if ((vim_strchr(escape_chars, c) != NULL
10443#ifdef BACKSLASH_IN_FILENAME
10444 && c != '\\'
10445#endif
10446 ) || c == '#' || c == '%')
10447 {
10448 /* escape a special character with a backslash */
10449 if (putc('\\', fd) != '\\')
10450 retval = FAIL;
10451 }
10452 if (putc(c, fd) != c)
10453 retval = FAIL;
10454 }
10455 vim_free(sname);
10456 return retval;
10457}
10458
10459/*
10460 * ":loadview [nr]"
10461 */
10462 static void
10463ex_loadview(eap)
10464 exarg_T *eap;
10465{
10466 char_u *fname;
10467
10468 fname = get_view_file(*eap->arg);
10469 if (fname != NULL)
10470 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010471 do_source(fname, FALSE, DOSO_NONE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010472 vim_free(fname);
10473 }
10474}
10475
10476/*
10477 * Get the name of the view file for the current buffer.
10478 */
10479 static char_u *
10480get_view_file(c)
10481 int c;
10482{
10483 int len = 0;
10484 char_u *p, *s;
10485 char_u *retval;
10486 char_u *sname;
10487
10488 if (curbuf->b_ffname == NULL)
10489 {
10490 EMSG(_(e_noname));
10491 return NULL;
10492 }
10493 sname = home_replace_save(NULL, curbuf->b_ffname);
10494 if (sname == NULL)
10495 return NULL;
10496
10497 /*
10498 * We want a file name without separators, because we're not going to make
10499 * a directory.
10500 * "normal" path separator -> "=+"
10501 * "=" -> "=="
10502 * ":" path separator -> "=-"
10503 */
10504 for (p = sname; *p; ++p)
10505 if (*p == '=' || vim_ispathsep(*p))
10506 ++len;
10507 retval = alloc((unsigned)(STRLEN(sname) + len + STRLEN(p_vdir) + 9));
10508 if (retval != NULL)
10509 {
10510 STRCPY(retval, p_vdir);
10511 add_pathsep(retval);
10512 s = retval + STRLEN(retval);
10513 for (p = sname; *p; ++p)
10514 {
10515 if (*p == '=')
10516 {
10517 *s++ = '=';
10518 *s++ = '=';
10519 }
10520 else if (vim_ispathsep(*p))
10521 {
10522 *s++ = '=';
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010523#if defined(BACKSLASH_IN_FILENAME) || defined(AMIGA) || defined(RISCOS) \
Bram Moolenaar071d4272004-06-13 20:20:40 +000010524 || defined(VMS)
10525 if (*p == ':')
10526 *s++ = '-';
10527 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000010528#endif
Bram Moolenaarcef9dcc2005-12-06 19:50:41 +000010529 *s++ = '+';
Bram Moolenaar071d4272004-06-13 20:20:40 +000010530 }
10531 else
10532 *s++ = *p;
10533 }
10534 *s++ = '=';
10535 *s++ = c;
10536 STRCPY(s, ".vim");
10537 }
10538
10539 vim_free(sname);
10540 return retval;
10541}
10542
10543#endif /* FEAT_SESSION */
10544
10545/*
10546 * Write end-of-line character(s) for ":mkexrc", ":mkvimrc" and ":mksession".
10547 * Return FAIL for a write error.
10548 */
10549 int
10550put_eol(fd)
10551 FILE *fd;
10552{
10553 if (
10554#ifdef USE_CRNL
10555 (
10556# ifdef MKSESSION_NL
10557 !mksession_nl &&
10558# endif
10559 (putc('\r', fd) < 0)) ||
10560#endif
10561 (putc('\n', fd) < 0))
10562 return FAIL;
10563 return OK;
10564}
10565
10566/*
10567 * Write a line to "fd".
10568 * Return FAIL for a write error.
10569 */
10570 int
10571put_line(fd, s)
10572 FILE *fd;
10573 char *s;
10574{
10575 if (fputs(s, fd) < 0 || put_eol(fd) == FAIL)
10576 return FAIL;
10577 return OK;
10578}
10579
10580#ifdef FEAT_VIMINFO
10581/*
10582 * ":rviminfo" and ":wviminfo".
10583 */
10584 static void
10585ex_viminfo(eap)
10586 exarg_T *eap;
10587{
10588 char_u *save_viminfo;
10589
10590 save_viminfo = p_viminfo;
10591 if (*p_viminfo == NUL)
10592 p_viminfo = (char_u *)"'100";
10593 if (eap->cmdidx == CMD_rviminfo)
10594 {
10595 if (read_viminfo(eap->arg, TRUE, TRUE, eap->forceit) == FAIL)
10596 EMSG(_("E195: Cannot open viminfo file for reading"));
10597 }
10598 else
10599 write_viminfo(eap->arg, eap->forceit);
10600 p_viminfo = save_viminfo;
10601}
10602#endif
10603
10604#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010605/*
10606 * Make a dialog message in "buff[IOSIZE]".
Bram Moolenaarb765d632005-06-07 21:00:02 +000010607 * "format" must contain "%s".
Bram Moolenaar9c13b352005-05-19 20:53:52 +000010608 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010609 void
10610dialog_msg(buff, format, fname)
10611 char_u *buff;
10612 char *format;
10613 char_u *fname;
10614{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010615 if (fname == NULL)
10616 fname = (char_u *)_("Untitled");
Bram Moolenaarb765d632005-06-07 21:00:02 +000010617 vim_snprintf((char *)buff, IOSIZE, format, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010618}
10619#endif
10620
10621/*
10622 * ":behave {mswin,xterm}"
10623 */
10624 static void
10625ex_behave(eap)
10626 exarg_T *eap;
10627{
10628 if (STRCMP(eap->arg, "mswin") == 0)
10629 {
10630 set_option_value((char_u *)"selection", 0L, (char_u *)"exclusive", 0);
10631 set_option_value((char_u *)"selectmode", 0L, (char_u *)"mouse,key", 0);
10632 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"popup", 0);
10633 set_option_value((char_u *)"keymodel", 0L,
10634 (char_u *)"startsel,stopsel", 0);
10635 }
10636 else if (STRCMP(eap->arg, "xterm") == 0)
10637 {
10638 set_option_value((char_u *)"selection", 0L, (char_u *)"inclusive", 0);
10639 set_option_value((char_u *)"selectmode", 0L, (char_u *)"", 0);
10640 set_option_value((char_u *)"mousemodel", 0L, (char_u *)"extend", 0);
10641 set_option_value((char_u *)"keymodel", 0L, (char_u *)"", 0);
10642 }
10643 else
10644 EMSG2(_(e_invarg2), eap->arg);
10645}
10646
10647#ifdef FEAT_AUTOCMD
10648static int filetype_detect = FALSE;
10649static int filetype_plugin = FALSE;
10650static int filetype_indent = FALSE;
10651
10652/*
10653 * ":filetype [plugin] [indent] {on,off,detect}"
10654 * on: Load the filetype.vim file to install autocommands for file types.
10655 * off: Load the ftoff.vim file to remove all autocommands for file types.
10656 * plugin on: load filetype.vim and ftplugin.vim
10657 * plugin off: load ftplugof.vim
10658 * indent on: load filetype.vim and indent.vim
10659 * indent off: load indoff.vim
10660 */
10661 static void
10662ex_filetype(eap)
10663 exarg_T *eap;
10664{
10665 char_u *arg = eap->arg;
10666 int plugin = FALSE;
10667 int indent = FALSE;
10668
10669 if (*eap->arg == NUL)
10670 {
10671 /* Print current status. */
10672 smsg((char_u *)"filetype detection:%s plugin:%s indent:%s",
10673 filetype_detect ? "ON" : "OFF",
10674 filetype_plugin ? (filetype_detect ? "ON" : "(on)") : "OFF",
10675 filetype_indent ? (filetype_detect ? "ON" : "(on)") : "OFF");
10676 return;
10677 }
10678
10679 /* Accept "plugin" and "indent" in any order. */
10680 for (;;)
10681 {
10682 if (STRNCMP(arg, "plugin", 6) == 0)
10683 {
10684 plugin = TRUE;
10685 arg = skipwhite(arg + 6);
10686 continue;
10687 }
10688 if (STRNCMP(arg, "indent", 6) == 0)
10689 {
10690 indent = TRUE;
10691 arg = skipwhite(arg + 6);
10692 continue;
10693 }
10694 break;
10695 }
10696 if (STRCMP(arg, "on") == 0 || STRCMP(arg, "detect") == 0)
10697 {
10698 if (*arg == 'o' || !filetype_detect)
10699 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010700 source_runtime((char_u *)FILETYPE_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010701 filetype_detect = TRUE;
10702 if (plugin)
10703 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010704 source_runtime((char_u *)FTPLUGIN_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010705 filetype_plugin = TRUE;
10706 }
10707 if (indent)
10708 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010709 source_runtime((char_u *)INDENT_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010710 filetype_indent = TRUE;
10711 }
10712 }
10713 if (*arg == 'd')
10714 {
10715 (void)do_doautocmd((char_u *)"filetypedetect BufRead", TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +000010716 do_modelines(0);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010717 }
10718 }
10719 else if (STRCMP(arg, "off") == 0)
10720 {
10721 if (plugin || indent)
10722 {
10723 if (plugin)
10724 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010725 source_runtime((char_u *)FTPLUGOF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010726 filetype_plugin = FALSE;
10727 }
10728 if (indent)
10729 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010730 source_runtime((char_u *)INDOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010731 filetype_indent = FALSE;
10732 }
10733 }
10734 else
10735 {
Bram Moolenaare5b8e3d2005-08-12 19:48:49 +000010736 source_runtime((char_u *)FTOFF_FILE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010737 filetype_detect = FALSE;
10738 }
10739 }
10740 else
10741 EMSG2(_(e_invarg2), arg);
10742}
10743
10744/*
10745 * ":setfiletype {name}"
10746 */
10747 static void
10748ex_setfiletype(eap)
10749 exarg_T *eap;
10750{
10751 if (!did_filetype)
10752 set_option_value((char_u *)"filetype", 0L, eap->arg, OPT_LOCAL);
10753}
10754#endif
10755
10756/*ARGSUSED*/
10757 static void
10758ex_digraphs(eap)
10759 exarg_T *eap;
10760{
10761#ifdef FEAT_DIGRAPHS
10762 if (*eap->arg != NUL)
10763 putdigraph(eap->arg);
10764 else
10765 listdigraphs();
10766#else
10767 EMSG(_("E196: No digraphs in this version"));
10768#endif
10769}
10770
10771 static void
10772ex_set(eap)
10773 exarg_T *eap;
10774{
10775 int flags = 0;
10776
10777 if (eap->cmdidx == CMD_setlocal)
10778 flags = OPT_LOCAL;
10779 else if (eap->cmdidx == CMD_setglobal)
10780 flags = OPT_GLOBAL;
10781#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) && defined(FEAT_BROWSE)
10782 if (cmdmod.browse && flags == 0)
10783 ex_options(eap);
10784 else
10785#endif
10786 (void)do_set(eap->arg, flags);
10787}
10788
10789#ifdef FEAT_SEARCH_EXTRA
10790/*
10791 * ":nohlsearch"
10792 */
10793/*ARGSUSED*/
10794 static void
10795ex_nohlsearch(eap)
10796 exarg_T *eap;
10797{
10798 no_hlsearch = TRUE;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010799 redraw_all_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010800}
10801
10802/*
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010803 * ":[N]match {group} {pattern}"
Bram Moolenaar071d4272004-06-13 20:20:40 +000010804 * Sets nextcmd to the start of the next command, if any. Also called when
10805 * skipping commands to find the next command.
10806 */
10807 static void
10808ex_match(eap)
10809 exarg_T *eap;
10810{
10811 char_u *p;
10812 char_u *end;
10813 int c;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010814 int mi;
10815
10816 if (eap->line2 <= 3)
10817 mi = eap->line2 - 1;
10818 else
10819 {
10820 EMSG(e_invcmd);
10821 return;
10822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010823
10824 /* First clear any old pattern. */
10825 if (!eap->skip)
10826 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010827 vim_free(curwin->w_match[mi].regprog);
10828 curwin->w_match[mi].regprog = NULL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010829 vim_free(curwin->w_match_pat[mi]);
10830 curwin->w_match_pat[mi] = NULL;
Bram Moolenaarf71a3db2006-03-12 21:50:18 +000010831 redraw_later(SOME_VALID); /* always need a redraw */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010832 }
10833
10834 if (ends_excmd(*eap->arg))
10835 end = eap->arg;
10836 else if ((STRNICMP(eap->arg, "none", 4) == 0
10837 && (vim_iswhite(eap->arg[4]) || ends_excmd(eap->arg[4]))))
10838 end = eap->arg + 4;
10839 else
10840 {
10841 p = skiptowhite(eap->arg);
10842 if (!eap->skip)
10843 {
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010844 curwin->w_match_id[mi] = syn_namen2id(eap->arg,
10845 (int)(p - eap->arg));
10846 if (curwin->w_match_id[mi] == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010847 {
10848 EMSG2(_(e_nogroup), eap->arg);
10849 return;
10850 }
10851 }
10852 p = skipwhite(p);
10853 if (*p == NUL)
10854 {
10855 /* There must be two arguments. */
10856 EMSG2(_(e_invarg2), eap->arg);
10857 return;
10858 }
10859 end = skip_regexp(p + 1, *p, TRUE, NULL);
10860 if (!eap->skip)
10861 {
10862 if (*end != NUL && !ends_excmd(*skipwhite(end + 1)))
10863 {
10864 eap->errmsg = e_trailing;
10865 return;
10866 }
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000010867 if (*end != *p)
10868 {
10869 EMSG2(_(e_invarg2), p);
10870 return;
10871 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010872
10873 c = *end;
10874 *end = NUL;
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010875 curwin->w_match[mi].regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaare1438bb2006-03-01 22:01:55 +000010876 if (curwin->w_match[mi].regprog == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010877 {
10878 EMSG2(_(e_invarg2), p);
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010879 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010880 return;
10881 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000010882 curwin->w_match_pat[mi] = vim_strsave(p + 1);
10883 *end = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010884 }
10885 }
10886 eap->nextcmd = find_nextcmd(end);
10887}
10888#endif
10889
10890#ifdef FEAT_CRYPT
10891/*
10892 * ":X": Get crypt key
10893 */
10894/*ARGSUSED*/
10895 static void
10896ex_X(eap)
10897 exarg_T *eap;
10898{
10899 (void)get_crypt_key(TRUE, TRUE);
10900}
10901#endif
10902
10903#ifdef FEAT_FOLDING
10904 static void
10905ex_fold(eap)
10906 exarg_T *eap;
10907{
10908 if (foldManualAllowed(TRUE))
10909 foldCreate(eap->line1, eap->line2);
10910}
10911
10912 static void
10913ex_foldopen(eap)
10914 exarg_T *eap;
10915{
10916 opFoldRange(eap->line1, eap->line2, eap->cmdidx == CMD_foldopen,
10917 eap->forceit, FALSE);
10918}
10919
10920 static void
10921ex_folddo(eap)
10922 exarg_T *eap;
10923{
10924 linenr_T lnum;
10925
10926 /* First set the marks for all lines closed/open. */
10927 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
10928 if (hasFolding(lnum, NULL, NULL) == (eap->cmdidx == CMD_folddoclosed))
10929 ml_setmarked(lnum);
10930
10931 /* Execute the command on the marked lines. */
10932 global_exe(eap->arg);
10933 ml_clearmarked(); /* clear rest of the marks */
10934}
10935#endif